-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jun 15, 2026 at 06:45 PM
-- Server version: 10.6.27-MariaDB
-- PHP Version: 8.4.21

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


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

--
-- Database: `futuretrackbd_futureBOX`
--

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

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

CREATE TABLE `admins` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `username` varchar(191) NOT NULL,
  `email` varchar(191) NOT NULL,
  `email_verified` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `role` varchar(191) NOT NULL DEFAULT 'editor',
  `image` varchar(191) DEFAULT NULL,
  `password` varchar(191) NOT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `admins` (`id`, `name`, `username`, `email`, `email_verified`, `role`, `image`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Future Track', 'super_admin', 'info@futuretrackbd.com', 1, '1', '103', '$2a$12$UcxgMAa63X5HweMBUoGPSumcHPSR/HLh.OxB.59Slpf/w9PMHIeaO', 'N1OrjfLSu49r7JMXGHepjm50ChwvYJL6P4ydGw7nqcc7LIdnL20GMWosa30x', '2020-07-16 06:47:46', '2023-01-29 05:07:46'),
(6, 'Malvin Prangon Sarkar', 'malvin.prangon', 'malvin.futuretrackbd@gmail.com', 0, '1', '288', '$2a$12$UcxgMAa63X5HweMBUoGPSumcHPSR/HLh.OxB.59Slpf/w9PMHIeaO', NULL, '2022-02-13 04:08:24', '2022-02-13 04:08:24');

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

--
-- Table structure for table `admin_roles`
--

CREATE TABLE `admin_roles` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `permission` longtext NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `admin_roles`
--

INSERT INTO `admin_roles` (`id`, `name`, `permission`, `created_at`, `updated_at`) VALUES
(1, 'Super Admin', '[\"admin_manage\",\"about_page_manage\",\"users_manage\",\"quote_manage\",\"newsletter_manage\",\"package_orders_manage\",\"all_payment_logs\",\"pages_manage\",\"menus_manage\",\"widgets_manage\",\"popup_builder\",\"form_builder\",\"blogs_manage\",\"job_post_manage\",\"events_manage\",\"products_manage\",\"donations_manage\",\"knowledgebase\",\"home_variant\",\"topbar_settings\",\"home_page_manage\",\"contact_page_manage\",\"feedback_page_manage\",\"services\",\"case_study\",\"gallery_page\",\"404_page_manage\",\"faq\",\"brand_logos\",\"price_plan\",\"team_members\",\"testimonial\",\"counterup\",\"general_settings\",\"languages\"]', '2020-05-15 00:00:00', '2020-07-27 00:41:15'),
(2, 'Editor', '[\"about_page_manage\",\"quote_manage\",\"newsletter_manage\",\"package_orders_manage\",\"all_payment_logs\",\"pages_manage\",\"blogs_manage\",\"job_post_manage\",\"events_manage\",\"products_manage\",\"donations_manage\",\"knowledgebase\",\"topbar_settings\",\"home_page_manage\",\"contact_page_manage\",\"feedback_page_manage\",\"services\",\"case_study\",\"gallery_page\",\"faq\",\"brand_logos\",\"price_plan\",\"team_members\",\"testimonial\",\"counterup\"]', '2020-05-15 14:34:16', '2020-07-27 00:42:52'),
(3, 'Admin', '[\"users_manage\",\"quote_manage\",\"newsletter_manage\",\"package_orders_manage\",\"all_payment_logs\",\"pages_manage\",\"menus_manage\",\"widgets_manage\",\"popup_builder\",\"form_builder\",\"blogs_manage\",\"job_post_manage\",\"events_manage\",\"products_manage\",\"donations_manage\",\"knowledgebase\",\"topbar_settings\",\"home_page_manage\",\"contact_page_manage\",\"feedback_page_manage\",\"services\",\"case_study\",\"gallery_page\",\"404_page_manage\",\"faq\",\"brand_logos\",\"price_plan\",\"team_members\",\"testimonial\",\"counterup\",\"general_settings\"]', '2020-05-15 14:34:29', '2020-07-27 00:44:24');

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

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

CREATE TABLE `blogs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` text NOT NULL,
  `content` longtext NOT NULL,
  `blog_categories_id` int(10) UNSIGNED NOT NULL,
  `tags` varchar(191) NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `meta_tags` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `user_id` varchar(191) DEFAULT NULL,
  `excerpt` text DEFAULT NULL,
  `slug` text DEFAULT NULL,
  `author` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `blog_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `status` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `blog_categories`
--

INSERT INTO `blog_categories` (`id`, `name`, `status`, `lang`, `created_at`, `updated_at`) VALUES
(1, 'GERMANY', 'draft', 'en', '2020-06-08 16:29:04', '2020-10-11 10:29:38'),
(2, 'CANADA', 'draft', 'en', '2020-06-08 16:29:20', '2020-10-11 10:29:25'),
(3, 'uk', 'draft', 'en', '2020-06-08 16:29:27', '2020-10-11 10:29:12');

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

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

CREATE TABLE `brands` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `url` varchar(191) DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `brands` (`id`, `title`, `url`, `image`, `created_at`, `updated_at`) VALUES
(6, 'University of Greenwich', '#', '130', '2020-10-05 03:55:02', '2020-10-05 03:55:02'),
(7, 'Webster University', '#', '129', '2020-10-05 03:55:27', '2020-10-05 03:55:27'),
(8, 'University  of Dundee', '#', '128', '2020-10-05 03:55:54', '2020-10-05 03:55:54'),
(9, 'Toronto School of Management', '#', '127', '2020-10-05 03:56:24', '2020-10-05 03:56:24'),
(10, 'Prifysgol Bangor University', NULL, '126', '2020-10-05 03:56:48', '2020-10-05 03:56:48'),
(11, 'Oxford International Education Group', '#', '125', '2020-10-05 03:57:07', '2020-10-05 03:57:07'),
(12, 'Masha University', NULL, '124', '2020-10-05 03:57:26', '2020-10-05 03:57:26'),
(13, 'Language Canada', NULL, '123', '2020-10-05 03:58:06', '2020-10-05 03:58:06'),
(14, 'Fanshawe College', NULL, '122', '2020-10-05 03:58:25', '2020-10-05 03:58:25'),
(15, 'Florida Polyrechnic University', NULL, '121', '2020-10-05 03:58:59', '2020-10-05 03:58:59'),
(16, 'British Columbia EQA', '#', '120', '2020-10-05 04:00:01', '2020-10-05 04:00:01'),
(17, 'EEVI', '#', '119', '2020-10-05 04:00:20', '2020-10-05 04:00:20'),
(18, 'Edu Canada', NULL, '118', '2020-10-05 04:01:06', '2020-10-05 04:01:06'),
(19, 'De Montfort University', NULL, '117', '2020-10-05 04:01:38', '2020-10-05 04:01:38'),
(20, 'Concordia-University-Chicago', NULL, '116', '2020-10-05 04:01:55', '2020-10-05 04:01:55'),
(21, 'Cardiff Metropolitan University', NULL, '115', '2020-10-05 04:02:19', '2020-10-05 04:02:19'),
(22, 'Canada West University', NULL, '114', '2020-10-05 04:02:41', '2020-10-05 04:02:41'),
(23, 'BCCAT', NULL, '113', '2020-10-05 04:03:09', '2020-10-05 04:03:09'),
(24, 'Asia Pacific University of Technology & Information', NULL, '111', '2020-10-05 04:03:43', '2020-10-05 04:03:43'),
(25, 'Arden University', NULL, '108', '2020-10-05 04:04:09', '2020-10-05 04:04:09'),
(26, 'Lakehead University', 'https://www.lakeheadu.ca/', '420', '2024-01-28 01:41:34', '2024-01-28 01:41:34'),
(27, 'Brock University', 'https://brocku.ca/', '421', '2024-01-28 01:43:00', '2024-01-28 01:43:00'),
(28, 'The University of Waikato', 'https://www.waikato.ac.nz/', '422', '2024-01-28 01:44:27', '2024-01-28 01:44:27'),
(29, 'Lincoln University', 'https://www.lincoln.edu/index.html', '423', '2024-01-28 01:45:53', '2024-01-28 01:45:53'),
(30, 'University of Canterbury', 'https://www.canterbury.ac.nz/', '424', '2024-01-28 01:47:12', '2024-01-28 01:47:12'),
(31, 'Victoria University of Wellington', 'https://www.wgtn.ac.nz/', '425', '2024-01-28 01:49:54', '2024-01-28 01:49:54'),
(32, 'Coventry University', 'https://www.coventry.ac.uk/', '426', '2024-01-28 01:51:44', '2024-01-28 01:51:44'),
(33, 'Birmingham City University', 'https://www.bcu.ac.uk/', '427', '2024-01-28 01:52:39', '2024-01-28 01:52:39'),
(34, 'Brunel University London', 'https://www.brunel.ac.uk/', '428', '2024-01-28 01:53:51', '2024-01-28 01:53:51'),
(35, 'University of Otago', 'https://www.otago.ac.nz/', '429', '2024-01-28 02:00:46', '2024-01-28 02:00:46'),
(36, 'Ulster University', 'https://www.ulster.ac.uk/', '430', '2024-01-28 02:02:17', '2024-01-28 02:02:17'),
(37, 'University of New Haven', 'https://www.newhaven.edu/index.php', '431', '2024-01-28 02:03:43', '2024-01-28 02:03:43'),
(38, 'University of South Wales', 'https://www.southwales.ac.uk/', '432', '2024-01-28 02:04:36', '2024-01-28 02:04:36'),
(39, 'Kent State University', 'https://www.kent.edu/', '433', '2024-01-28 02:05:42', '2024-01-28 02:05:42'),
(40, 'Victoria University', 'https://www.vu.edu.au/', '434', '2024-01-28 02:06:56', '2024-01-28 02:06:56'),
(41, 'Arkansas State University', 'https://www.astate.edu/', '435', '2024-01-28 02:08:39', '2024-01-28 02:08:39'),
(42, 'San Francisco State University', 'https://www.sfsu.edu/index.html', '436', '2024-01-28 02:09:37', '2024-01-28 02:09:37'),
(43, 'Mercy University', 'https://www.mercy.edu/', '437', '2024-01-28 02:10:40', '2024-01-28 02:10:40'),
(44, 'University of Wollongong', 'https://www.uow.edu.au/', '438', '2024-01-28 02:11:41', '2024-01-28 02:11:41'),
(45, 'California State University', 'https://www.calstate.edu/', '439', '2024-01-28 02:13:15', '2024-01-28 02:13:15'),
(46, 'University of Tasmania', 'https://www.utas.edu.au/', '440', '2024-01-28 02:14:06', '2024-01-28 02:14:06'),
(47, 'Charles Sturt University', 'https://www.csu.edu.au/', '441', '2024-01-28 02:46:43', '2024-01-28 02:46:43'),
(48, 'The University of Western Australia', 'https://www.uwa.edu.au/', '442', '2024-01-28 02:47:55', '2024-01-28 02:47:55'),
(50, 'Trent University', 'https://www.trentu.ca/', '444', '2024-01-28 02:52:55', '2024-01-28 02:52:55'),
(51, 'University of Lethbridge', 'https://www.ulethbridge.ca/welcome-university-lethbridge', '445', '2024-01-28 02:59:37', '2024-01-28 02:59:37'),
(52, 'University of Windsor', 'https://www.uwindsor.ca/', '446', '2024-01-28 03:01:02', '2024-01-28 03:01:02');

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

--
-- Table structure for table `contact_info_items`
--

CREATE TABLE `contact_info_items` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `icon` varchar(191) NOT NULL,
  `description` text NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `contact_info_items`
--

INSERT INTO `contact_info_items` (`id`, `title`, `lang`, `icon`, `description`, `created_at`, `updated_at`) VALUES
(1, 'Email Address', 'en', 'far fa-envelope', 'info@futuretrackbd.com', '2020-07-20 06:45:32', '2020-10-05 03:10:30'),
(2, 'Phone', 'en', 'fas fa-phone', '01792000785', '2020-07-20 06:46:20', '2020-10-20 09:40:18'),
(3, 'Open Hours', 'en', 'far fa-clock', 'Sat - Thu\r\n10AM - 6PM', '2020-07-20 06:49:53', '2020-10-05 03:09:40'),
(4, 'Address', 'en', 'fas fa-map-marker-alt', 'Future Track Bangladesh Corporate Office, Hosna Center (2nd Floor), 106 Gulshan Avenue, Gulshan 1212 Dhaka', '2020-07-20 06:51:00', '2021-11-08 17:38:43');

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

--
-- Table structure for table `counterups`
--

CREATE TABLE `counterups` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `icon` varchar(191) NOT NULL,
  `number` varchar(191) NOT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `title` varchar(191) NOT NULL,
  `extra_text` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `counterups`
--

INSERT INTO `counterups` (`id`, `icon`, `number`, `lang`, `title`, `extra_text`, `created_at`, `updated_at`) VALUES
(23, 'fas fa-globe', '6', 'en', 'Countries', NULL, '2020-10-11 10:57:13', '2020-10-11 10:57:13'),
(27, 'fas fa-home', '2', 'en', 'Branches (Dhaka, Toronto)', NULL, '2020-10-11 11:01:31', '2024-01-30 05:20:05'),
(28, 'fas fa-user-alt', '5', 'en', 'Well-informed counsellors', NULL, '2020-10-11 11:02:02', '2020-10-11 11:02:02'),
(29, 'fas fa-university', '42', 'en', 'Universities', NULL, '2020-10-11 11:02:41', '2020-10-11 11:02:41');

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

--
-- Table structure for table `donations`
--

CREATE TABLE `donations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` text NOT NULL,
  `donation_content` longtext DEFAULT NULL,
  `amount` varchar(191) NOT NULL,
  `raised` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `meta_tags` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `slug` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `donations`
--

INSERT INTO `donations` (`id`, `title`, `donation_content`, `amount`, `raised`, `status`, `image`, `lang`, `meta_tags`, `meta_description`, `slug`, `created_at`, `updated_at`) VALUES
(1, 'Bachelor domestic extended doubtful as concerns', '<p>An country demesne message it. An country demesne message it. Bachelor domestic extended doubtful as concerns at. Morning prudent removal an letters by. On could my in order never it. Or excited certain sixteen it to parties colonel. Depending conveying direction has led immediate. Law gate her well bed life feet seen rent. On nature or no except it sussex.&nbsp;</p><p><br></p><p>Suppose end get boy warrant general natural. Delightful met sufficient projection ask. Decisively everything principles if preference do impression of. Preserved oh so difficult repulsive on in household. In what do miss time be. Valley as be appear cannot so by. Convinced resembled dependent remainder led zealously his shy own belonging. Always length letter adieus add number moment she. Promise few compass six several old offices removal parties fat. Concluded rapturous it intention perfectly daughters is as.&nbsp;</p><p><br></p><p>So feel been kept be at gate. Be september it extensive oh concluded of certainty. In read most gate at body held it ever no. Talking justice welcome message inquiry in started of am me. Led own hearted highest visited lasting sir through compass his. Guest tiled he quick by so these trees am. It announcing alteration at surrounded comparison.&nbsp;</p><p><br></p><p>Boy favourable day can introduced sentiments entreaties. Noisier carried of in warrant because. So mr plate seems cause chief widen first. Two differed husbands met screened his. Bed was form wife out ask draw. Wholly coming at we no enable. Offending sir delivered questions now new met. Acceptance she interested new boisterous day discretion celebrated. t. Morning prudent removal an letters by. On could my in order never it. Or excited certain sixteen it to parties colonel. Depending conveying direction has led immediate. Law gate her well bed life feet seen rent. On nature or no except it sussex.&nbsp;</p><p><br></p><p>Suppose end get boy warrant general natural. Delightful met sufficient projection ask. Decisively everything principles if preference do impression of. Preserved oh so difficult repulsive on in household. In what do miss time be. Valley as be appear cannot so by. Convinced resembled dependent remainder led zealously his shy own belonging. Always length letter adieus add number moment she. Promise few compass six several old offices removal parties fat. Concluded rapturous it intention perfectly daughters is as.&nbsp;</p><p><br></p><p>So feel been kept be at gate. Be september it extensive oh concluded of certainty. In read most gate at body held it ever no. Talking justice welcome message inquiry in started of am me. Led own hearted highest visited lasting sir through compass his. Guest tiled he quick by so these trees am. It announcing alteration at surrounded comparison.&nbsp;</p><p><br></p><p>Boy favourable day can introduced sentiments entreaties. Noisier carried of in warrant because. So mr plate seems cause chief widen first. Two differed husbands met screened his. Bed was form wife out ask draw. Wholly coming at we no enable. Offending sir delivered questions now new met. Acceptance she interested new boisterous day discretion celebrated.&nbsp;</p>', '20000', '2000', 'publish', '58', 'en', NULL, NULL, 'bachelor-domestic-extended-doubtful-as-concerns', '2020-07-20 11:34:14', '2020-07-20 11:34:14'),
(2, 'Law gate her well bed life feet seen rent', '<p>An country demesne message it. Bachelor domestic extended doubtful as concerns at. Morning prudent removal an letters by. On could my in order never it. Or excited certain sixteen it to parties colonel. Depending conveying direction has led immediate. Law gate her well bed life feet seen rent. On nature or no except it sussex.&nbsp;</p><p><br></p><p>Suppose end get boy warrant general natural. Delightful met sufficient projection ask. Decisively everything principles if preference do impression of. Preserved oh so difficult repulsive on in household. In what do miss time be. Valley as be appear cannot so by. Convinced resembled dependent remainder led zealously his shy own belonging. Always length letter adieus add number moment she. Promise few compass six several old offices removal parties fat. Concluded rapturous it intention perfectly daughters is as.&nbsp;</p><p><br></p><p>So feel been kept be at gate. Be september it extensive oh concluded of certainty. In read most gate at body held it ever no. Talking justice welcome message inquiry in started of am me. Led own hearted highest visited lasting sir through compass his. Guest tiled he quick by so these trees am. It announcing alteration at surrounded comparison.&nbsp;</p><p><br></p><p>Boy favourable day can introduced sentiments entreaties. Noisier carried of in warrant because. So mr plate seems cause chief widen first. Two differed husbands met screened his. Bed was form wife out ask draw. Wholly coming at we no enable. Offending sir delivered questions now new met. Acceptance she interested new boisterous day discretion celebrated.&nbsp;</p><p><br></p><p>She wholly fat who window extent either formal. Removing welcomed civility or hastened is. Justice elderly but perhaps expense six her are another passage. Full her ten open fond walk not down. For request general express unknown are. He in just mr door body held john down he. So journey greatly or garrets. Draw door kept do so come on open mean. Estimating stimulated how reasonably precaution diminution she simplicity sir but. Questions am sincerity zealously concluded consisted or no gentleman it.&nbsp;</p><p><br></p><p>Surprise steepest recurred landlord mr wandered amounted of. Continuing devonshire but considered its. Rose past oh shew roof is song neat. Do depend better praise do friend garden an wonder to. Intention age nay otherwise but breakfast. Around garden beyond to extent by.&nbsp;</p>', '50000', '11040', 'publish', '61', 'en', NULL, NULL, 'law-gate-her-well-bed-life-feet-seen-rent', '2020-07-20 12:05:52', '2020-08-13 19:24:00'),
(3, 'Suppose end get boy warrant general natural', '<p>An country demesne message it. Bachelor domestic extended doubtful as concerns at. Morning prudent removal an letters by. On could my in order never it. Or excited certain sixteen it to parties colonel. Depending conveying direction has led immediate. Law gate her well bed life feet seen rent. On nature or no except it sussex.&nbsp;</p><p><br></p><p>Suppose end get boy warrant general natural. Delightful met sufficient projection ask. Decisively everything principles if preference do impression of. Preserved oh so difficult repulsive on in household. In what do miss time be. Valley as be appear cannot so by. Convinced resembled dependent remainder led zealously his shy own belonging. Always length letter adieus add number moment she. Promise few compass six several old offices removal parties fat. Concluded rapturous it intention perfectly daughters is as.&nbsp;</p><p><br></p><p>So feel been kept be at gate. Be september it extensive oh concluded of certainty. In read most gate at body held it ever no. Talking justice welcome message inquiry in started of am me. Led own hearted highest visited lasting sir through compass his. Guest tiled he quick by so these trees am. It announcing alteration at surrounded comparison.&nbsp;</p><p><br></p><p>Boy favourable day can introduced sentiments entreaties. Noisier carried of in warrant because. So mr plate seems cause chief widen first. Two differed husbands met screened his. Bed was form wife out ask draw. Wholly coming at we no enable. Offending sir delivered questions now new met. Acceptance she interested new boisterous day discretion celebrated.&nbsp;</p><p><br></p><p>She wholly fat who window extent either formal. Removing welcomed civility or hastened is. Justice elderly but perhaps expense six her are another passage. Full her ten open fond walk not down. For request general express unknown are. He in just mr door body held john down he. So journey greatly or garrets. Draw door kept do so come on open mean. Estimating stimulated how reasonably precaution diminution she simplicity sir but. Questions am sincerity zealously concluded consisted or no gentleman it.&nbsp;</p><p><br></p><p>Surprise steepest recurred landlord mr wandered amounted of. Continuing devonshire but considered its. Rose past oh shew roof is song neat. Do depend better praise do friend garden an wonder to. Intention age nay otherwise but breakfast. Around garden beyond to extent by.&nbsp;</p>', '50000', '6728', 'publish', '60', 'en', NULL, NULL, 'suppose-end-get-boy-warrant-general-natural', '2020-07-20 12:14:24', '2020-08-18 07:08:48'),
(4, 'Questions am sincerity zealously concluded', '<p>An country demesne message it. Bachelor domestic extended doubtful as concerns at. Morning prudent removal an letters by. On could my in order never it. Or excited certain sixteen it to parties colonel. Depending conveying direction has led immediate. Law gate her well bed life feet seen rent. On nature or no except it sussex.&nbsp;</p><p><br></p><p>Suppose end get boy warrant general natural. Delightful met sufficient projection ask. Decisively everything principles if preference do impression of. Preserved oh so difficult repulsive on in household. In what do miss time be. Valley as be appear cannot so by. Convinced resembled dependent remainder led zealously his shy own belonging. Always length letter adieus add number moment she. Promise few compass six several old offices removal parties fat. Concluded rapturous it intention perfectly daughters is as.&nbsp;</p><p><br></p><p>So feel been kept be at gate. Be september it extensive oh concluded of certainty. In read most gate at body held it ever no. Talking justice welcome message inquiry in started of am me. Led own hearted highest visited lasting sir through compass his. Guest tiled he quick by so these trees am. It announcing alteration at surrounded comparison.&nbsp;</p><p><br></p><p>Boy favourable day can introduced sentiments entreaties. Noisier carried of in warrant because. So mr plate seems cause chief widen first. Two differed husbands met screened his. Bed was form wife out ask draw. Wholly coming at we no enable. Offending sir delivered questions now new met. Acceptance she interested new boisterous day discretion celebrated.&nbsp;</p><p><br></p><p>She wholly fat who window extent either formal. Removing welcomed civility or hastened is. Justice elderly but perhaps expense six her are another passage. Full her ten open fond walk not down. For request general express unknown are. He in just mr door body held john down he. So journey greatly or garrets. Draw door kept do so come on open mean. Estimating stimulated how reasonably precaution diminution she simplicity sir but. Questions am sincerity zealously concluded consisted or no gentleman it.&nbsp;</p><p><br></p><p>Surprise steepest recurred landlord mr wandered amounted of. Continuing devonshire but considered its. Rose past oh shew roof is song neat. Do depend better praise do friend garden an wonder to. Intention age nay otherwise but breakfast. Around garden beyond to extent by.&nbsp;</p>', '50000', '7800', 'publish', '59', 'en', NULL, NULL, 'questions-am-sincerity-zealously-concluded', '2020-07-20 12:19:12', '2020-08-20 19:54:04'),
(5, 'Guest tiled he quick by so these trees am', '<p>An country demesne message it. Bachelor domestic extended doubtful as concerns at. Morning prudent removal an letters by. On could my in order never it. Or excited certain sixteen it to parties colonel. Depending conveying direction has led immediate. Law gate her well bed life feet seen rent. On nature or no except it sussex.&nbsp;</p><p><br></p><p>Suppose end get boy warrant general natural. Delightful met sufficient projection ask. Decisively everything principles if preference do impression of. Preserved oh so difficult repulsive on in household. In what do miss time be. Valley as be appear cannot so by. Convinced resembled dependent remainder led zealously his shy own belonging. Always length letter adieus add number moment she. Promise few compass six several old offices removal parties fat. Concluded rapturous it intention perfectly daughters is as.&nbsp;</p><p><br></p><p>So feel been kept be at gate. Be september it extensive oh concluded of certainty. In read most gate at body held it ever no. Talking justice welcome message inquiry in started of am me. Led own hearted highest visited lasting sir through compass his. Guest tiled he quick by so these trees am. It announcing alteration at surrounded comparison.&nbsp;</p><p><br></p><p>Boy favourable day can introduced sentiments entreaties. Noisier carried of in warrant because. So mr plate seems cause chief widen first. Two differed husbands met screened his. Bed was form wife out ask draw. Wholly coming at we no enable. Offending sir delivered questions now new met. Acceptance she interested new boisterous day discretion celebrated.&nbsp;</p><p><br></p><p>She wholly fat who window extent either formal. Removing welcomed civility or hastened is. Justice elderly but perhaps expense six her are another passage. Full her ten open fond walk not down. For request general express unknown are. He in just mr door body held john down he. So journey greatly or garrets. Draw door kept do so come on open mean. Estimating stimulated how reasonably precaution diminution she simplicity sir but. Questions am sincerity zealously concluded consisted or no gentleman it.&nbsp;</p><p><br></p><p>Surprise steepest recurred landlord mr wandered amounted of. Continuing devonshire but considered its. Rose past oh shew roof is song neat. Do depend better praise do friend garden an wonder to. Intention age nay otherwise but breakfast. Around garden beyond to extent by.&nbsp;</p>', '50000', '34554', 'publish', '55', 'en', NULL, NULL, 'guest-tiled-he-quick-by-so-these-trees-am', '2020-07-20 12:19:22', '2020-08-08 15:14:02'),
(6, 'Talking justice welcome message inquiry in started', '<p>An country demesne message it. Bachelor domestic extended doubtful as concerns at. Morning prudent removal an letters by. On could my in order never it. Or excited certain sixteen it to parties colonel. Depending conveying direction has led immediate. Law gate her well bed life feet seen rent. On nature or no except it sussex.&nbsp;</p><p><br></p><p>Suppose end get boy warrant general natural. Delightful met sufficient projection ask. Decisively everything principles if preference do impression of. Preserved oh so difficult repulsive on in household. In what do miss time be. Valley as be appear cannot so by. Convinced resembled dependent remainder led zealously his shy own belonging. Always length letter adieus add number moment she. Promise few compass six several old offices removal parties fat. Concluded rapturous it intention perfectly daughters is as.&nbsp;</p><p><br></p><p>So feel been kept be at gate. Be september it extensive oh concluded of certainty. In read most gate at body held it ever no. Talking justice welcome message inquiry in started of am me. Led own hearted highest visited lasting sir through compass his. Guest tiled he quick by so these trees am. It announcing alteration at surrounded comparison.&nbsp;</p><p><br></p><p>Boy favourable day can introduced sentiments entreaties. Noisier carried of in warrant because. So mr plate seems cause chief widen first. Two differed husbands met screened his. Bed was form wife out ask draw. Wholly coming at we no enable. Offending sir delivered questions now new met. Acceptance she interested new boisterous day discretion celebrated.&nbsp;</p><p><br></p><p>She wholly fat who window extent either formal. Removing welcomed civility or hastened is. Justice elderly but perhaps expense six her are another passage. Full her ten open fond walk not down. For request general express unknown are. He in just mr door body held john down he. So journey greatly or garrets. Draw door kept do so come on open mean. Estimating stimulated how reasonably precaution diminution she simplicity sir but. Questions am sincerity zealously concluded consisted or no gentleman it.&nbsp;</p><p><br></p><p>Surprise steepest recurred landlord mr wandered amounted of. Continuing devonshire but considered its. Rose past oh shew roof is song neat. Do depend better praise do friend garden an wonder to. Intention age nay otherwise but breakfast. Around garden beyond to extent by.&nbsp;</p>', '50000', '8795', 'publish', '56', 'en', NULL, NULL, 'talking-justice-welcome-message-inquiry-in-started', '2020-07-20 12:19:32', '2020-08-07 09:39:04');

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

--
-- Table structure for table `donation_logs`
--

CREATE TABLE `donation_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `donation_id` varchar(191) NOT NULL,
  `email` varchar(191) DEFAULT NULL,
  `name` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `amount` varchar(191) DEFAULT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `payment_gateway` varchar(191) DEFAULT NULL,
  `track` varchar(191) DEFAULT NULL,
  `user_id` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `donation_logs`
--

INSERT INTO `donation_logs` (`id`, `donation_id`, `email`, `name`, `status`, `amount`, `transaction_id`, `payment_gateway`, `track`, `user_id`, `created_at`, `updated_at`) VALUES
(1, '1', 'dvrobin4@gmail.com', 'Sharifur Rahmam', 'pending', '10', 'Bni', 'stripe', '87neqS2c3IZUCl0Inum1', '', '2020-07-20 12:41:39', '2020-08-17 08:36:52'),
(2, '1', 'dvrobin4@gmail.com', 'Sharifur Rahmam', 'pending', '10', 'Bni', 'stripe', 'OdBugaONiKos8HqBOxl4', '', '2020-07-20 12:42:14', '2020-08-17 08:36:52'),
(3, '4', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'complete', '250', 'qwqwqw', 'stripe', 'Sp9I5YK0g46c5ffLMptY', '1', '2020-07-22 00:27:21', '2020-08-12 22:59:43'),
(4, '2', 'dvrobin4@gmail.com', 'Sharifur Rahmam', 'complete', '10', '2258877', 'stripe', 'T1OEGhz8WeTRHEDDy7Mn', '', '2020-07-28 23:02:31', '2020-08-22 21:20:17'),
(5, '4', 'admin@gmail.com', 'Test User', 'pending', '25', 'qwqwqw', 'manual_payment', 'mJZvhqHUpvvB2bUpk3Um', '', '2020-07-31 00:45:49', '2020-08-12 22:59:43'),
(6, '6', 'test@testing.com', 'test', 'pending', '100', NULL, 'paytm', 'o2eb2qxR270G57udGPuf', '', '2020-07-31 06:44:20', '2020-07-31 06:44:20'),
(7, '6', 't@test.com', 'test', 'complete', '10', 'pay_FKwWrzLmoGxY7f', 'razorpay', 'fQbr8RUtqw3DZan7uOus', '', '2020-07-31 06:45:41', '2020-07-31 06:47:25'),
(8, '2', 'souweb@live.com', 'Roberto', 'pending', '20', '2258877', 'stripe', 'YHZDxRcvsXOLWuUYgPaA', '', '2020-07-31 15:29:56', '2020-08-22 21:20:17'),
(9, '13', 'hdgh@hgfhd.com', 'reflut', 'complete', '25', 'txn_1HAzMxEmGOuJLTMsJWQlmpnM', 'stripe', '1iBzRB7M1BJmsfeDbxC8', '', '2020-07-31 18:37:41', '2020-07-31 18:38:00'),
(10, '13', 'hdgh@hgfhd.com', 'hghgh', 'pending', '2600000', NULL, 'stripe', 'LpifKSOvzKpbnCPYCWnS', '', '2020-07-31 18:38:45', '2020-07-31 18:38:45'),
(11, '13', 'hdgh@hgfhd.com', 'hghgh', 'pending', '2600000', NULL, 'stripe', 'cRhiqMU7v6h01wnDm8u9', '', '2020-07-31 18:39:24', '2020-07-31 18:39:24'),
(12, '6', 'c@c.com', 'ere', 'complete', '100', 'pay_FL8jFeIR4Iqs6f', 'razorpay', 'OGmX8SelvhUzreVAAPjf', '', '2020-07-31 18:40:50', '2020-07-31 18:43:14'),
(13, '6', 'rldn18@yahoo.com', 'hari', 'pending', '10', NULL, 'razorpay', 'bL215HfTZCnADofYFDmV', '', '2020-07-31 19:59:04', '2020-07-31 19:59:04'),
(14, '3', 'mangomania@mynet.com', 'Mango Man', 'pending', '10', '12345688', 'paytm', 'wmSRcpoWZRpzL9XJ9nm2', '', '2020-07-31 22:10:31', '2020-08-13 02:09:42'),
(15, '3', 'mangomania@mynet.com', 'Mango Man', 'pending', '10', '12345688', 'razorpay', 'BLuiP2H6Y41puCBaeAu2', '', '2020-07-31 22:10:40', '2020-08-13 02:09:42'),
(16, '3', 'mangomania@mynet.com', 'Mango Man', 'pending', '10', '12345688', 'paystack', 'x1qw82KBxO53bHuzr4jX', '', '2020-07-31 22:11:07', '2020-08-13 02:09:42'),
(17, '2', 'a@a.co', 'wew', 'pending', '10', '2258877', 'paytm', 'DrYzBTFa9CByMCj44rZJ', '', '2020-08-01 15:18:25', '2020-08-22 21:20:17'),
(18, '3', 'dvrobin4@gmail.com', 'Sharifur Rahmam', 'pending', '25', '12345688', 'paytm', 'KHVO9CzCAbnmAUgwTZ9y', '', '2020-08-01 21:20:25', '2020-08-13 02:09:42'),
(19, '2', 'admin@yemenkasih.org', 'YAZEED Ali', 'pending', '10', '2258877', 'paytm', 'krGIbtCacrMsnj8JLy4K', '', '2020-08-02 21:50:53', '2020-08-22 21:20:17'),
(20, '2', 'admin@yemenkasih.org', 'YAZEED Ali', 'pending', '10', '2258877', 'paytm', '1ycZlcyEAfMRIk6ya1tl', '', '2020-08-02 21:51:35', '2020-08-22 21:20:17'),
(21, '2', 'admin@yemenkasih.org', 'YAZEED Ali', 'pending', '10', '2258877', 'paypal', 'bESUMS9MsoSE8tT8v4fh', '', '2020-08-02 22:10:44', '2020-08-22 21:20:17'),
(22, '2', 'admin@yemenkasih.org', 'YAZEED Ali', 'pending', '10', '2258877', 'razorpay', 'MPERdM1Y9kmtJUVuTrFN', '', '2020-08-02 22:11:24', '2020-08-22 21:20:17'),
(23, '2', 'admin@yemenkasih.org', 'YAZEED Ali', 'pending', '10', '2258877', 'paytm', 'IUBgDFDRePSq6WfKQHzf', '', '2020-08-02 22:11:49', '2020-08-22 21:20:17'),
(24, '6', 'qwqw@qwqw.com', 'qwqw', 'pending', '1000', NULL, 'paytm', 'MjEwGpF8sPUqHthlkAJw', '', '2020-08-03 15:33:44', '2020-08-03 15:33:44'),
(25, '5', 'qw@qwqwqwq.com', 'qwqqw', 'complete', '10', 'pay_FMH9IYLZz31Akk', 'razorpay', '4rloREAQxliTqhQy5XA9', '', '2020-08-03 15:35:22', '2020-08-03 15:36:24'),
(26, '6', 'yemenkasih@gmail.com', 'Yazeed Alsayed', 'pending', '10', NULL, 'paytm', 'wh7ZCozVpcyj0NbW2e7K', '', '2020-08-03 20:08:20', '2020-08-03 20:08:20'),
(27, '2', 'yemenkasih@gmail.com', 'Yazeed', 'complete', '10', '2258877', 'mollie', 'bF80ZQJ3ZgDswjBkcUAP', '', '2020-08-04 03:50:56', '2020-08-22 21:20:17'),
(28, '2', 'yemenkasih@gmail.com', 'Yazeed', 'pending', '10', '2258877', 'paytm', '1ItxfBHDSqbS6G57An9n', '', '2020-08-04 03:53:40', '2020-08-22 21:20:17'),
(29, '1', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '10', 'Bni', 'flutterwave', 'l2oZw6z1vBxrIGG1HKhx', '1', '2020-08-04 04:11:52', '2020-08-17 08:36:52'),
(30, '2', 'tonymacoth@gmail.com', 'Test', 'pending', '10', '2258877', 'manual_payment', 'ORosYlr5QcTL9MhiLbQb', '', '2020-08-04 08:12:15', '2020-08-22 21:20:17'),
(31, '1', 'admin@gmail.com', 'Test User', 'pending', '25', 'Bni', 'manual_payment', 'WPCF72Uws1fA5b4rnxT1', '', '2020-08-04 13:48:17', '2020-08-17 08:36:52'),
(32, '2', 'asdasd@sdasdas.com', 'asdasdasdasdasdasdasd', 'pending', '10', '2258877', 'paypal', 'ecnOVEpJn8rKU47AGaGJ', '', '2020-08-04 17:59:09', '2020-08-22 21:20:17'),
(33, '2', 'askenglishexam@gmail.com', 'Ankit Yadav', 'pending', '1', '2258877', 'paytm', 'xGwDiZGclviLKMxp3k7A', '', '2020-08-05 11:21:00', '2020-08-22 21:20:17'),
(34, '1', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '25', 'Bni', 'stripe', 'AhVUydYIWfXk75uHusle', '1', '2020-08-05 11:46:51', '2020-08-17 08:36:52'),
(35, '2', 'idwan2010@gmail.com', 'Idwan Mulyawan', 'pending', '10', '2258877', 'paytm', '60LT76GpuKQFzaODNKjF', '', '2020-08-05 17:51:14', '2020-08-22 21:20:17'),
(36, '3', 'macjoeu6@gmail.com', 'macjoe umanah', 'pending', '10', '12345688', 'paystack', 'DcLjMjDYtUMKl8Ptieda', '', '2020-08-05 19:28:46', '2020-08-13 02:09:42'),
(37, '2', 'shivaraj@kisanbandu.com', 'Shivaraj', 'pending', '10', '2258877', 'paytm', 'TMavZrHKe3g2U9EQApXX', '', '2020-08-06 17:51:09', '2020-08-22 21:20:17'),
(38, '3', 'admin@admin.com', 'aaa', 'pending', '10', '12345688', 'razorpay', 'rwfM2VI5Si1odlJ55Y16', '', '2020-08-06 18:17:45', '2020-08-13 02:09:42'),
(39, '3', 'admin@demo.com', 'sssss', 'pending', '10', '12345688', 'paytm', 'MxK8DPuC8lxdIXu4ZINK', '', '2020-08-06 18:18:45', '2020-08-13 02:09:42'),
(40, '3', 'harry_sh52@yahoo.com', 'HARI', 'pending', '10', '12345688', 'paypal', 'pKcHdqqlUGhjztspRMSO', '', '2020-08-06 21:27:29', '2020-08-13 02:09:42'),
(41, '3', 'harry_sh52@yahoo.com', 'HARI', 'pending', '10', '12345688', 'razorpay', 'msJbbhrSWESLXPP7B6YE', '', '2020-08-06 21:28:12', '2020-08-13 02:09:42'),
(42, '2', 'super_admin@tehr.com', 'sas', 'pending', '20', '2258877', 'razorpay', 'rwQz7BkeBKaYmsd2w4WH', '', '2020-08-06 21:35:56', '2020-08-22 21:20:17'),
(43, '2', 'mk66216@gmail.com', 'Sumit patel', 'pending', '10', '2258877', 'paytm', 'Z4v7e0Gu3wU8yPmVb5wS', '', '2020-08-07 01:17:18', '2020-08-22 21:20:17'),
(44, '1', 'sfg@gmail.com', 'Fhhcx', 'pending', '25', 'Bni', 'paytm', 'TWFkMcOPnDoHTtPxFZF4', '', '2020-08-07 07:58:16', '2020-08-17 08:36:52'),
(45, '1', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '10', 'Bni', 'paystack', '5jmbyc8XxqllHICUaCfC', '1', '2020-08-07 08:30:53', '2020-08-17 08:36:52'),
(46, '2', 'amanijoseph87@gmail.com', 'Amani Joseph', 'pending', '10', '2258877', 'flutterwave', 'aStmyjazGe4QjhNVoVzB', '', '2020-08-07 08:40:28', '2020-08-22 21:20:17'),
(47, '6', 'dede@mail.com', 'dede', 'complete', '10', 'txn_1HDOIFEmGOuJLTMsZraDu3Z8', 'stripe', '3hEblUOTWBVNZmGpkTyC', '', '2020-08-07 09:38:32', '2020-08-07 09:39:04'),
(48, '4', '441100h@gmail.com', 'Hilary Kilonzi', 'pending', '20', 'qwqwqw', 'flutterwave', 'Pe2BrRK3M1dcKf0TRA96', '', '2020-08-07 09:51:10', '2020-08-12 22:59:43'),
(49, '3', 'aa@aa.co', 'Ramesh', 'pending', '15', '12345688', 'paytm', 'YuK1AShPY0W5JBUktv3U', '', '2020-08-07 09:54:47', '2020-08-13 02:09:42'),
(50, '2', 'coastudio05@gmail.com', 'malkhaz bebia', 'pending', '10', '2258877', 'flutterwave', 'xkWYZPsWDomB0SiNEqdY', '', '2020-08-07 10:13:08', '2020-08-22 21:20:17'),
(51, '2', 'isya40@gmail.com', 'Imam Syafii', 'pending', '10', '2258877', 'razorpay', '7FAB4g8PhPu0inE92KCZ', '', '2020-08-07 10:48:03', '2020-08-22 21:20:17'),
(52, '1', 'paruthielamparuthi@gmail.com', 'PARUTHI ELAMPARUTHI', 'pending', '10', 'Bni', 'razorpay', 'Vu9d1PzIAa48rHv4LKJn', '', '2020-08-07 10:55:40', '2020-08-17 08:36:52'),
(53, '2', 'admin@example.com', 'institution', 'pending', '10', '2258877', 'paytm', 'EDsQLW69QQ2NMZC9xmO5', '', '2020-08-07 11:00:19', '2020-08-22 21:20:17'),
(54, '6', 'enocmonyancha@gmail.com', 'Enock Monyancha', 'pending', '25', NULL, 'paytm', 'KOvLba4b4ySKibiv1hjW', '', '2020-08-07 11:28:22', '2020-08-07 11:28:22'),
(55, '4', 'onesdate2020@gmail.com', 'OnesDate View', 'pending', '10', 'qwqwqw', 'stripe', 'srARsLgvd6X6XKKzCiDO', '', '2020-08-07 12:30:44', '2020-08-12 22:59:43'),
(56, '2', 'fdsfd@erewt.hghg', 'asdfs', 'pending', '10', '2258877', 'paytm', 'rA3O1prBgSqODpsq3mzM', '', '2020-08-07 12:31:11', '2020-08-22 21:20:17'),
(57, '1', 'Ahmettpilot74626@gmail.com', 'Ahmett', 'pending', '10', 'Bni', 'stripe', 'VwfcYoabHLjzHvlSsl5A', '', '2020-08-07 17:11:25', '2020-08-17 08:36:52'),
(58, '2', 'victorbrown676@yahoo.com', 'David Solomon', 'pending', '2500', '2258877', 'mollie', '9GbdtPU5VjgH7OjXW55r', '', '2020-08-07 18:05:49', '2020-08-22 21:20:17'),
(59, '3', 'testing@this.com', 'Business A', 'pending', '10', '12345688', 'paystack', 'n18YCRahHTwDCdwbgOOn', '', '2020-08-07 18:21:33', '2020-08-13 02:09:42'),
(60, '3', 'testing@this.com', 'Business A', 'pending', '10', '12345688', 'flutterwave', 'DpOkSM2Lk1dtDm66aif5', '', '2020-08-07 18:22:11', '2020-08-13 02:09:42'),
(61, '6', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '20', NULL, 'paypal', 'HufX7HVrlSvlTmTeuQ6f', '1', '2020-08-07 18:31:19', '2020-08-07 18:31:19'),
(62, '3', 'sajinrani@gmail.com', 'Sajin', 'pending', '25', '12345688', 'paytm', 'imO4HK7MsI1gBg0I7EIj', '', '2020-08-07 19:29:06', '2020-08-13 02:09:42'),
(63, '2', 'bullet110011@gmail.com', 'brown', 'complete', '10', '2258877', 'paystack', 'tVfYHV0r1yuBmnq2KpcK', '', '2020-08-07 19:37:13', '2020-08-22 21:20:17'),
(64, '4', 'touchdownrecords201@gmail.com', 'dalibor', 'pending', '25', 'qwqwqw', 'paypal', 'hH5wSTrqldNRxWZhQi3t', '', '2020-08-07 20:33:53', '2020-08-12 22:59:43'),
(65, '2', 'felix@gmail.com', 'fred ken', 'pending', '10', '2258877', 'paypal', 'R1gSUC3tgjN5kebvQg8F', '', '2020-08-07 21:23:23', '2020-08-22 21:20:17'),
(66, '2', 'bilmoriajohn@gmail.com', 'Thotapalli', 'pending', '10', '2258877', 'paytm', '0cgezOj1lTdYcOBS8PhZ', '', '2020-08-07 22:27:46', '2020-08-22 21:20:17'),
(67, '5', 'onlybtc06@gmail.com', 'Aslam', 'pending', '10', NULL, 'paytm', 'xTGoKC8r44oYXnw12LZe', '', '2020-08-08 00:35:53', '2020-08-08 00:35:53'),
(68, '2', 'satrapa@live.nl', 'dogan', 'complete', '5', '2258877', 'mollie', 'tTFlchzICdyVBfKnPy3a', '', '2020-08-08 05:27:04', '2020-08-22 21:20:17'),
(69, '3', 'admin@example.com', 'Jhamlal sahu', 'pending', '10', '12345688', 'razorpay', 'MqnxncQ7mNbg2ak73f1d', '', '2020-08-08 07:21:03', '2020-08-13 02:09:42'),
(70, '3', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '10', '12345688', 'paytm', 'QUHBGGvaMUttfn9KdXOf', '1', '2020-08-08 08:38:36', '2020-08-13 02:09:42'),
(71, '1', 'admin@gmail.com', 'Magonjwa', 'pending', '10', 'Bni', 'paystack', 'FBrFfbidYaJEJfmWhq1e', '', '2020-08-08 10:06:00', '2020-08-17 08:36:52'),
(72, '2', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '10', '2258877', 'paytm', 'ThrVbnfEurXseCV4XNHa', '1', '2020-08-08 12:59:13', '2020-08-22 21:20:17'),
(73, '5', 'abdizoro89@gmail.com', 'abdikarim osman', 'pending', '10', NULL, 'paytm', 'ciQgTk0TE0JAwloNQtbA', '', '2020-08-08 13:36:51', '2020-08-08 13:36:51'),
(74, '1', 'emails@firstrustfinancials.com', 'Zamani Uwah', 'pending', '10', 'Bni', 'manual_payment', 'DnFJslIa8u76Xn49Us3E', '', '2020-08-08 13:47:00', '2020-08-17 08:36:52'),
(75, '5', 'sdfgsdfg@asdfdasjh.com', 'xfdgsfd', 'complete', '10', 'tr_fCy47cJFcu', 'mollie', 'EWTs2oay5JylCuXsO2BF', '', '2020-08-08 15:13:39', '2020-08-08 15:14:02'),
(76, '3', 'customer@demo.com', 'him', 'pending', '10', '12345688', 'paytm', 'UQANxpDhZHvilMPWq6Tn', '', '2020-08-08 16:20:59', '2020-08-13 02:09:42'),
(77, '3', 'customer@demo.com', 'him', 'pending', '10', '12345688', 'paytm', 'iP5EkPCqR49oBBRhJM7T', '', '2020-08-08 16:21:00', '2020-08-13 02:09:42'),
(78, '1', 'serus@live.com', 'Gay', 'pending', '10', 'Bni', 'paystack', '5x5UIh70JjDirX7bL5Mz', '', '2020-08-08 16:51:28', '2020-08-17 08:36:52'),
(79, '1', 'serus@live.com', 'Gay', 'pending', '10', 'Bni', 'flutterwave', 'eHtV71ddreIjR2wZku5v', '', '2020-08-08 16:53:47', '2020-08-17 08:36:52'),
(80, '1', 'info@bolaoilmills.com', 'Y', 'pending', '10', 'Bni', 'paystack', 'IxdPHDLaUIV0uEuM9Gh5', '', '2020-08-08 18:45:20', '2020-08-17 08:36:52'),
(81, '6', 'info@technohelpindia.com', 'ABIN T JOSE', 'pending', '10', NULL, 'paytm', 'VAITcghEGp8HiE0BDBWh', '', '2020-08-08 18:57:16', '2020-08-08 18:57:16'),
(82, '5', 'jjj@gmail.com', 'hhhh', 'pending', '10', NULL, 'paytm', 'eIQFAGniikSMvjF3n1v4', '', '2020-08-08 19:55:44', '2020-08-08 19:55:44'),
(83, '2', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '25', '2258877', 'paypal', 'ySEIe1wOpL1JRL2cEwtQ', '1', '2020-08-08 21:14:42', '2020-08-22 21:20:17'),
(84, '2', 'satrapa@live.nl', 'dogan', 'pending', '10', '2258877', 'mollie', 'RhqmgPACzag23x7wbUwb', '', '2020-08-09 01:06:53', '2020-08-22 21:20:17'),
(85, '6', 'parkerbern@gmail.com', 'Osei Akenten Parker', 'pending', '100', NULL, 'flutterwave', 'IqyVkvfpxHWWFNFX41zr', '', '2020-08-09 06:09:13', '2020-08-09 06:09:13'),
(86, '2', 'kilicorhaan@gmail.com', 'OMERAKIF', 'pending', '10', '2258877', 'paytm', 'WGr5a7Mc1fwGgGHqjeWq', '', '2020-08-09 12:31:50', '2020-08-22 21:20:17'),
(87, '2', 'chzappscanada@gmail.com', 'Jasim Tk', 'pending', '1', '2258877', 'paytm', 'T25iijU2zzdZQd24YUNA', '', '2020-08-09 20:42:51', '2020-08-22 21:20:17'),
(88, '2', 'fsv@tdnc.com', 'vfgb', 'pending', '10', '2258877', 'paystack', '7hhFfu3WmDrQZOquILC1', '', '2020-08-09 21:33:09', '2020-08-22 21:20:17'),
(89, '6', 'guy@gmail.com', 'gd', 'pending', '10', NULL, 'paypal', 'RMSt3GBcRreGMz3qiRb8', '', '2020-08-09 22:15:16', '2020-08-09 22:15:16'),
(90, '1', 'ssksjs@jjsks.com', 'Hsjsjdj', 'pending', '10', 'Bni', 'paypal', '0odCGaeHc8z1Ya2DlO05', '', '2020-08-10 09:59:39', '2020-08-17 08:36:52'),
(91, '6', 'bbc@bbc.bbc', '11', 'pending', '10', NULL, 'paypal', 'lpHSBLGwf5OEDRgQAMTl', '', '2020-08-10 18:56:53', '2020-08-10 18:56:53'),
(92, '13', 'hossam444kabbani@gmail.com', 'ffa aaa', 'pending', '10', NULL, 'razorpay', 'Z2eZm39KFJowPXur4tRq', '', '2020-08-10 23:01:30', '2020-08-10 23:01:30'),
(93, '1', 'fetnant@gmail.com', 'tyr', 'pending', '5', 'Bni', 'flutterwave', 'vv9dK362djgds3DBug63', '', '2020-08-10 23:22:37', '2020-08-17 08:36:52'),
(94, '1', 'fetnant@gmail.com', 'tyr', 'pending', '5', 'Bni', 'manual_payment', '6d5zjcevoAIJ6bOrZBCW', '', '2020-08-10 23:24:31', '2020-08-17 08:36:52'),
(95, '3', 'gggg@fmail.com', 'b dg', 'pending', '10', '12345688', 'flutterwave', 'qZ2ZEBExISayK7op45aZ', '', '2020-08-10 23:57:25', '2020-08-13 02:09:42'),
(96, '6', 'monderoy@blueguruz.com', 'sheldon', 'pending', '10', NULL, 'stripe', 'oaQcq42ENOjaGdjABD8X', '', '2020-08-11 03:39:32', '2020-08-11 03:39:32'),
(97, '2', '11@11.com', '11', 'pending', '10', '2258877', 'paytm', 'PYrAU2ebAv51f2XRAITK', '', '2020-08-11 11:20:05', '2020-08-22 21:20:17'),
(98, '4', 't.oluwatola@yahoo.com', 'Oluwatola', 'pending', '10', 'qwqwqw', 'paystack', 'RuF7mjLQJJMEAnZczo9O', '', '2020-08-11 15:04:57', '2020-08-12 22:59:43'),
(99, '2', 'ffff@gmail.com', 'fff', 'pending', '10', '2258877', 'paytm', 'WBFzfN73kgSxqg84JLDD', '', '2020-08-11 21:43:24', '2020-08-22 21:20:17'),
(100, '3', 'mdkhussairiee.a@gmail.com', 'Md Khussairiee Ahmad', 'pending', '500', '12345688', 'stripe', 'ZGxXLwmbPm4UJt0FDk6O', '', '2020-08-12 10:02:49', '2020-08-13 02:09:42'),
(101, '2', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '20', '2258877', 'manual_payment', 'zy3MuKI8TlUgqqlWn1IX', '1', '2020-08-12 16:34:28', '2020-08-22 21:20:17'),
(102, '4', 'satrapa@live.nl', 'qwdqwd', 'pending', '20', 'qwqwqw', 'manual_payment', 'mMBIBoKTcvKjpegjtTpr', '', '2020-08-12 22:59:43', '2020-08-12 22:59:43'),
(103, '1', 'roberto.karhagalwa@gmail.com', 'ROBERTO', 'pending', '300', 'Bni', 'paypal', 'HebJbJ83frjLaAQsdAc0', '', '2020-08-13 00:34:22', '2020-08-17 08:36:52'),
(104, '3', 'satrapa@live.nl', 'Kevin', 'pending', '20', '12345688', 'flutterwave', 'BljPsvcRN3Me3p5ttnJ8', '', '2020-08-13 02:09:14', '2020-08-13 02:09:42'),
(105, '3', 'satrapa@live.nl', 'Kevin', 'pending', '20', '12345688', 'manual_payment', 'SruQc60ZBoRYdCbW1NUx', '', '2020-08-13 02:09:42', '2020-08-13 02:09:42'),
(106, '6', 'ffrfff@ededede.vn', 'rfrr', 'pending', '10', NULL, 'paypal', 'ItbwcnrTKw1oMTXl7XRb', '', '2020-08-13 12:36:25', '2020-08-13 12:36:25'),
(107, '6', 'ffrfff@ededede.vn', 'rfrr', 'pending', '10', NULL, 'paypal', 'vY5neRsbgKkNGcdhbg3A', '', '2020-08-13 12:37:11', '2020-08-13 12:37:11'),
(108, '1', 'assdpradeep@gmail.com', 'Pradeep Kumar Gurjar', 'pending', '5', 'Bni', 'paytm', 'lwCRctmUIuY5b26DZiuI', '', '2020-08-13 16:50:44', '2020-08-17 08:36:52'),
(109, '5', 'OSMAN@KOSMAN.COM', 'OSMAN', 'pending', '1000', NULL, 'stripe', 'Y4FKQvcFB2MjOfJ2fc1R', '', '2020-08-13 19:04:56', '2020-08-13 19:04:56'),
(110, '2', 'spooky@spooky.nl', 'spooky', 'complete', '5', '2258877', 'mollie', 'yInMR19vlcT9ZBYMPUh8', '', '2020-08-13 19:23:45', '2020-08-22 21:20:17'),
(111, '1', 'assdpradeep@gmail.com', 'Pradeep Kumar Gurjar', 'pending', '5', 'Bni', 'paytm', 'D7hlxJJEdFTudxeQtAn5', '', '2020-08-14 00:53:12', '2020-08-17 08:36:52'),
(112, '1', 'assdpradeep@gmail.com', 'Pradeep Kumar Gurjar', 'pending', '5', 'Bni', 'paytm', 'n0e88eD8hEWnXrlBaCmj', '', '2020-08-14 00:53:16', '2020-08-17 08:36:52'),
(113, '3', 'dvrobin4@gmail.com', 'Sharifur Rahmam', 'complete', '10', 'pay_FQgyak2xAPuUKP', 'razorpay', 'wl6NV09Le3sUMAB4WhJ0', '', '2020-08-14 19:27:51', '2020-08-14 19:28:17'),
(114, '3', 'dvrobin4@gmail.com', 'Sharifur Rahmam', 'complete', '20', 'txn_1HG4qkEmGOuJLTMsHnVq4kh1', 'stripe', 'd34LaexqpzmnKjw3nsZU', '', '2020-08-14 19:29:35', '2020-08-14 19:29:46'),
(115, '5', 'gyuiop@yahoo.com', 'gtyui', 'pending', '333', NULL, 'paypal', 'ZPX3zPztm5ZYeI374tRR', '', '2020-08-14 19:57:52', '2020-08-14 19:57:52'),
(116, '1', 'official.rptrihegejegjregnegnpathi@outlook.com', 'Qrhqrhfsjet', 'pending', '10', 'Bni', 'paytm', 'DFd20ddDVDDhqmn6pJPP', '', '2020-08-15 14:29:43', '2020-08-17 08:36:52'),
(117, '1', 'ronithst.marys@gmail.com', 'Ms. Nimisha Sharma', 'pending', '5', 'Bni', 'paytm', 'qutTNwmj1kvxOnb0fpaI', '', '2020-08-15 21:50:39', '2020-08-17 08:36:52'),
(118, '12', 'moolvp@gmail.com', 'Ibrahem Abdelwahab', 'pending', '6525', NULL, 'paypal', 'gljGpXqPqUiN83z4XX6w', '', '2020-08-16 01:31:21', '2020-08-16 01:31:21'),
(119, '2', 'testing@testing12345.com', 'Testing Testing Testing', 'pending', '350', '2258877', 'paypal', 'MEBiqzR5ZECrgia8jP2Q', '', '2020-08-16 03:47:56', '2020-08-22 21:20:17'),
(120, '6', 'test@mail.com', 'backend', 'pending', '15', NULL, 'paypal', 'dgeqJweIQ5pkpgbKHvCi', '', '2020-08-16 10:02:51', '2020-08-16 10:02:51'),
(121, '1', 'tara@gmaik.com', 'Tara', 'pending', '20', 'Bni', 'paypal', 'A4xQgt7PUDJiWs9Zy6lS', '', '2020-08-17 06:34:28', '2020-08-17 08:36:52'),
(122, '1', 'employee@example.com', 'Ted', 'pending', '20', 'Bni', 'manual_payment', 'Rjc86qXhxul2U2X8v7Lq', '', '2020-08-17 08:36:52', '2020-08-17 08:36:52'),
(123, '1', 'employee@example.com', 'Ted', 'pending', '20', NULL, 'paypal', 'g9Flc7NpQT7y9Z9ttyAO', '', '2020-08-17 08:37:08', '2020-08-17 08:37:08'),
(124, '2', 'enocmonyancha@gmail.com', 'Enock Monyancha', 'pending', '20', '2258877', 'flutterwave', '031tOF80YNByMnI9g0h4', '', '2020-08-17 14:32:36', '2020-08-22 21:20:17'),
(125, '13', 'scorpionsweda@inbox.ru', 'hussein', 'pending', '20', NULL, 'paypal', 'ra1Cxzuf5VoqT1XtoS2q', '', '2020-08-17 14:53:23', '2020-08-17 14:53:23'),
(126, '3', 'versucks@gmail.com', 'Pratama', 'pending', '15', NULL, 'paytm', 'wrRWCbvjOStBabh1WyhO', '', '2020-08-17 16:18:21', '2020-08-17 16:18:21'),
(127, '6', 'sibosstudios@gmail.com', 'Philip Okpe', 'pending', '20', NULL, 'paystack', 'zSQ3ueBX3MSFvXn3ZZc8', '', '2020-08-17 19:33:28', '2020-08-17 19:33:28'),
(128, '2', 'h60l04ge@gmail.com', 'arshare.space', 'pending', '1850', '2258877', 'paytm', 'HIK2xRLJNpBVRk0IRLrD', '', '2020-08-17 20:36:01', '2020-08-22 21:20:17'),
(129, '1', 'abc@gmail.com', 'Abc', 'pending', '5', NULL, 'paytm', 'IZkZaxmNNX0xqZBUpjmj', '', '2020-08-17 22:08:06', '2020-08-17 22:08:06'),
(130, '3', 'gopilk.pro@gmail.com', 'gopi', 'pending', '10', NULL, 'paytm', 'HQThEBejUFH6tfnxLPYs', '', '2020-08-17 23:26:59', '2020-08-17 23:26:59'),
(131, '2', 'laurenate.co.uk@gmail.com', 'Polo Shirt', 'pending', '10000', '2258877', 'paystack', 'EVCMilRx1Yr6ObvZAdaL', '', '2020-08-18 01:47:55', '2020-08-22 21:20:17'),
(132, '3', 'vishal@chat.com', 'bbb', 'complete', '20', 'pay_FS4VqbpeY8p1e3', 'razorpay', '9LJHkQn4pqIpB1V8BujI', '', '2020-08-18 07:06:48', '2020-08-18 07:08:48'),
(133, '5', 'okay@why.com', 'Okay', 'pending', '10', NULL, 'paystack', 'g2nFlbW3IzzHwpW0jO93', '', '2020-08-18 11:59:06', '2020-08-18 11:59:06'),
(134, '2', 'tttttt@gmail.com', 'tttt', 'pending', '10', '2258877', 'paytm', 'N2XAgcfg57C6CY3qHPOY', '', '2020-08-18 18:42:57', '2020-08-22 21:20:17'),
(135, '1', 'gfhk@hghh.com', 'fff ggg', 'pending', '20', NULL, 'razorpay', 'ktTUKSA9Up80pCL1mwXW', '', '2020-08-18 20:35:04', '2020-08-18 20:35:04'),
(136, '2', 'sitholemu@gmail.com', 'Mlungisi Sithole', 'pending', '20', '2258877', 'paytm', 'CCtOWLBNPkoI0OpBCiZS', '', '2020-08-18 21:18:27', '2020-08-22 21:20:17'),
(137, '1', 'zz@gmail.com', 'deiz', 'pending', '20', NULL, 'paypal', 'dJ9JqwcR5LkFcwb45ecm', '', '2020-08-18 21:52:41', '2020-08-18 21:52:41'),
(138, '6', 'amir_gohary@hotmail.com', 'Amir El-Gohary', 'pending', '1', NULL, 'paypal', '7JXyaf1k57LK24eAxdtS', '', '2020-08-18 21:54:20', '2020-08-18 21:54:20'),
(139, '2', 'kpiyush@gmail.com', 'Piyush Sharma', 'pending', '15', '2258877', 'paytm', 'TnGeaW1g507wCr6d9ssI', '', '2020-08-18 22:00:45', '2020-08-22 21:20:17'),
(140, '6', 'wyfcommunity@gmail.com', 'rONNIE', 'pending', '5', NULL, 'paypal', 'Zywk0Jbdgug7naGGlVit', '', '2020-08-18 23:41:32', '2020-08-18 23:41:32'),
(141, '6', 'dave.dorsett@gmail.com', 'David Dorsett', 'pending', '20', NULL, 'stripe', 'SF4sNrihTtQDnK9pPBFa', '', '2020-08-19 05:08:04', '2020-08-19 05:08:04'),
(142, '1', 'hosea.leonard@yahoo.com', 'Hosea Sanga', 'pending', '5', NULL, 'stripe', '5PEewwqWOwFuBvWZgYpe', '', '2020-08-19 07:05:33', '2020-08-19 07:05:33'),
(143, '1', 'rsathish@live.com', 'sathishg', 'pending', '10', NULL, 'paytm', '7fwKqMViT6Qph47VT4p2', '', '2020-08-19 10:13:26', '2020-08-19 10:13:26'),
(144, '1', 'rish@gmail.com', 'Rish', 'pending', '10', NULL, 'paytm', 'vMcSvUkmsesiDVDCnkHW', '', '2020-08-19 11:18:54', '2020-08-19 11:18:54'),
(145, '1', 'rish@gmail.com', 'Rish', 'pending', '20', NULL, 'stripe', '4yeXX0SeNAnVZa9o9WFh', '', '2020-08-19 11:20:44', '2020-08-19 11:20:44'),
(146, '1', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '20', NULL, 'razorpay', 'w8H8ZWBk8Uo4U4wGJKsx', '1', '2020-08-19 11:33:21', '2020-08-19 11:33:21'),
(147, '2', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '20', '2258877', 'paytm', 'qJT78ZxFjqoiNXPWxSO0', '1', '2020-08-19 17:04:18', '2020-08-22 21:20:17'),
(148, '2', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '20', '2258877', 'manual_payment', 'Ty1WjLMfGAGrp33bnAUW', '1', '2020-08-19 21:47:29', '2020-08-22 21:20:17'),
(149, '2', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '20', '2258877', 'manual_payment', '60oZapCCHLlJBdzX8CpD', '1', '2020-08-19 22:45:25', '2020-08-22 21:20:17'),
(150, '6', 'faizan@test.com', 'zxc', 'pending', '500', NULL, 'paypal', 'rugritHhc3S44rIs0ocO', '', '2020-08-20 11:49:13', '2020-08-20 11:49:13'),
(151, '4', 'zoom@pokemail.net', 'Ahmad Kardi', 'pending', '10', NULL, 'paytm', 'j4KYk5qzDHNkT2r3xKs3', '', '2020-08-20 16:56:32', '2020-08-20 16:56:32'),
(152, '3', 'admin@solvertechug.com', 'Solvertech Branch', 'pending', '10000', NULL, 'mollie', 'caFLn29ZpXtwngwLeebN', '', '2020-08-20 18:35:53', '2020-08-20 18:35:53'),
(153, '5', 'dvrobin4@gmail.com', 'Sharifur Rahman', 'pending', '10', NULL, 'paytm', 'hHmYadARDdgjalDx8RQC', '1', '2020-08-20 19:36:11', '2020-08-20 19:36:11'),
(154, '4', 'gayan.c@icloud.com', 'Gayan Hewage', 'pending', '5', NULL, 'paystack', 'HVusWfGHKxEppSONcuuZ', '', '2020-08-20 19:50:10', '2020-08-20 19:50:10'),
(155, '4', 'gayan.c@icloud.com', 'Gayan Hewage', 'complete', '5', 'txn_1HIG5XEmGOuJLTMsgPrDLZhG', 'stripe', 'HvCbvbhrUiX5OCfmykUY', '', '2020-08-20 19:50:46', '2020-08-20 19:54:04'),
(156, '4', 'clintonjoe3@gmail.com', 'Clinton', 'pending', '200', NULL, 'paystack', 'gHSwmvWgicVKsFiRE731', '', '2020-08-20 23:31:19', '2020-08-20 23:31:19'),
(157, '3', 'adsf@asdf.com', 'asdf', 'pending', '5', NULL, 'paytm', 'N7s2998dh1GRz2wMWnzl', '', '2020-08-21 02:44:11', '2020-08-21 02:44:11'),
(158, '2', 'ingrid.b@mail.com', 'Ingrid Berkoff', 'pending', '15', '2258877', 'flutterwave', 'b0uJxSU4S4VdJ9rkU5YH', '', '2020-08-21 03:42:54', '2020-08-22 21:20:17'),
(159, '1', 'fghfgh@dfg.fgh', 'fghfh', 'pending', '10', NULL, 'paytm', 'WCdnDdguu5cvJ3RsK8qd', '', '2020-08-21 09:39:44', '2020-08-21 09:39:44'),
(160, '9', '4r54@fvr.ccc', 'r4', 'pending', '10', NULL, 'paytm', 'hge0DUKKcJzS2QA5cMyl', '', '2020-08-21 14:31:07', '2020-08-21 14:31:07'),
(161, '1', 'syedsujeel2020@gmail.com', 'Syed sujeel', 'pending', '15', NULL, 'paytm', '7E0QWP3NVzKVKyu6OBCQ', '', '2020-08-22 06:10:43', '2020-08-22 06:10:43'),
(162, '2', 'cryptoghanaboy@gmail.com', 'Osei Akenten Parker Bernard', 'pending', '20', '2258877', 'flutterwave', '77DBENiuaOfwhrqIKsZ6', '', '2020-08-22 13:51:07', '2020-08-22 21:20:17'),
(163, '2', 'cryptoghanaboy@gmail.com', 'Osei Akenten Parker Bernard', 'pending', '5', '2258877', 'paystack', 'Cde6hclOZ4OnZVrdjfHx', '', '2020-08-22 13:52:11', '2020-08-22 21:20:17'),
(164, '2', 'sttechethiopia@gmail.com', 'Afroba', 'pending', '5', '2258877', 'manual_payment', 'v6RD7Ih0HM8SJ0oDFTFB', '', '2020-08-22 21:20:17', '2020-08-22 21:20:17'),
(165, '6', 'oomphmultimedia@gmail.com', 'Elkanah Delalom', 'pending', '25', NULL, 'manual_payment', 'h6afuAmieA8ljGQQXtfE', '', '2020-08-24 02:36:09', '2020-08-24 02:36:09');

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

--
-- Table structure for table `events`
--

CREATE TABLE `events` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` text NOT NULL,
  `content` longtext DEFAULT NULL,
  `category_id` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `date` varchar(191) NOT NULL,
  `time` varchar(191) NOT NULL,
  `cost` varchar(191) NOT NULL,
  `available_tickets` varchar(191) NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `organizer` varchar(191) DEFAULT NULL,
  `organizer_email` varchar(191) DEFAULT NULL,
  `organizer_website` varchar(191) DEFAULT NULL,
  `organizer_phone` varchar(191) DEFAULT NULL,
  `venue` text DEFAULT NULL,
  `slug` text DEFAULT NULL,
  `venue_location` text DEFAULT NULL,
  `venue_phone` text DEFAULT NULL,
  `meta_tags` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `events`
--

INSERT INTO `events` (`id`, `title`, `content`, `category_id`, `status`, `lang`, `date`, `time`, `cost`, `available_tickets`, `image`, `organizer`, `organizer_email`, `organizer_website`, `organizer_phone`, `venue`, `slug`, `venue_location`, `venue_phone`, `meta_tags`, `meta_description`, `created_at`, `updated_at`) VALUES
(14, 'Overseas Education Fair', '<p>Overseas Education Fair - 2020</p><p><br></p><p><br></p><p><br></p><p>For UK, Canada, Germany, Netherlands Malaysia universities admission<br></p><p><br></p><p><br></p><p><br></p>', '4', 'publish', 'en', '2020-11-07', '10 AM To 6 PM', '0', 'Yes', '255', 'Future Track BD', 'info@futuretrackbd.com', 'www.futuretrackbd.com', '01877710120', 'The Peninsula, Chittagong', 'Education Faire', '486/B, CDA Avenue, O.R. Nizam Road, Bulbul Center, Chittagong, 4100', NULL, NULL, NULL, '2020-10-05 01:59:20', '2020-11-02 11:39:37'),
(16, 'Foreign Education Expo 2022', '<p><span style=\"color: rgb(5, 5, 5); font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif;\">Future Track Foreign Education Expo.</span><br style=\"color: rgb(5, 5, 5); font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif;\"><br style=\"color: rgb(5, 5, 5); font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif;\"><span style=\"color: rgb(5, 5, 5); font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif;\">We just had a great event yesterday at our Foreign Education Expo. </span></p><p><span style=\"color: rgb(5, 5, 5); font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif;\">Thanks to all the visitors and our partners from Adventus, Applyboard, Oxford Education, and Navitas.</span><br style=\"color: rgb(5, 5, 5); font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif;\"><br style=\"color: rgb(5, 5, 5); font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif;\"><span style=\"color: rgb(5, 5, 5); font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif;\">We are committed to shape your career abroad with the most comprehensive service for better education and career.</span><br style=\"color: rgb(5, 5, 5); font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif;\"><br style=\"color: rgb(5, 5, 5); font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif;\"><span style=\"color: rgb(5, 5, 5); font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif;\">Feel free to visit our office and call for any information.</span><br></p>', '4', 'publish', 'en', '2022-06-18', '10am - 6pm', 'Free', 'Available', '320', 'Future Track', NULL, NULL, NULL, 'Hotel Sarina', 'Come and meet the official representatives from universities all over the IRELAND, USA, CANADA, UK, Australia, Europe.', 'Hotel Sarina, Banani, Dhaka', NULL, NULL, NULL, '2022-07-05 23:54:52', '2022-07-06 00:09:19'),
(17, 'UK & Ireland Education Fair 2022', '<div dir=\"auto\" style=\"font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif; color: rgb(5, 5, 5); font-size: 15px; white-space: pre-wrap;\">Visit us and grab exciting offers from the top-notch universities of the UK &amp; Ireland.</div><div dir=\"auto\" style=\"font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif; color: rgb(5, 5, 5); font-size: 15px; white-space: pre-wrap;\">Don\'t miss out on your chance to secure your seats and avail exclusive opportunity with Future Track.</div>', '4', 'publish', 'en', '2022-05-27', '11am - 7pm', 'Free', 'Available', '321', 'Future Track', NULL, NULL, NULL, 'Hotel Sarina', 'Come and meet the official representatives from universities all over the UK & Ireland.', 'Hotel Sarina, Banani, Dhaka', NULL, NULL, NULL, '2022-07-06 00:19:46', '2022-07-06 00:19:46'),
(18, '𝐒𝐩𝐨𝐭 𝐀𝐬𝐬𝐞𝐬𝐬𝐦𝐞𝐧𝐭 & 𝐀𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧 𝐃𝐚𝐲', '<div class=\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s\" style=\"margin-top: 0.5em; overflow-wrap: break-word; font-family: &quot;Segoe UI Historic&quot;, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif; animation-name: none !important; transition-property: none !important;\"><p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 12pt; font-family: &quot;Segoe UI Historic&quot;, &quot;sans-serif&quot;; color: rgb(0, 0, 0);\">In this event, you have the chance\r\nto meet university representatives from 50+ universities located in the USA,\r\nCANADA, the UK, and AUSTRALIA.</span></p><p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 12pt; font-family: &quot;Segoe UI Historic&quot;, &quot;sans-serif&quot;; color: rgb(0, 0, 0);\"><br></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 12pt; font-family: &quot;Segoe UI Historic&quot;, &quot;sans-serif&quot;; color: rgb(0, 0, 0);\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 12pt; font-family: &quot;Segoe UI Historic&quot;, &quot;sans-serif&quot;; color: rgb(0, 0, 0);\">With assessment, you can apply\r\ninstantly for your admission and also can achieve a Free IELTS exam voucher\r\nwith a 50,000 BDT Gift Pack**.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\"><span style=\"color: rgb(0, 0, 0);\">&nbsp;</span></p></div>', '4', 'publish', 'en', '2023-05-14', '11.00 AM – 4 PM', '0', 'Available', '416', 'Future Track', NULL, 'futuretrackbd.com', '01842-966387', '𝗙𝘂𝘁𝘂𝗿𝗲 𝗧𝗿𝗮𝗰𝗸 𝗖𝗼𝗿𝗽𝗼𝗿𝗮𝘁𝗲 𝗢𝗳𝗳𝗶𝗰𝗲', '𝐔𝐊 | 𝐔𝐒𝐀 | 𝐂𝐚𝐧𝐚𝐝𝐚 | 𝐀𝐮𝐬𝐭𝐫𝐚𝐥𝐢𝐚', 'Hosna Center (2nd Floor),106 Gulshan Avenue, Dhaka', NULL, NULL, NULL, '2024-01-28 00:27:43', '2024-01-28 00:41:03'),
(19, 'Education Expo 2024 - Pathway to Study Abroad', '<p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"color: rgb(0, 0, 0);\"><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\">𝐖𝐡𝐲</span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\"> </span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\">𝐘𝐨𝐮</span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\"> </span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\">𝐒𝐡𝐨𝐮𝐥𝐝</span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\"> </span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\">𝐉𝐨𝐢𝐧</span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\"> </span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\">𝐅𝐮𝐭𝐮𝐫𝐞</span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\"> </span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\">𝐓𝐫𝐚𝐜𝐤</span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\">-</span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\">𝐏𝐚𝐭𝐡𝐰𝐚𝐲</span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\"> </span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\">𝐭𝐨</span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\"> </span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\">𝐒𝐭𝐮𝐝𝐲</span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\"> </span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;;\">𝐀𝐛𝐫𝐨𝐚𝐝</span><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\"><span style=\"font-family: &quot;Times New Roman&quot;;\"> ?</span><o:p></o:p></span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;; color: rgb(0, 0, 0);\">- FREE IELTS Course.<br>\r\n- Chance to avail 50,000 IELTS Service Pack.<br>\r\n- Free IELTS Exam Voucher<br>\r\n- One-to-one counseling from expert counselors and the admission team.<br>\r\n- Bank Loan Facility and Instant Loan Approval.<br>\r\n- Meet University agents from 100+ universities for Spot Assessments &amp;\r\nInstant Applications.<o:p></o:p></span></p><p>\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\"><span style=\"font-size: 12pt; line-height: 107%; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;; color: rgb(0, 0, 0);\">&nbsp;</span></p>', '4', 'publish', 'en', '2024-01-20', '𝟏𝟏.𝟑𝟎 𝐀𝐌 - 𝟓.𝟎𝟎 𝐏𝐌', 'Free', 'Available', '418', 'Future Track', NULL, 'futuretrackbd.com', '01842-966387', 'Chilis Restaurant', '𝐁𝐢𝐠𝐠𝐞𝐬𝐭 𝐅𝐨𝐫𝐞𝐢𝐠𝐧 𝐄𝐝𝐮𝐜𝐚𝐭𝐢𝐨𝐧 𝐅𝐚𝐢𝐫 𝟐𝟎𝟐𝟒 @ 𝐃𝐡𝐚𝐧𝐦𝐨𝐧𝐝𝐢, 𝐃𝐡𝐚𝐤𝐚', 'Road 32, Dhanmondi, Dhaka', NULL, NULL, NULL, '2024-01-28 00:57:36', '2024-01-28 00:57:36'),
(20, '𝐅𝐮𝐭𝐮𝐫𝐞 𝐓𝐫𝐚𝐜𝐤 𝐅𝐨𝐫𝐞𝐢𝐠𝐧 𝐄𝐝𝐮𝐜𝐚𝐭𝐢𝐨𝐧 𝐄𝐱𝐩𝐨', '<div style=\"color: rgb(32, 33, 36); font-family: Roboto, Arial, sans-serif; font-size: 14.6667px; white-space-collapse: preserve;\">In this event, you have the chance to meet university representatives from 100+ universities located in the USA, CANADA, the UK, and AUSTRALIA.<br><br></div><div style=\"color: rgb(32, 33, 36); font-family: Roboto, Arial, sans-serif; font-size: 14.6667px; white-space-collapse: preserve;\">With assessment, you can apply instantly for your admission and also can achieve a Free IELTS exam voucher with a 50,000 BDT Gift Pack**.</div>', '4', 'publish', 'en', '2024-02-04', '𝟏𝟏.𝟑𝟎 𝐀𝐌 - 𝟓.𝟎𝟎 𝐏𝐌', 'Free', 'Available', '419', 'Future Track', NULL, 'futuretrackbd.com', '01842-966387', 'Hotel Century Park', '𝐔𝐊 | 𝐔𝐒𝐀 | 𝐂𝐚𝐧𝐚𝐝𝐚 | 𝐀𝐮𝐬𝐭𝐫𝐚𝐥𝐢𝐚| 𝐃𝐞𝐧𝐦𝐚𝐫𝐤 | 𝐌𝐚𝐥𝐚𝐲𝐬𝐢𝐚 | 𝐍𝐞𝐭𝐡𝐞𝐫𝐥𝐚𝐧𝐝', 'Rd 117, Gulshan, Dhaka 1212', NULL, NULL, NULL, '2024-01-28 01:16:25', '2024-01-28 01:16:25');

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

--
-- Table structure for table `events_categories`
--

CREATE TABLE `events_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `status` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `events_categories`
--

INSERT INTO `events_categories` (`id`, `title`, `status`, `lang`, `created_at`, `updated_at`) VALUES
(1, 'Celebration', 'publish', 'en', '2020-07-20 05:34:00', '2020-07-20 05:34:00'),
(2, 'Meetup', 'publish', 'en', '2020-07-20 05:34:06', '2020-07-20 05:34:06'),
(3, 'Seminar', 'publish', 'en', '2020-07-20 05:34:12', '2020-07-20 05:34:12'),
(4, 'Events', 'publish', 'en', '2020-11-02 11:38:32', '2020-11-02 11:38:32');

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

--
-- Table structure for table `event_attendances`
--

CREATE TABLE `event_attendances` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'pending',
  `payment_status` varchar(191) NOT NULL DEFAULT 'pending',
  `event_name` varchar(191) DEFAULT NULL,
  `checkout_type` varchar(191) DEFAULT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `event_cost` varchar(191) DEFAULT NULL,
  `event_id` varchar(191) DEFAULT NULL,
  `quantity` varchar(191) DEFAULT NULL,
  `custom_fields` longtext DEFAULT NULL,
  `attachment` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `event_payment_logs`
--

CREATE TABLE `event_payment_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `email` varchar(191) DEFAULT NULL,
  `name` varchar(191) DEFAULT NULL,
  `event_name` varchar(191) DEFAULT NULL,
  `event_cost` varchar(191) DEFAULT NULL,
  `event_gateway` varchar(191) DEFAULT NULL,
  `attendance_id` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `transaction_id` longtext DEFAULT NULL,
  `track` varchar(191) DEFAULT NULL,
  `package_gateway` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `failed_jobs`
--

CREATE TABLE `failed_jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `connection` text NOT NULL,
  `queue` text NOT NULL,
  `payload` longtext NOT NULL,
  `exception` longtext NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `faqs`
--

CREATE TABLE `faqs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` text NOT NULL,
  `status` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `is_open` varchar(191) DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `feedback`
--

CREATE TABLE `feedback` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `email` varchar(191) NOT NULL,
  `ratings` varchar(191) DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `custom_fields` longtext DEFAULT NULL,
  `attachment` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `feedback`
--

INSERT INTO `feedback` (`id`, `name`, `email`, `ratings`, `description`, `custom_fields`, `attachment`, `created_at`, `updated_at`) VALUES
(1, 'Sharifur', 'dvrobin4@gmail.com', '5', 'Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though.', 'a:5:{s:4:\"name\";s:8:\"Sharifur\";s:5:\"email\";s:18:\"dvrobin4@gmail.com\";s:7:\"ratings\";s:1:\"5\";s:11:\"description\";s:127:\"Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though.\";s:20:\"what-service-you-get\";s:13:\"package-order\";}', NULL, '2020-07-20 00:43:21', '2020-07-20 00:43:21'),
(4, 'Kathleen Duncan', 'KathleenHDuncan@dayrep.com', '5', 'Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though.', 'a:5:{s:4:\"name\";s:15:\"Kathleen Duncan\";s:5:\"email\";s:26:\"KathleenHDuncan@dayrep.com\";s:7:\"ratings\";s:1:\"5\";s:11:\"description\";s:127:\"Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though.\";s:20:\"what-service-you-get\";s:13:\"package-order\";}', 'a:0:{}', '2020-07-20 00:47:17', '2020-07-20 00:47:17'),
(5, 'Joseph D. Washington', 'JosephDWashington@armyspy.com', '5', 'Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though.', 'a:5:{s:4:\"name\";s:20:\"Joseph D. Washington\";s:5:\"email\";s:29:\"JosephDWashington@armyspy.com\";s:7:\"ratings\";s:1:\"5\";s:11:\"description\";s:127:\"Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though.\";s:20:\"what-service-you-get\";s:9:\"donations\";}', 'a:0:{}', '2020-07-20 00:47:57', '2020-07-20 00:47:57'),
(7, 'Teresa Lafayette', 'TeresaJLafayette@teleworm.us', '5', 'Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though.', 'a:5:{s:4:\"name\";s:16:\"Teresa Lafayette\";s:5:\"email\";s:28:\"TeresaJLafayette@teleworm.us\";s:7:\"ratings\";s:1:\"5\";s:11:\"description\";s:127:\"Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though.\";s:20:\"what-service-you-get\";s:13:\"event-tickets\";}', 'a:0:{}', '2020-07-20 00:49:03', '2020-07-20 00:49:03'),
(8, 'Nelly Bos', 'NellyJBos@rhyta.com', '5', 'Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though.', 'a:5:{s:4:\"name\";s:9:\"Nelly Bos\";s:5:\"email\";s:19:\"NellyJBos@rhyta.com\";s:7:\"ratings\";s:1:\"5\";s:11:\"description\";s:127:\"Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though.\";s:20:\"what-service-you-get\";s:13:\"event-tickets\";}', 'a:0:{}', '2020-07-20 00:51:00', '2020-07-20 00:51:00'),
(9, 'Jennifer Adams', 'JenniferSAdams@armyspy.com', '5', 'Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though.', 'a:5:{s:4:\"name\";s:14:\"Jennifer Adams\";s:5:\"email\";s:26:\"JenniferSAdams@armyspy.com\";s:7:\"ratings\";s:1:\"5\";s:11:\"description\";s:127:\"Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though.\";s:20:\"what-service-you-get\";s:13:\"event-tickets\";}', 'a:0:{}', '2020-07-20 00:52:46', '2020-07-20 00:52:46');

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

--
-- Table structure for table `header_sliders`
--

CREATE TABLE `header_sliders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` text DEFAULT NULL,
  `subtitle` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  `btn_01_status` varchar(191) DEFAULT NULL,
  `btn_01_text` varchar(191) DEFAULT NULL,
  `btn_01_url` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `video_btn_status` varchar(191) DEFAULT NULL,
  `video_btn_text` varchar(191) DEFAULT NULL,
  `video_btn_url` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `header_sliders`
--

INSERT INTO `header_sliders` (`id`, `title`, `subtitle`, `description`, `btn_01_status`, `btn_01_text`, `btn_01_url`, `lang`, `image`, `video_btn_status`, `video_btn_text`, `video_btn_url`, `created_at`, `updated_at`) VALUES
(1, 'Student Counseling for right University & Course Selection', 'Who we are', NULL, NULL, 'Our Service', 'https://futuretrackbd.com/f/service', 'en', '396', 'on', 'Our Latest Event', 'https://youtu.be/sfu-E9ezErU', '2020-05-30 18:20:26', '2023-11-30 04:33:45'),
(13, 'Student Counseling for right University & Course Selection', 'Who we are', NULL, NULL, 'Our Service', 'https://futuretrackbd.com/f/service', 'en', '13', 'on', 'Our Latest Event', 'https://youtu.be/sfu-E9ezErU', '2023-11-30 05:42:14', '2023-11-30 06:02:18');

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

--
-- Table structure for table `image_galleries`
--

CREATE TABLE `image_galleries` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `image` varchar(191) NOT NULL,
  `title` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `image_galleries`
--

INSERT INTO `image_galleries` (`id`, `image`, `title`, `created_at`, `updated_at`) VALUES
(13, '254', 'Dhaka Event', '2020-11-01 07:06:22', '2020-11-01 07:06:22'),
(14, '250', 'Dhaka Event', '2020-11-01 07:06:50', '2020-11-01 07:06:50'),
(16, '249', 'Dhaka Event', '2020-11-01 07:07:22', '2020-11-01 07:07:22'),
(17, '247', NULL, '2020-11-01 07:08:25', '2020-11-01 07:08:25'),
(18, '245', 'Dhaka Event', '2020-11-01 07:08:51', '2020-11-01 07:08:51'),
(19, '244', 'Dhaka Event', '2020-11-01 07:09:16', '2020-11-01 07:09:16'),
(20, '242', 'Dhaka Event', '2020-11-01 07:09:37', '2020-11-01 07:09:37'),
(21, '241', 'Dhaka Event', '2020-11-01 07:10:07', '2020-11-01 07:10:07'),
(22, '248', NULL, '2020-11-01 07:11:45', '2020-11-01 07:11:45'),
(23, '256', 'Dhaka Event', '2020-11-01 07:22:04', '2020-11-01 07:22:04'),
(25, '304', 'Overseas Education Fair - Hotel Sarina, Dhaka - 23 Oct 2021', '2022-02-13 04:36:25', '2022-02-13 04:36:25'),
(26, '303', 'Overseas Education Fair - Hotel Sarina, Dhaka - 23 Oct 2021', '2022-02-13 04:36:34', '2022-02-13 04:36:34'),
(27, '302', 'Overseas Education Fair - Hotel Sarina, Dhaka - 23 Oct 2021', '2022-02-13 04:36:43', '2022-02-13 04:36:43'),
(28, '301', 'Overseas Education Fair - Hotel Sarina, Dhaka - 23 Oct 2021', '2022-02-13 04:36:56', '2022-02-13 04:36:56'),
(29, '297', 'Overseas Education Fair - Hotel Sarina, Dhaka - 23 Oct 2021', '2022-02-13 04:37:07', '2022-02-13 04:37:07'),
(30, '293', 'Overseas Education Fair - Hotel Sarina, Dhaka - 23 Oct 2021', '2022-02-13 04:37:21', '2022-02-13 04:37:21'),
(31, '295', 'Overseas Education Fair - Hotel Sarina, Dhaka - 23 Oct 2021', '2022-02-13 04:37:30', '2022-02-13 04:37:30'),
(32, '313', 'UK University Admission Day', '2022-02-13 04:40:32', '2022-02-13 04:40:32'),
(33, '311', 'UK University Admission Day', '2022-02-13 04:40:41', '2022-02-13 04:40:41'),
(34, '310', 'UK University Admission Day', '2022-02-13 04:40:50', '2022-02-13 04:40:50'),
(36, '308', 'UK University Admission Day', '2022-02-13 04:41:03', '2022-02-13 04:41:03'),
(37, '307', 'UK University Admission Day', '2022-02-13 04:41:09', '2022-02-13 04:41:09'),
(38, '306', 'UK University Admission Day', '2022-02-13 04:41:16', '2022-02-13 04:41:16'),
(39, '305', 'UK University Admission Day', '2022-02-13 04:41:22', '2022-02-13 04:41:22'),
(40, '325', 'UK & Ireland Education Fair 2022', '2022-07-06 00:23:36', '2022-07-06 00:23:36'),
(41, '322', 'UK & Ireland Education Fair 2022', '2022-07-06 00:23:54', '2022-07-06 00:23:54'),
(43, '323', 'UK & Ireland Education Fair 2022', '2022-07-06 00:24:17', '2022-07-06 00:24:17'),
(44, '324', 'UK & Ireland Education Fair 2022', '2022-07-06 00:24:31', '2022-07-06 00:24:31'),
(45, '326', 'Foreign Education Expo 2022', '2022-07-06 00:27:53', '2022-07-06 00:27:53'),
(46, '335', 'Foreign Education Expo 2022', '2022-07-06 00:47:48', '2022-07-06 00:47:48'),
(48, '333', 'Foreign Education Expo 2022', '2022-07-06 00:48:09', '2022-07-06 00:48:09'),
(49, '331', 'Foreign Education Expo 2022', '2022-07-06 00:48:22', '2022-07-06 00:48:22'),
(50, '330', 'Foreign Education Expo 2022', '2022-07-06 00:48:41', '2022-07-06 00:48:41'),
(51, '329', 'Foreign Education Expo 2022', '2022-07-06 00:48:49', '2022-07-06 00:48:49'),
(52, '327', 'Foreign Education Expo 2022', '2022-07-06 00:48:58', '2022-07-06 00:48:58');

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

--
-- Table structure for table `jobs`
--

CREATE TABLE `jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` text NOT NULL,
  `position` varchar(191) NOT NULL,
  `company_name` varchar(191) NOT NULL,
  `category_id` varchar(191) DEFAULT NULL,
  `vacancy` varchar(191) DEFAULT NULL,
  `job_responsibility` longtext DEFAULT NULL,
  `employment_status` text DEFAULT NULL,
  `education_requirement` longtext DEFAULT NULL,
  `job_context` longtext DEFAULT NULL,
  `experience_requirement` longtext DEFAULT NULL,
  `additional_requirement` longtext DEFAULT NULL,
  `job_location` text DEFAULT NULL,
  `salary` text DEFAULT NULL,
  `other_benefits` varchar(191) DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `deadline` varchar(191) DEFAULT NULL,
  `meta_tags` text DEFAULT NULL,
  `slug` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `jobs`
--

INSERT INTO `jobs` (`id`, `title`, `position`, `company_name`, `category_id`, `vacancy`, `job_responsibility`, `employment_status`, `education_requirement`, `job_context`, `experience_requirement`, `additional_requirement`, `job_location`, `salary`, `other_benefits`, `email`, `status`, `lang`, `deadline`, `meta_tags`, `slug`, `meta_description`, `created_at`, `updated_at`) VALUES
(2, 'Senior Laravel Developer', 'Junior Developer', 'Futuretec BD', '2', '6', 'We are looking for some experienced developers with fluency in WordPress who will be able to develop code for complex, data intensive Website and e-commerce application.', 'full_time', 'Preferably B.Sc. in Computer Science or similar discipline.', 'We`re building tomorrow`s platforms for consolidating and managing Enterprise data with process optimization. Most enterprises are adopting automation whether it`s about office or industry. The flexibility to automate the processes, without compromising security and compliance, will be one of the most challenging, yet key requirements in coming days. This is where SoftoPark comes into the picture.\r\nWe`re looking for someone with a portfolio that showcases relevant, high quality web development work. You`ll have strong mathematical and problem-solving capabilities, an eye for detail, and a desire to produce high quality, clean and efficient code.', 'At least 5 year(s)', 'Both males and females are allowed to apply\r\nMust have clear concept on OOP\r\nProven work experience in developing large scale enterprise WordPress applications\r\nMust have experience on complex plugin, widget, theme development\r\nMust have knowledge on upgradation policy, performance, security of WordPress\r\nExperience in MySQL, jQuery, and at least one PHP-based MVC framework is required\r\nExperience in one or more PHP-based content management systems Magento or any other eCommerce is a plus point\r\nExperience in different kind of service and gateway integration will be highly regarded\r\nExperience in version control (git, svn etc) is expected\r\nShould be team player, self-motivated and take responsibility proactively', 'Bangkok, Thailand', 'Negotiable', '2 annual performance bonuses\r\nHealth and life insurance\r\nBreakfast, Lunch, Snacks\r\n2 days of weekend and annual paid leaves\r\nPublic holidays\r\nPicnic/Tour\r\nTransport', NULL, 'draft', 'en', '2020-08-13', NULL, 'senior-laravel-developer', NULL, '2020-07-20 09:22:07', '2020-10-20 11:50:46');

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

--
-- Table structure for table `jobs_categories`
--

CREATE TABLE `jobs_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `status` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `jobs_categories`
--

INSERT INTO `jobs_categories` (`id`, `title`, `status`, `lang`, `created_at`, `updated_at`) VALUES
(1, 'Office Management', 'publish', 'en', '2020-07-20 08:41:57', '2020-07-20 08:41:57'),
(2, 'Software Engineer', 'publish', 'en', '2020-07-20 08:42:11', '2020-07-20 08:42:11'),
(3, 'UI/ UX  Designer', 'publish', 'en', '2020-07-20 08:42:18', '2020-07-20 08:42:18');

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

--
-- Table structure for table `job_applicants`
--

CREATE TABLE `job_applicants` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `jobs_id` int(10) UNSIGNED NOT NULL,
  `form_content` longtext DEFAULT NULL,
  `attachment` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `job_applicants`
--

INSERT INTO `job_applicants` (`id`, `jobs_id`, `form_content`, `attachment`, `created_at`, `updated_at`) VALUES
(1, 1, 'a:4:{s:9:\"your-name\";s:15:\"Sharifur Rahmam\";s:10:\"your-email\";s:18:\"dvrobin4@gmail.com\";s:20:\"your-expected-salary\";s:7:\"1212532\";s:20:\"your-additional-info\";s:17:\"aaddsafsadfdsfdaf\";}', 'a:1:{s:7:\"your-cv\";s:58:\"assets/uploads/attachment/applicant-attachment-your-cv.pdf\";}', '2020-07-20 09:19:58', '2020-07-20 09:19:58'),
(2, 4, 'a:5:{s:13:\"captcha_token\";N;s:9:\"your-name\";s:7:\"testman\";s:10:\"your-email\";s:15:\"satrapa@live.nl\";s:20:\"your-expected-salary\";s:7:\"1000000\";s:20:\"your-additional-info\";s:10:\"dfbfdsbfdb\";}', 'a:1:{s:7:\"your-cv\";s:58:\"assets/uploads/attachment/applicant-attachment-your-cv.txt\";}', '2020-08-09 20:59:34', '2020-08-09 20:59:34'),
(3, 4, 'a:5:{s:13:\"captcha_token\";N;s:9:\"your-name\";s:7:\"stewart\";s:10:\"your-email\";s:15:\"admin@gmail.com\";s:20:\"your-expected-salary\";s:5:\"20000\";s:20:\"your-additional-info\";s:12:\"yunhiojhj8iu\";}', 'a:1:{s:7:\"your-cv\";s:58:\"assets/uploads/attachment/applicant-attachment-your-cv.pdf\";}', '2020-08-20 13:08:55', '2020-08-20 13:08:55'),
(4, 4, 'a:5:{s:13:\"captcha_token\";N;s:9:\"your-name\";s:7:\"gfcghxd\";s:10:\"your-email\";s:17:\"sarty2k@gmail.com\";s:20:\"your-expected-salary\";s:5:\"20000\";s:20:\"your-additional-info\";s:9:\"zsfdf\\azd\";}', 'a:1:{s:7:\"your-cv\";s:58:\"assets/uploads/attachment/applicant-attachment-your-cv.txt\";}', '2020-08-23 05:19:02', '2020-08-23 05:19:02'),
(5, 4, 'a:5:{s:13:\"captcha_token\";N;s:9:\"your-name\";s:4:\"test\";s:10:\"your-email\";s:15:\"fdfdf@gmail.com\";s:20:\"your-expected-salary\";s:6:\"dsdsds\";s:20:\"your-additional-info\";s:6:\"sdsdsd\";}', 'a:1:{s:7:\"your-cv\";s:58:\"assets/uploads/attachment/applicant-attachment-your-cv.txt\";}', '2020-08-23 17:08:33', '2020-08-23 17:08:33');

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

--
-- Table structure for table `key_features`
--

CREATE TABLE `key_features` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `icon` varchar(191) NOT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `key_features`
--

INSERT INTO `key_features` (`id`, `title`, `icon`, `lang`, `created_at`, `updated_at`) VALUES
(40, 'Free Counselling', 'flaticon-verified', 'en', '2020-10-25 08:46:08', '2020-10-25 08:46:08'),
(41, 'University Admission', 'fas fa-university', 'en', '2020-10-25 08:47:07', '2020-10-25 08:47:07'),
(42, 'Visa Application', 'fas fa-globe-americas', 'en', '2020-10-25 08:47:21', '2020-11-04 07:45:04'),
(43, 'Scholarship Arrangement', 'fas fa-funnel-dollar', 'en', '2020-10-25 08:48:03', '2020-10-25 08:48:03');

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

--
-- Table structure for table `knowledgebases`
--

CREATE TABLE `knowledgebases` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` text NOT NULL,
  `content` longtext DEFAULT NULL,
  `topic_id` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `slug` varchar(191) DEFAULT NULL,
  `views` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `meta_tags` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `knowledgebases`
--

INSERT INTO `knowledgebases` (`id`, `title`, `content`, `topic_id`, `status`, `slug`, `views`, `lang`, `meta_description`, `meta_tags`, `created_at`, `updated_at`) VALUES
(1, 'For him precaution any advantages dissimilar comparison', '<p>Paid was hill sir high. For him precaution any advantages dissimilar comparison few terminated projecting. Prevailed discovery immediate objection of ye at. Repair summer one winter living feebly pretty his. In so sense am known these since. Shortly respect ask cousins brought add tedious nay. Expect relied do we genius is. On as around spirit of hearts genius. Is raptures daughter branched laughter peculiar in settling.&nbsp;</p><p><br></p><p>By so delight of showing neither believe he present. Deal sigh up in shew away when. Pursuit express no or prepare replied. Wholly formed old latter future but way she. Day her likewise smallest expenses judgment building man carriage gay. Considered introduced themselves mr to discretion at. Means among saw hopes for. Death mirth in oh learn he equal on.&nbsp;</p><p><br></p><p>Windows talking painted pasture yet its express parties use. Sure last upon he same as knew next. Of believed or diverted no rejoiced. End friendship sufficient assistance can prosperous met. As game he show it park do. Was has unknown few certain ten promise. No finished my an likewise cheerful packages we. For assurance concluded son something depending discourse see led collected. Packages oh no denoting my advanced humoured. Pressed be so thought natural.&nbsp;</p><p><br></p><p>Possession her thoroughly remarkably terminated man continuing. Removed greater to do ability. You shy shall while but wrote marry. Call why sake has sing pure. Gay six set polite nature worthy. So matter be me we wisdom should basket moment merely. Me burst ample wrong which would mr he could. Visit arise my point timed drawn no. Can friendly laughter goodness man him appetite carriage. Any widen see gay forth alone fruit bed.&nbsp;</p><p><br></p><p>Certain but she but shyness why cottage. Gay the put instrument sir entreaties affronting. Pretended exquisite see cordially the you. Weeks quiet do vexed or whose. Motionless if no to affronting imprudence no precaution. My indulged as disposal strongly attended. Parlors men express had private village man. Discovery moonlight recommend all one not. Indulged to answered prospect it bachelor is he bringing shutters. Pronounce forfeited mr direction oh he dashwoods ye unwilling.&nbsp;</p><p><br></p><p>Spot of come to ever hand as lady meet on. Delicate contempt received two yet advanced. Gentleman as belonging he commanded believing dejection in by. On no am winding chicken so behaved. Its preserved sex enjoyment new way behaviour. Him yet devonshire celebrated especially. Unfeeling one provision are smallness resembled repulsive.&nbsp;</p><div><br></div>', '1', 'publish', 'for-him-precaution-any-advantages-dissimilar-comparison', '54', 'en', NULL, NULL, '2020-07-20 03:42:32', '2020-08-24 19:14:29'),
(5, 'Prevailed discovery immediate objection of ye at', '<p>Paid was hill sir high. For him precaution any advantages dissimilar comparison few terminated projecting. Prevailed discovery immediate objection of ye at. Repair summer one winter living feebly pretty his. In so sense am known these since. Shortly respect ask cousins brought add tedious nay. Expect relied do we genius is. On as around spirit of hearts genius. Is raptures daughter branched laughter peculiar in settling.&nbsp;</p><p><br></p><p>By so delight of showing neither believe he present. Deal sigh up in shew away when. Pursuit express no or prepare replied. Wholly formed old latter future but way she. Day her likewise smallest expenses judgment building man carriage gay. Considered introduced themselves mr to discretion at. Means among saw hopes for. Death mirth in oh learn he equal on.&nbsp;</p><p><br></p><p>Windows talking painted pasture yet its express parties use. Sure last upon he same as knew next. Of believed or diverted no rejoiced. End friendship sufficient assistance can prosperous met. As game he show it park do. Was has unknown few certain ten promise. No finished my an likewise cheerful packages we. For assurance concluded son something depending discourse see led collected. Packages oh no denoting my advanced humoured. Pressed be so thought natural.&nbsp;</p><p><br></p><p>Possession her thoroughly remarkably terminated man continuing. Removed greater to do ability. You shy shall while but wrote marry. Call why sake has sing pure. Gay six set polite nature worthy. So matter be me we wisdom should basket moment merely. Me burst ample wrong which would mr he could. Visit arise my point timed drawn no. Can friendly laughter goodness man him appetite carriage. Any widen see gay forth alone fruit bed.&nbsp;</p><p><br></p><p>Certain but she but shyness why cottage. Gay the put instrument sir entreaties affronting. Pretended exquisite see cordially the you. Weeks quiet do vexed or whose. Motionless if no to affronting imprudence no precaution. My indulged as disposal strongly attended. Parlors men express had private village man. Discovery moonlight recommend all one not. Indulged to answered prospect it bachelor is he bringing shutters. Pronounce forfeited mr direction oh he dashwoods ye unwilling.&nbsp;</p><p><br></p><p>Spot of come to ever hand as lady meet on. Delicate contempt received two yet advanced. Gentleman as belonging he commanded believing dejection in by. On no am winding chicken so behaved. Its preserved sex enjoyment new way behaviour. Him yet devonshire celebrated especially. Unfeeling one provision are smallness resembled repulsive.&nbsp;</p><div><br></div>', '1', 'publish', 'prevailed-discovery-immediate-objection-of-ye-at', '20', 'en', NULL, NULL, '2020-07-20 03:47:54', '2020-08-23 21:11:58'),
(6, 'Repair summer one winter living feebly pretty his', '<p>Paid was hill sir high. For him precaution any advantages dissimilar comparison few terminated projecting. Prevailed discovery immediate objection of ye at. Repair summer one winter living feebly pretty his. In so sense am known these since. Shortly respect ask cousins brought add tedious nay. Expect relied do we genius is. On as around spirit of hearts genius. Is raptures daughter branched laughter peculiar in settling.&nbsp;</p><p><br></p><p>By so delight of showing neither believe he present. Deal sigh up in shew away when. Pursuit express no or prepare replied. Wholly formed old latter future but way she. Day her likewise smallest expenses judgment building man carriage gay. Considered introduced themselves mr to discretion at. Means among saw hopes for. Death mirth in oh learn he equal on.&nbsp;</p><p><br></p><p>Windows talking painted pasture yet its express parties use. Sure last upon he same as knew next. Of believed or diverted no rejoiced. End friendship sufficient assistance can prosperous met. As game he show it park do. Was has unknown few certain ten promise. No finished my an likewise cheerful packages we. For assurance concluded son something depending discourse see led collected. Packages oh no denoting my advanced humoured. Pressed be so thought natural.&nbsp;</p><p><br></p><p>Possession her thoroughly remarkably terminated man continuing. Removed greater to do ability. You shy shall while but wrote marry. Call why sake has sing pure. Gay six set polite nature worthy. So matter be me we wisdom should basket moment merely. Me burst ample wrong which would mr he could. Visit arise my point timed drawn no. Can friendly laughter goodness man him appetite carriage. Any widen see gay forth alone fruit bed.&nbsp;</p><p><br></p><p>Certain but she but shyness why cottage. Gay the put instrument sir entreaties affronting. Pretended exquisite see cordially the you. Weeks quiet do vexed or whose. Motionless if no to affronting imprudence no precaution. My indulged as disposal strongly attended. Parlors men express had private village man. Discovery moonlight recommend all one not. Indulged to answered prospect it bachelor is he bringing shutters. Pronounce forfeited mr direction oh he dashwoods ye unwilling.&nbsp;</p><p><br></p><p>Spot of come to ever hand as lady meet on. Delicate contempt received two yet advanced. Gentleman as belonging he commanded believing dejection in by. On no am winding chicken so behaved. Its preserved sex enjoyment new way behaviour. Him yet devonshire celebrated especially. Unfeeling one provision are smallness resembled repulsive.&nbsp;</p><div><br></div>', '2', 'publish', 'repair-summer-one-winter-living-feebly-pretty-his', '54', 'en', NULL, NULL, '2020-07-20 03:52:43', '2020-08-24 15:50:06'),
(7, 'Was has unknown few certain ten promise', '<p>Paid was hill sir high. For him precaution any advantages dissimilar comparison few terminated projecting. Prevailed discovery immediate objection of ye at. Repair summer one winter living feebly pretty his. In so sense am known these since. Shortly respect ask cousins brought add tedious nay. Expect relied do we genius is. On as around spirit of hearts genius. Is raptures daughter branched laughter peculiar in settling.&nbsp;</p><p><br></p><p>By so delight of showing neither believe he present. Deal sigh up in shew away when. Pursuit express no or prepare replied. Wholly formed old latter future but way she. Day her likewise smallest expenses judgment building man carriage gay. Considered introduced themselves mr to discretion at. Means among saw hopes for. Death mirth in oh learn he equal on.&nbsp;</p><p><br></p><p>Windows talking painted pasture yet its express parties use. Sure last upon he same as knew next. Of believed or diverted no rejoiced. End friendship sufficient assistance can prosperous met. As game he show it park do. Was has unknown few certain ten promise. No finished my an likewise cheerful packages we. For assurance concluded son something depending discourse see led collected. Packages oh no denoting my advanced humoured. Pressed be so thought natural.&nbsp;</p><p><br></p><p>Possession her thoroughly remarkably terminated man continuing. Removed greater to do ability. You shy shall while but wrote marry. Call why sake has sing pure. Gay six set polite nature worthy. So matter be me we wisdom should basket moment merely. Me burst ample wrong which would mr he could. Visit arise my point timed drawn no. Can friendly laughter goodness man him appetite carriage. Any widen see gay forth alone fruit bed.&nbsp;</p><p><br></p><p>Certain but she but shyness why cottage. Gay the put instrument sir entreaties affronting. Pretended exquisite see cordially the you. Weeks quiet do vexed or whose. Motionless if no to affronting imprudence no precaution. My indulged as disposal strongly attended. Parlors men express had private village man. Discovery moonlight recommend all one not. Indulged to answered prospect it bachelor is he bringing shutters. Pronounce forfeited mr direction oh he dashwoods ye unwilling.&nbsp;</p><p><br></p><p>Spot of come to ever hand as lady meet on. Delicate contempt received two yet advanced. Gentleman as belonging he commanded believing dejection in by. On no am winding chicken so behaved. Its preserved sex enjoyment new way behaviour. Him yet devonshire celebrated especially. Unfeeling one provision are smallness resembled repulsive.&nbsp;</p><div><br></div>', '3', 'publish', 'was-has-unknown-few-certain-ten-promise', '24', 'en', NULL, NULL, '2020-07-20 03:52:46', '2020-08-24 17:18:35'),
(8, 'Shortly respect ask cousins brought add tedious nay', '<p>Paid was hill sir high. For him precaution any advantages dissimilar comparison few terminated projecting. Prevailed discovery immediate objection of ye at. Repair summer one winter living feebly pretty his. In so sense am known these since. Shortly respect ask cousins brought add tedious nay. Expect relied do we genius is. On as around spirit of hearts genius. Is raptures daughter branched laughter peculiar in settling.&nbsp;</p><p><br></p><p>By so delight of showing neither believe he present. Deal sigh up in shew away when. Pursuit express no or prepare replied. Wholly formed old latter future but way she. Day her likewise smallest expenses judgment building man carriage gay. Considered introduced themselves mr to discretion at. Means among saw hopes for. Death mirth in oh learn he equal on.&nbsp;</p><p><br></p><p>Windows talking painted pasture yet its express parties use. Sure last upon he same as knew next. Of believed or diverted no rejoiced. End friendship sufficient assistance can prosperous met. As game he show it park do. Was has unknown few certain ten promise. No finished my an likewise cheerful packages we. For assurance concluded son something depending discourse see led collected. Packages oh no denoting my advanced humoured. Pressed be so thought natural.&nbsp;</p><p><br></p><p>Possession her thoroughly remarkably terminated man continuing. Removed greater to do ability. You shy shall while but wrote marry. Call why sake has sing pure. Gay six set polite nature worthy. So matter be me we wisdom should basket moment merely. Me burst ample wrong which would mr he could. Visit arise my point timed drawn no. Can friendly laughter goodness man him appetite carriage. Any widen see gay forth alone fruit bed.&nbsp;</p><p><br></p><p>Certain but she but shyness why cottage. Gay the put instrument sir entreaties affronting. Pretended exquisite see cordially the you. Weeks quiet do vexed or whose. Motionless if no to affronting imprudence no precaution. My indulged as disposal strongly attended. Parlors men express had private village man. Discovery moonlight recommend all one not. Indulged to answered prospect it bachelor is he bringing shutters. Pronounce forfeited mr direction oh he dashwoods ye unwilling.&nbsp;</p><p><br></p><p>Spot of come to ever hand as lady meet on. Delicate contempt received two yet advanced. Gentleman as belonging he commanded believing dejection in by. On no am winding chicken so behaved. Its preserved sex enjoyment new way behaviour. Him yet devonshire celebrated especially. Unfeeling one provision are smallness resembled repulsive.&nbsp;</p><div><br></div>', '2', 'publish', 'shortly-respect-ask-cousins-brought-add-tedious-nay', '31', 'en', NULL, NULL, '2020-07-20 03:52:49', '2020-08-24 17:38:49'),
(9, 'On as around spirit of hearts genius', '<p>Paid was hill sir high. For him precaution any advantages dissimilar comparison few terminated projecting. Prevailed discovery immediate objection of ye at. Repair summer one winter living feebly pretty his. In so sense am known these since. Shortly respect ask cousins brought add tedious nay. Expect relied do we genius is. On as around spirit of hearts genius. Is raptures daughter branched laughter peculiar in settling.&nbsp;</p><p><br></p><p>By so delight of showing neither believe he present. Deal sigh up in shew away when. Pursuit express no or prepare replied. Wholly formed old latter future but way she. Day her likewise smallest expenses judgment building man carriage gay. Considered introduced themselves mr to discretion at. Means among saw hopes for. Death mirth in oh learn he equal on.&nbsp;</p><p><br></p><p>Windows talking painted pasture yet its express parties use. Sure last upon he same as knew next. Of believed or diverted no rejoiced. End friendship sufficient assistance can prosperous met. As game he show it park do. Was has unknown few certain ten promise. No finished my an likewise cheerful packages we. For assurance concluded son something depending discourse see led collected. Packages oh no denoting my advanced humoured. Pressed be so thought natural.&nbsp;</p><p><br></p><p>Possession her thoroughly remarkably terminated man continuing. Removed greater to do ability. You shy shall while but wrote marry. Call why sake has sing pure. Gay six set polite nature worthy. So matter be me we wisdom should basket moment merely. Me burst ample wrong which would mr he could. Visit arise my point timed drawn no. Can friendly laughter goodness man him appetite carriage. Any widen see gay forth alone fruit bed.&nbsp;</p><p><br></p><p>Certain but she but shyness why cottage. Gay the put instrument sir entreaties affronting. Pretended exquisite see cordially the you. Weeks quiet do vexed or whose. Motionless if no to affronting imprudence no precaution. My indulged as disposal strongly attended. Parlors men express had private village man. Discovery moonlight recommend all one not. Indulged to answered prospect it bachelor is he bringing shutters. Pronounce forfeited mr direction oh he dashwoods ye unwilling.&nbsp;</p><p><br></p><p>Spot of come to ever hand as lady meet on. Delicate contempt received two yet advanced. Gentleman as belonging he commanded believing dejection in by. On no am winding chicken so behaved. Its preserved sex enjoyment new way behaviour. Him yet devonshire celebrated especially. Unfeeling one provision are smallness resembled repulsive.&nbsp;</p><div><br></div>', '3', 'publish', 'on-as-around-spirit-of-hearts-genius', '15', 'en', NULL, NULL, '2020-07-20 03:52:52', '2020-08-23 21:12:09'),
(10, 'By so delight of showing neither believe he present', '<p><iframe frameborder=\"0\" src=\"//www.youtube.com/embed/k26DOtwPN7s\" width=\"640\" height=\"360\" class=\"note-video-clip\"></iframe></p><p><br></p><p>Paid was hill sir high. For him precaution any advantages dissimilar comparison few terminated projecting. Prevailed discovery immediate objection of ye at. Repair summer one winter living feebly pretty his. In so sense am known these since. Shortly respect ask cousins brought add tedious nay. Expect relied do we genius is. On as around spirit of hearts genius. Is raptures daughter branched laughter peculiar in settling.&nbsp;</p><p><br></p><p>By so delight of showing neither believe he present. Deal sigh up in shew away when. Pursuit express no or prepare replied. Wholly formed old latter future but way she. Day her likewise smallest expenses judgment building man carriage gay. Considered introduced themselves mr to discretion at. Means among saw hopes for. Death mirth in oh learn he equal on.&nbsp;</p><p><br></p><p>Windows talking painted pasture yet its express parties use. Sure last upon he same as knew next. Of believed or diverted no rejoiced. End friendship sufficient assistance can prosperous met. As game he show it park do. Was has unknown few certain ten promise. No finished my an likewise cheerful packages we. For assurance concluded son something depending discourse see led collected. Packages oh no denoting my advanced humoured. Pressed be so thought natural.&nbsp;</p><p><br></p><p>Possession her thoroughly remarkably terminated man continuing. Removed greater to do ability. You shy shall while but wrote marry. Call why sake has sing pure. Gay six set polite nature worthy. So matter be me we wisdom should basket moment merely. Me burst ample wrong which would mr he could. Visit arise my point timed drawn no. Can friendly laughter goodness man him appetite carriage. Any widen see gay forth alone fruit bed.&nbsp;</p><p><br></p><p>Certain but she but shyness why cottage. Gay the put instrument sir entreaties affronting. Pretended exquisite see cordially the you. Weeks quiet do vexed or whose. Motionless if no to affronting imprudence no precaution. My indulged as disposal strongly attended. Parlors men express had private village man. Discovery moonlight recommend all one not. Indulged to answered prospect it bachelor is he bringing shutters. Pronounce forfeited mr direction oh he dashwoods ye unwilling.&nbsp;</p><p><br></p><p>Spot of come to ever hand as lady meet on. Delicate contempt received two yet advanced. Gentleman as belonging he commanded believing dejection in by. On no am winding chicken so behaved. Its preserved sex enjoyment new way behaviour. Him yet devonshire celebrated especially. Unfeeling one provision are smallness resembled repulsive.&nbsp;</p><div><br></div>', '4', 'publish', 'by-so-delight-of-showing-neither-believe-he-present', '24', 'en', NULL, NULL, '2020-07-20 03:52:55', '2020-08-23 21:12:13'),
(11, 'Delicate contempt received two yet advanced', '<p><img src=\"http://localhost:8888/nexelit/assets/uploads/media-uploader/151590862780.jpg\" style=\"width: 1162px;\"></p><p><br></p><p>Paid was hill sir high. For him precaution any advantages dissimilar comparison few terminated projecting. Prevailed discovery immediate objection of ye at. Repair summer one winter living feebly pretty his. In so sense am known these since. Shortly respect ask cousins brought add tedious nay. Expect relied do we genius is. On as around spirit of hearts genius. Is raptures daughter branched laughter peculiar in settling.&nbsp;</p><p><br></p><p>By so delight of showing neither believe he present. Deal sigh up in shew away when. Pursuit express no or prepare replied. Wholly formed old latter future but way she. Day her likewise smallest expenses judgment building man carriage gay. Considered introduced themselves mr to discretion at. Means among saw hopes for. Death mirth in oh learn he equal on.&nbsp;</p><p><br></p><p>Windows talking painted pasture yet its express parties use. Sure last upon he same as knew next. Of believed or diverted no rejoiced. End friendship sufficient assistance can prosperous met. As game he show it park do. Was has unknown few certain ten promise. No finished my an likewise cheerful packages we. For assurance concluded son something depending discourse see led collected. Packages oh no denoting my advanced humoured. Pressed be so thought natural.&nbsp;</p><p><br></p><p>Possession her thoroughly remarkably terminated man continuing. Removed greater to do ability. You shy shall while but wrote marry. Call why sake has sing pure. Gay six set polite nature worthy. So matter be me we wisdom should basket moment merely. Me burst ample wrong which would mr he could. Visit arise my point timed drawn no. Can friendly laughter goodness man him appetite carriage. Any widen see gay forth alone fruit bed.&nbsp;</p><p><br></p><p>Certain but she but shyness why cottage. Gay the put instrument sir entreaties affronting. Pretended exquisite see cordially the you. Weeks quiet do vexed or whose. Motionless if no to affronting imprudence no precaution. My indulged as disposal strongly attended. Parlors men express had private village man. Discovery moonlight recommend all one not. Indulged to answered prospect it bachelor is he bringing shutters. Pronounce forfeited mr direction oh he dashwoods ye unwilling.&nbsp;</p><p><br></p><p>Spot of come to ever hand as lady meet on. Delicate contempt received two yet advanced. Gentleman as belonging he commanded believing dejection in by. On no am winding chicken so behaved. Its preserved sex enjoyment new way behaviour. Him yet devonshire celebrated especially. Unfeeling one provision are smallness resembled repulsive.&nbsp;</p><div><br></div>', '4', 'publish', 'delicate-contempt-received-two-yet-advanced', '33', 'en', NULL, NULL, '2020-07-20 03:53:02', '2020-08-24 15:45:47');

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

--
-- Table structure for table `knowledgebase_topics`
--

CREATE TABLE `knowledgebase_topics` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` text NOT NULL,
  `status` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `knowledgebase_topics`
--

INSERT INTO `knowledgebase_topics` (`id`, `title`, `status`, `lang`, `created_at`, `updated_at`) VALUES
(1, 'Digital Market', 'publish', 'en', '2020-07-20 01:30:17', '2020-07-20 01:30:17'),
(2, 'Web Development', 'publish', 'en', '2020-07-20 01:30:32', '2020-07-20 01:30:32'),
(3, 'Multipurpose CMS', 'publish', 'en', '2020-07-20 01:30:51', '2020-07-20 01:30:51'),
(4, 'Laravel Scripts', 'publish', 'en', '2020-07-20 01:31:01', '2020-07-20 01:31:01');

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

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

CREATE TABLE `languages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `slug` varchar(191) NOT NULL,
  `direction` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `default` int(10) UNSIGNED DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `languages` (`id`, `name`, `slug`, `direction`, `status`, `default`, `created_at`, `updated_at`) VALUES
(1, 'English', 'en', 'ltr', 'publish', 1, '2020-05-11 00:00:00', '2020-08-24 17:38:52');

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

--
-- Table structure for table `media_uploads`
--

CREATE TABLE `media_uploads` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` text NOT NULL,
  `path` text NOT NULL,
  `alt` text DEFAULT NULL,
  `size` text DEFAULT NULL,
  `dimensions` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `media_uploads`
--

INSERT INTO `media_uploads` (`id`, `title`, `path`, `alt`, `size`, `dimensions`, `created_at`, `updated_at`) VALUES
(1, '3411109.jpg', '34111091589555564.jpg', NULL, '217.2 KB', '2000 x 2000 pixels', '2020-05-15 15:12:45', '2020-05-15 15:12:45'),
(2, 'favicon.ico', 'favicon1589562810.ico', NULL, '95.58 KB', '1102 x 1011 pixels', '2020-05-15 17:13:30', '2020-05-15 17:13:30'),
(3, '01.png', '011589562979.png', NULL, '580.21 KB', '1920 x 939 pixels', '2020-05-15 17:16:19', '2020-05-15 17:16:19'),
(4, 'black_logo.png', 'black-logo1589563336.png', NULL, '2.01 KB', '113 x 27 pixels', '2020-05-15 17:22:16', '2020-05-15 17:22:16'),
(5, 'white_logo.png', 'white-logo1589563336.png', NULL, '1.86 KB', '113 x 27 pixels', '2020-05-15 17:22:16', '2020-05-15 17:22:16'),
(6, 'screenshot.png', 'screenshot1589571708.png', NULL, '53.14 KB', '1200 x 900 pixels', '2020-05-15 19:41:48', '2020-05-15 19:41:48'),
(7, '99094636_709951783091958_2020018729575776256_n.png', '99094636-709951783091958-2020018729575776256-n1590860562.png', NULL, '324.9 KB', '1671 x 1671 pixels', '2020-05-30 17:42:46', '2020-05-30 17:42:46'),
(8, '94563393_1989826951151091_6089694100179648512_o.jpg', '94563393-1989826951151091-6089694100179648512-o1590860813.jpg', NULL, '385.3 KB', '1238 x 1688 pixels', '2020-05-30 17:46:54', '2020-05-30 17:46:54'),
(9, '94563393_1989826951151091_6089694100179648512_o.jpg', '94563393-1989826951151091-6089694100179648512-o1590861357.jpg', NULL, '385.3 KB', '1238 x 1688 pixels', '2020-05-30 17:55:58', '2020-05-30 17:55:58'),
(10, '01.jpg', '011590862766.jpg', NULL, '1.36 MB', '1920 x 1280 pixels', '2020-05-30 18:19:27', '2020-05-30 18:19:27'),
(11, '02.jpg', '021590862766.jpg', NULL, '1.43 MB', '1920 x 1280 pixels', '2020-05-30 18:19:28', '2020-05-30 18:19:28'),
(12, '03.jpg', '031590862768.jpg', NULL, '1.57 MB', '1920 x 1280 pixels', '2020-05-30 18:19:29', '2020-05-30 18:19:29'),
(13, '04.jpg', '041590862768.jpg', NULL, '1.37 MB', '1920 x 1280 pixels', '2020-05-30 18:19:29', '2020-05-30 18:19:29'),
(14, '05.jpg', '051590862770.jpg', NULL, '1.5 MB', '1920 x 1280 pixels', '2020-05-30 18:19:31', '2020-05-30 18:19:31'),
(15, '06.jpg', '061590862770.jpg', NULL, '1.52 MB', '1920 x 1280 pixels', '2020-05-30 18:19:31', '2020-05-30 18:19:31'),
(16, '07.jpg', '071590862772.jpg', NULL, '1.56 MB', '1920 x 1280 pixels', '2020-05-30 18:19:33', '2020-05-30 18:19:33'),
(17, '08.jpg', '081590862772.jpg', NULL, '1.74 MB', '1920 x 1280 pixels', '2020-05-30 18:19:34', '2020-05-30 18:19:34'),
(18, '09.jpg', '091590862774.jpg', NULL, '1.56 MB', '1920 x 1280 pixels', '2020-05-30 18:19:35', '2020-05-30 18:19:35'),
(19, '10.jpg', '101590862774.jpg', NULL, '1.53 MB', '1920 x 1280 pixels', '2020-05-30 18:19:36', '2020-05-30 18:19:36'),
(20, '11.jpg', '111590862776.jpg', NULL, '993.94 KB', '1920 x 1280 pixels', '2020-05-30 18:19:37', '2020-05-30 18:19:37'),
(21, '12.jpg', '121590862776.jpg', NULL, '1.39 MB', '1920 x 1280 pixels', '2020-05-30 18:19:38', '2020-05-30 18:19:38'),
(22, '13.jpg', '131590862778.jpg', NULL, '1.46 MB', '1920 x 1280 pixels', '2020-05-30 18:19:39', '2020-05-30 18:19:39'),
(23, '14.jpg', '141590862778.jpg', NULL, '1.26 MB', '1920 x 1280 pixels', '2020-05-30 18:19:40', '2020-05-30 18:19:40'),
(24, '15.jpg', '151590862780.jpg', NULL, '1.39 MB', '1920 x 1280 pixels', '2020-05-30 18:19:41', '2020-05-30 18:19:41'),
(25, '16.jpg', '161590862780.jpg', NULL, '1.56 MB', '1920 x 1280 pixels', '2020-05-30 18:19:42', '2020-05-30 18:19:42'),
(26, '01.png', '011590924636.png', NULL, '136.11 KB', '847 x 481 pixels', '2020-05-31 11:30:36', '2020-05-31 11:30:36'),
(27, '03.png', '031591035358.png', NULL, '481.59 KB', '1920 x 939 pixels', '2020-06-01 18:16:00', '2020-06-01 18:16:00'),
(28, '01.png', '011591113317.png', NULL, '47.53 KB', '360 x 222 pixels', '2020-06-02 15:55:17', '2020-06-02 15:55:17'),
(29, '02.png', '021591113317.png', NULL, '40.13 KB', '360 x 222 pixels', '2020-06-02 15:55:17', '2020-06-02 15:55:17'),
(30, '01.png', '011591302982.png', NULL, '18.01 KB', '90 x 90 pixels', '2020-06-04 20:36:22', '2020-06-04 20:36:22'),
(31, '02.png', '021591302985.png', NULL, '59.69 KB', '348 x 348 pixels', '2020-06-04 20:36:25', '2020-06-04 20:36:25'),
(32, '01.png', '011591464166.png', NULL, '580.21 KB', '1920 x 939 pixels', '2020-06-06 17:22:47', '2020-06-06 17:22:47'),
(33, '02.png', '021591464166.png', NULL, '704.02 KB', '1920 x 978 pixels', '2020-06-06 17:22:47', '2020-06-06 17:22:47'),
(34, '02.png', '021591632968.png', NULL, '2.76 KB', '151 x 29 pixels', '2020-06-08 16:16:08', '2020-06-08 16:16:08'),
(35, '01.png', '011591632968.png', NULL, '2.61 KB', '151 x 41 pixels', '2020-06-08 16:16:08', '2020-06-08 16:16:08'),
(36, '03.png', '031591632968.png', NULL, '2.14 KB', '151 x 35 pixels', '2020-06-08 16:16:08', '2020-06-08 16:16:08'),
(37, '04.png', '041591632968.png', NULL, '2.21 KB', '151 x 17 pixels', '2020-06-08 16:16:08', '2020-06-08 16:16:08'),
(38, 'innovation.png', 'innovation1592320042.png', NULL, '1.35 KB', '24 x 24 pixels', '2020-06-16 15:07:22', '2020-06-16 15:07:22'),
(39, 'PayPal-Logo.wine.png', 'paypal-logowine1592737455.png', NULL, '32.16 KB', '3000 x 2000 pixels', '2020-06-21 11:04:16', '2020-06-21 11:04:16'),
(40, 'download.png', 'download1592737457.png', NULL, '5.47 KB', '308 x 164 pixels', '2020-06-21 11:04:17', '2020-06-21 11:04:17'),
(41, 'social.png', 'social1592737458.png', NULL, '111.9 KB', '2048 x 1024 pixels', '2020-06-21 11:04:18', '2020-06-21 11:04:18'),
(42, 'Razorpay-the-new-epayment-that-will-break-everything-in-2019.png', 'razorpay-the-new-epayment-that-will-break-everything-in-20191592737459.png', NULL, '10.06 KB', '1000 x 600 pixels', '2020-06-21 11:04:20', '2020-06-21 11:04:20'),
(43, 'wallet-money-logo-icon-design-vector-22901328.jpg', 'wallet-money-logo-icon-design-vector-229013281592737514.jpg', NULL, '50.7 KB', '1000 x 880 pixels', '2020-06-21 11:05:14', '2020-06-21 11:05:14'),
(44, 'learndash-stripe_256x256.jpg', 'learndash-stripe-256x2561592750757.jpg', NULL, '11.24 KB', '255 x 256 pixels', '2020-06-21 14:45:57', '2020-06-21 14:45:57'),
(45, 'download (1).png', 'download-11592750800.png', NULL, '3.28 KB', '318 x 159 pixels', '2020-06-21 14:46:40', '2020-06-21 14:46:40'),
(46, '01.png', '011595229209.png', NULL, '18.01 KB', '90 x 90 pixels', '2020-07-20 01:13:29', '2020-07-20 01:13:29'),
(47, '01.png', '011595229234.png', NULL, '39.29 KB', '262 x 314 pixels', '2020-07-20 01:13:55', '2020-07-20 01:13:55'),
(48, '02.png', '021595229234.png', NULL, '27.53 KB', '262 x 314 pixels', '2020-07-20 01:13:55', '2020-07-20 01:13:55'),
(49, '03.png', '031595229240.png', NULL, '34.13 KB', '262 x 314 pixels', '2020-07-20 01:14:00', '2020-07-20 01:14:00'),
(50, '04.png', '041595229240.png', NULL, '36.92 KB', '262 x 314 pixels', '2020-07-20 01:14:01', '2020-07-20 01:14:01'),
(51, 'concert-768722_1920.jpg', 'concert-768722-19201595246317.jpg', NULL, '328.56 KB', '1920 x 1280 pixels', '2020-07-20 05:58:38', '2020-07-20 05:58:38'),
(52, 'circus-828680_1920.jpg', 'circus-828680-19201595246317.jpg', NULL, '706.52 KB', '1920 x 1276 pixels', '2020-07-20 05:58:39', '2020-07-20 05:58:39'),
(53, 'live-music-2219036_1920 (1).jpg', 'live-music-2219036-1920-11595246319.jpg', NULL, '235.19 KB', '1920 x 1280 pixels', '2020-07-20 05:58:41', '2020-07-20 05:58:41'),
(54, 'event-1597531_1920.jpg', 'event-1597531-19201595246319.jpg', NULL, '855.61 KB', '1920 x 1277 pixels', '2020-07-20 05:58:41', '2020-07-20 05:58:41'),
(55, 'people-sitting-watching-in-the-theater-301987.jpg', 'people-sitting-watching-in-the-theater-3019871595246321.jpg', NULL, '400.94 KB', '1920 x 1280 pixels', '2020-07-20 05:58:43', '2020-07-20 05:58:43'),
(56, 'people-throwing-blue-powder-at-daytime-1157557.jpg', 'people-throwing-blue-powder-at-daytime-11575571595246321.jpg', NULL, '872.79 KB', '1920 x 1262 pixels', '2020-07-20 05:58:43', '2020-07-20 05:58:43'),
(57, 'photo-of-women-wearing-masks-787961.jpg', 'photo-of-women-wearing-masks-7879611595246323.jpg', NULL, '292.86 KB', '1920 x 1280 pixels', '2020-07-20 05:58:44', '2020-07-20 05:58:44'),
(58, 'beggar-1016678_1920.jpg', 'beggar-1016678-19201595265987.jpg', NULL, '694.02 KB', '1920 x 1280 pixels', '2020-07-20 11:26:29', '2020-07-20 11:26:29'),
(59, 'ask-for-alms-1742502_1920.jpg', 'ask-for-alms-1742502-19201595265987.jpg', NULL, '826.74 KB', '1920 x 1280 pixels', '2020-07-20 11:26:29', '2020-07-20 11:26:29'),
(60, 'giving-1826706_1920.jpg', 'giving-1826706-19201595265990.jpg', NULL, '261.12 KB', '1920 x 1280 pixels', '2020-07-20 11:26:31', '2020-07-20 11:26:31'),
(61, 'help-1265227_1920.jpg', 'help-1265227-19201595265990.jpg', NULL, '691.14 KB', '1920 x 1279 pixels', '2020-07-20 11:26:31', '2020-07-20 11:26:31'),
(62, 'monks-1822569_1920.jpg', 'monks-1822569-19201595265992.jpg', NULL, '295.61 KB', '1920 x 1314 pixels', '2020-07-20 11:26:33', '2020-07-20 11:26:33'),
(63, 'people-850097_1920.jpg', 'people-850097-19201595265992.jpg', NULL, '342.46 KB', '1920 x 1440 pixels', '2020-07-20 11:26:33', '2020-07-20 11:26:33'),
(64, 'poor-1775239_1920.jpg', 'poor-1775239-19201595265994.jpg', NULL, '295.18 KB', '1920 x 1280 pixels', '2020-07-20 11:26:35', '2020-07-20 11:26:35'),
(65, '02.jpg', '021595315295.jpg', NULL, '3.6 MB', '2500 x 2500 pixels', '2020-07-21 01:08:18', '2020-07-21 01:08:18'),
(66, '01.jpg', '011595315295.jpg', NULL, '1.25 MB', '2500 x 2500 pixels', '2020-07-21 01:08:18', '2020-07-21 01:08:18'),
(67, '03.jpg', '031595315298.jpg', NULL, '1.49 MB', '2500 x 2500 pixels', '2020-07-21 01:08:21', '2020-07-21 01:08:21'),
(68, '04.jpg', '041595315299.jpg', NULL, '855.76 KB', '2500 x 2500 pixels', '2020-07-21 01:08:21', '2020-07-21 01:08:21'),
(69, '05.jpg', '051595315301.jpg', NULL, '903.82 KB', '2500 x 2500 pixels', '2020-07-21 01:08:23', '2020-07-21 01:08:23'),
(70, '06.jpg', '061595315301.jpg', NULL, '1.56 MB', '2500 x 2500 pixels', '2020-07-21 01:08:24', '2020-07-21 01:08:24'),
(71, '07.jpg', '071595315304.jpg', NULL, '1.35 MB', '2500 x 2500 pixels', '2020-07-21 01:08:26', '2020-07-21 01:08:26'),
(72, '08.jpg', '081595315304.jpg', NULL, '1.51 MB', '2500 x 2500 pixels', '2020-07-21 01:08:27', '2020-07-21 01:08:27'),
(73, '09.jpg', '091595315306.jpg', NULL, '2.48 MB', '2500 x 2500 pixels', '2020-07-21 01:08:29', '2020-07-21 01:08:29'),
(74, 'laravel.jpg', 'laravel1595317026.jpg', NULL, '190.85 KB', '1920 x 1280 pixels', '2020-07-21 01:37:08', '2020-07-21 01:37:08'),
(75, 'laravel.jpg', 'laravel1595317407.jpg', NULL, '390.51 KB', '2500 x 2500 pixels', '2020-07-21 01:43:29', '2020-07-21 01:43:29'),
(76, 'react.jpg', 'react1595318715.jpg', NULL, '275.33 KB', '2500 x 2500 pixels', '2020-07-21 02:05:17', '2020-07-21 02:05:17'),
(77, 'Cash-on-Delivery-COD.jpg', 'cash-on-delivery-cod1595330280.jpg', NULL, '21.83 KB', '500 x 250 pixels', '2020-07-21 05:18:00', '2020-07-21 05:18:00'),
(78, '1_nhszIhUonirsqTPGelkoFg.jpeg', '1-nhszihuonirsqtpgelkofg1595330317.jpeg', NULL, '28.98 KB', '1009 x 280 pixels', '2020-07-21 05:18:37', '2020-07-21 05:18:37'),
(79, '106500540_1019791741770125_4737405778456650960_n.png', '106500540-1019791741770125-4737405778456650960-n1595588362.png', NULL, '343.91 KB', '480 x 574 pixels', '2020-07-24 04:59:23', '2020-07-24 04:59:23'),
(80, 'only-image-popup.jpg', 'only-image-popup1595691848.jpg', NULL, '91.36 KB', '700 x 400 pixels', '2020-07-25 09:44:09', '2020-07-25 09:44:09'),
(81, '4.png', '41595697742.png', NULL, '367.96 KB', '2139 x 2175 pixels', '2020-07-25 11:22:23', '2020-07-25 11:22:23'),
(82, '1.png', '11595697761.png', NULL, '784.58 KB', '2100 x 1919 pixels', '2020-07-25 11:22:44', '2020-07-25 11:22:44'),
(83, '400new.png', '400new1595700261.png', NULL, '75.67 KB', '263 x 346 pixels', '2020-07-25 12:04:21', '2020-07-25 12:04:21'),
(84, '03.png', '031595832995.png', NULL, '71.92 KB', '361 x 481 pixels', '2020-07-27 00:56:35', '2020-07-27 00:56:35'),
(85, '04.png', '041595832995.png', NULL, '86.88 KB', '361 x 481 pixels', '2020-07-27 00:56:35', '2020-07-27 00:56:35'),
(86, 'map.png', 'map1595833137.png', NULL, '32.71 KB', '648 x 381 pixels', '2020-07-27 00:58:57', '2020-07-27 00:58:57'),
(87, 'sign.png', 'sign1595833298.png', NULL, '810 ', '86 x 51 pixels', '2020-07-27 01:01:38', '2020-07-27 01:01:38'),
(88, '05.png', '051595833303.png', NULL, '230.29 KB', '960 x 760 pixels', '2020-07-27 01:01:44', '2020-07-27 01:01:44'),
(89, '01.png', '011595833563.png', NULL, '580.21 KB', '1920 x 939 pixels', '2020-07-27 01:06:04', '2020-07-27 01:06:04'),
(90, '02.png', '021595836812.png', NULL, '704.02 KB', '1920 x 978 pixels', '2020-07-27 02:00:13', '2020-07-27 02:00:13'),
(91, '02.png', '021595841084.png', NULL, '75.81 KB', '475 x 344 pixels', '2020-07-27 03:11:24', '2020-07-27 03:11:24'),
(92, '01.png', '011595841084.png', NULL, '59.18 KB', '475 x 344 pixels', '2020-07-27 03:11:24', '2020-07-27 03:11:24'),
(93, '04.png', '041595841294.png', NULL, '86.88 KB', '361 x 481 pixels', '2020-07-27 03:14:55', '2020-07-27 03:14:55'),
(94, '01.png', '011595841462.png', NULL, '580.21 KB', '1920 x 939 pixels', '2020-07-27 03:17:43', '2020-07-27 03:17:43'),
(95, 'sgv5j.phtml.png', 'sgv5jphtml1596237144.png', NULL, '12.87 KB', '139 x 139 pixels', '2020-08-01 03:12:24', '2020-08-01 03:12:24'),
(96, 'logo.gif', 'logo1596359631.gif', NULL, '6.34 KB', '270 x 86 pixels', '2020-08-02 13:13:51', '2020-08-02 13:13:51'),
(97, 'Flutterwave_IMTC.jpg', 'flutterwave-imtc1596482316.jpg', NULL, '40.27 KB', '600 x 300 pixels', '2020-08-03 23:18:37', '2020-08-03 23:18:37'),
(98, 'mollie-vector-logo.png', 'mollie-vector-logo1596482318.png', NULL, '4.19 KB', '900 x 500 pixels', '2020-08-03 23:18:39', '2020-08-03 23:18:39'),
(99, '343001.jpg', '3430011596785984.jpg', NULL, '321.17 KB', '2560 x 1600 pixels', '2020-08-07 11:39:44', '2020-08-07 11:39:44'),
(100, 'blue-sky.jpeg', 'blue-sky1597187913.jpeg', NULL, '184.41 KB', '2048 x 1365 pixels', '2020-08-12 03:18:34', '2020-08-12 03:18:34'),
(101, '1200px-Instagram_icon.png', '1200px-instagram-icon1597674512.png', NULL, '477.35 KB', '1200 x 1200 pixels', '2020-08-17 18:28:33', '2020-08-17 18:28:33'),
(102, '00000000.jpg', '000000001597674524.jpg', NULL, '187.5 KB', '472 x 591 pixels', '2020-08-17 18:28:44', '2020-08-17 18:28:44'),
(103, 'favicon.png', 'favicon1601880472.png', NULL, '4.08 KB', '158 x 151 pixels', '2020-10-05 00:47:53', '2020-10-05 00:47:53'),
(104, 'Logo.png', 'logo1601882333.png', NULL, '11.91 KB', '550 x 151 pixels', '2020-10-05 01:18:53', '2020-10-05 01:18:53'),
(105, 'Webp.net-compress-image.jpg', 'webpnet-compress-image1601884375.jpg', NULL, '65.83 KB', '1024 x 576 pixels', '2020-10-05 01:52:55', '2020-10-05 01:52:55'),
(106, 'dhaka events (2).jpg', 'dhaka-events-21601884418.jpg', NULL, '65.83 KB', '1024 x 576 pixels', '2020-10-05 01:53:38', '2020-10-05 01:53:38'),
(107, 'AACSB-logo-member-color-PMS.jpg', 'aacsb-logo-member-color-pms1601891637.jpg', NULL, '3.84 KB', '216 x 92 pixels', '2020-10-05 03:53:58', '2020-10-05 03:53:58'),
(108, '12-01-56-1568278676_arden_fullcollogo_whitename_rgb-2.png', '12-01-56-1568278676-arden-fullcollogo-whitename-rgb-21601891634.png', NULL, '91.23 KB', '2559 x 2832 pixels', '2020-10-05 03:53:59', '2020-10-05 03:53:59'),
(109, 'acbsp.png', 'acbsp1601891640.png', NULL, '3.55 KB', '152 x 92 pixels', '2020-10-05 03:54:00', '2020-10-05 03:54:00'),
(110, 'Applyboard.png', 'applyboard1601891640.png', NULL, '19.57 KB', '1200 x 630 pixels', '2020-10-05 03:54:01', '2020-10-05 03:54:01'),
(111, 'APU-.jpg', 'apu1601891642.jpg', NULL, '172.87 KB', '737 x 737 pixels', '2020-10-05 03:54:02', '2020-10-05 03:54:02'),
(112, 'APU 1.jpg', 'apu-11601891641.jpg', NULL, '434.54 KB', '2500 x 1293 pixels', '2020-10-05 03:54:02', '2020-10-05 03:54:02'),
(113, 'bccat.png', 'bccat1601891644.png', NULL, '5.5 KB', '153 x 92 pixels', '2020-10-05 03:54:04', '2020-10-05 03:54:04'),
(114, 'Canada West University.jpg', 'canada-west-university1601891644.jpg', NULL, '37.27 KB', '327 x 108 pixels', '2020-10-05 03:54:04', '2020-10-05 03:54:04'),
(115, 'Cardiff Metropolitan University.png', 'cardiff-metropolitan-university1601891645.png', NULL, '50.14 KB', '512 x 512 pixels', '2020-10-05 03:54:05', '2020-10-05 03:54:05'),
(116, 'Concordia-University-Chicago.png', 'concordia-university-chicago1601891645.png', NULL, '23.87 KB', '1500 x 600 pixels', '2020-10-05 03:54:06', '2020-10-05 03:54:06'),
(117, 'De Montfort University.png', 'de-montfort-university1601891646.png', NULL, '178.07 KB', '1742 x 748 pixels', '2020-10-05 03:54:07', '2020-10-05 03:54:07'),
(118, 'educanada.png', 'educanada1601891647.png', NULL, '4.03 KB', '153 x 92 pixels', '2020-10-05 03:54:07', '2020-10-05 03:54:07'),
(119, 'EEVI.png', 'eevi1601891648.png', NULL, '11.55 KB', '225 x 225 pixels', '2020-10-05 03:54:08', '2020-10-05 03:54:08'),
(120, 'eqa.png', 'eqa1601891648.png', NULL, '5.53 KB', '153 x 92 pixels', '2020-10-05 03:54:08', '2020-10-05 03:54:08'),
(121, 'Florida Poly.png', 'florida-poly1601891649.png', NULL, '67.77 KB', '2778 x 711 pixels', '2020-10-05 03:54:09', '2020-10-05 03:54:09'),
(122, 'Fanshawe.jpg', 'fanshawe1601891649.jpg', NULL, '86.13 KB', '2919 x 1011 pixels', '2020-10-05 03:54:10', '2020-10-05 03:54:10'),
(123, 'lc.png', 'lc1601891650.png', NULL, '4.38 KB', '152 x 92 pixels', '2020-10-05 03:54:10', '2020-10-05 03:54:10'),
(124, 'Masha University.png', 'masha-university1601891650.png', NULL, '49.95 KB', '386 x 167 pixels', '2020-10-05 03:54:10', '2020-10-05 03:54:10'),
(125, 'Oxford International Education Group.png', 'oxford-international-education-group1601891651.png', NULL, '50.05 KB', '450 x 200 pixels', '2020-10-05 03:54:11', '2020-10-05 03:54:11'),
(126, 'Prifysgol Bangor University.png', 'prifysgol-bangor-university1601891651.png', NULL, '93.05 KB', '820 x 273 pixels', '2020-10-05 03:54:11', '2020-10-05 03:54:11'),
(127, 'Toronto School of Management.png', 'toronto-school-of-management1601891652.png', NULL, '4.8 KB', '429 x 117 pixels', '2020-10-05 03:54:12', '2020-10-05 03:54:12'),
(128, 'University of Dundee.png', 'university-of-dundee1601891652.png', NULL, '8.91 KB', '828 x 281 pixels', '2020-10-05 03:54:12', '2020-10-05 03:54:12'),
(129, 'Webster University.jpg', 'webster-university1601891653.jpg', NULL, '205.23 KB', '947 x 465 pixels', '2020-10-05 03:54:13', '2020-10-05 03:54:13'),
(130, 'University of Greenwich.png', 'university-of-greenwich1601891652.png', NULL, '128 KB', '3753 x 950 pixels', '2020-10-05 03:54:14', '2020-10-05 03:54:14'),
(131, 'uk-circle-01.png', 'uk-circle-011602318154.png', NULL, '8.97 KB', '500 x 500 pixels', '2020-10-10 08:22:35', '2020-10-10 08:22:35'),
(132, '553-5539547_flag-of-canada-hd-png-download.png', '553-5539547-flag-of-canada-hd-png-download1602318154.png', NULL, '66.73 KB', '860 x 880 pixels', '2020-10-10 08:22:35', '2020-10-10 08:22:35'),
(133, 'flag-of-canada-flag-of-the-united-states-clip-art-canadian-flag.jpg', 'flag-of-canada-flag-of-the-united-states-clip-art-canadian-flag1602318156.jpg', NULL, '48.29 KB', '728 x 572 pixels', '2020-10-10 08:22:36', '2020-10-10 08:22:36'),
(134, 'flags_PNG14675.png', 'flags-png146751602318156.png', NULL, '178.91 KB', '470 x 422 pixels', '2020-10-10 08:22:37', '2020-10-10 08:22:37'),
(135, '34-349083_round-germany-flag-png-transparent-image-circle-german.png', '34-349083-round-germany-flag-png-transparent-image-circle-german1602318157.png', NULL, '65.08 KB', '860 x 889 pixels', '2020-10-10 08:22:37', '2020-10-10 08:22:37'),
(136, 'imgbin-flag-of-sweden-v-sterg-tland-swedish-coat-of-arms-of-sweden-flag-krGMpDgK1wEAQ9WTeVWuCpXmi.jpg', 'imgbin-flag-of-sweden-v-sterg-tland-swedish-coat-of-arms-of-sweden-flag-krgmpdgk1weaq9wtevwucpxmi1602318158.jpg', NULL, '35.31 KB', '728 x 460 pixels', '2020-10-10 08:22:39', '2020-10-10 08:22:39'),
(137, '204-2049465_sweden-logo-png-download-sweden-flag-logo-transparent.png', '204-2049465-sweden-logo-png-download-sweden-flag-logo-transparent1602318158.png', NULL, '44.27 KB', '860 x 900 pixels', '2020-10-10 08:22:39', '2020-10-10 08:22:39'),
(138, 'netherlands.png', 'netherlands1602318160.png', NULL, '2.57 KB', '225 x 225 pixels', '2020-10-10 08:22:40', '2020-10-10 08:22:40'),
(139, 'netherlands-flag-11550718342ztiyyen78y.png', 'netherlands-flag-11550718342ztiyyen78y1602318159.png', NULL, '293.83 KB', '840 x 859 pixels', '2020-10-10 08:22:40', '2020-10-10 08:22:40'),
(140, 'ielts_red_-_new_ielts_landing_page_preview_image.png', 'ielts-red-new-ielts-landing-page-preview-image1602318887.png', NULL, '10.83 KB', '630 x 354 pixels', '2020-10-10 08:34:47', '2020-10-10 08:34:47'),
(141, 'private-uni.jpg', 'private-uni1602319720.jpg', NULL, '600.29 KB', '900 x 600 pixels', '2020-10-10 08:48:41', '2020-10-10 08:48:41'),
(142, 'SCHOLARSHIPS.png', 'scholarships1602319943.png', NULL, '85.25 KB', '960 x 522 pixels', '2020-10-10 08:52:23', '2020-10-10 08:52:23'),
(143, '2.jpg', '21602320016.jpg', NULL, '133.67 KB', '990 x 374 pixels', '2020-10-10 08:53:36', '2020-10-10 08:53:36'),
(144, 'BL_35_04252017163506.jpg', 'bl-35-042520171635061602320233.jpg', NULL, '51.21 KB', '800 x 400 pixels', '2020-10-10 08:57:13', '2020-10-10 08:57:13'),
(145, 'What is a study abroad program 3.jpg', 'what-is-a-study-abroad-program-31602320233.jpg', NULL, '141.38 KB', '1024 x 683 pixels', '2020-10-10 08:57:14', '2020-10-10 08:57:14'),
(146, '2-1.png', '2-11602320234.png', NULL, '447.96 KB', '1280 x 720 pixels', '2020-10-10 08:57:15', '2020-10-10 08:57:15'),
(147, 'Overseas-Education-Canada-1200X628.png', 'overseas-education-canada-1200x6281602320235.png', NULL, '734.45 KB', '1200 x 628 pixels', '2020-10-10 08:57:15', '2020-10-10 08:57:15'),
(148, 'abroad-study-and-education-consultants-in-jaipur_www.lnconsultancy.com-2.jpg', 'abroad-study-and-education-consultants-in-jaipur-wwwlnconsultancycom-21602320236.jpg', NULL, '74.15 KB', '851 x 315 pixels', '2020-10-10 08:57:16', '2020-10-10 08:57:16'),
(149, '5715c7fb9ec66a0a94fc234c.jpg', '5715c7fb9ec66a0a94fc234c1602320237.jpg', NULL, '51.66 KB', '1020 x 300 pixels', '2020-10-10 08:57:17', '2020-10-10 08:57:17'),
(150, 'Canada-Education-Consultants-in-Delhi.jpg', 'canada-education-consultants-in-delhi1602320238.jpg', NULL, '60.67 KB', '1024 x 572 pixels', '2020-10-10 08:57:19', '2020-10-10 08:57:19'),
(151, 'Overseas-Education-Consultants-to-Study-Abroad.png', 'overseas-education-consultants-to-study-abroad1602320237.png', NULL, '1.13 MB', '1920 x 768 pixels', '2020-10-10 08:57:19', '2020-10-10 08:57:19'),
(152, 'pngwave(4).png', 'pngwave41602320530.png', NULL, '182.7 KB', '668 x 605 pixels', '2020-10-10 09:02:11', '2020-10-10 09:02:11'),
(153, 'pngwave(3).png', 'pngwave31602320530.png', NULL, '418.86 KB', '1920 x 811 pixels', '2020-10-10 09:02:12', '2020-10-10 09:02:12'),
(154, 'pngwave(2).png', 'pngwave21602320532.png', NULL, '48.59 KB', '700 x 700 pixels', '2020-10-10 09:02:12', '2020-10-10 09:02:12'),
(155, 'pngwave.png', 'pngwave1602320533.png', NULL, '432.24 KB', '640 x 650 pixels', '2020-10-10 09:02:14', '2020-10-10 09:02:14'),
(156, 'pngwave(1).png', 'pngwave11602320533.png', NULL, '1.51 MB', '1126 x 1000 pixels', '2020-10-10 09:02:15', '2020-10-10 09:02:15'),
(157, 'graphy-student-college-education-student-png-clip-art.png', 'graphy-student-college-education-student-png-clip-art1602320536.png', NULL, '67.48 KB', '910 x 400 pixels', '2020-10-10 09:02:16', '2020-10-10 09:02:16'),
(158, '20_10_2014_15_00_42_5tq8sf5mt99i2tul9nu5plrdo7_uodti82c2v.jpg', '20-10-2014-15-00-42-5tq8sf5mt99i2tul9nu5plrdo7-uodti82c2v1602320536.jpg', NULL, '43.35 KB', '500 x 296 pixels', '2020-10-10 09:02:16', '2020-10-10 09:02:16'),
(159, 'unnamed.png', 'unnamed1602320537.png', NULL, '220.6 KB', '400 x 300 pixels', '2020-10-10 09:02:17', '2020-10-10 09:02:17'),
(160, '05.jpg', '051602320537.jpg', NULL, '92.57 KB', '1435 x 833 pixels', '2020-10-10 09:02:18', '2020-10-10 09:02:18'),
(161, 'CTG Event 2.1.jpg', 'ctg-event-211602324170.jpg', NULL, '384.66 KB', '877 x 658 pixels', '2020-10-10 10:02:50', '2020-10-10 10:02:50'),
(162, 'Dhaka Events 1.2.png', 'dhaka-events-121602324672.png', NULL, '467.26 KB', '1020 x 574 pixels', '2020-10-10 10:11:13', '2020-10-10 10:11:13'),
(163, 'progirl-with-laptop.jpg', 'progirl-with-laptop1602329686.jpg', NULL, '62.46 KB', '640 x 426 pixels', '2020-10-10 11:34:46', '2020-10-10 11:34:46'),
(164, 'pngwave(5).png', 'pngwave51602330132.png', NULL, '44.8 KB', '1024 x 1024 pixels', '2020-10-10 11:42:13', '2020-10-10 11:42:13'),
(165, '3671436.jpg', '36714361602330471.jpg', NULL, '68.97 KB', '1024 x 683 pixels', '2020-10-10 11:47:52', '2020-10-10 11:47:52'),
(166, '1557931358745.jpg', '15579313587451602414385.jpg', NULL, '42.26 KB', '811 x 1474 pixels', '2020-10-11 11:06:25', '2020-10-11 11:06:25'),
(167, '92627501_10216483358703493_7233279385267077120_o.jpg', '92627501-10216483358703493-7233279385267077120-o1602414620.jpg', NULL, '774.62 KB', '2048 x 2048 pixels', '2020-10-11 11:10:22', '2020-10-11 11:10:22'),
(168, 'CTG Event 2.jpg', 'ctg-event-21603186996.jpg', NULL, '372.47 KB', '2000 x 1500 pixels', '2020-10-20 09:43:17', '2020-10-20 09:43:17'),
(169, 'canada events.jpg', 'canada-events1603187064.jpg', NULL, '512.71 KB', '1200 x 628 pixels', '2020-10-20 09:44:24', '2020-10-20 09:44:24'),
(170, '10210618.jpg', '102106181603187080.jpg', NULL, '51.77 KB', '1000 x 998 pixels', '2020-10-20 09:44:40', '2020-10-20 09:44:40'),
(171, 'Dhaka Events 1.2.png', 'dhaka-events-121603187128.png', NULL, '467.26 KB', '1020 x 574 pixels', '2020-10-20 09:45:28', '2020-10-20 09:45:28'),
(172, '3671436.jpg', '36714361603188333.jpg', NULL, '68.97 KB', '1024 x 683 pixels', '2020-10-20 10:05:34', '2020-10-20 10:05:34'),
(173, 'pngwave(5).png', 'pngwave51603188333.png', NULL, '44.8 KB', '1024 x 1024 pixels', '2020-10-20 10:05:34', '2020-10-20 10:05:34'),
(174, 'pngwave(4).png', 'pngwave41603188334.png', NULL, '182.7 KB', '668 x 605 pixels', '2020-10-20 10:05:34', '2020-10-20 10:05:34'),
(175, 'pngwave(2).png', 'pngwave21603188335.png', NULL, '48.59 KB', '700 x 700 pixels', '2020-10-20 10:05:35', '2020-10-20 10:05:35'),
(176, 'pngwave(3).png', 'pngwave31603188335.png', NULL, '418.86 KB', '1920 x 811 pixels', '2020-10-20 10:05:35', '2020-10-20 10:05:35'),
(177, 'pngwave.png', 'pngwave1603188336.png', NULL, '432.24 KB', '640 x 650 pixels', '2020-10-20 10:05:36', '2020-10-20 10:05:36'),
(178, 'pngwave(1).png', 'pngwave11603188337.png', NULL, '1.51 MB', '1126 x 1000 pixels', '2020-10-20 10:05:37', '2020-10-20 10:05:37'),
(179, '20_10_2014_15_00_42_5tq8sf5mt99i2tul9nu5plrdo7_uodti82c2v.jpg', '20-10-2014-15-00-42-5tq8sf5mt99i2tul9nu5plrdo7-uodti82c2v1603188338.jpg', NULL, '43.35 KB', '500 x 296 pixels', '2020-10-20 10:05:38', '2020-10-20 10:05:38'),
(180, 'graphy-student-college-education-student-png-clip-art.png', 'graphy-student-college-education-student-png-clip-art1603188338.png', NULL, '67.48 KB', '910 x 400 pixels', '2020-10-20 10:05:38', '2020-10-20 10:05:38'),
(181, 'unnamed.png', 'unnamed1603188339.png', NULL, '220.6 KB', '400 x 300 pixels', '2020-10-20 10:05:39', '2020-10-20 10:05:39'),
(182, '05.jpg', '051603188339.jpg', NULL, '92.57 KB', '1435 x 833 pixels', '2020-10-20 10:05:39', '2020-10-20 10:05:39'),
(183, 'BL_35_04252017163506.jpg', 'bl-35-042520171635061603188339.jpg', NULL, '51.21 KB', '800 x 400 pixels', '2020-10-20 10:05:40', '2020-10-20 10:05:40'),
(184, 'abroad-study-and-education-consultants-in-jaipur_www.lnconsultancy.com-2.jpg', 'abroad-study-and-education-consultants-in-jaipur-wwwlnconsultancycom-21603188340.jpg', NULL, '74.15 KB', '851 x 315 pixels', '2020-10-20 10:05:40', '2020-10-20 10:05:40'),
(185, 'Overseas-Education-Canada-1200X628.png', 'overseas-education-canada-1200x6281603188340.png', NULL, '734.45 KB', '1200 x 628 pixels', '2020-10-20 10:05:40', '2020-10-20 10:05:40'),
(186, '5715c7fb9ec66a0a94fc234c.jpg', '5715c7fb9ec66a0a94fc234c1603188341.jpg', NULL, '51.66 KB', '1020 x 300 pixels', '2020-10-20 10:05:41', '2020-10-20 10:05:41'),
(187, 'Canada-Education-Consultants-in-Delhi.jpg', 'canada-education-consultants-in-delhi1603188341.jpg', NULL, '60.67 KB', '1024 x 572 pixels', '2020-10-20 10:05:42', '2020-10-20 10:05:42'),
(188, 'Overseas-Education-Consultants-to-Study-Abroad.png', 'overseas-education-consultants-to-study-abroad1603188341.png', NULL, '1.13 MB', '1920 x 768 pixels', '2020-10-20 10:05:42', '2020-10-20 10:05:42'),
(189, '2.jpg', '21603188342.jpg', NULL, '133.67 KB', '990 x 374 pixels', '2020-10-20 10:05:43', '2020-10-20 10:05:43'),
(190, 'SCHOLARSHIPS.png', 'scholarships1603188342.png', NULL, '85.25 KB', '960 x 522 pixels', '2020-10-20 10:05:43', '2020-10-20 10:05:43'),
(191, 'ielts_red_-_new_ielts_landing_page_preview_image.png', 'ielts-red-new-ielts-landing-page-preview-image1603188343.png', NULL, '10.83 KB', '630 x 354 pixels', '2020-10-20 10:05:43', '2020-10-20 10:05:43'),
(192, 'private-uni.jpg', 'private-uni1603188343.jpg', NULL, '600.29 KB', '900 x 600 pixels', '2020-10-20 10:05:43', '2020-10-20 10:05:43'),
(193, '82f07c8a5a2cad4b01446d9a50a4e650.jpg', '82f07c8a5a2cad4b01446d9a50a4e6501603188343.jpg', NULL, '19.14 KB', '500 x 500 pixels', '2020-10-20 10:05:44', '2020-10-20 10:05:44'),
(194, 'Malaysia-flag-waving-vector-on-transparent-background-PNG.png', 'malaysia-flag-waving-vector-on-transparent-background-png1603188344.png', NULL, '100.82 KB', '600 x 600 pixels', '2020-10-20 10:05:44', '2020-10-20 10:05:44'),
(195, 'index.png', 'index1603188344.png', NULL, '3.56 KB', '225 x 225 pixels', '2020-10-20 10:05:44', '2020-10-20 10:05:44'),
(196, 'uk-circle-01.png', 'uk-circle-011603188344.png', NULL, '8.97 KB', '500 x 500 pixels', '2020-10-20 10:05:45', '2020-10-20 10:05:45'),
(197, '553-5539547_flag-of-canada-hd-png-download.png', '553-5539547-flag-of-canada-hd-png-download1603188345.png', NULL, '66.73 KB', '860 x 880 pixels', '2020-10-20 10:05:45', '2020-10-20 10:05:45'),
(198, 'flag-of-canada-flag-of-the-united-states-clip-art-canadian-flag.jpg', 'flag-of-canada-flag-of-the-united-states-clip-art-canadian-flag1603188345.jpg', NULL, '48.29 KB', '728 x 572 pixels', '2020-10-20 10:05:46', '2020-10-20 10:05:46'),
(199, 'flags_PNG14675.png', 'flags-png146751603188346.png', NULL, '178.91 KB', '470 x 422 pixels', '2020-10-20 10:05:46', '2020-10-20 10:05:46'),
(200, '34-349083_round-germany-flag-png-transparent-image-circle-german.png', '34-349083-round-germany-flag-png-transparent-image-circle-german1603188346.png', NULL, '65.08 KB', '860 x 889 pixels', '2020-10-20 10:05:46', '2020-10-20 10:05:46'),
(201, 'imgbin-flag-of-sweden-v-sterg-tland-swedish-coat-of-arms-of-sweden-flag-krGMpDgK1wEAQ9WTeVWuCpXmi.jpg', 'imgbin-flag-of-sweden-v-sterg-tland-swedish-coat-of-arms-of-sweden-flag-krgmpdgk1weaq9wtevwucpxmi1603188347.jpg', NULL, '35.31 KB', '728 x 460 pixels', '2020-10-20 10:05:47', '2020-10-20 10:05:47'),
(202, '204-2049465_sweden-logo-png-download-sweden-flag-logo-transparent.png', '204-2049465-sweden-logo-png-download-sweden-flag-logo-transparent1603188347.png', NULL, '44.27 KB', '860 x 900 pixels', '2020-10-20 10:05:47', '2020-10-20 10:05:47'),
(203, 'netherlands.png', 'netherlands1603188348.png', NULL, '2.57 KB', '225 x 225 pixels', '2020-10-20 10:05:48', '2020-10-20 10:05:48'),
(204, 'netherlands-flag-11550718342ztiyyen78y.png', 'netherlands-flag-11550718342ztiyyen78y1603188348.png', NULL, '293.83 KB', '840 x 859 pixels', '2020-10-20 10:05:48', '2020-10-20 10:05:48'),
(205, 'venue.png', 'venue1603188348.png', NULL, '21.93 KB', '659 x 463 pixels', '2020-10-20 10:05:49', '2020-10-20 10:05:49'),
(206, 'study-europe.jpg', 'study-europe1603188349.jpg', NULL, '85.23 KB', '880 x 460 pixels', '2020-10-20 10:05:49', '2020-10-20 10:05:49'),
(207, 'girl-3718537_1920.jpg', 'girl-3718537-19201603188349.jpg', NULL, '413.21 KB', '1920 x 1279 pixels', '2020-10-20 10:05:50', '2020-10-20 10:05:50'),
(208, 'Scholarship.gif', 'scholarship1603189001.gif', NULL, '18.36 KB', '500 x 400 pixels', '2020-10-20 10:16:41', '2020-10-20 10:16:41'),
(209, 'istockphoto-1183344756-612x612.jpg', 'istockphoto-1183344756-612x6121603189001.jpg', NULL, '15.34 KB', '612 x 510 pixels', '2020-10-20 10:16:41', '2020-10-20 10:16:41'),
(210, 'selection-069-500x500.png', 'selection-069-500x5001603189001.png', NULL, '158.52 KB', '500 x 309 pixels', '2020-10-20 10:16:42', '2020-10-20 10:16:42'),
(211, '230-2309663_pre-departure-assistance-clipart.jpg', '230-2309663-pre-departure-assistance-clipart1603189001.jpg', NULL, '159.87 KB', '880 x 1014 pixels', '2020-10-20 10:16:42', '2020-10-20 10:16:42'),
(212, 'visa application.jpg', 'visa-application1603189002.jpg', NULL, '32.26 KB', '612 x 612 pixels', '2020-10-20 10:16:42', '2020-10-20 10:16:42'),
(213, 'Logo.png', 'logo1603192374.png', NULL, '11.91 KB', '550 x 151 pixels', '2020-10-20 11:12:54', '2020-10-20 11:12:54'),
(214, 'logo1.jpg', 'logo11603192374.jpg', NULL, '139.14 KB', '1133 x 455 pixels', '2020-10-20 11:12:54', '2020-10-20 11:12:54'),
(215, 'backdrop_Common Banner-01.jpg', 'backdrop-common-banner-011603352889.jpg', NULL, '888.15 KB', '1700 x 756 pixels', '2020-10-22 07:48:09', '2020-10-22 07:48:09'),
(216, 'Scholarship.gif', 'scholarship1603359080.gif', NULL, '18.36 KB', '500 x 400 pixels', '2020-10-22 09:31:20', '2020-10-22 09:31:20'),
(217, '230-2309663_pre-departure-assistance-clipart.jpg', '230-2309663-pre-departure-assistance-clipart1603359080.jpg', NULL, '159.87 KB', '880 x 1014 pixels', '2020-10-22 09:31:21', '2020-10-22 09:31:21'),
(218, 'istockphoto-1183344756-612x612.jpg', 'istockphoto-1183344756-612x6121603359081.jpg', NULL, '15.34 KB', '612 x 510 pixels', '2020-10-22 09:31:21', '2020-10-22 09:31:21'),
(219, '10210618.jpg', '102106181603359081.jpg', NULL, '51.77 KB', '1000 x 998 pixels', '2020-10-22 09:31:21', '2020-10-22 09:31:21'),
(220, 'pngtree-patient-counseling-image_2230912.jpg', 'pngtree-patient-counseling-image-22309121603359082.jpg', NULL, '25.76 KB', '360 x 298 pixels', '2020-10-22 09:31:22', '2020-10-22 09:31:22'),
(221, 'visa application.jpg', 'visa-application1603359081.jpg', NULL, '32.26 KB', '612 x 612 pixels', '2020-10-22 09:31:22', '2020-10-22 09:31:22'),
(222, 'aust.png', 'aust1603359082.png', NULL, '4.52 KB', '192 x 263 pixels', '2020-10-22 09:31:22', '2020-10-22 09:31:22'),
(223, 'Counseling.png', 'counseling1603359082.png', NULL, '380.36 KB', '500 x 500 pixels', '2020-10-22 09:31:22', '2020-10-22 09:31:22'),
(224, 'PngItem_4608166.png', 'pngitem-46081661603359083.png', NULL, '76.38 KB', '1344 x 975 pixels', '2020-10-22 09:31:23', '2020-10-22 09:31:23'),
(225, 'selection-069-500x500.png', 'selection-069-500x5001603359084.png', NULL, '158.52 KB', '500 x 309 pixels', '2020-10-22 09:31:24', '2020-10-22 09:31:24'),
(226, '1505799540phprXYrTp.jpeg', '1505799540phprxyrtp1603359084.jpeg', NULL, '123.39 KB', '600 x 400 pixels', '2020-10-22 09:31:25', '2020-10-22 09:31:25'),
(227, 'UK_Flag_Button_Badges.jpg', 'uk-flag-button-badges1603359084.jpg', NULL, '72.6 KB', '1001 x 1001 pixels', '2020-10-22 09:31:25', '2020-10-22 09:31:25'),
(228, '2.jpg', '21603359085.jpg', NULL, '133.67 KB', '990 x 374 pixels', '2020-10-22 09:31:25', '2020-10-22 09:31:25'),
(229, '20_10_2014_15_00_42_5tq8sf5mt99i2tul9nu5plrdo7_uodti82c2v.jpg', '20-10-2014-15-00-42-5tq8sf5mt99i2tul9nu5plrdo7-uodti82c2v1603359085.jpg', NULL, '43.35 KB', '500 x 296 pixels', '2020-10-22 09:31:25', '2020-10-22 09:31:25'),
(230, '05.jpg', '051603359085.jpg', NULL, '92.57 KB', '1435 x 833 pixels', '2020-10-22 09:31:26', '2020-10-22 09:31:26'),
(231, '82f07c8a5a2cad4b01446d9a50a4e650.jpg', '82f07c8a5a2cad4b01446d9a50a4e6501603359086.jpg', NULL, '19.14 KB', '500 x 500 pixels', '2020-10-22 09:31:26', '2020-10-22 09:31:26'),
(232, '5715c7fb9ec66a0a94fc234c.jpg', '5715c7fb9ec66a0a94fc234c1603359086.jpg', NULL, '51.66 KB', '1020 x 300 pixels', '2020-10-22 09:31:26', '2020-10-22 09:31:26'),
(233, 'abroad-study-and-education-consultants-in-jaipur_www.lnconsultancy.com-2.jpg', 'abroad-study-and-education-consultants-in-jaipur-wwwlnconsultancycom-21603359086.jpg', NULL, '74.15 KB', '851 x 315 pixels', '2020-10-22 09:31:27', '2020-10-22 09:31:27'),
(234, '3671436.jpg', '36714361603359086.jpg', NULL, '68.97 KB', '1024 x 683 pixels', '2020-10-22 09:31:27', '2020-10-22 09:31:27'),
(235, 'BL_35_04252017163506.jpg', 'bl-35-042520171635061603359087.jpg', NULL, '51.21 KB', '800 x 400 pixels', '2020-10-22 09:31:27', '2020-10-22 09:31:27'),
(236, 'Canada-Education-Consultants-in-Delhi.jpg', 'canada-education-consultants-in-delhi1603359087.jpg', NULL, '60.67 KB', '1024 x 572 pixels', '2020-10-22 09:31:27', '2020-10-22 09:31:27'),
(237, 'dhaka events (2).jpg', 'dhaka-events-21603359087.jpg', NULL, '65.83 KB', '1024 x 576 pixels', '2020-10-22 09:31:27', '2020-10-22 09:31:27'),
(238, 'CTG Event 2.1.jpg', 'ctg-event-211603359252.jpg', NULL, '384.66 KB', '877 x 658 pixels', '2020-10-22 09:34:13', '2020-10-22 09:34:13'),
(239, 'ctg EVENT.jpg', 'ctg-event1603359260.jpg', NULL, '321.12 KB', '3000 x 1110 pixels', '2020-10-22 09:34:20', '2020-10-22 09:34:20'),
(240, 'Dhaka Events 1.2.png', 'dhaka-events-121603359305.png', NULL, '467.26 KB', '1020 x 574 pixels', '2020-10-22 09:35:05', '2020-10-22 09:35:05'),
(241, 'IMG_5505.JPG', 'img-55051604214223.JPG', NULL, '4.91 MB', '5472 x 3648 pixels', '2020-11-01 07:03:49', '2020-11-01 07:03:49'),
(242, 'IMG_5509.JPG', 'img-55091604214225.JPG', NULL, '4.58 MB', '5472 x 3648 pixels', '2020-11-01 07:03:52', '2020-11-01 07:03:52'),
(243, 'IMG_5511.JPG', 'img-55111604214235.JPG', NULL, '5.05 MB', '5472 x 3648 pixels', '2020-11-01 07:04:03', '2020-11-01 07:04:03'),
(244, 'IMG_5519.JPG', 'img-55191604214236.JPG', NULL, '5.31 MB', '5472 x 3648 pixels', '2020-11-01 07:04:04', '2020-11-01 07:04:04'),
(245, 'IMG_5841.JPG', 'img-58411604214248.JPG', NULL, '5.13 MB', '5472 x 3648 pixels', '2020-11-01 07:04:16', '2020-11-01 07:04:16'),
(246, 'IMG_5792.JPG', 'img-57921604214249.JPG', NULL, '5.21 MB', '5472 x 3648 pixels', '2020-11-01 07:04:16', '2020-11-01 07:04:16'),
(247, 'IMG_5909.JPG', 'img-59091604214259.JPG', NULL, '5.43 MB', '5472 x 3648 pixels', '2020-11-01 07:04:25', '2020-11-01 07:04:25'),
(248, 'IMG_5856.JPG', 'img-58561604214261.JPG', NULL, '5.65 MB', '5472 x 3648 pixels', '2020-11-01 07:04:27', '2020-11-01 07:04:27'),
(249, 'IMG_5915.JPG', 'img-59151604214271.JPG', NULL, '4.92 MB', '5472 x 3648 pixels', '2020-11-01 07:04:39', '2020-11-01 07:04:39'),
(250, 'IMG_5959.JPG', 'img-59591604214270.JPG', NULL, '5.15 MB', '5472 x 3648 pixels', '2020-11-01 07:04:38', '2020-11-01 07:04:38'),
(251, 'IMG_5964.JPG', 'img-59641604214281.JPG', NULL, '4.74 MB', '5472 x 3648 pixels', '2020-11-01 07:04:48', '2020-11-01 07:04:48'),
(252, 'IMG_6034.JPG', 'img-60341604214283.JPG', NULL, '5.57 MB', '5472 x 3648 pixels', '2020-11-01 07:04:50', '2020-11-01 07:04:50'),
(253, 'IMG_6051.JPG', 'img-60511604214293.JPG', NULL, '4.96 MB', '5472 x 3648 pixels', '2020-11-01 07:05:00', '2020-11-01 07:05:00'),
(254, 'IMG_6045.JPG', 'img-60451604214294.JPG', NULL, '5.33 MB', '5472 x 3648 pixels', '2020-11-01 07:05:01', '2020-11-01 07:05:01'),
(255, 'CTG events.jpg', 'ctg-events1604215193.jpg', NULL, '73.01 KB', '960 x 503 pixels', '2020-11-01 07:19:54', '2020-11-01 07:19:54'),
(256, 'IMG_5528.JPG', 'img-55281604215279.JPG', NULL, '5.35 MB', '5472 x 3648 pixels', '2020-11-01 07:21:23', '2020-11-01 07:21:23'),
(257, 'ielts-preparation-course-online.jpg', 'ielts-preparation-course-online1604312118.jpg', NULL, '160.69 KB', '1061 x 451 pixels', '2020-11-02 10:15:18', '2020-11-02 10:15:18'),
(258, 'scholarship-1.png', 'scholarship-11604312515.png', NULL, '41.93 KB', '880 x 550 pixels', '2020-11-02 10:21:55', '2020-11-02 10:21:55'),
(259, '9JG_web_top_img_visa.png', '9jg-web-top-img-visa1604312842.png', NULL, '678.2 KB', '1920 x 678 pixels', '2020-11-02 10:27:22', '2020-11-02 10:27:22'),
(260, '0Career_Counselling_0_edited.jpg', '0career-counselling-0-edited1604313000.jpg', NULL, '25.68 KB', '980 x 420 pixels', '2020-11-02 10:30:00', '2020-11-02 10:30:00'),
(261, 'IMG_6034.JPG', 'img-60341604313231.JPG', NULL, '5.57 MB', '5472 x 3648 pixels', '2020-11-02 10:33:55', '2020-11-02 10:33:55'),
(262, 'pre_departure_guide.jpg', 'pre-departure-guide1604313462.jpg', NULL, '172.48 KB', '800 x 533 pixels', '2020-11-02 10:37:43', '2020-11-02 10:37:43'),
(263, 'hostel room.jpg', 'hostel-room1604313797.jpg', NULL, '740.47 KB', '3500 x 2800 pixels', '2020-11-02 10:43:20', '2020-11-02 10:43:20'),
(264, 'maxresdefault.jpg', 'maxresdefault1604316416.jpg', NULL, '66.31 KB', '1280 x 720 pixels', '2020-11-02 11:26:57', '2020-11-02 11:26:57'),
(265, 'KNAV.jpg', 'knav1604487926.jpg', NULL, '15.5 KB', '260 x 300 pixels', '2020-11-04 11:05:26', '2020-11-04 11:05:26'),
(266, 'rsz_1knav.jpg', 'rsz-1knav1604488195.jpg', NULL, '62.69 KB', '270 x 280 pixels', '2020-11-04 11:09:55', '2020-11-04 11:09:55'),
(267, 'unnamed.jpg', 'unnamed1618734032.jpg', NULL, '8.07 KB', '224 x 276 pixels', '2021-04-18 08:20:32', '2021-04-18 08:20:32'),
(268, 'fbe6acbf-c43a-4558-a1f6-c936d57c3050.jpg', 'fbe6acbf-c43a-4558-a1f6-c936d57c30501618734932.jpg', NULL, '67.22 KB', '628 x 737 pixels', '2021-04-18 08:35:32', '2021-04-18 08:35:32'),
(269, 'd83589ba-2dc9-4858-ad67-e6309575834f.jpg', 'd83589ba-2dc9-4858-ad67-e6309575834f1618735535.jpg', NULL, '32.48 KB', '480 x 600 pixels', '2021-04-18 08:45:36', '2021-04-18 08:45:36'),
(270, '8cdc1f88-39e5-448d-84aa-e7b51aa0f14f.jpg', '8cdc1f88-39e5-448d-84aa-e7b51aa0f14f1618735636.jpg', NULL, '69.44 KB', '600 x 600 pixels', '2021-04-18 08:47:17', '2021-04-18 08:47:17'),
(271, 'Screenshot_2.jpg', 'screenshot-21618735784.jpg', NULL, '26.75 KB', '352 x 353 pixels', '2021-04-18 08:49:44', '2021-04-18 08:49:44'),
(272, '933da5f3-ea97-4e47-bcd0-9f631bc5edf8.jpg', '933da5f3-ea97-4e47-bcd0-9f631bc5edf81618813163.jpg', NULL, '108.4 KB', '960 x 1280 pixels', '2021-04-19 06:19:24', '2021-04-19 06:19:24'),
(273, 'ec1b1036-f4f7-4343-9198-3aede8cb0019.jpg', 'ec1b1036-f4f7-4343-9198-3aede8cb00191618813773.jpg', NULL, '144.96 KB', '854 x 1280 pixels', '2021-04-19 06:29:33', '2021-04-19 06:29:33'),
(274, 'Screenshot_3.jpg', 'screenshot-31618814514.jpg', NULL, '60.94 KB', '415 x 550 pixels', '2021-04-19 06:41:54', '2021-04-19 06:41:54'),
(275, 'Screenshot_4.jpg', 'screenshot-41618814704.jpg', NULL, '29.43 KB', '415 x 552 pixels', '2021-04-19 06:45:04', '2021-04-19 06:45:04'),
(276, 'Screenshot_5.jpg', 'screenshot-51618814946.jpg', NULL, '37.68 KB', '415 x 550 pixels', '2021-04-19 06:49:07', '2021-04-19 06:49:07'),
(277, 'Screenshot_6.jpg', 'screenshot-61618815171.jpg', NULL, '49.08 KB', '415 x 550 pixels', '2021-04-19 06:52:51', '2021-04-19 06:52:51'),
(278, 'Screenshot_7.jpg', 'screenshot-71618815313.jpg', NULL, '45.8 KB', '415 x 550 pixels', '2021-04-19 06:55:14', '2021-04-19 06:55:14'),
(279, 'Screenshot_8.jpg', 'screenshot-81618815506.jpg', NULL, '38.4 KB', '415 x 550 pixels', '2021-04-19 06:58:26', '2021-04-19 06:58:26'),
(280, 'Sadarjan Muna.jpeg', 'sadarjan-muna1644744512.jpeg', NULL, '1.46 MB', '2776 x 2780 pixels', '2022-02-13 03:28:33', '2022-02-13 03:28:33'),
(281, 'Tahsin Jahid.jpg', 'tahsin-jahid1644744563.jpg', NULL, '5.59 KB', '120 x 150 pixels', '2022-02-13 03:29:23', '2022-02-13 03:29:23'),
(282, 'Azmayeen.jpeg', 'azmayeen1644744659.jpeg', NULL, '113.33 KB', '1242 x 1168 pixels', '2022-02-13 03:31:00', '2022-02-13 03:31:00'),
(283, 'Mahfuza Akter.jpeg', 'mahfuza-akter1644745204.jpeg', NULL, '31.89 KB', '449 x 567 pixels', '2022-02-13 03:40:05', '2022-02-13 03:40:05'),
(284, 'Rafiqul_Islam-removebg-preview.png', 'rafiqul-islam-removebg-preview1644745205.png', NULL, '114.12 KB', '432 x 578 pixels', '2022-02-13 03:40:05', '2022-02-13 03:40:05'),
(285, 'Rafiqul Islam.jpeg', 'rafiqul-islam1644745321.jpeg', NULL, '84.1 KB', '960 x 1280 pixels', '2022-02-13 03:42:01', '2022-02-13 03:42:01'),
(286, 'Azmayeen_ccexpress.png', 'azmayeen-ccexpress1644745656.png', NULL, '233.05 KB', '500 x 500 pixels', '2022-02-13 03:47:36', '2022-02-13 03:47:36'),
(287, 'Mahfuza Akter_ccexpress.jpeg', 'mahfuza-akter-ccexpress1644745656.jpeg', NULL, '109.3 KB', '1080 x 1080 pixels', '2022-02-13 03:47:36', '2022-02-13 03:47:36'),
(288, 'Malvin_Prangon_Sarkar_ccexpress.png', 'malvin-prangon-sarkar-ccexpress1644745656.png', NULL, '288.68 KB', '500 x 500 pixels', '2022-02-13 03:47:36', '2022-02-13 03:47:36'),
(289, 'Rafiqul Islam_ccexpress.jpeg', 'rafiqul-islam-ccexpress1644745656.jpeg', NULL, '44.92 KB', '500 x 500 pixels', '2022-02-13 03:47:36', '2022-02-13 03:47:36'),
(290, 'Sadarjan_Muna-removebg-preview_ccexpress.png', 'sadarjan-muna-removebg-preview-ccexpress1644745656.png', NULL, '313.72 KB', '500 x 500 pixels', '2022-02-13 03:47:36', '2022-02-13 03:47:36'),
(291, 'Tahsin.jpeg', 'tahsin1644745928.jpeg', NULL, '60.07 KB', '960 x 950 pixels', '2022-02-13 03:52:09', '2022-02-13 03:52:09'),
(292, 'IMG_9689.jpg', 'img-96891644748497.jpg', NULL, '192.85 KB', '2100 x 1400 pixels', '2022-02-13 04:34:58', '2022-02-13 04:34:58'),
(293, 'IMG_9694.jpg', 'img-96941644748497.jpg', NULL, '239.09 KB', '2100 x 1400 pixels', '2022-02-13 04:34:58', '2022-02-13 04:34:58'),
(294, 'IMG_9697.jpg', 'img-96971644748498.jpg', NULL, '158.12 KB', '2100 x 1400 pixels', '2022-02-13 04:34:58', '2022-02-13 04:34:58'),
(295, 'IMG_9710.jpg', 'img-97101644748498.jpg', NULL, '232.64 KB', '2100 x 1400 pixels', '2022-02-13 04:34:58', '2022-02-13 04:34:58'),
(296, 'IMG_9712.jpg', 'img-97121644748498.jpg', NULL, '234.25 KB', '2100 x 1400 pixels', '2022-02-13 04:34:59', '2022-02-13 04:34:59'),
(297, 'IMG_9713.jpg', 'img-97131644748498.jpg', NULL, '231.64 KB', '2100 x 1400 pixels', '2022-02-13 04:34:59', '2022-02-13 04:34:59'),
(298, 'IMG_9732.jpg', 'img-97321644748499.jpg', NULL, '241.5 KB', '2100 x 1400 pixels', '2022-02-13 04:34:59', '2022-02-13 04:34:59'),
(299, 'IMG_9773.jpg', 'img-97731644748499.jpg', NULL, '205.45 KB', '2100 x 1400 pixels', '2022-02-13 04:34:59', '2022-02-13 04:34:59'),
(300, 'IMG_9920.jpg', 'img-99201644748499.jpg', NULL, '218.59 KB', '2100 x 1400 pixels', '2022-02-13 04:35:00', '2022-02-13 04:35:00'),
(301, 'IMG_9927.jpg', 'img-99271644748499.jpg', NULL, '252.5 KB', '2100 x 1400 pixels', '2022-02-13 04:35:00', '2022-02-13 04:35:00'),
(302, 'IMG_9567.jpg', 'img-95671644748500.jpg', NULL, '205.7 KB', '2100 x 1400 pixels', '2022-02-13 04:35:00', '2022-02-13 04:35:00'),
(303, 'IMG_9681.jpg', 'img-96811644748500.jpg', NULL, '219.97 KB', '2100 x 1400 pixels', '2022-02-13 04:35:00', '2022-02-13 04:35:00'),
(304, 'IMG_9685.jpg', 'img-96851644748500.jpg', NULL, '189.39 KB', '2100 x 1400 pixels', '2022-02-13 04:35:01', '2022-02-13 04:35:01'),
(305, 'IMG_20211002_125139.jpg', 'img-20211002-1251391644748802.jpg', NULL, '131.42 KB', '2000 x 900 pixels', '2022-02-13 04:40:02', '2022-02-13 04:40:02'),
(306, 'IMG_20211002_130456.jpg', 'img-20211002-1304561644748802.jpg', NULL, '149.79 KB', '2000 x 900 pixels', '2022-02-13 04:40:02', '2022-02-13 04:40:02'),
(307, 'IMG_20211002_132119.jpg', 'img-20211002-1321191644748802.jpg', NULL, '55.81 KB', '1252 x 898 pixels', '2022-02-13 04:40:02', '2022-02-13 04:40:02'),
(308, 'IMG_20211002_131606.jpg', 'img-20211002-1316061644748802.jpg', NULL, '124.7 KB', '2016 x 1512 pixels', '2022-02-13 04:40:03', '2022-02-13 04:40:03'),
(309, 'IMG_20211002_103657__01.jpg', 'img-20211002-103657-011644748803.jpg', NULL, '87.64 KB', '900 x 1114 pixels', '2022-02-13 04:40:03', '2022-02-13 04:40:03'),
(310, 'IMG_20211002_123443.jpg', 'img-20211002-1234431644748803.jpg', NULL, '106.11 KB', '2000 x 900 pixels', '2022-02-13 04:40:03', '2022-02-13 04:40:03'),
(311, 'IMG_20211002_124203.jpg', 'img-20211002-1242031644748803.jpg', NULL, '158.7 KB', '2000 x 900 pixels', '2022-02-13 04:40:03', '2022-02-13 04:40:03'),
(312, 'IMG_20211002_124226.jpg', 'img-20211002-1242261644748803.jpg', NULL, '158.79 KB', '2000 x 900 pixels', '2022-02-13 04:40:03', '2022-02-13 04:40:03'),
(313, 'IMG_20211002_124239.jpg', 'img-20211002-1242391644748803.jpg', NULL, '147.69 KB', '2000 x 900 pixels', '2022-02-13 04:40:04', '2022-02-13 04:40:04'),
(314, 'prangon.jpg', 'prangon1657085155.jpg', NULL, '12.19 KB', '270 x 280 pixels', '2022-07-05 23:25:55', '2022-07-05 23:25:55'),
(315, 'orchi.jpg', 'orchi1657085195.jpg', NULL, '16.71 KB', '270 x 280 pixels', '2022-07-05 23:26:35', '2022-07-05 23:26:35'),
(316, 'Rafiq.jpg', 'rafiq1657085195.jpg', NULL, '12.44 KB', '270 x 280 pixels', '2022-07-05 23:26:35', '2022-07-05 23:26:35'),
(317, 'sumaiya.jpg', 'sumaiya1657085195.jpg', NULL, '18.28 KB', '270 x 280 pixels', '2022-07-05 23:26:35', '2022-07-05 23:26:35'),
(318, 'sumaiya.jpg', 'sumaiya1657085713.jpg', NULL, '18.82 KB', '270 x 280 pixels', '2022-07-05 23:35:13', '2022-07-05 23:35:13'),
(319, 'avatar.jpg', 'avatar1657085969.jpg', NULL, '10.55 KB', '270 x 280 pixels', '2022-07-05 23:39:29', '2022-07-05 23:39:29'),
(320, '1.jpg', '11657086658.jpg', NULL, '755.26 KB', '1920 x 1280 pixels', '2022-07-05 23:50:58', '2022-07-05 23:50:58'),
(321, '2.jpg', '21657088379.jpg', NULL, '475.4 KB', '1920 x 1280 pixels', '2022-07-06 00:19:39', '2022-07-06 00:19:39'),
(322, '284360917_410444357602185_816685499991352393_n.jpg', '284360917-410444357602185-816685499991352393-n1657088589.jpg', NULL, '382.71 KB', '2048 x 1536 pixels', '2022-07-06 00:23:09', '2022-07-06 00:23:09'),
(323, '284657324_410444324268855_20703516118607003_n.jpg', '284657324-410444324268855-20703516118607003-n1657088589.jpg', NULL, '339.99 KB', '2048 x 1536 pixels', '2022-07-06 00:23:09', '2022-07-06 00:23:09'),
(324, '284377267_410444370935517_5614856876479523418_n.jpg', '284377267-410444370935517-5614856876479523418-n1657088589.jpg', NULL, '308.26 KB', '2048 x 1536 pixels', '2022-07-06 00:23:09', '2022-07-06 00:23:09'),
(325, '284329086_410444314268856_3371109041316047124_n (1).jpg', '284329086-410444314268856-3371109041316047124-n-11657088589.jpg', NULL, '388.65 KB', '2048 x 1536 pixels', '2022-07-06 00:23:10', '2022-07-06 00:23:10'),
(326, '289218599_425337176112903_8497419668758016250_n (2).jpg', '289218599-425337176112903-8497419668758016250-n-21657088856.jpg', NULL, '1.11 MB', '2048 x 1225 pixels', '2022-07-06 00:27:36', '2022-07-06 00:27:36'),
(327, '289073130_423989456247675_1412448491164370497_n (1).jpg', '289073130-423989456247675-1412448491164370497-n-11657088900.jpg', NULL, '283.63 KB', '2048 x 1402 pixels', '2022-07-06 00:28:20', '2022-07-06 00:28:20'),
(328, '288961183_423988966247724_5103402658828324469_n (1).jpg', '288961183-423988966247724-5103402658828324469-n-11657088900.jpg', NULL, '292.03 KB', '2048 x 1536 pixels', '2022-07-06 00:28:20', '2022-07-06 00:28:20'),
(329, '288896676_423989446247676_2825724465316455448_n.jpg', '288896676-423989446247676-2825724465316455448-n1657088900.jpg', NULL, '318.76 KB', '2048 x 1226 pixels', '2022-07-06 00:28:21', '2022-07-06 00:28:21'),
(330, '289247467_423989389581015_7519707103461828772_n.jpg', '289247467-423989389581015-7519707103461828772-n1657088900.jpg', NULL, '279.45 KB', '2048 x 1536 pixels', '2022-07-06 00:28:21', '2022-07-06 00:28:21');
INSERT INTO `media_uploads` (`id`, `title`, `path`, `alt`, `size`, `dimensions`, `created_at`, `updated_at`) VALUES
(331, '289018516_423989422914345_178632255686426262_n.jpg', '289018516-423989422914345-178632255686426262-n1657088901.jpg', NULL, '249.68 KB', '2048 x 1150 pixels', '2022-07-06 00:28:21', '2022-07-06 00:28:21'),
(332, '288892278_423988962914391_7291482505984820693_n.jpg', '288892278-423988962914391-7291482505984820693-n1657088901.jpg', NULL, '275.17 KB', '2048 x 1150 pixels', '2022-07-06 00:28:21', '2022-07-06 00:28:21'),
(333, '288872816_423989399581014_3021413228257231710_n.jpg', '288872816-423989399581014-3021413228257231710-n1657088901.jpg', NULL, '287.92 KB', '2048 x 1150 pixels', '2022-07-06 00:28:21', '2022-07-06 00:28:21'),
(334, '288923184_423989409581013_7642174109072179724_n.jpg', '288923184-423989409581013-7642174109072179724-n1657088901.jpg', NULL, '291.85 KB', '2048 x 1150 pixels', '2022-07-06 00:28:21', '2022-07-06 00:28:21'),
(335, '288961183_423988966247724_5103402658828324469_n.jpg', '288961183-423988966247724-5103402658828324469-n1657088901.jpg', NULL, '292.03 KB', '2048 x 1536 pixels', '2022-07-06 00:28:22', '2022-07-06 00:28:22'),
(336, 'shanta.jpg', 'shanta1658641139.jpg', NULL, '13.79 KB', '270 x 280 pixels', '2022-07-23 23:38:59', '2022-07-23 23:38:59'),
(337, 'WhatsApp Image 2023-11-21 at 16.10.28_f1f23e92.jpg', 'whatsapp-image-2023-11-21-at-161028-f1f23e921700561747.jpg', NULL, '68.9 KB', '643 x 698 pixels', '2023-11-21 04:15:47', '2023-11-21 04:15:47'),
(338, 'WhatsApp Image 2023-11-21 at 16.10.28_f1f23e92.jpg', 'whatsapp-image-2023-11-21-at-161028-f1f23e921700561758.jpg', NULL, '68.9 KB', '643 x 698 pixels', '2023-11-21 04:15:58', '2023-11-21 04:15:58'),
(339, 'young-woman-student-avatar-icon-vector-isolated-2G6BD09.jpg', 'young-woman-student-avatar-icon-vector-isolated-2g6bd091700562058.jpg', NULL, '49.62 KB', '891 x 1390 pixels', '2023-11-21 04:20:58', '2023-11-21 04:20:58'),
(340, '7699579.png', '76995791700562246.png', NULL, '26.33 KB', '512 x 512 pixels', '2023-11-21 04:24:06', '2023-11-21 04:24:06'),
(341, 'WhatsApp Image 2023-11-21 at 16.34.06_59f8d76b.jpg', 'whatsapp-image-2023-11-21-at-163406-59f8d76b1700562977.jpg', NULL, '45.4 KB', '1080 x 1081 pixels', '2023-11-21 04:36:18', '2023-11-21 04:36:18'),
(342, '80302.jpg', '803021700563260.jpg', NULL, '246.71 KB', '1200 x 1800 pixels', '2023-11-21 04:41:01', '2023-11-21 04:41:01'),
(343, 'rsz_80302.jpg', 'rsz-803021700563470.jpg', NULL, '75.43 KB', '600 x 900 pixels', '2023-11-21 04:44:30', '2023-11-21 04:44:30'),
(344, '80302.jpg', '803021700563647.jpg', NULL, '37.92 KB', '300 x 300 pixels', '2023-11-21 04:47:27', '2023-11-21 04:47:27'),
(345, '4537028.png', '45370281700563908.png', NULL, '25.54 KB', '512 x 512 pixels', '2023-11-21 04:51:48', '2023-11-21 04:51:48'),
(346, 'WhatsApp Image 2023-11-21 at 17.06.06_673e90de1.jpg', 'whatsapp-image-2023-11-21-at-170606-673e90de11700565992.jpg', NULL, '19.21 KB', '300 x 300 pixels', '2023-11-21 05:26:32', '2023-11-21 05:26:32'),
(347, 'WhatsApp Image 2023-11-21 at 17.06.46_3cb2d2bd.jpg', 'whatsapp-image-2023-11-21-at-170646-3cb2d2bd1700566131.jpg', NULL, '23.11 KB', '300 x 300 pixels', '2023-11-21 05:28:51', '2023-11-21 05:28:51'),
(348, 'WhatsApp Image 2023-11-21 at 17.05.44_8b8863fa.jpg', 'whatsapp-image-2023-11-21-at-170544-8b8863fa1700566229.jpg', NULL, '31.57 KB', '300 x 300 pixels', '2023-11-21 05:30:29', '2023-11-21 05:30:29'),
(349, 'WhatsApp Image 2023-11-21 at 17.24.41_696fb1b5.jpg', 'whatsapp-image-2023-11-21-at-172441-696fb1b51700566394.jpg', NULL, '29.26 KB', '300 x 300 pixels', '2023-11-21 05:33:14', '2023-11-21 05:33:14'),
(350, 'WhatsApp Image 2023-11-21 at 17.25.12_66c2df25.jpg', 'whatsapp-image-2023-11-21-at-172512-66c2df251700566461.jpg', NULL, '31.86 KB', '300 x 300 pixels', '2023-11-21 05:34:21', '2023-11-21 05:34:21'),
(351, 'sharna.jpg', 'sharna1700628919.jpg', NULL, '22.8 KB', '270 x 280 pixels', '2023-11-21 22:55:19', '2023-11-21 22:55:19'),
(352, 'Sadman.jpg', 'sadman1700628938.jpg', NULL, '34.03 KB', '270 x 280 pixels', '2023-11-21 22:55:38', '2023-11-21 22:55:38'),
(353, 'Rifat Wahid.jpg', 'rifat-wahid1700628950.jpg', NULL, '27.3 KB', '270 x 280 pixels', '2023-11-21 22:55:50', '2023-11-21 22:55:50'),
(354, 'Meem.jpg', 'meem1700628961.jpg', NULL, '26.96 KB', '270 x 280 pixels', '2023-11-21 22:56:01', '2023-11-21 22:56:01'),
(355, 'Zaman.jpg', 'zaman1700628981.jpg', NULL, '19.87 KB', '270 x 280 pixels', '2023-11-21 22:56:21', '2023-11-21 22:56:21'),
(356, 'rashed.jpg', 'rashed1700628990.jpg', NULL, '15.99 KB', '270 x 280 pixels', '2023-11-21 22:56:30', '2023-11-21 22:56:30'),
(357, 'Tanya.jpg', 'tanya1700628998.jpg', NULL, '25.18 KB', '270 x 280 pixels', '2023-11-21 22:56:38', '2023-11-21 22:56:38'),
(358, 'Hazera.jpg', 'hazera1700629104.jpg', NULL, '28.05 KB', '270 x 280 pixels', '2023-11-21 22:58:24', '2023-11-21 22:58:24'),
(359, 'Banner.jpg', 'banner1700630512.jpg', NULL, '886.18 KB', '1920 x 900 pixels', '2023-11-21 23:21:52', '2023-11-21 23:21:52'),
(360, 'WhatsApp Image 2023-11-22 at 12.32.13_c09b1cb5.jpg', 'whatsapp-image-2023-11-22-at-123213-c09b1cb51700635126.jpg', NULL, '271.46 KB', '1600 x 1066 pixels', '2023-11-22 00:38:46', '2023-11-22 00:38:46'),
(361, 'WhatsApp Image 2023-11-22 at 12.32.13_7959d9e3.jpg', 'whatsapp-image-2023-11-22-at-123213-7959d9e31700636412.jpg', NULL, '269.51 KB', '1600 x 1066 pixels', '2023-11-22 01:00:12', '2023-11-22 01:00:12'),
(362, 'WhatsApp Image 2023-11-22 at 11.07.11_ddf0c13b.jpg', 'whatsapp-image-2023-11-22-at-110711-ddf0c13b1700636425.jpg', NULL, '475.24 KB', '1600 x 1208 pixels', '2023-11-22 01:00:26', '2023-11-22 01:00:26'),
(363, 'WhatsApp Image 2023-11-22 at 12.32.13_60dcef74.jpg', 'whatsapp-image-2023-11-22-at-123213-60dcef741700636558.jpg', NULL, '334.03 KB', '1600 x 1066 pixels', '2023-11-22 01:02:38', '2023-11-22 01:02:38'),
(364, 'WhatsApp Image 2023-11-22 at 11.07.08_a5dda1a3.jpg', 'whatsapp-image-2023-11-22-at-110708-a5dda1a31700636595.jpg', NULL, '478.61 KB', '1600 x 1033 pixels', '2023-11-22 01:03:16', '2023-11-22 01:03:16'),
(365, 'WhatsApp Image 2023-11-22 at 12.32.13_a563789f.jpg', 'whatsapp-image-2023-11-22-at-123213-a563789f1700636652.jpg', NULL, '244.2 KB', '1600 x 1066 pixels', '2023-11-22 01:04:12', '2023-11-22 01:04:12'),
(366, 'WhatsApp Image 2023-11-22 at 12.32.13_26f0c148.jpg', 'whatsapp-image-2023-11-22-at-123213-26f0c1481700636662.jpg', NULL, '230.91 KB', '1600 x 1066 pixels', '2023-11-22 01:04:22', '2023-11-22 01:04:22'),
(367, '5.jpg', '51700637442.jpg', NULL, '303.21 KB', '1066 x 804 pixels', '2023-11-22 01:17:22', '2023-11-22 01:17:22'),
(368, '6.jpg', '61700637519.jpg', NULL, '217.03 KB', '1094 x 535 pixels', '2023-11-22 01:18:39', '2023-11-22 01:18:39'),
(369, '3.jpg', '31700637572.jpg', NULL, '156.51 KB', '1079 x 564 pixels', '2023-11-22 01:19:33', '2023-11-22 01:19:33'),
(370, '2.jpg', '21700637606.jpg', NULL, '223.77 KB', '1067 x 710 pixels', '2023-11-22 01:20:06', '2023-11-22 01:20:06'),
(371, '8.jpg', '81700637714.jpg', NULL, '206.09 KB', '1066 x 710 pixels', '2023-11-22 01:21:54', '2023-11-22 01:21:54'),
(372, '6.jpg', '61700639053.jpg', NULL, '383.82 KB', '1920 x 1080 pixels', '2023-11-22 01:44:13', '2023-11-22 01:44:13'),
(373, '1.jpg', '11700639062.jpg', NULL, '328.29 KB', '1918 x 1080 pixels', '2023-11-22 01:44:22', '2023-11-22 01:44:22'),
(374, '2.jpg', '21700639062.jpg', NULL, '370.75 KB', '1920 x 1080 pixels', '2023-11-22 01:44:22', '2023-11-22 01:44:22'),
(375, '3.jpg', '31700639063.jpg', NULL, '653.44 KB', '1920 x 1080 pixels', '2023-11-22 01:44:23', '2023-11-22 01:44:23'),
(376, '4.jpg', '41700639063.jpg', NULL, '869.08 KB', '1920 x 1080 pixels', '2023-11-22 01:44:23', '2023-11-22 01:44:23'),
(377, '5.jpg', '51700639063.jpg', NULL, '316.35 KB', '1920 x 1080 pixels', '2023-11-22 01:44:23', '2023-11-22 01:44:23'),
(378, '7.jpg', '71700642552.jpg', NULL, '328.13 KB', '1920 x 900 pixels', '2023-11-22 02:42:32', '2023-11-22 02:42:32'),
(379, '9.jpg', '91700642591.jpg', NULL, '340.22 KB', '1920 x 900 pixels', '2023-11-22 02:43:12', '2023-11-22 02:43:12'),
(380, 'WhatsApp Image 2023-11-22 at 11.06.58_50cf95bb.jpg', 'whatsapp-image-2023-11-22-at-110658-50cf95bb1700643053.jpg', NULL, '702.31 KB', '1600 x 1329 pixels', '2023-11-22 02:50:54', '2023-11-22 02:50:54'),
(381, 'WhatsApp Image 2023-11-22 at 12.32.13_7959d9e3.jpg', 'whatsapp-image-2023-11-22-at-123213-7959d9e31700643073.jpg', NULL, '361.73 KB', '1920 x 900 pixels', '2023-11-22 02:51:13', '2023-11-22 02:51:13'),
(382, 'Hazera.jpg', 'hazera1700649732.jpg', NULL, '227.64 KB', '1542 x 1600 pixels', '2023-11-22 04:42:12', '2023-11-22 04:42:12'),
(383, 'Meem.jpg', 'meem1700649732.jpg', NULL, '337.17 KB', '1542 x 1600 pixels', '2023-11-22 04:42:12', '2023-11-22 04:42:12'),
(384, 'rashed.jpg', 'rashed1700649732.jpg', NULL, '142.81 KB', '1542 x 1600 pixels', '2023-11-22 04:42:12', '2023-11-22 04:42:12'),
(385, 'Rifat Wahid.jpg', 'rifat-wahid1700649732.jpg', NULL, '290.74 KB', '1542 x 1600 pixels', '2023-11-22 04:42:13', '2023-11-22 04:42:13'),
(386, 'Sadman.jpg', 'sadman1700649733.jpg', NULL, '214.61 KB', '1542 x 1600 pixels', '2023-11-22 04:42:13', '2023-11-22 04:42:13'),
(387, 'sharna.jpg', 'sharna1700649733.jpg', NULL, '185.74 KB', '1542 x 1600 pixels', '2023-11-22 04:42:13', '2023-11-22 04:42:13'),
(388, 'Tanya.jpg', 'tanya1700649733.jpg', NULL, '249.23 KB', '1542 x 1600 pixels', '2023-11-22 04:42:13', '2023-11-22 04:42:13'),
(389, 'Zaman.jpg', 'zaman1700649733.jpg', NULL, '168.77 KB', '1542 x 1600 pixels', '2023-11-22 04:42:14', '2023-11-22 04:42:14'),
(390, 'Kamrun.jpg', 'kamrun1700650320.jpg', NULL, '269.52 KB', '1542 x 1600 pixels', '2023-11-22 04:52:01', '2023-11-22 04:52:01'),
(391, 'shutterstock_1031044285.jpg', 'shutterstock-10310442851701337952.jpg', NULL, '342.8 KB', '1600 x 900 pixels', '2023-11-30 03:52:32', '2023-11-30 03:52:32'),
(392, 'Corporate-Knowledge-Management.jpg', 'corporate-knowledge-management1701338010.jpg', NULL, '46.68 KB', '824 x 447 pixels', '2023-11-30 03:53:30', '2023-11-30 03:53:30'),
(393, '3.15.23-scott-snyder-esg-corporate-innovation-GettyImages-1410816388.png', '31523-scott-snyder-esg-corporate-innovation-gettyimages-14108163881701338978.png', NULL, '251.47 KB', '1300 x 874 pixels', '2023-11-30 04:09:38', '2023-11-30 04:09:38'),
(394, 'WhatsApp Image 2023-11-30 at 16.22.56_f7fc7bd3.jpg', 'whatsapp-image-2023-11-30-at-162256-f7fc7bd31701339815.jpg', NULL, '170.2 KB', '1600 x 750 pixels', '2023-11-30 04:23:35', '2023-11-30 04:23:35'),
(395, '1.jpg', '11701340347.jpg', NULL, '230.44 KB', '1600 x 750 pixels', '2023-11-30 04:32:27', '2023-11-30 04:32:27'),
(396, '7.jpg', '71701340419.jpg', NULL, '197.55 KB', '1600 x 750 pixels', '2023-11-30 04:33:39', '2023-11-30 04:33:39'),
(397, '2.jpg', '21701340466.jpg', NULL, '92.05 KB', '1600 x 750 pixels', '2023-11-30 04:34:27', '2023-11-30 04:34:27'),
(398, '1.jpg', '11701340546.jpg', NULL, '230.44 KB', '1600 x 750 pixels', '2023-11-30 04:35:47', '2023-11-30 04:35:47'),
(399, 'WhatsApp Image 2023-11-30 at 16.34.03_34346e13.jpg', 'whatsapp-image-2023-11-30-at-163403-34346e131701340647.jpg', NULL, '22.03 KB', '550 x 151 pixels', '2023-11-30 04:37:27', '2023-11-30 04:37:27'),
(400, '3.jpg', '31701341089.jpg', NULL, '216.87 KB', '1600 x 750 pixels', '2023-11-30 04:44:49', '2023-11-30 04:44:49'),
(401, 'Logo Button 2.png', 'logo-button-21701341459.png', NULL, '32.06 KB', '550 x 151 pixels', '2023-11-30 04:50:59', '2023-11-30 04:50:59'),
(402, 'Logo Button 1.png', 'logo-button-11701341516.png', NULL, '28.79 KB', '550 x 151 pixels', '2023-11-30 04:51:56', '2023-11-30 04:51:56'),
(403, 'WhatsApp Image 2023-11-30 at 16.57.43_3b359d7f.jpg', 'whatsapp-image-2023-11-30-at-165743-3b359d7f1701342011.jpg', NULL, '235.52 KB', '1600 x 750 pixels', '2023-11-30 05:00:11', '2023-11-30 05:00:11'),
(404, 'WhatsApp Image 2023-11-30 at 16.57.43_77085f9e.jpg', 'whatsapp-image-2023-11-30-at-165743-77085f9e1701342110.jpg', NULL, '163.61 KB', '1600 x 750 pixels', '2023-11-30 05:01:50', '2023-11-30 05:01:50'),
(405, 'WhatsApp Image 2023-11-30 at 17.00.47_dda6856d.jpg', 'whatsapp-image-2023-11-30-at-170047-dda6856d1701342186.jpg', NULL, '125.65 KB', '1600 x 750 pixels', '2023-11-30 05:03:06', '2023-11-30 05:03:06'),
(406, '1.jpg', '11701342967.jpg', NULL, '125.52 KB', '1920 x 900 pixels', '2023-11-30 05:16:07', '2023-11-30 05:16:07'),
(407, '3.jpg', '31701343011.jpg', NULL, '112.24 KB', '1920 x 900 pixels', '2023-11-30 05:16:51', '2023-11-30 05:16:51'),
(408, '8.jpg', '81701343327.jpg', NULL, '266.02 KB', '1920 x 900 pixels', '2023-11-30 05:22:07', '2023-11-30 05:22:07'),
(409, '5.jpg', '51701343411.jpg', NULL, '230.42 KB', '1920 x 900 pixels', '2023-11-30 05:23:32', '2023-11-30 05:23:32'),
(410, '7.jpg', '71701343478.jpg', NULL, '122.89 KB', '1920 x 900 pixels', '2023-11-30 05:24:38', '2023-11-30 05:24:38'),
(411, '3.jpg', '31701343525.jpg', NULL, '112.24 KB', '1920 x 900 pixels', '2023-11-30 05:25:25', '2023-11-30 05:25:25'),
(412, 'website image rahim.jpg', 'website-image-rahim1701679067.jpg', NULL, '897.38 KB', '2160 x 2240 pixels', '2023-12-04 02:37:48', '2023-12-04 02:37:48'),
(413, 'WhatsApp Image 2024-01-27 at 16.21.22_97a6c6e0.jpg', 'whatsapp-image-2024-01-27-at-162122-97a6c6e01706350987.jpg', NULL, '20.08 KB', '474 x 526 pixels', '2024-01-27 04:23:07', '2024-01-27 04:23:07'),
(414, 'WhatsApp Image 2024-01-27 at 16.21.36_cbafcfd8.jpg', 'whatsapp-image-2024-01-27-at-162136-cbafcfd81706351166.jpg', NULL, '95.44 KB', '496 x 620 pixels', '2024-01-27 04:26:06', '2024-01-27 04:26:06'),
(415, 'WhatsApp Image 2024-01-27 at 16.21.36_cbafcfd8.jpg', 'whatsapp-image-2024-01-27-at-162136-cbafcfd81706351403.jpg', NULL, '32.42 KB', '270 x 280 pixels', '2024-01-27 04:30:04', '2024-01-27 04:30:04'),
(416, '394689250_290556900475976_5839186515639235170_n.jpg', '394689250-290556900475976-5839186515639235170-n1706423808.jpg', NULL, '938.48 KB', '2048 x 1536 pixels', '2024-01-28 00:36:48', '2024-01-28 00:36:48'),
(417, '420512426_339617095569956_1583384417417590956_n.jpg', '420512426-339617095569956-1583384417417590956-n1706424983.jpg', NULL, '353.96 KB', '2048 x 1382 pixels', '2024-01-28 00:56:23', '2024-01-28 00:56:23'),
(418, '420512416_339617285569937_2647965701598097606_n.jpg', '420512416-339617285569937-2647965701598097606-n1706425048.jpg', NULL, '379.82 KB', '2048 x 1352 pixels', '2024-01-28 00:57:28', '2024-01-28 00:57:28'),
(419, '421901086_340886592109673_1098100806642896859_n.jpg', '421901086-340886592109673-1098100806642896859-n1706426172.jpg', NULL, '417.63 KB', '3295 x 1272 pixels', '2024-01-28 01:16:12', '2024-01-28 01:16:12'),
(420, 'IMG-20240128-WA0012.jpg', 'img-20240128-wa00121706427686.jpg', NULL, '26.83 KB', '1024 x 281 pixels', '2024-01-28 01:41:27', '2024-01-28 01:41:27'),
(421, 'IMG-20240128-WA0013.jpg', 'img-20240128-wa00131706427774.jpg', NULL, '29.66 KB', '1024 x 620 pixels', '2024-01-28 01:42:54', '2024-01-28 01:42:54'),
(422, 'IMG-20240128-WA0037.jpg', 'img-20240128-wa00371706427858.jpg', NULL, '9.2 KB', '225 x 225 pixels', '2024-01-28 01:44:18', '2024-01-28 01:44:18'),
(423, 'IMG-20240128-WA0036.jpg', 'img-20240128-wa00361706427933.jpg', NULL, '6.52 KB', '297 x 170 pixels', '2024-01-28 01:45:33', '2024-01-28 01:45:33'),
(424, 'IMG-20240128-WA0035.jpg', 'img-20240128-wa00351706428027.jpg', NULL, '8.72 KB', '362 x 139 pixels', '2024-01-28 01:47:07', '2024-01-28 01:47:07'),
(425, 'IMG-20240128-WA0034.jpg', 'img-20240128-wa00341706428189.jpg', NULL, '9.83 KB', '386 x 131 pixels', '2024-01-28 01:49:49', '2024-01-28 01:49:49'),
(426, 'IMG-20240128-WA0033.jpg', 'img-20240128-wa00331706428297.jpg', NULL, '11.1 KB', '270 x 187 pixels', '2024-01-28 01:51:37', '2024-01-28 01:51:37'),
(427, 'IMG-20240128-WA0032.jpg', 'img-20240128-wa00321706428352.jpg', NULL, '73.03 KB', '920 x 600 pixels', '2024-01-28 01:52:32', '2024-01-28 01:52:32'),
(428, 'IMG-20240128-WA0031.jpg', 'img-20240128-wa00311706428422.jpg', NULL, '9.81 KB', '301 x 167 pixels', '2024-01-28 01:53:42', '2024-01-28 01:53:42'),
(429, 'IMG-20240128-WA0030.jpg', 'img-20240128-wa00301706428836.jpg', NULL, '8.76 KB', '318 x 159 pixels', '2024-01-28 02:00:36', '2024-01-28 02:00:36'),
(430, 'IMG-20240128-WA0029.jpg', 'img-20240128-wa00291706428911.jpg', NULL, '4.21 KB', '204 x 247 pixels', '2024-01-28 02:01:51', '2024-01-28 02:01:51'),
(431, 'IMG-20240128-WA0028.jpg', 'img-20240128-wa00281706429017.jpg', NULL, '23.54 KB', '316 x 316 pixels', '2024-01-28 02:03:37', '2024-01-28 02:03:37'),
(432, 'IMG-20240128-WA0027.jpg', 'img-20240128-wa00271706429071.jpg', NULL, '5.23 KB', '225 x 225 pixels', '2024-01-28 02:04:31', '2024-01-28 02:04:31'),
(433, 'IMG-20240128-WA0026.jpg', 'img-20240128-wa00261706429137.jpg', NULL, '27.8 KB', '1024 x 298 pixels', '2024-01-28 02:05:37', '2024-01-28 02:05:37'),
(434, 'IMG-20240128-WA0025.jpg', 'img-20240128-wa00251706429211.jpg', NULL, '9.9 KB', '301 x 167 pixels', '2024-01-28 02:06:51', '2024-01-28 02:06:51'),
(435, 'IMG-20240128-WA0024.jpg', 'img-20240128-wa00241706429314.jpg', NULL, '12.9 KB', '254 x 198 pixels', '2024-01-28 02:08:34', '2024-01-28 02:08:34'),
(436, 'IMG-20240128-WA0023.jpg', 'img-20240128-wa00231706429371.jpg', NULL, '13.04 KB', '440 x 114 pixels', '2024-01-28 02:09:31', '2024-01-28 02:09:31'),
(437, 'IMG-20240128-WA0022.jpg', 'img-20240128-wa00221706429435.jpg', NULL, '6.23 KB', '225 x 225 pixels', '2024-01-28 02:10:35', '2024-01-28 02:10:35'),
(438, 'IMG-20240128-WA0021.jpg', 'img-20240128-wa00211706429493.jpg', NULL, '3.92 KB', '275 x 183 pixels', '2024-01-28 02:11:33', '2024-01-28 02:11:33'),
(439, 'IMG-20240128-WA0020.jpg', 'img-20240128-wa00201706429589.jpg', NULL, '5.01 KB', '300 x 168 pixels', '2024-01-28 02:13:09', '2024-01-28 02:13:09'),
(440, 'IMG-20240128-WA0019.jpg', 'img-20240128-wa00191706429640.jpg', NULL, '7.28 KB', '301 x 167 pixels', '2024-01-28 02:14:01', '2024-01-28 02:14:01'),
(441, 'IMG-20240128-WA0018.jpg', 'img-20240128-wa00181706431597.jpg', NULL, '11.62 KB', '418 x 120 pixels', '2024-01-28 02:46:37', '2024-01-28 02:46:37'),
(442, 'IMG-20240128-WA0017.jpg', 'img-20240128-wa00171706431665.jpg', NULL, '11.42 KB', '355 x 142 pixels', '2024-01-28 02:47:45', '2024-01-28 02:47:45'),
(443, 'IMG-20240128-WA0017.jpg', 'img-20240128-wa00171706431867.jpg', NULL, '11.42 KB', '355 x 142 pixels', '2024-01-28 02:51:07', '2024-01-28 02:51:07'),
(444, 'IMG-20240128-WA0016.jpg', 'img-20240128-wa00161706431969.jpg', NULL, '8.34 KB', '404 x 125 pixels', '2024-01-28 02:52:49', '2024-01-28 02:52:49'),
(445, 'IMG-20240128-WA0015.jpg', 'img-20240128-wa00151706432364.jpg', NULL, '11.88 KB', '192 x 262 pixels', '2024-01-28 02:59:24', '2024-01-28 02:59:24'),
(446, 'IMG-20240128-WA0014.jpg', 'img-20240128-wa00141706432453.jpg', NULL, '14.89 KB', '369 x 137 pixels', '2024-01-28 03:00:53', '2024-01-28 03:00:53'),
(447, 'WhatsApp Image 2024-01-30 at 18.08.42_bf45e192.jpg', 'whatsapp-image-2024-01-30-at-180842-bf45e1921706685429.jpg', NULL, '75.64 KB', '720 x 1520 pixels', '2024-01-31 01:17:09', '2024-01-31 01:17:09'),
(448, 'WhatsApp Image 2024-01-31 at 10.32.19_c510a63c.jpg', 'whatsapp-image-2024-01-31-at-103219-c510a63c1706686053.jpg', NULL, '27 KB', '270 x 280 pixels', '2024-01-31 01:27:33', '2024-01-31 01:27:33');

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

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

CREATE TABLE `menus` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `menus` (`id`, `title`, `lang`, `content`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Primary Menu [ENG]', 'en', '[{\"pname\":\"Home\",\"purl\":\"@url\",\"ptype\":\"custom\",\"id\":1},{\"pslug\":\"about_page_slug\",\"pname\":\"about_page_en_name\",\"ptype\":\"static\",\"id\":2,\"children\":[{\"pslug\":\"image_gallery_page_slug\",\"pname\":\"image_gallery_page_en_name\",\"ptype\":\"static\",\"id\":3},{\"pslug\":\"team_page_slug\",\"pname\":\"team_page_en_name\",\"ptype\":\"static\",\"id\":4},{\"pslug\":\"career_with_us_page_slug\",\"pname\":\"career_with_us_page_en_name\",\"ptype\":\"static\",\"id\":5}]},{\"items_id\":7,\"ptype\":\"service_mega_menu\",\"id\":14,\"uniqueid\":95834107},{\"pslug\":\"events_page_slug\",\"pname\":\"events_page_en_name\",\"ptype\":\"static\",\"id\":4},{\"pid\":4,\"ptype\":\"dynamic\",\"id\":5,\"children\":[{\"pid\":6,\"ptype\":\"dynamic\",\"id\":6},{\"pid\":5,\"ptype\":\"dynamic\",\"id\":7},{\"pid\":8,\"ptype\":\"dynamic\",\"id\":8},{\"pid\":7,\"ptype\":\"dynamic\",\"id\":9}]},{\"pslug\":\"contact_page_slug\",\"pname\":\"contact_page_en_name\",\"ptype\":\"static\",\"id\":6}]', '', '2020-05-27 19:53:38', '2020-10-10 09:50:18'),
(2, 'Menu with Icon', 'en', '[{\"pname\":\"Home\",\"purl\":\"@url\",\"ptype\":\"custom\",\"id\":1},{\"pslug\":\"service_page_slug\",\"pname\":\"service_page_en_name\",\"ptype\":\"static\",\"id\":2},{\"pslug\":\"work_page_slug\",\"pname\":\"work_page_en_name\",\"ptype\":\"static\",\"id\":3,\"children\":[{\"pslug\":\"team_page_slug\",\"pname\":\"team_page_en_name\",\"ptype\":\"static\",\"id\":4,\"children\":[{\"icon\":\"fas fa-question-circle\",\"pslug\":\"faq_page_slug\",\"pname\":\"faq_page_en_name\",\"ptype\":\"static\",\"id\":5}]}]}]', '', '2020-05-31 16:54:39', '2020-10-10 09:56:01'),
(3, 'Useful Links', 'en', '[{\"icon\":\"fas fa-angle-right\",\"pname\":\"Home\",\"purl\":\"@url\",\"ptype\":\"custom\",\"id\":1},{\"icon\":\"fas fa-angle-right\",\"pslug\":\"about_page_slug\",\"pname\":\"about_page_en_name\",\"ptype\":\"static\",\"id\":2},{\"icon\":\"fas fa-angle-right\",\"pslug\":\"service_page_slug\",\"pname\":\"service_page_en_name\",\"ptype\":\"static\",\"id\":3},{\"icon\":\"fas fa-angle-right\",\"pslug\":\"work_page_slug\",\"pname\":\"work_page_en_name\",\"ptype\":\"static\",\"id\":4}]', NULL, '2020-06-17 15:33:46', '2020-06-17 15:38:45'),
(10, 'Futuretrack', 'en', '[{\"pname\":\"Home\",\"purl\":\"@url\",\"ptype\":\"custom\",\"id\":1},{\"pslug\":\"about_page_slug\",\"pname\":\"about_page_en_name\",\"ptype\":\"static\",\"id\":2,\"children\":[{\"pid\":14,\"ptype\":\"dynamic\",\"id\":3},{\"pslug\":\"team_page_slug\",\"pname\":\"team_page_en_name\",\"ptype\":\"static\",\"id\":4},{\"pslug\":\"career_with_us_page_slug\",\"pname\":\"career_with_us_page_en_name\",\"ptype\":\"static\",\"id\":5},{\"pslug\":\"image_gallery_page_slug\",\"pname\":\"image_gallery_page_en_name\",\"ptype\":\"static\",\"id\":6},{\"pid\":10,\"ptype\":\"dynamic\",\"id\":7}]},{\"ptype\":\"service_mega_menu\",\"id\":3},{\"pid\":4,\"ptype\":\"dynamic\",\"id\":5,\"children\":[{\"pid\":6,\"ptype\":\"dynamic\",\"id\":6},{\"pid\":5,\"ptype\":\"dynamic\",\"id\":7},{\"pid\":8,\"ptype\":\"dynamic\",\"id\":8},{\"pid\":11,\"ptype\":\"dynamic\",\"id\":9},{\"pid\":7,\"ptype\":\"dynamic\",\"id\":10},{\"pid\":12,\"ptype\":\"dynamic\",\"id\":11}]},{\"pid\":15,\"ptype\":\"dynamic\",\"id\":6},{\"pslug\":\"events_page_slug\",\"pname\":\"events_page_en_name\",\"ptype\":\"static\",\"id\":4},{\"pslug\":\"quote_page_slug\",\"pname\":\"quote_page_en_name\",\"ptype\":\"static\",\"id\":7},{\"pname\":\"IELTS\",\"purl\":\"https://elearning.shikkhangon.com/home/course/premier-bank-ielts-online-course/617\",\"ptype\":\"custom\",\"id\":8},{\"pslug\":\"contact_page_slug\",\"pname\":\"contact_page_en_name\",\"ptype\":\"static\",\"id\":9}]', 'default', '2020-10-08 10:08:57', '2020-11-02 11:41:28');

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

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

CREATE TABLE `migrations` (
  `id` int(10) UNSIGNED NOT NULL,
  `migration` varchar(191) NOT NULL,
  `batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2019_08_19_000000_create_failed_jobs_table', 1),
(4, '2019_11_06_180949_create_admins_table', 1),
(5, '2019_12_07_082524_create_static_options_table', 1),
(6, '2019_12_13_221931_create_languages_table', 1),
(7, '2020_03_29_075123_create_admin_roles_table', 1),
(8, '2019_12_07_071950_create_contact_info_items_table', 2),
(9, '2019_12_08_171750_create_counterups_table', 2),
(10, '2019_12_09_063224_create_testimonials_table', 2),
(11, '2019_12_10_210247_create_blog_categories_table', 2),
(12, '2019_12_11_074345_create_blogs_table', 2),
(13, '2019_12_28_140343_create_key_features_table', 2),
(14, '2019_12_28_161343_create_services_table', 2),
(15, '2019_12_29_094857_create_price_plans_table', 2),
(16, '2019_12_29_113138_create_team_members_table', 2),
(17, '2020_01_21_132648_create_header_sliders_table', 2),
(18, '2020_01_23_162404_create_service_categories_table', 2),
(20, '2020_01_23_193805_create_works_categories_table', 2),
(21, '2020_01_25_155448_create_pages_table', 2),
(22, '2020_01_25_174849_create_menus_table', 2),
(23, '2020_04_14_082508_create_media_uploads_table', 2),
(24, '2020_04_20_073746_create_quotes_table', 2),
(25, '2020_04_20_170818_create_orders_table', 2),
(26, '2020_04_21_142420_create_payment_logs_table', 2),
(27, '2020_02_04_010636_create_newsletters_table', 3),
(28, '2020_01_23_193759_create_works_table', 4),
(29, '2019_12_29_180216_create_brands_table', 5),
(30, '2020_06_14_081955_create_widgets_table', 6),
(31, '2019_12_10_125607_create_social_icons_table', 7),
(32, '2014_10_12_000000_create_users_table', 8),
(33, '2020_01_28_054211_create_faqs_table', 9),
(34, '2020_04_22_065550_create_jobs_table', 9),
(35, '2020_04_22_065603_create_jobs_categories_table', 9),
(36, '2020_04_23_140942_create_events_table', 9),
(37, '2020_04_23_141011_create_events_categories_table', 9),
(38, '2020_04_24_154518_create_knowledgebase_topics_table', 9),
(39, '2020_04_24_154524_create_knowledgebases_table', 9),
(40, '2020_07_02_125439_create_job_applicants_table', 9),
(41, '2020_07_03_043813_create_price_plan_categories_table', 9),
(42, '2020_07_04_143731_create_event_attendances_table', 9),
(43, '2020_07_04_173333_create_event_payment_logs_table', 9),
(44, '2020_07_06_154309_create_donations_table', 9),
(45, '2020_07_07_150250_create_donation_logs_table', 9),
(46, '2020_07_08_132910_create_product_cupons_table', 9),
(47, '2020_07_08_161737_create_product_shippings_table', 9),
(48, '2020_07_09_084606_create_product_categories_table', 9),
(49, '2020_07_09_133432_create_products_table', 9),
(50, '2020_07_13_124351_create_product_orders_table', 9),
(51, '2020_07_16_111906_create_feedback_table', 9),
(52, '2020_07_17_162008_create_image_galleries_table', 9),
(53, '2020_07_21_053307_create_product_ratings_table', 10),
(54, '2020_07_22_132250_create_popup_builders_table', 11);

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

--
-- Table structure for table `newsletters`
--

CREATE TABLE `newsletters` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `email` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `newsletters`
--

INSERT INTO `newsletters` (`id`, `email`, `created_at`, `updated_at`) VALUES
(1, 'dvrobin4@gmail.com', '2020-05-30 15:56:27', '2020-05-30 15:56:27'),
(2, 'demo@gmail.com', '2020-08-01 16:10:01', '2020-08-01 16:10:01'),
(3, 'gndndn@gmail.com', '2020-08-07 10:57:26', '2020-08-07 10:57:26'),
(4, 'user@gmail.com', '2020-08-07 17:46:35', '2020-08-07 17:46:35'),
(5, 'admin@admin.com', '2020-08-07 18:35:17', '2020-08-07 18:35:17'),
(6, 'babu.ram21@gmail.com', '2020-08-07 20:54:26', '2020-08-07 20:54:26'),
(7, 'rifatahmed0182099@gmail.com', '2020-08-07 22:51:31', '2020-08-07 22:51:31'),
(8, 'aaa@aaa.com', '2020-08-08 15:59:14', '2020-08-08 15:59:14'),
(9, 'admin@example.com', '2020-08-08 17:39:01', '2020-08-08 17:39:01'),
(10, 'alexfagundes@hotmail.com', '2020-08-08 18:42:42', '2020-08-08 18:42:42'),
(11, 'shiponchandrapaul@gmail.com', '2020-08-08 18:46:43', '2020-08-08 18:46:43'),
(12, 'superadmin@example.com', '2020-08-09 14:34:29', '2020-08-09 14:34:29'),
(13, 'markt@infoeus.com', '2020-08-10 11:08:44', '2020-08-10 11:08:44'),
(14, 'demo@ecommerce.com', '2020-08-11 12:55:45', '2020-08-11 12:55:45'),
(15, 'udhavb32@gmail.com', '2020-08-14 21:46:43', '2020-08-14 21:46:43'),
(16, 'magaza@ah0ageld6lli.com', '2020-08-17 23:48:28', '2020-08-17 23:48:28'),
(17, 'vermajitenderguitar@gmail.com', '2020-08-19 22:46:28', '2020-08-19 22:46:28'),
(18, 'vermajitenderguitar@gmail.com2', '2020-08-19 22:46:35', '2020-08-19 22:46:35'),
(19, 'vvvvvvv@gmail.com', '2020-08-20 00:25:06', '2020-08-20 00:25:06'),
(20, 'baidou@gmail.com', '2020-08-21 00:57:58', '2020-08-21 00:57:58'),
(21, 'nvdarian@gmail.com', '2020-08-24 10:35:37', '2020-08-24 10:35:37'),
(22, 'shipo@gmail.com', '2020-08-24 18:41:47', '2020-08-24 18:41:47'),
(23, 'abum07192@gmail.com', '2020-10-31 17:39:07', '2020-10-31 17:39:07'),
(24, 'Rieadahmed23@gmail.com', '2020-11-05 15:13:12', '2020-11-05 15:13:12'),
(25, 'minhajuddin5000@gmail.com', '2020-11-11 13:58:46', '2020-11-11 13:58:46'),
(26, 'mozammelbd1959@gmail.com', '2020-12-05 17:46:06', '2020-12-05 17:46:06'),
(27, 'adibaajrin21@gmail.com', '2020-12-08 05:10:36', '2020-12-08 05:10:36'),
(28, 'marufalansary@gmail.com', '2020-12-09 17:40:08', '2020-12-09 17:40:08'),
(29, 'sabbir280109@gmail.com', '2020-12-28 07:31:58', '2020-12-28 07:31:58'),
(30, 'manik23919@gmail.com', '2020-12-28 13:16:29', '2020-12-28 13:16:29'),
(31, 'mdromjanali688688@gmail.com', '2021-01-02 16:56:43', '2021-01-02 16:56:43'),
(32, 'Garnet13@yahoo.com', '2021-01-03 10:06:53', '2021-01-03 10:06:53'),
(33, 'mdsabbir056@gmail.com', '2021-01-07 02:10:28', '2021-01-07 02:10:28'),
(34, 'saidul.isalm12124401@gimal.com', '2021-01-07 11:34:08', '2021-01-07 11:34:08'),
(35, 'rweinholdt@volcano.net', '2021-01-10 20:26:18', '2021-01-10 20:26:18'),
(36, 'sifaitullhasifat420@gmail.com', '2021-01-17 08:18:03', '2021-01-17 08:18:03'),
(37, 'ss1626080@gmail.com', '2021-01-25 11:58:43', '2021-01-25 11:58:43'),
(38, 'ashrafhasanlingkon@gmail.com', '2021-01-25 13:02:12', '2021-01-25 13:02:12'),
(39, 'muminul.haque08@gmail.com', '2021-01-28 03:31:51', '2021-01-28 03:31:51'),
(40, 'husnaa417@yahoo.com', '2021-01-31 07:47:04', '2021-01-31 07:47:04'),
(41, 'saifulislam033525@gmail.com', '2021-01-31 17:18:51', '2021-01-31 17:18:51'),
(42, 'mdrajib.kasba@gmail.com', '2021-03-01 16:56:11', '2021-03-01 16:56:11'),
(43, 'Darrel68@hotmail.com', '2021-06-29 16:47:57', '2021-06-29 16:47:57'),
(44, 'linda.drabek@gmail.com', '2021-08-19 13:10:32', '2021-08-19 13:10:32'),
(45, 'mikenmic@rogers.com', '2021-09-28 09:45:51', '2021-09-28 09:45:51'),
(46, 'tirthosaha85@gmail.com', '2021-10-20 11:48:17', '2021-10-20 11:48:17'),
(47, 'foo-bar@example.com', '2021-12-25 19:24:28', '2021-12-25 19:24:28'),
(48, 'abrarjahin4200@gmail.com', '2022-02-15 17:58:47', '2022-02-15 17:58:47'),
(49, 'khanlamia2665@gmail.com', '2022-02-16 00:20:03', '2022-02-16 00:20:03'),
(50, 'mahdirahman432234@gmail.com', '2022-02-16 13:09:59', '2022-02-16 13:09:59'),
(51, 'sumona.afrose17@gmail.com', '2022-02-27 08:05:41', '2022-02-27 08:05:41'),
(52, 'jewelrana17778@gmail.com', '2022-03-01 11:00:21', '2022-03-01 11:00:21'),
(53, 'adninmoni@gmail.com', '2022-05-28 05:19:31', '2022-05-28 05:19:31'),
(54, 'pulak335@gmail.com', '2022-06-02 11:34:39', '2022-06-02 11:34:39'),
(55, 'habibh61@gmail.com', '2022-07-31 03:11:05', '2022-07-31 03:11:05'),
(56, 'muzahirr@gmail.com', '2022-10-09 11:54:55', '2022-10-09 11:54:55'),
(57, 'aaaabdullahansari@gmail.com', '2022-12-01 22:24:12', '2022-12-01 22:24:12'),
(58, 'futuretrackbd.com@buycodeshop.com', '2022-12-20 08:05:15', '2022-12-20 08:05:15'),
(59, 'skzaki929@gmail.com', '2023-01-10 00:20:12', '2023-01-10 00:20:12'),
(60, '2h3z_generic_b18a5b28_futuretrackbd.com@data-backup-store.com', '2023-01-31 16:26:01', '2023-01-31 16:26:01'),
(61, 'E7IJ_generic_b18a5b28_futuretrackbd.com@data-backup-store.com', '2023-02-09 20:06:13', '2023-02-09 20:06:13'),
(62, '0WFx_generic_b18a5b28_futuretrackbd.com@data-backup-store.com', '2023-02-16 18:38:43', '2023-02-16 18:38:43'),
(63, '97B4_generic_b18a5b28_futuretrackbd.com@data-backup-store.com', '2023-03-10 22:14:02', '2023-03-10 22:14:02'),
(64, 'OTfa_generic_b18a5b28_futuretrackbd.com@data-backup-store.com', '2023-04-09 20:51:33', '2023-04-09 20:51:33'),
(65, 'LqDu_generic_b18a5b28_futuretrackbd.com@data-backup-store.com', '2023-05-12 19:09:30', '2023-05-12 19:09:30'),
(66, 'arjushahela@gmail.com', '2023-05-14 01:52:16', '2023-05-14 01:52:16'),
(67, 'sabaislam037@gmail.com', '2023-05-14 22:18:20', '2023-05-14 22:18:20'),
(68, 'FCtb_generic_b18a5b28_futuretrackbd.com@data-backup-store.com', '2023-05-15 12:19:57', '2023-05-15 12:19:57'),
(69, 'QaLY_generic_b18a5b28_futuretrackbd.com@data-backup-store.com', '2023-07-09 21:49:54', '2023-07-09 21:49:54'),
(70, 'C6zB_generic_b18a5b28_futuretrackbd.com@data-backup-store.com', '2023-07-25 22:16:07', '2023-07-25 22:16:07'),
(71, 'OOno_generic_b18a5b28_futuretrackbd.com@data-backup-store.com', '2023-09-25 13:31:28', '2023-09-25 13:31:28'),
(72, 'Thalia115.OReilly_1995@alabamahomenetwoks.com', '2023-10-13 16:40:26', '2023-10-13 16:40:26'),
(73, 'rYTIFn.tqbjmd@pointel.xyz', '2023-10-21 03:37:19', '2023-10-21 03:37:19'),
(74, 'Melvin715_Nienow1980@alabamahomenetwoks.com', '2023-10-25 23:28:16', '2023-10-25 23:28:16'),
(75, 'Emmet646Harvey.1965@alabamahomenetwoks.com', '2023-11-03 08:39:06', '2023-11-03 08:39:06'),
(76, 'j5YX_generic_b18a5b28_futuretrackbd.com@data-backup-store.com', '2023-11-18 11:59:00', '2023-11-18 11:59:00'),
(77, 'YMyjnd.qqbcbch@scranch.shop', '2023-11-19 04:18:47', '2023-11-19 04:18:47'),
(78, 'redirect-e1f106aca4d66bdb5d77b15a4ffc73e0@webmark.eting.org', '2023-11-26 15:52:29', '2023-11-26 15:52:29'),
(79, 'redirect-ca0c52285b5102d18bb798c6df1d6d0f@webmark.eting.org', '2023-11-26 16:06:43', '2023-11-26 16:06:43'),
(80, 'vFEUvT.ttwccbw@rottack.autos', '2023-11-27 01:59:36', '2023-11-27 01:59:36'),
(81, 'KqjILD.hbwdqt@rightbliss.beauty', '2023-11-30 21:16:29', '2023-11-30 21:16:29'),
(82, 'vnbUJQ.hmmcmqt@tarboosh.shop', '2023-12-05 12:06:13', '2023-12-05 12:06:13'),
(83, 'NoxPji.cjbqpdw@zetetic.sbs', '2023-12-07 10:25:07', '2023-12-07 10:25:07'),
(84, '22.01hh49mmcx9t4btqyc75cta0fa@mail4u.pw', '2023-12-09 14:16:40', '2023-12-09 14:16:40'),
(85, 'LSeTEC.hpdptwm@rushlight.cfd', '2023-12-12 02:22:52', '2023-12-12 02:22:52'),
(86, 'EfWyJL.pmjmctw@scranch.shop', '2023-12-16 21:11:19', '2023-12-16 21:11:19'),
(87, 'hwpRdS.qqhdpmt@sandcress.xyz', '2023-12-18 05:23:27', '2023-12-18 05:23:27'),
(88, 'TmBEaY.cjjtdbq@gemination.hair', '2023-12-21 14:18:27', '2023-12-21 14:18:27'),
(89, 'aabidchowdhury@gmail.com', '2023-12-29 07:38:22', '2023-12-29 07:38:22'),
(90, '29.01hk6j3afvjrtcfh03jsp9tv6b@mail4u.life', '2024-01-23 23:36:52', '2024-01-23 23:36:52'),
(91, 'leonidkrylovk63u@outlook.com', '2024-01-26 10:57:12', '2024-01-26 10:57:12'),
(92, 'XeoojL.hhbcdt@pointel.xyz', '2024-01-31 19:21:11', '2024-01-31 19:21:11'),
(93, 'MlcLHq.chdpjjt@bakling.click', '2024-02-04 23:40:37', '2024-02-04 23:40:37'),
(94, 'jones_lindsey1983@yahoo.com', '2024-02-13 05:40:31', '2024-02-13 05:40:31'),
(95, 'hITRjJ.bjhwthh@pointel.xyz', '2024-02-15 15:29:45', '2024-02-15 15:29:45'),
(96, 'kami60_jettonot@outlook.com', '2024-02-21 20:19:42', '2024-02-21 20:19:42'),
(97, 'xmleditor420@gmail.com', '2024-03-04 04:37:19', '2024-03-04 04:37:19'),
(98, 'pfxk_generic_b18a5b28_futuretrackbd.com@data-backup-store.com', '2024-03-06 04:52:02', '2024-03-06 04:52:02'),
(99, 'titreed9130@gmail.com', '2024-03-07 19:50:13', '2024-03-07 19:50:13'),
(100, 'TaqEnB.tbhwcwq@rushlight.cfd', '2024-03-11 01:33:12', '2024-03-11 01:33:12'),
(101, 'qthmtmjdb.h@monochord.xyz', '2024-03-15 03:36:26', '2024-03-15 03:36:26'),
(102, 'melissa_holtcmtu@outlook.com', '2024-03-17 08:37:31', '2024-03-17 08:37:31'),
(103, 'phpjpdmcq.h@monochord.xyz', '2024-03-21 04:06:50', '2024-03-21 04:06:50'),
(104, 'roy99minor5sp@outlook.com', '2024-03-21 12:25:29', '2024-03-21 12:25:29'),
(105, 'qjhdqdhmqm.h@monochord.xyz', '2024-03-23 20:21:46', '2024-03-23 20:21:46'),
(106, 'daiannbrooks673@gmail.com', '2024-03-29 22:15:00', '2024-03-29 22:15:00'),
(107, 'oliver_mckenziemehj@outlook.com', '2024-04-04 19:16:48', '2024-04-04 19:16:48'),
(108, 'hornbredn525@gmail.com', '2024-04-09 12:38:43', '2024-04-09 12:38:43'),
(109, 'fpeholden@outlook.com', '2024-04-14 01:47:25', '2024-04-14 01:47:25'),
(110, 'cheng.laura1981@yahoo.com', '2024-04-15 16:30:28', '2024-04-15 16:30:28'),
(111, 'johnson_carrie1993@yahoo.com', '2024-04-17 17:29:00', '2024-04-17 17:29:00'),
(112, 'phebestex456@outlook.com', '2024-04-20 08:41:56', '2024-04-20 08:41:56'),
(113, 'kritaft3j7@outlook.com', '2024-04-23 04:25:37', '2024-04-23 04:25:37'),
(114, 'vashingtonmatthewsea1982@gmail.com', '2024-05-03 07:56:44', '2024-05-03 07:56:44'),
(115, 'hroni9702@gmail.com', '2024-05-12 23:25:06', '2024-05-12 23:25:06'),
(116, 'edwardkq_siebold1q@outlook.com', '2024-05-16 20:23:50', '2024-05-16 20:23:50'),
(117, 'robbiebf_miles6x@outlook.com', '2024-05-20 00:16:55', '2024-05-20 00:16:55'),
(118, 'kathleen_ramirezigum@outlook.com', '2024-05-23 18:02:09', '2024-05-23 18:02:09'),
(119, 'michelle.malpert795568@yahoo.com', '2024-06-08 07:47:41', '2024-06-08 07:47:41'),
(120, 'haichdanielle2000@yahoo.com', '2024-06-11 11:12:02', '2024-06-11 11:12:02'),
(121, 'i5Ai_generic_b18a5b28_futuretrackbd.com@serviseantilogin.com', '2024-07-17 16:05:26', '2024-07-17 16:05:26'),
(122, 'zbisbbrljue@solid-hamster.skin', '2024-08-28 10:10:17', '2024-08-28 10:10:17'),
(123, 'zbisbbrljua@solid-hamster.skin', '2024-08-28 10:10:34', '2024-08-28 10:10:34'),
(124, 'zbisbbrljum@solid-hamster.skin', '2024-08-28 10:10:39', '2024-08-28 10:10:39'),
(125, 'zbisbbrljuzb@solid-hamster.skin', '2024-08-28 10:10:44', '2024-08-28 10:10:44'),
(126, 'xusrikeden@outlook.com', '2024-09-23 04:46:46', '2024-09-23 04:46:46'),
(127, 'SQ2B_generic_b18a5b28_futuretrackbd.com@serviseantilogin.com', '2024-09-23 16:01:05', '2024-09-23 16:01:05'),
(128, 'vp4l_generic_b18a5b28_futuretrackbd.com@serviseantilogin.com', '2024-09-28 13:40:51', '2024-09-28 13:40:51'),
(129, 'caseomar1990@yahoo.com', '2024-10-03 02:57:50', '2024-10-03 02:57:50'),
(130, 'sparroybuckgj@gmail.com', '2024-10-12 19:30:58', '2024-10-12 19:30:58'),
(131, 'abiavery213@gmail.com', '2024-10-18 11:36:50', '2024-10-18 11:36:50'),
(132, 'oayalakr@gmail.com', '2024-10-26 02:29:38', '2024-10-26 02:29:38'),
(133, 'redirect-97f3b24d9e5205f3094b0164ed141cf8@webmark.eting.org', '2024-10-28 08:00:39', '2024-10-28 08:00:39'),
(134, 'james12crockerfuc@outlook.com', '2024-10-30 01:52:09', '2024-10-30 01:52:09'),
(135, 'pcoutelet@yahoo.fr', '2024-11-05 22:52:39', '2024-11-05 22:52:39'),
(136, 'anfaxayjqa6szsj2@yahoo.com', '2024-11-07 22:05:28', '2024-11-07 22:05:28'),
(137, 'st.fiofab@yahoo.com', '2024-11-08 20:47:42', '2024-11-08 20:47:42'),
(138, 's0a0idmmz9clgldp@yahoo.com', '2024-11-09 14:29:29', '2024-11-09 14:29:29'),
(139, 'twgdqwfjtcap@yahoo.com', '2024-11-10 07:31:08', '2024-11-10 07:31:08'),
(140, 'hestersirshafr1993@gmail.com', '2024-11-11 00:52:33', '2024-11-11 00:52:33'),
(141, 'rayklaidr1997@gmail.com', '2024-11-11 19:49:47', '2024-11-11 19:49:47'),
(142, 'tiyagillespiemh18@gmail.com', '2024-11-12 18:23:45', '2024-11-12 18:23:45'),
(143, 'i4ia9huysaanhxk@yahoo.com', '2024-11-13 15:51:55', '2024-11-13 15:51:55'),
(144, 'cletashow32@outlook.com', '2024-11-14 13:00:59', '2024-11-14 13:00:59'),
(145, 'vinsnewma@gmail.com', '2024-11-15 09:20:09', '2024-11-15 09:20:09'),
(146, 'ookeuuhkdohgcb@yahoo.com', '2024-11-16 06:04:00', '2024-11-16 06:04:00'),
(147, 'bazildjacobsdb@gmail.com', '2024-11-18 15:41:58', '2024-11-18 15:41:58'),
(148, 'redirect-2e1303218c5ba5275dd9f8472b97267a@webmark.eting.org', '2024-11-18 16:35:23', '2024-11-18 16:35:23'),
(149, 'weaverpiperh34@gmail.com', '2024-11-21 23:15:17', '2024-11-21 23:15:17'),
(150, 'cortezzavira@gmail.com', '2024-11-23 19:06:44', '2024-11-23 19:06:44'),
(151, 'dlilarogerq834@gmail.com', '2024-11-24 15:44:18', '2024-11-24 15:44:18'),
(152, 'kbik302@gmail.com', '2024-11-25 13:03:48', '2024-11-25 13:03:48'),
(153, 'ltgriqi1hyy@yahoo.com', '2024-11-26 11:25:13', '2024-11-26 11:25:13'),
(154, 'doylekakeio133@gmail.com', '2024-11-27 09:47:08', '2024-11-27 09:47:08'),
(155, 'lyoffprre@yahoo.com', '2024-11-28 08:05:16', '2024-11-28 08:05:16'),
(156, 'bt476oyamey@yahoo.com', '2024-11-29 03:29:18', '2024-11-29 03:29:18'),
(157, 'hillebranklmen@yahoo.com', '2024-11-30 17:30:11', '2024-11-30 17:30:11'),
(158, 'oturicicgergl@yahoo.com', '2024-12-01 11:29:41', '2024-12-01 11:29:41'),
(159, 'echpahulu@yahoo.com', '2024-12-01 11:36:47', '2024-12-01 11:36:47'),
(160, 'qkgjtwxpbko@yahoo.com', '2024-12-02 03:13:20', '2024-12-02 03:13:20'),
(161, 'lkjvqissaxocexof@yahoo.com', '2024-12-02 21:39:09', '2024-12-02 21:39:09'),
(162, 'kazeltensch@yahoo.com', '2024-12-03 16:10:44', '2024-12-03 16:10:44'),
(163, 'lllbnwidgqeerdyi@yahoo.com', '2024-12-04 07:11:45', '2024-12-04 07:11:45'),
(164, 'hakeyhecet@yahoo.com', '2024-12-05 01:22:04', '2024-12-05 01:22:04'),
(165, 'xqwrmvrykqx@yahoo.com', '2024-12-05 21:18:50', '2024-12-05 21:18:50'),
(166, 'mldccxorwpskrmb@yahoo.com', '2024-12-07 10:05:56', '2024-12-07 10:05:56'),
(167, 'hplawmvem@yahoo.com', '2024-12-08 03:57:35', '2024-12-08 03:57:35'),
(168, 'klodigoodii12@gmail.com', '2024-12-08 04:08:45', '2024-12-08 04:08:45'),
(169, 'cokspjnisuym@yahoo.com', '2024-12-08 04:10:28', '2024-12-08 04:10:28'),
(170, 'iadusko47legacy@gmail.com', '2024-12-08 04:12:43', '2024-12-08 04:12:43'),
(171, 'vilmamz1983@gmail.com', '2024-12-08 04:12:55', '2024-12-08 04:12:55'),
(172, 'rrozasharn@gmail.com', '2024-12-08 04:20:34', '2024-12-08 04:20:34'),
(173, 'prettyburt@gmail.com', '2024-12-08 22:37:50', '2024-12-08 22:37:50'),
(174, 'campoyawinast@yahoo.com', '2024-12-09 22:29:02', '2024-12-09 22:29:02'),
(175, 'heshgerwin@yahoo.com', '2024-12-11 00:42:46', '2024-12-11 00:42:46'),
(176, 'endrofbnoi@yahoo.com', '2024-12-12 04:18:48', '2024-12-12 04:18:48'),
(177, 'aswfcucgkykqbz@yahoo.com', '2024-12-13 07:52:48', '2024-12-13 07:52:48'),
(178, 'mafiudox0cmen@yahoo.com', '2024-12-14 06:13:43', '2024-12-14 06:13:43'),
(179, 'eazenithaiglyph61@gmail.com', '2024-12-15 01:55:06', '2024-12-15 01:55:06'),
(180, 'schoupsgag@yahoo.com', '2024-12-16 00:24:34', '2024-12-16 00:24:34'),
(181, 'zenickantuluri@yahoo.com', '2024-12-17 10:30:28', '2024-12-17 10:30:28'),
(182, 'motifanoci016@gmail.com', '2024-12-18 10:32:19', '2024-12-18 10:32:19'),
(183, 'xs4gejjr3smctr@yahoo.com', '2024-12-19 11:12:04', '2024-12-19 11:12:04'),
(184, 'adeyehewig62@gmail.com', '2024-12-20 10:16:02', '2024-12-20 10:16:02'),
(185, 'ixeyoquc97@gmail.com', '2024-12-21 06:15:37', '2024-12-21 06:15:37'),
(186, 'baferaqudexi27@gmail.com', '2024-12-22 01:16:46', '2024-12-22 01:16:46'),
(187, 'dayenefuk121@gmail.com', '2024-12-22 20:04:26', '2024-12-22 20:04:26'),
(188, 'leyayemawif739@gmail.com', '2024-12-23 18:10:57', '2024-12-23 18:10:57'),
(189, 'nirvanaia34chime@gmail.com', '2024-12-24 19:26:54', '2024-12-24 19:26:54'),
(190, 'ustovichtakashima@yahoo.com', '2024-12-25 14:35:24', '2024-12-25 14:35:24'),
(191, 'seviciyoye815@gmail.com', '2024-12-26 10:49:15', '2024-12-26 10:49:15'),
(192, 'schmeicelkozelov@yahoo.com', '2024-12-27 11:24:34', '2024-12-27 11:24:34'),
(193, 'wnss7k9ua@yahoo.com', '2024-12-28 09:20:09', '2024-12-28 09:20:09'),
(194, 'lubirobawiq017@gmail.com', '2024-12-30 04:10:10', '2024-12-30 04:10:10'),
(195, 'dgjdl5pd0eg@yahoo.com', '2024-12-31 01:00:52', '2024-12-31 01:00:52'),
(196, 'ixucupaci96@gmail.com', '2024-12-31 19:14:39', '2024-12-31 19:14:39'),
(197, 'akulezula62@gmail.com', '2025-01-01 12:18:31', '2025-01-01 12:18:31'),
(198, 'ekekefuxepi495@gmail.com', '2025-01-02 05:46:41', '2025-01-02 05:46:41'),
(199, 'yuyunujegocu94@gmail.com', '2025-01-03 02:24:26', '2025-01-03 02:24:26'),
(200, 'bokmansness@yahoo.com', '2025-01-04 01:49:38', '2025-01-04 01:49:38'),
(201, 'rockmannnaperstk@yahoo.com', '2025-01-05 02:05:30', '2025-01-05 02:05:30'),
(202, 'ucosapiv21@gmail.com', '2025-01-06 07:36:52', '2025-01-06 07:36:52'),
(203, 'awelapag62@gmail.com', '2025-01-07 09:34:51', '2025-01-07 09:34:51'),
(204, 'tv2jiohujgj@yahoo.com', '2025-01-08 16:43:42', '2025-01-08 16:43:42'),
(205, 'lvgbpuofgf@yahoo.com', '2025-01-09 16:01:24', '2025-01-09 16:01:24'),
(206, 'ofajahok951@gmail.com', '2025-01-10 14:21:35', '2025-01-10 14:21:35'),
(207, 'shakilheniff@yahoo.com', '2025-01-11 11:59:15', '2025-01-11 11:59:15'),
(208, 'qemucocijaj642@gmail.com', '2025-01-12 14:20:32', '2025-01-12 14:20:32'),
(209, 'lericksond37@gmail.com', '2025-01-13 23:15:02', '2025-01-13 23:15:02'),
(210, 'famudimakovicka@yahoo.com', '2025-01-16 22:47:18', '2025-01-16 22:47:18'),
(211, 'tb8nweoykv@yahoo.com', '2025-01-18 02:36:29', '2025-01-18 02:36:29'),
(212, 'oophantomxenonio@gmail.com', '2025-01-18 23:56:18', '2025-01-18 23:56:18'),
(213, 'oyfableo20alchemy27ay@gmail.com', '2025-01-19 21:01:23', '2025-01-19 21:01:23'),
(214, 'oejubileeiquartz22ey@gmail.com', '2025-01-20 22:51:21', '2025-01-20 22:51:21'),
(215, 'kantrascko@yahoo.com', '2025-01-22 11:41:38', '2025-01-22 11:41:38'),
(216, 'Zachary2Thomas5084@gmail.com', '2025-01-24 03:33:49', '2025-01-24 03:33:49'),
(217, 'wjohh56gu2nk@yahoo.com', '2025-01-25 17:20:57', '2025-01-25 17:20:57'),
(218, 'ryqolksrb@yahoo.com', '2025-01-27 05:34:58', '2025-01-27 05:34:58'),
(219, 'Josie5Steele8568@gmail.com', '2025-01-30 00:31:38', '2025-01-30 00:31:38'),
(220, 'Eunice1Parsons5445@gmail.com', '2025-01-31 03:46:36', '2025-01-31 03:46:36'),
(221, 'duskia41chime53oo@gmail.com', '2025-02-01 11:04:14', '2025-02-01 11:04:14'),
(222, 'uuyfpjsbvrfgugfk@yahoo.com', '2025-02-02 06:40:13', '2025-02-02 06:40:13'),
(223, 'sedisigu619@gmail.com', '2025-02-03 05:17:28', '2025-02-03 05:17:28'),
(224, 'mdraatulislam2006@gmail.com', '2025-02-03 23:48:13', '2025-02-03 23:48:13'),
(225, 'ayfableubrink@gmail.com', '2025-02-04 06:57:58', '2025-02-04 06:57:58'),
(226, 'iozenithuealchemyea@gmail.com', '2025-02-05 07:28:07', '2025-02-05 07:28:07'),
(227, 'crescentai64oracle21ay@gmail.com', '2025-02-06 07:49:52', '2025-02-06 07:49:52'),
(228, 'jubileeoui82echo41@gmail.com', '2025-02-07 04:58:23', '2025-02-07 04:58:23'),
(229, 'aiphantom83pinnacle42io@gmail.com', '2025-02-09 02:37:19', '2025-02-09 02:37:19'),
(230, 'jobayerahmedpretom@gmail.com', '2025-02-11 12:12:55', '2025-02-11 12:12:55'),
(231, 'coukwmmifk@yahoo.com', '2025-02-12 19:11:44', '2025-02-12 19:11:44'),
(232, 'lecamaloxu65@gmail.com', '2025-02-14 09:06:29', '2025-02-14 09:06:29'),
(233, 'yornerbarnettt9@gmail.com', '2025-02-15 03:50:11', '2025-02-15 03:50:11'),
(234, 'morankinefrid@gmail.com', '2025-02-15 20:02:39', '2025-02-15 20:02:39'),
(235, 'beatrisconleynr1980@gmail.com', '2025-02-16 12:07:25', '2025-02-16 12:07:25'),
(236, 'davidsontammie45@gmail.com', '2025-02-17 04:33:31', '2025-02-17 04:33:31'),
(237, 'aipmxyto@do-not-respond.me', '2025-02-18 13:48:16', '2025-02-18 13:48:16'),
(238, 'ydsvwifp@do-not-respond.me', '2025-02-18 13:48:16', '2025-02-18 13:48:16'),
(239, 'stesantosda@gmail.com', '2025-02-18 15:56:09', '2025-02-18 15:56:09'),
(240, 'spearsalvilda@gmail.com', '2025-02-19 22:16:05', '2025-02-19 22:16:05'),
(241, 'ailunar97oracleeo@gmail.com', '2025-02-20 21:16:04', '2025-02-20 21:16:04'),
(242, 'davislessiq1@gmail.com', '2025-02-21 15:37:09', '2025-02-21 15:37:09'),
(243, 'megmql25@gmail.com', '2025-02-22 13:16:16', '2025-02-22 13:16:16'),
(244, 'sesilgardnerh24@gmail.com', '2025-02-23 07:24:36', '2025-02-23 07:24:36'),
(245, 'stellare55brink66@gmail.com', '2025-02-24 02:55:22', '2025-02-24 02:55:22'),
(246, 'vjppym8x9ltefgbdk@yahoo.com', '2025-02-25 01:47:47', '2025-02-25 01:47:47'),
(247, 'outempestayrift32@gmail.com', '2025-02-26 06:03:52', '2025-02-26 06:03:52'),
(248, 'pgeilmb6@gmail.com', '2025-02-26 23:32:36', '2025-02-26 23:32:36'),
(249, 'ljvkpkth@do-not-respond.me', '2025-02-27 10:17:15', '2025-02-27 10:17:15'),
(250, 'xllnjjqg@do-not-respond.me', '2025-02-27 10:17:16', '2025-02-27 10:17:16'),
(251, 'luprlchurxwlelcj@yahoo.com', '2025-02-28 00:21:58', '2025-02-28 00:21:58'),
(252, 'klevlozano1987@gmail.com', '2025-02-28 18:18:50', '2025-02-28 18:18:50'),
(253, 'oansoniya22@gmail.com', '2025-03-01 10:45:08', '2025-03-01 10:45:08'),
(254, 'rkyintonq1988@gmail.com', '2025-03-02 04:37:52', '2025-03-02 04:37:52'),
(255, 'anskomnolanc1991@gmail.com', '2025-03-02 21:19:35', '2025-03-02 21:19:35'),
(256, 'pollexdellacrose@yahoo.com', '2025-03-03 22:08:38', '2025-03-03 22:08:38'),
(257, 'vidconned42@gmail.com', '2025-03-04 23:18:40', '2025-03-04 23:18:40'),
(258, 'crescenti21glyph@gmail.com', '2025-03-06 02:53:48', '2025-03-06 02:53:48'),
(259, 'davilarozalinan3@gmail.com', '2025-03-07 06:58:17', '2025-03-07 06:58:17'),
(260, 'iolondat1986@gmail.com', '2025-03-08 03:58:36', '2025-03-08 03:58:36'),
(261, 'csbclueu@do-not-respond.me', '2025-03-08 05:38:12', '2025-03-08 05:38:12'),
(262, 'bulihqkz@do-not-respond.me', '2025-03-08 05:38:12', '2025-03-08 05:38:12'),
(263, 'acarpenterqu41@gmail.com', '2025-03-09 01:24:02', '2025-03-09 01:24:02'),
(264, 'aetelriknolann@gmail.com', '2025-03-12 17:59:10', '2025-03-12 17:59:10'),
(265, 'zgbsymeu@do-not-respond.me', '2025-03-14 06:18:31', '2025-03-14 06:18:31'),
(266, 'pifnmuqt@do-not-respond.me', '2025-03-14 06:18:32', '2025-03-14 06:18:32'),
(267, 'bithikahazra2@gmail.com', '2025-03-14 16:21:02', '2025-03-14 16:21:02'),
(268, 'eldismp1@gmail.com', '2025-03-14 19:00:44', '2025-03-14 19:00:44'),
(269, 'aqsashumi1@gmail.com', '2025-03-15 07:06:01', '2025-03-15 07:06:01'),
(270, 'vonnibulloch51@gmail.com', '2025-03-16 05:01:29', '2025-03-16 05:01:29'),
(271, 'bremsavagecd@gmail.com', '2025-03-16 23:57:12', '2025-03-16 23:57:12'),
(272, 'cmurillomo40@gmail.com', '2025-03-18 05:23:04', '2025-03-18 05:23:04'),
(273, 'nikita.lin873689@yahoo.com', '2025-03-20 12:02:09', '2025-03-20 12:02:09'),
(274, 'sextonrolino@gmail.com', '2025-03-21 00:53:53', '2025-03-21 00:53:53'),
(275, 'RaafiSir@gmail.com', '2025-03-21 13:10:20', '2025-03-21 13:10:20'),
(276, 'jhurulislamkhan3@gmail.com', '2025-03-21 14:30:54', '2025-03-21 14:30:54'),
(277, 'megan_williams994113@yahoo.com', '2025-03-21 18:09:34', '2025-03-21 18:09:34'),
(278, 'reidaikenun55@gmail.com', '2025-03-22 08:30:54', '2025-03-22 08:30:54'),
(279, 'daliladraket@gmail.com', '2025-03-22 23:47:11', '2025-03-22 23:47:11'),
(280, 'mozumdertanvir528@gmail.com', '2025-03-23 02:58:34', '2025-03-23 02:58:34'),
(281, 'solisfrend2002@gmail.com', '2025-03-23 14:34:34', '2025-03-23 14:34:34'),
(282, 'mujiburahamaan728@gmail.com', '2025-03-23 17:57:35', '2025-03-23 17:57:35'),
(283, 'mariahbrown277963@yahoo.com', '2025-03-24 08:48:49', '2025-03-24 08:48:49'),
(284, 'karlisacub1987@gmail.com', '2025-03-27 20:22:48', '2025-03-27 20:22:48'),
(285, 'htraernyc1@gmail.com', '2025-03-27 21:51:17', '2025-03-27 21:51:17'),
(286, 'arlinapuy6@gmail.com', '2025-03-28 06:19:16', '2025-03-28 06:19:16'),
(287, 'lfuentesh2005@gmail.com', '2025-03-29 03:31:25', '2025-03-29 03:31:25'),
(288, 'makehoo87@gmail.com', '2025-03-31 14:45:54', '2025-03-31 14:45:54'),
(289, 'mejkorri@gmail.com', '2025-03-31 20:22:00', '2025-03-31 20:22:00'),
(290, 'xemzfggt@testing-your-form.info', '2025-04-02 01:16:29', '2025-04-02 01:16:29'),
(291, 'npgmdyys@testing-your-form.info', '2025-04-02 01:16:29', '2025-04-02 01:16:29'),
(292, 'jfybyzxi@testing-your-form.info', '2025-04-02 01:16:29', '2025-04-02 01:16:29'),
(293, 'timxrlgm@testing-your-form.info', '2025-04-02 01:16:29', '2025-04-02 01:16:29'),
(294, 'usfepjnr@testing-your-form.info', '2025-04-02 01:16:29', '2025-04-02 01:16:29'),
(295, 'ljrdbqcp@testing-your-form.info', '2025-04-03 15:47:59', '2025-04-03 15:47:59'),
(296, 'uvftgkhx@testing-your-form.info', '2025-04-03 15:47:59', '2025-04-03 15:47:59'),
(297, 'tkhgiqfm@testing-your-form.info', '2025-04-03 15:47:59', '2025-04-03 15:47:59'),
(298, 'tyypfnqq@testing-your-form.info', '2025-04-03 15:47:59', '2025-04-03 15:47:59'),
(299, 'jcysjfac@testing-your-form.info', '2025-04-03 15:47:59', '2025-04-03 15:47:59'),
(300, 'djanainsalinas88@gmail.com', '2025-04-03 16:29:32', '2025-04-03 16:29:32'),
(301, 'djenelsullivanrk@gmail.com', '2025-04-05 08:36:29', '2025-04-05 08:36:29'),
(302, 'nuralmabemf@gmail.com', '2025-04-05 13:25:54', '2025-04-05 13:25:54'),
(303, 'mohammedeliyas774499@gmail.com', '2025-04-05 19:49:50', '2025-04-05 19:49:50'),
(304, 'abubokkorm2678@gmail.com', '2025-04-05 21:06:54', '2025-04-05 21:06:54'),
(305, 'brandon_hutchinson831663@yahoo.com', '2025-04-06 10:44:46', '2025-04-06 10:44:46'),
(306, 'hriditazamanmolla11@gmail.com', '2025-04-06 11:49:28', '2025-04-06 11:49:28'),
(307, 'ashliioneillq@gmail.com', '2025-04-06 17:21:07', '2025-04-06 17:21:07'),
(308, 'mahaburalam021992@gmail.com', '2025-04-06 21:02:56', '2025-04-06 21:02:56'),
(309, 'mdfiroj01604991516@gmail.com', '2025-04-08 09:44:59', '2025-04-08 09:44:59'),
(310, 'zihadshamedzihadzihad@gmail.com', '2025-04-09 10:54:33', '2025-04-09 10:54:33'),
(311, 'donna_anderson729599@yahoo.com', '2025-04-09 18:08:18', '2025-04-09 18:08:18'),
(312, 'kiasimsyz1995@gmail.com', '2025-04-11 08:07:29', '2025-04-11 08:07:29'),
(313, 'gardndjoettzn3@gmail.com', '2025-04-15 01:00:58', '2025-04-15 01:00:58'),
(314, 'essibolton9@gmail.com', '2025-04-16 09:10:32', '2025-04-16 09:10:32'),
(315, 'clikerrnb@gmail.com', '2025-04-16 11:17:24', '2025-04-16 11:17:24'),
(316, 'eggig1989@gmail.com', '2025-04-16 14:06:08', '2025-04-16 14:06:08'),
(317, 'gooddominbd23@gmail.com', '2025-04-16 19:22:31', '2025-04-16 19:22:31'),
(318, 'mcghezerj@gmail.com', '2025-04-16 22:58:03', '2025-04-16 22:58:03'),
(319, 'gsisarbc49@gmail.com', '2025-04-17 09:35:44', '2025-04-17 09:35:44'),
(320, 'raitrichmgg7@gmail.com', '2025-04-18 03:33:27', '2025-04-18 03:33:27'),
(321, 'brandayamad6@gmail.com', '2025-04-18 15:25:17', '2025-04-18 15:25:17'),
(322, 'abu457518@gmail.com', '2025-04-18 23:58:39', '2025-04-18 23:58:39'),
(323, 'ebbamccont21@gmail.com', '2025-04-19 01:22:15', '2025-04-19 01:22:15'),
(324, 'adissondodsonn@gmail.com', '2025-04-19 04:21:08', '2025-04-19 04:21:08'),
(325, 'vollisrvp79@gmail.com', '2025-04-19 07:14:54', '2025-04-19 07:14:54'),
(326, 'lettipooleuz38@gmail.com', '2025-04-19 16:30:05', '2025-04-19 16:30:05'),
(327, 'pollarddjilli2@gmail.com', '2025-04-20 00:54:17', '2025-04-20 00:54:17'),
(328, 'omalnqso@formtest.guru', '2025-04-20 01:08:27', '2025-04-20 01:08:27'),
(329, 'oknqzfqb@formtest.guru', '2025-04-20 01:08:27', '2025-04-20 01:08:27'),
(330, 'bradybeverliw9@gmail.com', '2025-04-20 04:59:20', '2025-04-20 04:59:20'),
(331, 'starectrobar1989@yahoo.com', '2025-04-20 11:45:56', '2025-04-20 11:45:56'),
(332, 'prestonpaceie@gmail.com', '2025-04-21 04:41:46', '2025-04-21 04:41:46'),
(333, 'harrgree43@gmail.com', '2025-04-21 15:55:27', '2025-04-21 15:55:27'),
(334, 'khokon1375@gmail.com', '2025-04-22 05:11:46', '2025-04-22 05:11:46'),
(335, 'aljirgalvan2000@gmail.com', '2025-04-22 15:42:18', '2025-04-22 15:42:18'),
(336, 'sdevondq8@gmail.com', '2025-04-23 03:35:46', '2025-04-23 03:35:46'),
(337, 'kmclaughlinys69@gmail.com', '2025-04-23 17:12:46', '2025-04-23 17:12:46'),
(338, 'ofsurvecu1982@yahoo.com', '2025-04-24 11:33:23', '2025-04-24 11:33:23'),
(339, 'elias936604@gmail.com', '2025-04-25 03:57:25', '2025-04-25 03:57:25'),
(340, 'tenkacoten1982@yahoo.com', '2025-04-27 10:16:34', '2025-04-27 10:16:34'),
(341, 'fkfyqijp@testing-your-form.info', '2025-04-27 12:19:17', '2025-04-27 12:19:17'),
(342, 'xmxzkdvc@testing-your-form.info', '2025-04-27 12:19:17', '2025-04-27 12:19:17'),
(343, 'sjtaerzq@testing-your-form.info', '2025-04-27 12:19:17', '2025-04-27 12:19:17'),
(344, 'ftqrxjxx@testing-your-form.info', '2025-04-27 12:19:17', '2025-04-27 12:19:17'),
(345, 'rdyqkgbz@testing-your-form.info', '2025-04-27 12:19:17', '2025-04-27 12:19:17'),
(346, 'elizrj71@gmail.com', '2025-04-28 01:19:03', '2025-04-28 01:19:03'),
(347, 'afrederickb1983@gmail.com', '2025-04-28 02:42:36', '2025-04-28 02:42:36'),
(348, 'gabinewmanot36@gmail.com', '2025-04-28 11:09:19', '2025-04-28 11:09:19'),
(349, 'babbigael40@gmail.com', '2025-04-28 14:18:18', '2025-04-28 14:18:18'),
(350, 'tdavenportea4@gmail.com', '2025-04-28 20:08:25', '2025-04-28 20:08:25'),
(351, 'huiposcame1972@yahoo.com', '2025-04-29 00:28:11', '2025-04-29 00:28:11'),
(352, 'howfvaqi@dont-reply.me', '2025-04-29 01:57:12', '2025-04-29 01:57:12'),
(353, 'idzzbpro@dont-reply.me', '2025-04-29 01:57:12', '2025-04-29 01:57:12'),
(354, 'samihanadia801@ gmail.com', '2025-04-29 02:23:45', '2025-04-29 02:23:45'),
(355, 'matildafaulknerbe@gmail.com', '2025-04-30 09:33:19', '2025-04-30 09:33:19'),
(356, 'perseffernan3@gmail.com', '2025-04-30 11:55:08', '2025-04-30 11:55:08'),
(357, 'noyblrj95@gmail.com', '2025-05-01 15:58:05', '2025-05-01 15:58:05'),
(358, 'vmuellers32@gmail.com', '2025-05-02 06:19:43', '2025-05-02 06:19:43'),
(359, 'ukgujehm@formtest.guru', '2025-05-02 22:11:44', '2025-05-02 22:11:44'),
(360, 'gsmeflal@formtest.guru', '2025-05-02 22:11:44', '2025-05-02 22:11:44'),
(361, 'terrensbeckq@gmail.com', '2025-05-03 03:21:23', '2025-05-03 03:21:23'),
(362, 'zmartinezf39@gmail.com', '2025-05-03 10:28:30', '2025-05-03 10:28:30'),
(363, 'alvildavp6@gmail.com', '2025-05-03 16:29:40', '2025-05-03 16:29:40'),
(364, 'ovrebahre1972@yahoo.com', '2025-05-04 04:07:17', '2025-05-04 04:07:17'),
(365, 'convedake1978@yahoo.com', '2025-05-04 11:40:19', '2025-05-04 11:40:19'),
(366, 'itoddqq4@gmail.com', '2025-05-04 14:09:52', '2025-05-04 14:09:52'),
(367, 'lizandraadkins@gmail.com', '2025-05-04 15:23:53', '2025-05-04 15:23:53'),
(368, 'dhobbsr@gmail.com', '2025-05-05 09:52:33', '2025-05-05 09:52:33'),
(369, 'mannrhetta@gmail.com', '2025-05-07 01:19:23', '2025-05-07 01:19:23'),
(370, 'daiannbraund@gmail.com', '2025-05-08 03:32:47', '2025-05-08 03:32:47'),
(371, 'peitonko2002@gmail.com', '2025-05-08 05:02:31', '2025-05-08 05:02:31'),
(372, 'rojasabnerg@gmail.com', '2025-05-08 17:34:15', '2025-05-08 17:34:15'),
(373, 'kiddgaretw45@gmail.com', '2025-05-09 06:54:00', '2025-05-09 06:54:00'),
(374, 'wardpersworvay1985@yahoo.com', '2025-05-09 10:14:16', '2025-05-09 10:14:16'),
(375, 'andersonashlee1980@yahoo.com', '2025-05-10 06:27:39', '2025-05-10 06:27:39'),
(376, 'vaughnwendy819135@yahoo.com', '2025-05-11 12:44:25', '2025-05-11 12:44:25'),
(377, 'torrestee139326@yahoo.com', '2025-05-12 11:13:59', '2025-05-12 11:13:59'),
(378, 'filippariceqk@gmail.com', '2025-05-12 16:18:48', '2025-05-12 16:18:48'),
(379, 'sujanogor123@gmail.com', '2025-05-14 13:37:45', '2025-05-14 13:37:45'),
(380, 'jacquescorey318590@yahoo.com', '2025-05-14 22:03:48', '2025-05-14 22:03:48'),
(381, 'konnorhso1996@gmail.com', '2025-05-14 22:47:14', '2025-05-14 22:47:14'),
(382, 'candiceedwards1998@yahoo.com', '2025-05-15 15:57:37', '2025-05-15 15:57:37'),
(383, 'edwarreimonyk73@gmail.com', '2025-05-15 17:17:20', '2025-05-15 17:17:20'),
(384, 'davidspitz403381@yahoo.com', '2025-05-16 08:47:21', '2025-05-16 08:47:21'),
(385, 'middlonsg@gmail.com', '2025-05-18 03:32:51', '2025-05-18 03:32:51'),
(386, 'leniml1996@gmail.com', '2025-05-19 22:12:00', '2025-05-19 22:12:00'),
(387, 'bishopprydensgu49@gmail.com', '2025-05-20 12:12:50', '2025-05-20 12:12:50'),
(388, 'royentsh@gmail.com', '2025-05-21 12:37:45', '2025-05-21 12:37:45'),
(389, 'leonardgarciasg1994@gmail.com', '2025-05-22 13:04:47', '2025-05-22 13:04:47'),
(390, 'shedomom50@gmail.com', '2025-05-23 08:58:25', '2025-05-23 08:58:25'),
(391, 'sidneikrueger35@gmail.com', '2025-05-23 09:41:10', '2025-05-23 09:41:10'),
(392, 'bazildak16@gmail.com', '2025-05-23 13:48:42', '2025-05-23 13:48:42'),
(393, 'mayestea84@gmail.com', '2025-05-23 19:02:33', '2025-05-23 19:02:33'),
(394, 'qroucszk@dont-reply.me', '2025-05-24 04:34:27', '2025-05-24 04:34:27'),
(395, 'txcgkgih@dont-reply.me', '2025-05-24 04:34:27', '2025-05-24 04:34:27'),
(396, 'kingsleih17@gmail.com', '2025-05-25 16:21:36', '2025-05-25 16:21:36'),
(397, 'sanfordbraedenaz43@gmail.com', '2025-05-26 08:31:50', '2025-05-26 08:31:50'),
(398, 'cmolkom80@gmail.com', '2025-05-26 13:38:34', '2025-05-26 13:38:34'),
(399, 'elanorb1991@gmail.com', '2025-05-26 23:59:27', '2025-05-26 23:59:27'),
(400, 'erinwashis12@gmail.com', '2025-05-27 22:49:33', '2025-05-27 22:49:33'),
(401, 'murdikxx1986@gmail.com', '2025-05-28 02:10:37', '2025-05-28 02:10:37'),
(402, 'lbradleyyh97@gmail.com', '2025-05-28 16:00:45', '2025-05-28 16:00:45'),
(403, 'singhbrad1996@yahoo.com', '2025-05-29 00:23:35', '2025-05-29 00:23:35'),
(404, 'jennyrojas551415@yahoo.com', '2025-05-29 20:15:06', '2025-05-29 20:15:06'),
(405, 'pkenitp@gmail.com', '2025-05-29 23:06:44', '2025-05-29 23:06:44'),
(406, 'jeremydecoteau1998@yahoo.com', '2025-05-30 03:27:08', '2025-05-30 03:27:08'),
(407, 'watkinsmatt262255@yahoo.com', '2025-05-30 04:11:58', '2025-05-30 04:11:58'),
(408, 'redpathrasheed417598@yahoo.com', '2025-05-30 06:57:35', '2025-05-30 06:57:35'),
(409, 'dellcgu2005@gmail.com', '2025-05-30 23:01:51', '2025-05-30 23:01:51'),
(410, 'parkersherlokm45@gmail.com', '2025-05-31 19:37:04', '2025-05-31 19:37:04'),
(411, 'milfordhooper32@gmail.com', '2025-06-01 02:18:38', '2025-06-01 02:18:38'),
(412, 'orbiesz16@gmail.com', '2025-06-03 03:43:24', '2025-06-03 03:43:24'),
(413, 'silvestrgev@gmail.com', '2025-06-03 20:39:49', '2025-06-03 20:39:49'),
(414, 'florenciaredd404130@yahoo.com', '2025-06-03 22:26:55', '2025-06-03 22:26:55'),
(415, 'teirkbriggs17@gmail.com', '2025-06-04 13:37:17', '2025-06-04 13:37:17'),
(416, 'wilkinsklematisj@gmail.com', '2025-06-05 06:24:48', '2025-06-05 06:24:48'),
(417, 'hammondkleris39@gmail.com', '2025-06-05 09:43:16', '2025-06-05 09:43:16'),
(418, 'aklikruegmh52@gmail.com', '2025-06-05 16:13:45', '2025-06-05 16:13:45'),
(419, 'collinskevin529998@yahoo.com', '2025-06-07 05:54:00', '2025-06-07 05:54:00'),
(420, 'viktoriyath1990@gmail.com', '2025-06-08 00:45:02', '2025-06-08 00:45:02'),
(421, 'marmaduksweeney18@gmail.com', '2025-06-08 06:38:36', '2025-06-08 06:38:36'),
(422, 'rachelfahe300781@yahoo.com', '2025-06-08 09:43:35', '2025-06-08 09:43:35'),
(423, 'gravessantosh728222@yahoo.com', '2025-06-08 10:05:44', '2025-06-08 10:05:44'),
(424, 'brewerbrittonul@gmail.com', '2025-06-08 12:03:25', '2025-06-08 12:03:25'),
(425, 'agataamw88@gmail.com', '2025-06-08 19:44:00', '2025-06-08 19:44:00'),
(426, 'raymondosmondrx@gmail.com', '2025-06-10 01:39:11', '2025-06-10 01:39:11'),
(427, 'perezlisa493633@yahoo.com', '2025-06-10 21:05:26', '2025-06-10 21:05:26'),
(428, 'odreaashleywb48@gmail.com', '2025-06-11 23:01:13', '2025-06-11 23:01:13'),
(429, 'yillardgreenuv@gmail.com', '2025-06-11 23:14:30', '2025-06-11 23:14:30'),
(430, 'lfkdynqe@testform.xyz', '2025-06-12 03:54:49', '2025-06-12 03:54:49'),
(431, 'kklfrtwz@testform.xyz', '2025-06-12 03:54:50', '2025-06-12 03:54:50'),
(432, 'givvvnjx@testform.xyz', '2025-06-12 03:54:51', '2025-06-12 03:54:51'),
(433, 'gektore69@gmail.com', '2025-06-12 03:57:24', '2025-06-12 03:57:24'),
(434, 'jessegonzales654411@yahoo.com', '2025-06-12 05:15:43', '2025-06-12 05:15:43'),
(435, 'tbnpkrfl@dont-reply.me', '2025-06-12 06:00:59', '2025-06-12 06:00:59'),
(436, 'hccugjdz@dont-reply.me', '2025-06-12 06:01:00', '2025-06-12 06:01:00'),
(437, 'currykimberlaya1986@gmail.com', '2025-06-12 13:55:24', '2025-06-12 13:55:24'),
(438, 'wilsondeborah168852@yahoo.com', '2025-06-12 18:34:27', '2025-06-12 18:34:27'),
(439, 'stephaniemanning608967@yahoo.com', '2025-06-13 05:08:45', '2025-06-13 05:08:45'),
(440, 'qzhvjolv@testform.xyz', '2025-06-13 18:47:58', '2025-06-13 18:47:58'),
(441, 'qhtmmhzf@testform.xyz', '2025-06-13 18:48:00', '2025-06-13 18:48:00'),
(442, 'vzlpghke@testform.xyz', '2025-06-13 18:48:00', '2025-06-13 18:48:00'),
(443, 'makelc2000@gmail.com', '2025-06-14 14:31:22', '2025-06-14 14:31:22'),
(444, 'cronneto80@gmail.com', '2025-06-14 17:50:28', '2025-06-14 17:50:28'),
(445, 'asselainlf1@gmail.com', '2025-06-15 12:53:31', '2025-06-15 12:53:31'),
(446, 'klerlozanu1980@gmail.com', '2025-06-16 09:48:27', '2025-06-16 09:48:27'),
(447, 'rybinboonec8@gmail.com', '2025-06-16 20:46:31', '2025-06-16 20:46:31'),
(448, 'basterlarsonxq1988@gmail.com', '2025-06-17 01:50:13', '2025-06-17 01:50:13'),
(449, 'lekbradyj55@gmail.com', '2025-06-17 02:18:21', '2025-06-17 02:18:21'),
(450, 'huangabbigeilv22@gmail.com', '2025-06-17 18:00:30', '2025-06-17 18:00:30'),
(451, 'crossdoyson1993@gmail.com', '2025-06-18 01:48:06', '2025-06-18 01:48:06'),
(452, 'mmanninga24@gmail.com', '2025-06-18 14:18:25', '2025-06-18 14:18:25'),
(453, 'karmensq1985@gmail.com', '2025-06-19 21:07:20', '2025-06-19 21:07:20'),
(454, 'hansonmillikn2001@gmail.com', '2025-06-19 22:09:11', '2025-06-19 22:09:11'),
(455, 'cantumoliek97@gmail.com', '2025-06-21 23:43:58', '2025-06-21 23:43:58'),
(456, 'dklevz30@gmail.com', '2025-06-22 01:54:12', '2025-06-22 01:54:12'),
(457, 'romerograndwn@gmail.com', '2025-06-22 02:19:01', '2025-06-22 02:19:01'),
(458, 'ervanhooverq@gmail.com', '2025-06-22 03:31:17', '2025-06-22 03:31:17'),
(459, 'oduncanep@gmail.com', '2025-06-22 08:12:08', '2025-06-22 08:12:08'),
(460, 'aziyaschmitth1984@gmail.com', '2025-06-22 11:41:20', '2025-06-22 11:41:20'),
(461, 'tanimunog55@gmail.com', '2025-06-24 01:50:36', '2025-06-24 01:50:36'),
(462, 'daughertykonanuq@gmail.com', '2025-06-24 05:27:23', '2025-06-24 05:27:23'),
(463, 'trentsv31@gmail.com', '2025-06-25 06:50:37', '2025-06-25 06:50:37'),
(464, 'darvinpattonhh17@gmail.com', '2025-06-25 20:16:28', '2025-06-25 20:16:28'),
(465, 'tristramcherry18@gmail.com', '2025-06-26 01:20:11', '2025-06-26 01:20:11'),
(466, 'djaspagen2000@gmail.com', '2025-06-26 15:54:12', '2025-06-26 15:54:12'),
(467, 'djessafuentesnh46@gmail.com', '2025-06-27 11:37:14', '2025-06-27 11:37:14'),
(468, 'uzitiloz25@gmail.com', '2025-06-27 18:06:44', '2025-06-27 18:06:44'),
(469, 'etabafuqaki31@gmail.com', '2025-06-28 00:23:09', '2025-06-28 00:23:09'),
(470, 'viwinawojinu76@gmail.com', '2025-06-28 04:30:01', '2025-06-28 04:30:01'),
(471, 'hcheyanno2001@gmail.com', '2025-06-29 03:25:40', '2025-06-29 03:25:40'),
(472, 'valboniuh11@gmail.com', '2025-06-30 00:57:17', '2025-06-30 00:57:17'),
(473, 'annitcarrol1999@gmail.com', '2025-06-30 16:10:13', '2025-06-30 16:10:13'),
(474, 'dmarshoh5@gmail.com', '2025-07-01 15:02:28', '2025-07-01 15:02:28'),
(475, 'ffloresvs1980@gmail.com', '2025-07-02 17:29:19', '2025-07-02 17:29:19'),
(476, 'cindysmalls611643@yahoo.com', '2025-07-02 17:33:15', '2025-07-02 17:33:15'),
(477, 'craneabott77@gmail.com', '2025-07-02 20:28:46', '2025-07-02 20:28:46'),
(478, 'lucasmatt1999@yahoo.com', '2025-07-02 21:14:12', '2025-07-02 21:14:12'),
(479, 'gyydirlv@testform.xyz', '2025-07-04 02:50:59', '2025-07-04 02:50:59'),
(480, 'nwvjzktp@testform.xyz', '2025-07-04 02:50:59', '2025-07-04 02:50:59'),
(481, 'steprdql@testform.xyz', '2025-07-04 02:51:00', '2025-07-04 02:51:00'),
(482, 'ecimahelivas50@gmail.com', '2025-07-04 14:02:02', '2025-07-04 14:02:02'),
(483, 'igiyuzoma911@gmail.com', '2025-07-04 20:12:04', '2025-07-04 20:12:04'),
(484, 'elegegexa355@gmail.com', '2025-07-05 06:36:14', '2025-07-05 06:36:14'),
(485, 'esozayej65@gmail.com', '2025-07-05 10:23:02', '2025-07-05 10:23:02'),
(486, 'johnmahoney14357@yahoo.com', '2025-07-05 20:08:46', '2025-07-05 20:08:46'),
(487, 'pekapivax60@gmail.com', '2025-07-05 23:09:55', '2025-07-05 23:09:55'),
(488, 'selbiv1980@gmail.com', '2025-07-06 10:49:16', '2025-07-06 10:49:16'),
(489, 'geiake1999@gmail.com', '2025-07-06 16:46:28', '2025-07-06 16:46:28'),
(490, 'davilaabigeill@gmail.com', '2025-07-07 03:17:59', '2025-07-07 03:17:59'),
(491, 'errollshortno@gmail.com', '2025-07-07 07:32:43', '2025-07-07 07:32:43'),
(492, 'rangelmelloni7@gmail.com', '2025-07-08 00:51:58', '2025-07-08 00:51:58'),
(493, 'bradsdaimon34@gmail.com', '2025-07-08 04:28:48', '2025-07-08 04:28:48'),
(494, 'karverkerr1994@gmail.com', '2025-07-08 07:04:25', '2025-07-08 07:04:25'),
(495, 'calriln6@gmail.com', '2025-07-08 11:19:26', '2025-07-08 11:19:26'),
(496, 'reichelv1987@gmail.com', '2025-07-09 04:03:09', '2025-07-09 04:03:09'),
(497, 'rubchungy13@gmail.com', '2025-07-09 07:27:19', '2025-07-09 07:27:19'),
(498, 'tuckerandjelisati9@gmail.com', '2025-07-09 16:48:40', '2025-07-09 16:48:40'),
(499, 'dogimotuz86@gmail.com', '2025-07-09 17:14:33', '2025-07-09 17:14:33'),
(500, 'delaneilewis@gmail.com', '2025-07-11 02:33:23', '2025-07-11 02:33:23'),
(501, 'dmonroen28@gmail.com', '2025-07-11 07:24:38', '2025-07-11 07:24:38'),
(502, 'olivasyolanda282900@yahoo.com', '2025-07-12 04:15:38', '2025-07-12 04:15:38'),
(503, 'uqeqawuq78@gmail.com', '2025-07-12 04:55:46', '2025-07-12 04:55:46'),
(504, 'oberonjordane@gmail.com', '2025-07-12 13:26:30', '2025-07-12 13:26:30'),
(505, 'vijaykhan670443@yahoo.com', '2025-07-12 19:49:40', '2025-07-12 19:49:40'),
(506, 'andersonjillian804248@yahoo.com', '2025-07-12 20:32:30', '2025-07-12 20:32:30'),
(507, 'santokornbo2@gmail.com', '2025-07-12 23:33:35', '2025-07-12 23:33:35'),
(508, 'mdjahangirz2622@gmail.com', '2025-07-13 08:27:36', '2025-07-13 08:27:36'),
(509, 'bmeyerid@gmail.com', '2025-07-14 01:29:14', '2025-07-14 01:29:14'),
(510, 'carrillocherilinb7@gmail.com', '2025-07-14 07:23:31', '2025-07-14 07:23:31'),
(511, 'bobarnold599610@yahoo.com', '2025-07-14 08:06:38', '2025-07-14 08:06:38'),
(512, 'kingroslo54@gmail.com', '2025-07-14 19:14:37', '2025-07-14 19:14:37'),
(513, 'glendatw86@gmail.com', '2025-07-14 22:04:54', '2025-07-14 22:04:54'),
(514, 'pizuvaba383@gmail.com', '2025-07-15 05:42:24', '2025-07-15 05:42:24'),
(515, 'stiviramosv4@gmail.com', '2025-07-15 09:40:29', '2025-07-15 09:40:29'),
(516, 'owuniroluqub51@gmail.com', '2025-07-15 11:57:07', '2025-07-15 11:57:07'),
(517, 'austingisleins@gmail.com', '2025-07-15 17:09:36', '2025-07-15 17:09:36'),
(518, 'oremimofaja996@gmail.com', '2025-07-15 22:53:58', '2025-07-15 22:53:58'),
(519, 'michaelscham198884@yahoo.com', '2025-07-16 00:07:39', '2025-07-16 00:07:39'),
(520, 'deforestvincentc@gmail.com', '2025-07-16 19:50:19', '2025-07-16 19:50:19'),
(521, 'markibdu2004@gmail.com', '2025-07-17 03:55:34', '2025-07-17 03:55:34'),
(522, 'djaklincci1988@gmail.com', '2025-07-17 16:48:25', '2025-07-17 16:48:25'),
(523, 'tuwoqufafem244@gmail.com', '2025-07-18 03:47:14', '2025-07-18 03:47:14'),
(524, 'hedleisweeneya28@gmail.com', '2025-07-18 08:12:50', '2025-07-18 08:12:50'),
(525, 'rbenjaminl1984@gmail.com', '2025-07-18 17:49:27', '2025-07-18 17:49:27'),
(526, 'walisrahitch1975@yahoo.com', '2025-07-18 23:00:49', '2025-07-18 23:00:49'),
(527, 'tehufinube01@gmail.com', '2025-07-19 09:43:27', '2025-07-19 09:43:27'),
(528, 'royselena620247@yahoo.com', '2025-07-20 02:28:11', '2025-07-20 02:28:11'),
(529, 'greerdilbert37@gmail.com', '2025-07-20 03:06:57', '2025-07-20 03:06:57'),
(530, 'jatocanob803@gmail.com', '2025-07-21 00:08:50', '2025-07-21 00:08:50'),
(531, 'dyamenj54@gmail.com', '2025-07-21 11:42:10', '2025-07-21 11:42:10'),
(532, 'alisonfrey903047@yahoo.com', '2025-07-22 12:31:54', '2025-07-22 12:31:54'),
(533, 'cuevasdjerardx44@gmail.com', '2025-07-22 22:37:33', '2025-07-22 22:37:33'),
(534, 'guerraflayerdw2001@gmail.com', '2025-07-23 14:41:09', '2025-07-23 14:41:09'),
(535, 'stemperansej1@gmail.com', '2025-07-23 18:06:45', '2025-07-23 18:06:45'),
(536, 'ujupuqabilor14@gmail.com', '2025-07-24 04:44:53', '2025-07-24 04:44:53'),
(537, 'shanejacobsen393127@yahoo.com', '2025-07-24 08:37:45', '2025-07-24 08:37:45'),
(538, 'gentryaelfheiruk73@gmail.com', '2025-07-24 19:23:43', '2025-07-24 19:23:43'),
(539, 'eisenbergbrittany703167@yahoo.com', '2025-07-24 19:44:03', '2025-07-24 19:44:03'),
(540, 'collinsrobin478308@yahoo.com', '2025-07-24 20:27:55', '2025-07-24 20:27:55'),
(541, 'axoxohuni632@gmail.com', '2025-07-25 13:11:17', '2025-07-25 13:11:17'),
(542, 'larinfmv6@gmail.com', '2025-07-25 13:47:49', '2025-07-25 13:47:49'),
(543, 'tinupila908@gmail.com', '2025-07-25 23:05:58', '2025-07-25 23:05:58'),
(544, 'jihozusom25@gmail.com', '2025-07-26 06:48:26', '2025-07-26 06:48:26'),
(545, 'luhifexovag21@gmail.com', '2025-07-26 11:24:41', '2025-07-26 11:24:41'),
(546, 'stevesuzanne892195@yahoo.com', '2025-07-26 14:46:44', '2025-07-26 14:46:44'),
(547, 'eyuyocesin48@gmail.com', '2025-07-27 14:01:26', '2025-07-27 14:01:26'),
(548, 'byrdchakjv@gmail.com', '2025-07-27 14:43:15', '2025-07-27 14:43:15'),
(549, 'rrothnf99@gmail.com', '2025-07-27 21:21:20', '2025-07-27 21:21:20'),
(550, 'elsbetriley@gmail.com', '2025-07-28 14:42:10', '2025-07-28 14:42:10'),
(551, 'hernandezangela202688@yahoo.com', '2025-07-29 00:18:32', '2025-07-29 00:18:32'),
(552, 'gloreipg@gmail.com', '2025-07-29 13:44:32', '2025-07-29 13:44:32'),
(553, 'brandtkoralirm51@gmail.com', '2025-07-29 18:03:50', '2025-07-29 18:03:50'),
(554, 'dbuchanankb32@gmail.com', '2025-07-29 20:19:34', '2025-07-29 20:19:34'),
(555, 'barjenk46@gmail.com', '2025-07-30 00:49:47', '2025-07-30 00:49:47'),
(556, 'jenningsheilis@gmail.com', '2025-07-31 10:49:37', '2025-07-31 10:49:37'),
(557, 'etilugopo719@gmail.com', '2025-08-01 19:51:31', '2025-08-01 19:51:31'),
(558, 'aralfn8@gmail.com', '2025-08-02 19:28:59', '2025-08-02 19:28:59'),
(559, 'clemenaidj37@gmail.com', '2025-08-02 22:29:03', '2025-08-02 22:29:03'),
(560, 'merrittchristopher370061@yahoo.com', '2025-08-03 09:28:02', '2025-08-03 09:28:02'),
(561, 'ihozidav950@gmail.com', '2025-08-03 21:05:20', '2025-08-03 21:05:20'),
(562, 'kasoliho927@gmail.com', '2025-08-04 08:42:22', '2025-08-04 08:42:22'),
(563, 'brownamy540675@yahoo.com', '2025-08-05 00:46:51', '2025-08-05 00:46:51'),
(564, 'roskowells@gmail.com', '2025-08-05 01:50:35', '2025-08-05 01:50:35'),
(565, 'uxasekune80@gmail.com', '2025-08-05 05:13:53', '2025-08-05 05:13:53'),
(566, 'ocayiyiyu642@gmail.com', '2025-08-05 08:23:34', '2025-08-05 08:23:34'),
(567, 'rogersamy388912@yahoo.com', '2025-08-07 09:31:20', '2025-08-07 09:31:20'),
(568, 'powupibefed99@gmail.com', '2025-08-08 01:20:12', '2025-08-08 01:20:12'),
(569, 'bowowala104@gmail.com', '2025-08-08 09:02:40', '2025-08-08 09:02:40'),
(570, 'kepegoqak523@gmail.com', '2025-08-08 19:39:32', '2025-08-08 19:39:32'),
(571, 'rebeccaramirez880188@yahoo.com', '2025-08-09 18:05:08', '2025-08-09 18:05:08'),
(572, 'fehexinexadu43@gmail.com', '2025-08-09 19:46:13', '2025-08-09 19:46:13'),
(573, 'greenbrian168355@yahoo.com', '2025-08-09 22:22:17', '2025-08-09 22:22:17'),
(574, 'ijulayayavak73@gmail.com', '2025-08-10 00:06:00', '2025-08-10 00:06:00'),
(575, 'ltvqhupi@testform.xyz', '2025-08-10 00:31:24', '2025-08-10 00:31:24'),
(576, 'vwgluhsg@testform.xyz', '2025-08-10 00:31:27', '2025-08-10 00:31:27'),
(577, 'gdqesgoi@testform.xyz', '2025-08-10 00:31:30', '2025-08-10 00:31:30'),
(578, 'michaeldaugherty327975@yahoo.com', '2025-08-10 05:17:35', '2025-08-10 05:17:35'),
(579, 'vovabozilus314@gmail.com', '2025-08-10 16:03:15', '2025-08-10 16:03:15'),
(580, 'quxubefetiz99@gmail.com', '2025-08-10 17:45:49', '2025-08-10 17:45:49'),
(581, 'shortgregory125722@yahoo.com', '2025-08-11 02:03:38', '2025-08-11 02:03:38'),
(582, 'jolodeyamo168@gmail.com', '2025-08-11 05:50:20', '2025-08-11 05:50:20'),
(583, 'ozorinizon73@gmail.com', '2025-08-12 11:51:32', '2025-08-12 11:51:32'),
(584, 'nguyenerin946151@yahoo.com', '2025-08-13 03:48:30', '2025-08-13 03:48:30'),
(585, 'hijineyuwa44@gmail.com', '2025-08-13 23:23:19', '2025-08-13 23:23:19'),
(586, 'raxozegosedi26@gmail.com', '2025-08-14 04:07:42', '2025-08-14 04:07:42'),
(587, 'patedulow440@gmail.com', '2025-08-14 17:24:57', '2025-08-14 17:24:57'),
(588, 'etevugej28@gmail.com', '2025-08-15 04:16:37', '2025-08-15 04:16:37'),
(589, 'herschcarmen885611@yahoo.com', '2025-08-15 10:33:37', '2025-08-15 10:33:37'),
(590, 'cuzofop300@gmail.com', '2025-08-16 02:48:23', '2025-08-16 02:48:23'),
(591, 'izayobese434@gmail.com', '2025-08-16 10:14:11', '2025-08-16 10:14:11'),
(592, 'kozemeyiq752@gmail.com', '2025-08-17 18:41:56', '2025-08-17 18:41:56'),
(593, 'azefisasowo953@gmail.com', '2025-08-17 23:35:26', '2025-08-17 23:35:26'),
(594, 'dulefeyakut33@gmail.com', '2025-08-18 19:36:03', '2025-08-18 19:36:03'),
(595, 'iwubehexu351@gmail.com', '2025-08-18 22:03:27', '2025-08-18 22:03:27'),
(596, 'tamarasmith368101@yahoo.com', '2025-08-19 00:49:52', '2025-08-19 00:49:52'),
(597, 'ferrelljustin1994@yahoo.com', '2025-08-20 03:45:49', '2025-08-20 03:45:49'),
(598, 'qopolami23@gmail.com', '2025-08-20 13:11:49', '2025-08-20 13:11:49'),
(599, 'utahazo381@gmail.com', '2025-08-21 01:38:13', '2025-08-21 01:38:13'),
(600, 'ajokoseq09@gmail.com', '2025-08-21 03:37:20', '2025-08-21 03:37:20'),
(601, 'yfitzgeraldez@gmail.com', '2025-08-21 13:31:47', '2025-08-21 13:31:47'),
(602, 'oveqawet24@gmail.com', '2025-08-21 18:10:35', '2025-08-21 18:10:35'),
(603, 'baqoman731@gmail.com', '2025-08-21 20:34:20', '2025-08-21 20:34:20'),
(604, 'goodwinshonag5@gmail.com', '2025-08-22 18:07:21', '2025-08-22 18:07:21'),
(605, 'ufaqebubiwe908@gmail.com', '2025-08-23 01:19:21', '2025-08-23 01:19:21'),
(606, 'xozopusapeso59@gmail.com', '2025-08-23 07:02:50', '2025-08-23 07:02:50'),
(607, 'umetite988@gmail.com', '2025-08-25 19:14:59', '2025-08-25 19:14:59'),
(608, 'hihosiboj56@gmail.com', '2025-08-25 20:01:46', '2025-08-25 20:01:46'),
(609, 'karonecihim480@gmail.com', '2025-08-27 01:07:50', '2025-08-27 01:07:50'),
(610, 'eputalut45@gmail.com', '2025-08-27 01:23:02', '2025-08-27 01:23:02'),
(611, 'avizuvi145@gmail.com', '2025-08-27 04:19:18', '2025-08-27 04:19:18'),
(612, 'juxicovu93@gmail.com', '2025-08-27 05:12:49', '2025-08-27 05:12:49'),
(613, 'dorisaguilarns61@gmail.com', '2025-08-27 18:26:03', '2025-08-27 18:26:03'),
(614, 'oqucepoj52@gmail.com', '2025-08-27 20:49:42', '2025-08-27 20:49:42'),
(615, 'bevicimigib336@gmail.com', '2025-08-28 06:44:27', '2025-08-28 06:44:27'),
(616, 'ihumuzucar85@gmail.com', '2025-08-28 10:47:28', '2025-08-28 10:47:28'),
(617, 'wuweqala519@gmail.com', '2025-08-30 10:38:54', '2025-08-30 10:38:54'),
(618, 'gebediceq684@gmail.com', '2025-08-30 16:39:31', '2025-08-30 16:39:31'),
(619, 'gacuqoy818@gmail.com', '2025-08-30 20:32:52', '2025-08-30 20:32:52'),
(620, 'fojegacanam09@gmail.com', '2025-08-31 02:31:41', '2025-08-31 02:31:41'),
(621, 'xugoyeqe756@gmail.com', '2025-08-31 19:57:31', '2025-08-31 19:57:31'),
(622, 's8rpit7fj48zg2jyu@yahoo.com', '2025-09-01 08:20:40', '2025-09-01 08:20:40'),
(623, 'ihaviye467@gmail.com', '2025-09-01 14:19:45', '2025-09-01 14:19:45'),
(624, 'otxguowqhn@yahoo.com', '2025-09-01 21:07:50', '2025-09-01 21:07:50'),
(625, 'vezosopixic24@gmail.com', '2025-09-01 21:26:38', '2025-09-01 21:26:38'),
(626, 'beqehame914@gmail.com', '2025-09-02 03:28:58', '2025-09-02 03:28:58');
INSERT INTO `newsletters` (`id`, `email`, `created_at`, `updated_at`) VALUES
(627, 'rituhiwasoc733@gmail.com', '2025-09-02 05:31:56', '2025-09-02 05:31:56'),
(628, 'iltsnmkl@testform.xyz', '2025-09-02 07:20:48', '2025-09-02 07:20:48'),
(629, 'sphjrydy@testform.xyz', '2025-09-02 07:20:50', '2025-09-02 07:20:50'),
(630, 'nopohufuxej416@gmail.com', '2025-09-03 00:21:25', '2025-09-03 00:21:25'),
(631, 'utiseloyitij20@gmail.com', '2025-09-03 10:37:39', '2025-09-03 10:37:39'),
(632, 'unubahowij43@gmail.com', '2025-09-03 10:43:16', '2025-09-03 10:43:16'),
(633, 'hoxuboni83@gmail.com', '2025-09-03 10:53:20', '2025-09-03 10:53:20'),
(634, 'regmwwaepwrotof9@yahoo.com', '2025-09-03 19:39:19', '2025-09-03 19:39:19'),
(635, 'avuqevone186@gmail.com', '2025-09-04 17:33:42', '2025-09-04 17:33:42'),
(636, 'iwrugxup@testform.xyz', '2025-09-06 12:47:19', '2025-09-06 12:47:19'),
(637, 'vulwwmwp@testform.xyz', '2025-09-06 12:47:20', '2025-09-06 12:47:20'),
(638, 'jwjymhri@testform.xyz', '2025-09-06 12:47:22', '2025-09-06 12:47:22'),
(639, 'oxikuziqu01@gmail.com', '2025-09-06 18:58:16', '2025-09-06 18:58:16'),
(640, 'efuhedoja636@gmail.com', '2025-09-07 05:52:55', '2025-09-07 05:52:55'),
(641, 'heranot581@gmail.com', '2025-09-07 23:46:43', '2025-09-07 23:46:43'),
(642, 'afomufivik35@gmail.com', '2025-09-08 02:08:59', '2025-09-08 02:08:59'),
(643, 'zeyapobu228@gmail.com', '2025-09-08 09:31:53', '2025-09-08 09:31:53'),
(644, 'owunuzaxa907@gmail.com', '2025-09-08 12:19:30', '2025-09-08 12:19:30'),
(645, 'bonatoreg91@gmail.com', '2025-09-08 19:22:29', '2025-09-08 19:22:29'),
(646, 'gumopahaka16@gmail.com', '2025-09-09 13:47:21', '2025-09-09 13:47:21'),
(647, 'thilgesxccygeegena@yahoo.com', '2025-09-09 14:39:29', '2025-09-09 14:39:29'),
(648, 'jupozizaca868@gmail.com', '2025-09-09 15:56:05', '2025-09-09 15:56:05'),
(649, 'zugoyuqu316@gmail.com', '2025-09-09 18:18:23', '2025-09-09 18:18:23'),
(650, 'riwpflm4odgoa@yahoo.com', '2025-09-10 18:42:39', '2025-09-10 18:42:39'),
(651, 'owelasuqide155@gmail.com', '2025-09-11 05:47:43', '2025-09-11 05:47:43'),
(652, 'dabbaccionoat8x5@yahoo.com', '2025-09-11 06:44:53', '2025-09-11 06:44:53'),
(653, 'myxzryrx@testform.xyz', '2025-09-11 20:51:23', '2025-09-11 20:51:23'),
(654, 'hdsmists@testform.xyz', '2025-09-11 20:51:23', '2025-09-11 20:51:23'),
(655, 'znrzsspy@testform.xyz', '2025-09-11 20:51:28', '2025-09-11 20:51:28'),
(656, 'xcslomfmndbhx@yahoo.com', '2025-09-12 01:33:15', '2025-09-12 01:33:15'),
(657, 'meyecetuqune28@gmail.com', '2025-09-12 04:35:08', '2025-09-12 04:35:08'),
(658, 'teyoripi803@gmail.com', '2025-09-12 19:32:32', '2025-09-12 19:32:32'),
(659, 'gobugosedomo57@gmail.com', '2025-09-13 08:33:59', '2025-09-13 08:33:59'),
(660, 'kojekwhl9blagrove@yahoo.com', '2025-09-13 16:50:16', '2025-09-13 16:50:16'),
(661, 'mwcybic6ijmxgr9e2@yahoo.com', '2025-09-14 20:03:34', '2025-09-14 20:03:34'),
(662, 'atitaposo89@gmail.com', '2025-09-15 11:23:36', '2025-09-15 11:23:36'),
(663, 'woyihoban76@gmail.com', '2025-09-16 09:55:49', '2025-09-16 09:55:49'),
(664, 'atbrvrym1hfwhhg@yahoo.com', '2025-09-16 21:46:16', '2025-09-16 21:46:16'),
(665, 'lezevoqafa60@gmail.com', '2025-09-18 00:07:03', '2025-09-18 00:07:03'),
(666, 'irbxetrmtb@yahoo.com', '2025-09-18 03:26:46', '2025-09-18 03:26:46'),
(667, 'ofisapide84@gmail.com', '2025-09-20 10:50:39', '2025-09-20 10:50:39'),
(668, 'keqasoyi60@gmail.com', '2025-09-22 18:18:31', '2025-09-22 18:18:31'),
(669, 'deyemec878@gmail.com', '2025-09-23 06:06:35', '2025-09-23 06:06:35'),
(670, 'muhoneb033@gmail.com', '2025-09-23 12:09:34', '2025-09-23 12:09:34'),
(671, 'lobotusu80@gmail.com', '2025-09-23 12:35:39', '2025-09-23 12:35:39'),
(672, 'jehocico274@gmail.com', '2025-09-24 01:23:06', '2025-09-24 01:23:06'),
(673, 'iracoveyaga54@gmail.com', '2025-09-26 14:04:11', '2025-09-26 14:04:11'),
(674, 'izesoxo125@gmail.com', '2025-09-28 12:04:42', '2025-09-28 12:04:42'),
(675, 'cbrqysdxiwwyakqh@yahoo.com', '2025-09-28 17:00:44', '2025-09-28 17:00:44'),
(676, 'mga5b4bvhbvwisu@yahoo.com', '2025-09-29 07:12:32', '2025-09-29 07:12:32'),
(677, 'wclbdup2fdt@yahoo.com', '2025-09-29 10:41:20', '2025-09-29 10:41:20'),
(678, 'xgr0gr6mrxajcbc@yahoo.com', '2025-09-29 20:59:29', '2025-09-29 20:59:29'),
(679, 'ibawidixin816@gmail.com', '2025-09-30 06:30:34', '2025-09-30 06:30:34'),
(680, 'tiadr8891@gmail.com', '2025-10-04 04:47:04', '2025-10-04 04:47:04'),
(681, 'riadr8891@gmail.com', '2025-10-04 04:47:12', '2025-10-04 04:47:12'),
(682, 'naimuddin.my@gmail.com', '2025-10-22 00:21:28', '2025-10-22 00:21:28'),
(683, 'mdjahedhossen4258@gmail.com', '2025-10-22 00:32:02', '2025-10-22 00:32:02'),
(684, 'nineposi007@gmail.com', '2025-10-22 07:25:18', '2025-10-22 07:25:18'),
(685, 'izuwacorovu891@gmail.com', '2025-10-23 03:11:47', '2025-10-23 03:11:47'),
(686, 'leamvt2004@gmail.com', '2025-10-25 15:57:47', '2025-10-25 15:57:47'),
(687, 'oteluhet195@gmail.com', '2025-11-01 04:12:09', '2025-11-01 04:12:09'),
(688, 'hayeqineke453@gmail.com', '2025-11-23 13:31:26', '2025-11-23 13:31:26'),
(689, 'rahijr666@gmail.com', '2025-11-24 12:16:25', '2025-11-24 12:16:25'),
(690, 'ejijawiyoso223@gmail.com', '2025-11-30 00:34:06', '2025-11-30 00:34:06'),
(691, 'mabelhinton24@gmail.com', '2025-12-10 03:20:51', '2025-12-10 03:20:51'),
(692, 'inosewuro16@gmail.com', '2025-12-11 23:47:05', '2025-12-11 23:47:05'),
(693, 'hevihozero767@gmail.com', '2025-12-12 00:39:16', '2025-12-12 00:39:16'),
(694, 'orupafavubej90@gmail.com', '2025-12-19 03:23:13', '2025-12-19 03:23:13'),
(695, 'biwosoloqi45@gmail.com', '2025-12-20 05:09:53', '2025-12-20 05:09:53'),
(696, 'esaluyepac82@gmail.com', '2025-12-20 18:19:03', '2025-12-20 18:19:03'),
(697, 'averecumoza458@gmail.com', '2025-12-24 19:11:47', '2025-12-24 19:11:47'),
(698, 'umavevi377@gmail.com', '2025-12-27 05:36:00', '2025-12-27 05:36:00'),
(699, 'besagaxo22@gmail.com', '2025-12-27 18:25:45', '2025-12-27 18:25:45'),
(700, 'jupegozu53@gmail.com', '2026-01-05 22:35:48', '2026-01-05 22:35:48'),
(701, 'ek.of.er.u.v.a.8.2@gmail.com', '2026-01-06 15:07:19', '2026-01-06 15:07:19'),
(702, 'po.f.o.suraf.u.c.u.0.7@gmail.com', '2026-01-08 14:04:54', '2026-01-08 14:04:54'),
(703, 'w.uq.a.ce.w.379@gmail.com', '2026-01-12 05:42:26', '2026-01-12 05:42:26'),
(704, 'va.ho.m.o.w.a.s.av00@gmail.com', '2026-01-14 23:34:52', '2026-01-14 23:34:52'),
(705, 'je.c.obi.k.a.j.68@gmail.com', '2026-01-21 11:23:39', '2026-01-21 11:23:39'),
(706, 'he.j.uq.a.b.e5.5.0@gmail.com', '2026-01-23 23:54:22', '2026-01-23 23:54:22'),
(707, 'mupo.haba.s.i.8.0@gmail.com', '2026-01-24 08:56:48', '2026-01-24 08:56:48'),
(708, 'wi.rov.i.v.uno.22@gmail.com', '2026-01-31 11:45:29', '2026-01-31 11:45:29'),
(709, 'wa.r.o.s.ug.ik.14@gmail.com', '2026-02-03 10:04:22', '2026-02-03 10:04:22'),
(710, 'pi.muc.itel.452@gmail.com', '2026-02-07 06:28:20', '2026-02-07 06:28:20'),
(711, 'pim.ucit.el.452@gmail.com', '2026-02-08 02:32:25', '2026-02-08 02:32:25'),
(712, 'tmsssunamgonjzone@gmail.com', '2026-02-09 01:45:04', '2026-02-09 01:45:04'),
(713, 'r.o.k.oz.i.bet.o.d60@gmail.com', '2026-02-14 00:54:32', '2026-02-14 00:54:32'),
(714, 'e.lo.wex.e.s50@gmail.com', '2026-02-20 09:56:23', '2026-02-20 09:56:23'),
(715, 'e.xic.i.n.a.g.799@gmail.com', '2026-02-21 05:06:32', '2026-02-21 05:06:32'),
(716, 'f.a.yasi.h.o.lu.p.a.4.7@gmail.com', '2026-02-21 08:29:45', '2026-02-21 08:29:45'),
(717, 'iwdulmof@checkyourform.xyz', '2026-02-22 04:19:17', '2026-02-22 04:19:17'),
(718, 'wsgwddzg@checkyourform.xyz', '2026-02-22 04:19:22', '2026-02-22 04:19:22'),
(719, 'od.o.p.elo.gusi.n97@gmail.com', '2026-02-24 03:13:23', '2026-02-24 03:13:23'),
(720, 'e.puy.i.da.p.o.k.ak.4.2@gmail.com', '2026-02-28 18:24:23', '2026-02-28 18:24:23'),
(721, 'u.w.o.wi.w.ok.e.cu67@gmail.com', '2026-03-01 09:33:40', '2026-03-01 09:33:40'),
(722, 'u.m.et.u.v.in26@gmail.com', '2026-03-01 16:14:41', '2026-03-01 16:14:41'),
(723, 'oc.a.toni.l.ec.i93@gmail.com', '2026-03-02 10:56:04', '2026-03-02 10:56:04'),
(724, 'a.r.is.u.no.h.up70@gmail.com', '2026-03-07 16:16:23', '2026-03-07 16:16:23'),
(725, 'g.u.sa.zi.h18.0@gmail.com', '2026-03-07 23:56:40', '2026-03-07 23:56:40'),
(726, 'equ.v.a.du.pu.y1.8@gmail.com', '2026-03-11 14:47:08', '2026-03-11 14:47:08'),
(727, 'at.atoxaf.a.g.u.2.5.4@gmail.com', '2026-03-13 08:05:17', '2026-03-13 08:05:17'),
(728, 'q.eg.ir.an.iy98@gmail.com', '2026-03-14 19:14:05', '2026-03-14 19:14:05'),
(729, 'e.v.ij.imoguw.o.9.13@gmail.com', '2026-03-18 09:25:26', '2026-03-18 09:25:26'),
(730, 'u.t.o.ne.j.omib68.9@gmail.com', '2026-03-18 18:12:14', '2026-03-18 18:12:14'),
(731, 'kteqezqy@immenseignite.info', '2026-03-18 22:41:57', '2026-03-18 22:41:57'),
(732, 'uhqzzxik@immenseignite.info', '2026-03-18 22:42:50', '2026-03-18 22:42:50'),
(733, 'a.v.ego.d.i.gem.a.1.2@gmail.com', '2026-03-19 00:49:05', '2026-03-19 00:49:05'),
(734, 'ban.om.an.9.2.8@gmail.com', '2026-04-03 00:47:12', '2026-04-03 00:47:12'),
(735, 'mtfhvozl@immenseignite.info', '2026-04-07 13:00:44', '2026-04-07 13:00:44'),
(736, 'plsmhvry@immenseignite.info', '2026-04-07 13:01:55', '2026-04-07 13:01:55'),
(737, 'tovutrfr@immenseignite.info', '2026-04-07 13:01:58', '2026-04-07 13:01:58'),
(738, 'q.a.g.or.iqus.7.8@gmail.com', '2026-04-09 15:58:56', '2026-04-09 15:58:56'),
(739, 'one.y.at.u.sa.v25@gmail.com', '2026-04-15 18:36:51', '2026-04-15 18:36:51'),
(740, 'n.o.p.u.du.wax8.0@gmail.com', '2026-04-19 10:00:02', '2026-04-19 10:00:02'),
(741, 'ico.g.o.y.a.w.u.z.ud4.0@gmail.com', '2026-04-19 13:06:05', '2026-04-19 13:06:05');

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

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

CREATE TABLE `orders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'pending',
  `checkout_type` varchar(191) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `payment_status` varchar(191) NOT NULL DEFAULT 'pending',
  `package_name` varchar(191) DEFAULT NULL,
  `package_price` varchar(191) DEFAULT NULL,
  `package_id` varchar(191) DEFAULT NULL,
  `custom_fields` longtext DEFAULT NULL,
  `attachment` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `pages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` text NOT NULL,
  `slug` text DEFAULT NULL,
  `meta_tags` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `pages` (`id`, `title`, `slug`, `meta_tags`, `meta_description`, `content`, `lang`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Privacy Policy', 'privacy-policy', 'privacy policy', 'future track privacy policy', '<h2 style=\"text-align: center;\"><b>PRIVACY POLICY</b></h2><p>Effective date: 2022-09-20</p><p>1. <b>Introduction</b></p><p>Welcome to <b> Future Track</b>.</p><p><b>Future Track</b> (“us”, “we”, or “our”) operates <b>https://futuretrackbd.com</b> (hereinafter referred to as <b>“Service”</b>).</p><p>Our Privacy Policy governs your visit to <b>https://futuretrackbd.com</b>, and explains how we collect, safeguard and disclose information that results from your use of our Service.</p><p>We use your data to provide and improve Service. By using Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, the terms used in this Privacy Policy have the same meanings as in our Terms and Conditions.</p><p>Our Terms and Conditions (<b>“Terms”</b>) govern all use of our Service and together with the Privacy Policy constitutes your agreement with us (<b>“agreement”</b>).</p><p>2. <b>Definitions</b></p><p><b>SERVICE</b> means the https://futuretrackbd.com website operated by Future Track.</p><p><b>PERSONAL DATA</b> means data about a living individual who can be identified from those data (or from those and other information either in our possession or likely to come into our possession).</p><p><b>USAGE DATA</b> is data collected automatically either generated by the use of Service or from Service infrastructure itself (for example, the duration of a page visit).</p><p><b>COOKIES</b> are small files stored on your device (computer or mobile device).</p><p><b>DATA CONTROLLER</b> means a natural or legal person who (either alone or jointly or in common with other persons) determines the purposes for which and the manner in which any personal data are, or are to be, processed. For the purpose of this Privacy Policy, we are a Data Controller of your data.</p><p><b>DATA PROCESSORS (OR SERVICE PROVIDERS)</b> means any natural or legal person who processes the data on behalf of the Data Controller. We may use the services of various Service Providers in order to process your data more effectively.</p><p><b>DATA SUBJECT</b> is any living individual who is the subject of Personal Data.</p><p><b>THE USER</b> is the individual using our Service. The User corresponds to the Data Subject, who is the subject of Personal Data.</p><p>3. <b>Information Collection and Use</b></p><p>We collect several different types of information for various purposes to provide and improve our Service to you.</p><p>4. <b>Types of Data Collected</b></p><p><b>Personal Data</b></p><p>While using our Service, we may ask you to provide us with certain personally identifiable information that can be used to contact or identify you (<b>“Personal Data”</b>). Personally identifiable information may include, but is not limited to:</p><p>0.1. Email address</p><p>0.2. First name and last name</p><p>0.3. Phone number</p><p>0.4. Address, Country, State, Province, ZIP/Postal code, City</p><p>0.5. Cookies and Usage Data</p><p>We may use your Personal Data to contact you with newsletters, marketing or promotional materials and other information that may be of interest to you. You may opt out of receiving any, or all, of these communications from us by following the unsubscribe link.</p><p><b>Usage Data</b></p><p>We may also collect information that your browser sends whenever you visit our Service or when you access Service by or through any device (<b>“Usage Data”</b>).</p><p>This Usage Data may include information such as your computer’s Internet Protocol address (e.g. IP address), browser type, browser version, the pages of our Service that you visit, the time and date of your visit, the time spent on those pages, unique device identifiers and other diagnostic data.</p><p>When you access Service with a device, this Usage Data may include information such as the type of device you use, your device unique ID, the IP address of your device, your device operating system, the type of Internet browser you use, unique device identifiers and other diagnostic data.</p><p><b>Tracking Cookies Data</b></p><p>We use cookies and similar tracking technologies to track the activity on our Service and we hold certain information.</p><p>Cookies are files with a small amount of data which may include an anonymous unique identifier. Cookies are sent to your browser from a website and stored on your device. Other tracking technologies are also used such as beacons, tags and scripts to collect and track information and to improve and analyze our Service.</p><p>You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our Service.</p><p>Examples of Cookies we use:</p><p>0.1. <b>Session Cookies:</b> We use Session Cookies to operate our Service.</p><p>0.2. <b>Preference Cookies:</b> We use Preference Cookies to remember your preferences and various settings.</p><p>0.3. <b>Security Cookies:</b> We use Security Cookies for security purposes.</p><p>0.4. <b>Advertising Cookies:</b> Advertising Cookies are used to serve you with advertisements that may be relevant to you and your interests.</p><p><b>Other Data</b></p><p>While using our Service, we may also collect the following information: sex, age, date of birth, place of birth, passport details, citizenship, registration at place of residence and actual address, telephone number (work, mobile), details of documents on education, qualification, professional training, employment agreements, <a href=\"https://policymaker.io/non-disclosure-agreement/\">NDA agreements</a>, information on bonuses and compensation, information on marital status, family members, social security (or other taxpayer identification) number, office location and other data.</p><p>5. <b>Use of Data</b></p><p>Future Track uses the collected data for various purposes:</p><p>0.1. to provide and maintain our Service;</p><p>0.2. to notify you about changes to our Service;</p><p>0.3. to allow you to participate in interactive features of our Service when you choose to do so;</p><p>0.4. to provide customer support;</p><p>0.5. to gather analysis or valuable information so that we can improve our Service;</p><p>0.6. to monitor the usage of our Service;</p><p>0.7. to detect, prevent and address technical issues;</p><p>0.8. to fulfil any other purpose for which you provide it;</p><p>0.9. to carry out our obligations and enforce our rights arising from any contracts entered into between you and us, including for billing and collection;</p><p>0.10. to provide you with notices about your account and/or subscription, including expiration and renewal notices, email-instructions, etc.;</p><p>0.11. to provide you with news, special offers and general information about other goods, services and events which we offer that are similar to those that you have already purchased or enquired about unless you have opted not to receive such information;</p><p>0.12. in any other way we may describe when you provide the information;</p><p>0.13. for any other purpose with your consent.</p><p>6. <b>Retention of Data</b></p><p>We will retain your Personal Data only for as long as is necessary for the purposes set out in this Privacy Policy. We will retain and use your Personal Data to the extent necessary to comply with our legal obligations (for example, if we are required to retain your data to comply with applicable laws), resolve disputes, and enforce our legal agreements and policies.</p><p>We will also retain Usage Data for internal analysis purposes. Usage Data is generally retained for a shorter period, except when this data is used to strengthen the security or to improve the functionality of our Service, or we are legally obligated to retain this data for longer time periods.</p><p>7. <b>Transfer of Data</b></p><p>Your information, including Personal Data, may be transferred to – and maintained on – computers located outside of your state, province, country or other governmental jurisdiction where the data protection laws may differ from those of your jurisdiction.</p><p>If you are located outside Bangladesh and choose to provide information to us, please note that we transfer the data, including Personal Data, to Bangladesh and process it there.</p><p>Your consent to this Privacy Policy followed by your submission of such information represents your agreement to that transfer.</p><p>Future Track will take all the steps reasonably necessary to ensure that your data is treated securely and in accordance with this Privacy Policy and no transfer of your Personal Data will take place to an organisation or a country unless there are adequate controls in place including the security of your data and other personal information.</p><p>8. <b>Disclosure of Data</b></p><p>We may disclose personal information that we collect, or you provide:</p><p>0.1. <b>Disclosure for Law Enforcement.</b></p><p>Under certain circumstances, we may be required to disclose your Personal Data if required to do so by law or in response to valid requests by public authorities.</p><p>0.2. <b>Business Transaction.</b></p><p>If we or our subsidiaries are involved in a merger, acquisition or asset sale, your Personal Data may be transferred.</p><p>0.3. <b>Other cases. We may disclose your information also:</b></p><p>0.3.1. to our subsidiaries and affiliates;</p><p>0.3.2. to contractors, service providers, and other third parties we use to support our business;</p><p>0.3.3. to fulfill the purpose for which you provide it;</p><p>0.3.4. for the purpose of including your company’s logo on our website;</p><p>0.3.5. for any other purpose disclosed by us when you provide the information;</p><p>0.3.6. with your consent in any other cases;</p><p>0.3.7. if we believe disclosure is necessary or appropriate to protect the rights, property, or safety of the Company, our customers, or others.</p><p>9. <b>Security of Data</b></p><p>The security of your data is important to us but remember that no method of transmission over the Internet or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Data, we cannot guarantee its absolute security.</p><p>10. <b>Your Data Protection Rights Under General Data Protection Regulation (GDPR)\r\n</b></p><p>If you are a resident of the European Union (EU) and European Economic Area (EEA), you have certain data protection rights, covered by GDPR.</p><p>We aim to take reasonable steps to allow you to correct, amend, delete, or limit the use of your Personal Data.</p><p> If you wish to be informed what Personal Data we hold about you and if you want it to be removed from our systems, please email us at <b>info@futuretrackbd.com</b>.</p><p>In certain circumstances, you have the following data protection rights:</p><p>0.1. the right to access, update or to delete the information we have on you;</p><p>0.2. the right of rectification. You have the right to have your information rectified if that information is inaccurate or incomplete;</p><p>0.3. the right to object. You have the right to object to our processing of your Personal Data;</p><p>0.4. the right of restriction. You have the right to request that we restrict the processing of your personal information;</p><p>0.5. the right to data portability. You have the right to be provided with a copy of your Personal Data in a structured, machine-readable and commonly used format;</p><p>0.6. the right to withdraw consent. You also have the right to withdraw your consent at any time where we rely on your consent to process your personal information;</p><p>Please note that we may ask you to verify your identity before responding to such requests. Please note, we may not able to provide Service without some necessary data.</p><p>You have the right to complain to a Data Protection Authority about our collection and use of your Personal Data. For more information, please contact your local data protection authority in the European Economic Area (EEA).</p><p>11. <b>Your Data Protection Rights under the California Privacy Protection Act (CalOPPA)</b></p><p>CalOPPA is the first state law in the nation to require commercial websites and online services to post a privacy policy. The law’s reach stretches well beyond California to require a person or company in the United States (and conceivable the world) that operates websites collecting personally identifiable information from California consumers to post a conspicuous privacy policy on its website stating exactly the information being collected and those individuals with whom it is being shared, and to comply with this policy.</p><p>According to CalOPPA we agree to the following:</p><p>0.1. users can visit our site anonymously;</p><p>0.2. our Privacy Policy link includes the word “Privacy”, and can easily be found on the home page of our website;</p><p>0.3. users will be notified of any privacy policy changes on our Privacy Policy Page;</p><p>0.4. users are able to change their personal information by emailing us at <b>info@futuretrackbd.com</b>.</p><p>Our Policy on “Do Not Track” Signals:</p><p>We honor Do Not Track signals and do not track, plant cookies, or use advertising when a Do Not Track browser mechanism is in place. Do Not Track is a preference you can set in your web browser to inform websites that you do not want to be tracked.</p><p>You can enable or disable Do Not Track by visiting the Preferences or Settings page of your web browser.</p><p>12. <b>Your Data Protection Rights under the California Consumer Privacy Act (CCPA)</b></p><p>If you are a California resident, you are entitled to learn what data we collect about you, ask to delete your data and not to sell (share) it. To exercise your data protection rights, you can make certain requests and ask us:</p><p><b>0.1. What personal information we have about you. If you make this request, we will return to you:</b></p><p>0.0.1. The categories of personal information we have collected about you.</p><p>0.0.2. The categories of sources from which we collect your personal information.</p><p>0.0.3. The business or commercial purpose for collecting or selling your personal information.</p><p>0.0.4. The categories of third parties with whom we share personal information.</p><p>0.0.5. The specific pieces of personal information we have collected about you.</p><p>0.0.6. A list of categories of personal information that we have sold, along with the category of any other company we sold it to. If we have not sold your personal information, we will inform you of that fact.</p><p>0.0.7. A list of categories of personal information that we have disclosed for a business purpose, along with the category of any other company we shared it with.</p><p>Please note, you are entitled to ask us to provide you with this information up to two times in a rolling twelve-month period. When you make this request, the information provided may be limited to the personal information we collected about you in the previous 12 months.</p><p><b>0.2. To delete your personal information. If you make this request, we will delete the personal information we hold about you as of the date of your request from our records and direct any service providers to do the same. In some cases, deletion may be accomplished through de-identification of the information. If you choose to delete your personal information, you may not be able to use certain functions that require your personal information to operate.</b></p><p><b>0.3. To stop selling your personal information. We don’t sell or rent your personal information to any third parties for any purpose. We do not sell your personal information for monetary consideration. However, under some circumstances, a transfer of personal information to a third party, or within our family of companies, without monetary consideration may be considered a “sale” under California law. You are the only owner of your Personal Data and can request disclosure or deletion at any time.</b></p><p>If you submit a request to stop selling your personal information, we will stop making such transfers.</p><p>Please note, if you ask us to delete or stop selling your data, it may impact your experience with us, and you may not be able to participate in certain programs or membership services which require the usage of your personal information to function. But in no circumstances, we will discriminate against you for exercising your rights.</p><p>To exercise your California data protection rights described above, please send your request(s) by email: <b>info@futuretrackbd.com</b>.</p><p>Your data protection rights, described above, are covered by the CCPA, short for the California Consumer Privacy Act. To find out more, visit the official California Legislative Information website. The CCPA took effect on 01/01/2020.</p><p>13. <b>Service Providers</b></p><p>We may employ third party companies and individuals to facilitate our Service (<b>“Service Providers”</b>), provide Service on our behalf, perform Service-related services or assist us in analysing how our Service is used.</p><p>These third parties have access to your Personal Data only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.</p><p>14. <b>Analytics</b></p><p>We may use third-party Service Providers to monitor and analyze the use of our Service.</p><p>15. <b>CI/CD tools</b></p><p>We may use third-party Service Providers to automate the development process of our Service.</p><p>16. <b>Behavioral Remarketing</b></p><p>We may use remarketing services to advertise on third party websites to you after you visited our Service. We and our third-party vendors use cookies to inform, optimise and serve ads based on your past visits to our Service.</p><p>17. <b>Links to Other Sites</b></p><p>Our Service may contain links to other sites that are not operated by us. If you click a third party link, you will be directed to that third party’s site. We strongly advise you to review the Privacy Policy of every site you visit.</p><p>We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services.</p><p>For example, the outlined <a href=\"https://policymaker.io/privacy-policy/\">privacy policy</a> has been made using <a href=\"https://policymaker.io/\">PolicyMaker.io</a>, a free tool that helps create high-quality legal documents. PolicyMaker’s <a href=\"https://policymaker.io/privacy-policy/\">privacy policy generator</a> is an easy-to-use tool for creating a <a href=\"https://policymaker.io/blog-privacy-policy/\">privacy policy for blog</a>, website, e-commerce store or mobile app.</p><p>18. <b><b>Children’s Privacy</b></b></p><p>Our Services are not intended for use by children under the age of 18 (<b>“Child”</b> or <b>“Children”</b>).</p><p>We do not knowingly collect personally identifiable information from Children under 18. If you become aware that a Child has provided us with Personal Data, please contact us. If we become aware that we have collected Personal Data from Children without verification of parental consent, we take steps to remove that information from our servers.</p><p>19. <b>Changes to This Privacy Policy</b></p><p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.</p><p>We will let you know via email and/or a prominent notice on our Service, prior to the change becoming effective and update “effective date” at the top of this Privacy Policy.</p><p>You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.</p><p>20. <b>Contact Us</b></p><p>If you have any questions about this Privacy Policy, please contact us by email: <b>info@futuretrackbd.com</b>.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p style=\"margin-top: 5em; font-size: 0.7em;\">This <a href=\"https://policymaker.io/privacy-policy/\">Privacy Policy</a> was created for <b>https://futuretrackbd.com</b> by <a href=\"https://policymaker.io\">PolicyMaker.io</a> on 2022-09-20.</p>', 'en', 'publish', '2020-05-27 19:57:59', '2022-09-20 01:09:17'),
(2, 'Privacy Policy', 'privacy-policy', NULL, NULL, '<p>Is education residence conveying so so. Suppose shyness say ten behaved morning had. Any unsatiable assistance compliment occasional too reasonably advantages. Unpleasing has ask acceptance partiality alteration understood two. Worth no tiled my at house added. Married he hearing am it totally removal. Remove but suffer wanted his lively length. Moonlight two applauded conveying end direction old principle but. Are expenses distance weddings perceive strongly who age domestic.&nbsp;</p><p><br></p><p>Greatly hearted has who believe. Drift allow green son walls years for blush. Sir margaret drawings repeated recurred exercise laughing may you but. Do repeated whatever to welcomed absolute no. Fat surprise although outlived and informed shy dissuade property. Musical by me through he drawing savings an. No we stand avoid decay heard mr. Common so wicket appear to sudden worthy on. Shade of offer ye whole stood hoped.&nbsp;</p><div><br></div>', 'en', 'publish', '2020-07-24 11:01:55', '2020-07-24 11:01:55'),
(4, 'Countries', 'countries', 'countries', NULL, '<p><img style=\"width: 50%;\" src=\"https://futuretrackbd.com/ftest/assets/uploads/media-uploader/553-5539547-flag-of-canada-hd-png-download1602318154.png\"><br></p><p><br></p><p align=\"center\"><br></p><table class=\"table table-bordered\"><tbody><tr><td align=\"center\"><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><a href=\"#\" target=\"_blank\">Canada </a></span></span></p><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span></span></p><p><img style=\"width: 50%;\" src=\"https://futuretrackbd.com/ftest/assets/uploads/media-uploader/553-5539547-flag-of-canada-hd-png-download1602318154.png\"><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span><span style=\"font-family: &quot;Helvetica&quot;;\">﻿</span></span><br></p></td><td style=\"text-align: center;\"><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><a href=\"#\" target=\"_blank\">UK</a></span></span></p><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span></span><img style=\"width: 627px;\" src=\"https://futuretrackbd.com/ftest/assets/uploads/media-uploader/553-5539547-flag-of-canada-hd-png-download1602318154.png\"><br></p></td><td><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><a href=\"#\" target=\"_blank\">Germany</a></span></span></p><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span></span></p><p><img style=\"width: 100%;\" src=\"https://futuretrackbd.com/ftest/assets/uploads/media-uploader/netherlands1602318160.png\"><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span></span></p></td></tr><tr><td align=\"center\"><br></td><td style=\"text-align: center;\"><br></td><td><br></td></tr><tr><td><p style=\"text-align: center;\"><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><a href=\"#\" target=\"_blank\">Netherlands</a></span></span></p><p align=\"center\"><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span></span></p><p align=\"center\"><img style=\"width: 50%;\" src=\"https://futuretrackbd.com/ftest/assets/uploads/media-uploader/netherlands1602318160.png\"><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span></span></p><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span></span></p><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span></span></p><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span></span></p></td><td style=\"text-align: center;\"><p><span style=\"color: rgb(0, 0, 0);\">Sweden</span></p><p><span style=\"color: rgb(0, 0, 0);\"><br></span></p><p><span style=\"color: rgb(0, 0, 0);\"><br></span></p><p><span style=\"color: rgb(0, 0, 0);\"><br></span><img style=\"width: 627px;\" src=\"https://futuretrackbd.com/ftest/assets/uploads/media-uploader/553-5539547-flag-of-canada-hd-png-download1602318154.png\"><span style=\"color: rgb(0, 0, 0);\"></span></p></td><td><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><a href=\"#\" target=\"_blank\">Malaysia</a></span></span></p><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span></span></p><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span></span></p><p><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(0, 0, 0);\"><br></span></span></p></td></tr></tbody></table><p><br></p>', 'en', 'publish', '2020-10-10 08:24:34', '2020-10-10 08:29:10');
INSERT INTO `pages` (`id`, `title`, `slug`, `meta_tags`, `meta_description`, `content`, `lang`, `status`, `created_at`, `updated_at`) VALUES
(5, 'UK', 'uk', 'uk', NULL, '<p></p><p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n  <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n  <w:View>Normal</w:View>\r\n  <w:Zoom>0</w:Zoom>\r\n  <w:TrackMoves></w:TrackMoves>\r\n  <w:TrackFormatting></w:TrackFormatting>\r\n  <w:PunctuationKerning></w:PunctuationKerning>\r\n  <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n  <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\r\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n  <w:Compatibility>\r\n   <w:BreakWrappedTables></w:BreakWrappedTables>\r\n   <w:SnapToGridInCell></w:SnapToGridInCell>\r\n   <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n   <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n   <w:DontGrowAutofit></w:DontGrowAutofit>\r\n   <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n   <w:DontVertAlignCellWithSp></w:DontVertAlignCellWithSp>\r\n   <w:DontBreakConstrainedForcedTables></w:DontBreakConstrainedForcedTables>\r\n   <w:DontVertAlignInTxbx></w:DontVertAlignInTxbx>\r\n   <w:Word11KerningPairs></w:Word11KerningPairs>\r\n   <w:CachedColBalance></w:CachedColBalance>\r\n  </w:Compatibility>\r\n  <m:mathPr>\r\n   <m:mathFont m:val=\"Cambria Math\"></m:mathFont>\r\n   <m:brkBin m:val=\"before\"></m:brkBin>\r\n   <m:brkBinSub m:val=\"--\"></m:brkBinSub>\r\n   <m:smallFrac m:val=\"off\"></m:smallFrac>\r\n   <m:dispDef></m:dispDef>\r\n   <m:lMargin m:val=\"0\"></m:lMargin>\r\n   <m:rMargin m:val=\"0\"></m:rMargin>\r\n   <m:defJc m:val=\"centerGroup\"></m:defJc>\r\n   <m:wrapIndent m:val=\"1440\"></m:wrapIndent>\r\n   <m:intLim m:val=\"subSup\"></m:intLim>\r\n   <m:naryLim m:val=\"undOvr\"></m:naryLim>\r\n  </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin-top:0in;\r\n	mso-para-margin-right:0in;\r\n	mso-para-margin-bottom:10.0pt;\r\n	mso-para-margin-left:0in;\r\n	line-height:115%;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n<![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">WHY STUDY IN UK?</span></b></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></b></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">The United Kingdom has\r\na pristine legacy of world-famous universities. UK attracts thousands of\r\nstudents and researchers every year, including many from Bangladesh seeking to\r\nget admission to universities in the UK to study in different programs such as\r\nuniversity foundation, bachelor, masters and research-based courses.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">The universities in\r\nThe UK offers the finest education in a variety of subjects which include\r\nengineering, science, business, management, law, finance, art, and design.\r\nLondon, the capital of the UK, has been consistently featuring in the top 10 livable\r\ncities of the world for international students. Apart from London, other cities\r\nsuch as Edinburgh, Birmingham, Manchester, Glasgow, etc are famous as study\r\ndestinations as they are home to a number of prestigious universities.</span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">With over 160\r\nuniversities, colleges, and thousands, of course, options for international\r\nstudents to study in the UK, it is easy to find a course that matches your profile. The\r\neducation offered by the universities in the UK is value for money as students\r\nreceive globally recognized degrees which can be tailored to your interests. Scholarship\r\nopportunities for international students are also available in the UK. Depending on\r\nthe university and program you enroll in, as an international student, you\r\ncan also check out for internships, work placements, volunteering, and\r\ndissertation placements.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">As an international\r\nstudent in the UK, you are typically allowed to work up to 20 hours a week\r\nduring school term, up to full-time when school is out of term. You can check\r\nwith your international advisor at your school before starting any work - you\r\ndo not want to be in violation of your visa, and rules change frequently. After\r\ncompleting your study, you will be eligible for a post-study work permit for 1-2\r\nyears depending on your line of study.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">The UK is known for its\r\nmulticultural society, with nearly all religions and faiths represented. With a\r\nracial, ethnic, and religious mix, the UK is very open to new traditions and\r\ncultures - a great thing for students coming from other countries.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p><p align=\"justify\"><u style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><span style=\"font-weight: bolder;\">Institutes We&nbsp;</span></span></u><span style=\"text-align: left; font-size: 16px;\"><span style=\"font-weight: bolder;\"><u>Represent</u></span></span><br></p><p align=\"justify\"><br></p><ol><li style=\"\"><span style=\"text-indent: -0.25in; text-align: left; font-family: &quot;Times New Roman&quot;;\">Anglia Ruskin University</span></li><li style=\"\"><span style=\"text-align: left; text-indent: -0.25in; font-family: &quot;Times New Roman&quot;;\">Brunel University</span></li><li style=\"\"><span style=\"text-align: left; text-indent: -0.25in; font-family: &quot;Times New Roman&quot;;\">Canterbury Christ Church University</span></li><li style=\"\"><span style=\"text-align: left; text-indent: -0.25in; font-family: &quot;Times New Roman&quot;;\">Coventry University</span></li><li style=\"\"><span style=\"text-indent: -0.25in; text-align: left; font-family: &quot;Times New Roman&quot;;\">D</span><span style=\"text-indent: -0.25in; text-align: left; line-height: 115%; font-family: &quot;Times New Roman&quot;;\">e Montfort University</span></li><li style=\"\"><span style=\"text-align: left; text-indent: -0.25in; font-family: &quot;Times New Roman&quot;;\">London Southbank University</span></li><li style=\"\"><span style=\"text-align: left; text-indent: -0.25in; font-family: &quot;Times New Roman&quot;;\">Middlesex University</span></li><li style=\"\"><span style=\"text-indent: -0.25in; text-align: left; line-height: 115%; font-family: &quot;Times New Roman&quot;;\">Queens University</span></li><li style=\"\"><span style=\"text-indent: -0.25in; text-align: left; font-family: &quot;Times New Roman&quot;;\">University of Central&nbsp;</span><span style=\"text-indent: -0.25in; text-align: left; font-family: &quot;Times New Roman&quot;;\">Lancashire</span></li><li style=\"\"><span style=\"text-align: left; text-indent: -0.25in; font-family: &quot;Times New Roman&quot;;\">University of Creative Art</span></li><li style=\"\"><span style=\"text-align: left; text-indent: -0.25in; font-family: &quot;Times New Roman&quot;;\">University of Greenwich</span></li><li style=\"\"><span style=\"text-align: left; text-indent: -0.25in; font-family: &quot;Times New Roman&quot;;\">University of Liverpool</span></li><li style=\"\"><span style=\"text-align: left; text-indent: -0.25in; font-family: &quot;Times New Roman&quot;;\">University of Northumbria</span></li><li style=\"\"><span style=\"text-align: left; text-indent: -0.25in; font-family: &quot;Times New Roman&quot;;\">University of&nbsp;</span><span style=\"text-align: left; font-family: &quot;Times New Roman&quot;;\">Portsmouth</span></li><li style=\"\"><span style=\"text-align: left; text-indent: -24px; font-family: &quot;Times New Roman&quot;;\">University of Ulster</span></li></ol><p style=\"margin-bottom: 0.0001pt; text-align: center; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; line-height: 18.4px; color: windowtext;\"><u style=\"color: rgb(68, 68, 68); font-family: Lato, sans-serif; font-size: 18.6667px; text-align: left;\"><span style=\"font-size: 12pt;\"><span style=\"font-weight: bolder;\"><br></span></span></u></span></p><h2 style=\"margin-bottom: 0.0001pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"line-height: 18.4px;\"><span style=\"text-align: left; font-family: Verdana;\"><a href=\"http://futuretrackbd.com/appointment\" target=\"_blank\" style=\"line-height: inherit; text-align: -webkit-center;\">For more info make a appointment with Us</a></span></span></h2><p><span style=\"line-height: 16.1px;\"></span></p><p><span style=\"line-height: 16.1px;\"></span></p><p style=\"text-align: justify;\"><span style=\"color: rgb(0, 0, 0); font-size: 16px; text-align: left; text-indent: -24px;\"><br></span></p><p style=\"text-align: justify;\"><span style=\"color: rgb(0, 0, 0); font-size: 16px; text-align: left; text-indent: -24px;\"><br></span></p><p style=\"text-align: justify;\"><span style=\"color: rgb(0, 0, 0); font-size: 16px; text-align: left; text-indent: -24px;\"><br></span></p>', 'en', 'publish', '2020-10-10 09:37:13', '2020-11-04 07:29:56');
INSERT INTO `pages` (`id`, `title`, `slug`, `meta_tags`, `meta_description`, `content`, `lang`, `status`, `created_at`, `updated_at`) VALUES
(6, 'CANADA', 'canda', 'canada', NULL, '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n  <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n  <w:View>Normal</w:View>\r\n  <w:Zoom>0</w:Zoom>\r\n  <w:TrackMoves></w:TrackMoves>\r\n  <w:TrackFormatting></w:TrackFormatting>\r\n  <w:PunctuationKerning></w:PunctuationKerning>\r\n  <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n  <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\r\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n  <w:Compatibility>\r\n   <w:BreakWrappedTables></w:BreakWrappedTables>\r\n   <w:SnapToGridInCell></w:SnapToGridInCell>\r\n   <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n   <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n   <w:DontGrowAutofit></w:DontGrowAutofit>\r\n   <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n   <w:DontVertAlignCellWithSp></w:DontVertAlignCellWithSp>\r\n   <w:DontBreakConstrainedForcedTables></w:DontBreakConstrainedForcedTables>\r\n   <w:DontVertAlignInTxbx></w:DontVertAlignInTxbx>\r\n   <w:Word11KerningPairs></w:Word11KerningPairs>\r\n   <w:CachedColBalance></w:CachedColBalance>\r\n  </w:Compatibility>\r\n  <m:mathPr>\r\n   <m:mathFont m:val=\"Cambria Math\"></m:mathFont>\r\n   <m:brkBin m:val=\"before\"></m:brkBin>\r\n   <m:brkBinSub m:val=\"--\"></m:brkBinSub>\r\n   <m:smallFrac m:val=\"off\"></m:smallFrac>\r\n   <m:dispDef></m:dispDef>\r\n   <m:lMargin m:val=\"0\"></m:lMargin>\r\n   <m:rMargin m:val=\"0\"></m:rMargin>\r\n   <m:defJc m:val=\"centerGroup\"></m:defJc>\r\n   <m:wrapIndent m:val=\"1440\"></m:wrapIndent>\r\n   <m:intLim m:val=\"subSup\"></m:intLim>\r\n   <m:naryLim m:val=\"undOvr\"></m:naryLim>\r\n  </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin-top:0in;\r\n	mso-para-margin-right:0in;\r\n	mso-para-margin-bottom:10.0pt;\r\n	mso-para-margin-left:0in;\r\n	line-height:115%;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n<![endif]-->\r\n\r\n</p><p class=\"MsoNormal\"><b style=\"mso-bidi-font-weight:normal\"><span style=\"font-size:14.0pt;line-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">WHY\r\nSTUDY IN CANADA?</span></b></p><p class=\"MsoNormal\"><b style=\"mso-bidi-font-weight:normal\"><span style=\"font-size:14.0pt;line-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">Canada is considered to\r\nbe one of the best international study destinations among the students. This\r\ncountry offers a wide variety of course options such as university foundations,\r\nundergraduate diplomas, bachelors, postgraduate diplomas/certificates,\r\nmaster’s degrees, and PhDs as well. Research is a key component of Canadian universities and it plays a vital role in the advancement of\r\ntechnology.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">‘Warm and Friendly’\r\na stereotype about Canadians is absolutely true. When you come to Canada, you are\r\nguaranteed to find welcoming souls around you with a uniquely Canadian culture\r\nthat embraces diversity. From urban centers to small towns, Canada is one of\r\nthe safest countries in the world for international students.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">Canada is a peaceful\r\nand safe country and it is ranked 3<sup>rd</sup>in the list of the most livable\r\ncountries in the world. Also, three cities of Canada (Toronto, Vancouver,\r\nCalgary) is ranked among the top 10 cities for living in the entire world. It is\r\nalso one of the most industrialized countries in the world and has been\r\nconsistently ranking among the most stable economies and high employability rates.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">The most popular\r\nprovinces to study in Canada especially for international students are British\r\nColumbia, Ontario, and Quebec because many of the top universities are in these\r\nprovinces. When you go to Canada for higher education, you’ll enjoy the same social\r\nbenefits as those offered to Canadian citizens. Canada offers the possibility of\r\npaid internships and both on and off-campus job opportunities. After completing\r\nyour study, you can get a post-study work permit for up to 3 years and can apply\r\nfor permanent residence if you can fulfill all the conditions given by the\r\nCanadian Government.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">One of the greatest\r\nthings about studying in Canada is the opportunity to experience a climate,\r\nculture, and way of life that is beyond comparison. From experiencing the\r\nvibrant colors of autumn leave to the mellow sound of snowfall through the\r\nforest, each season and place has so much to offer which is beyond imagination. <br></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><u style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><span style=\"font-weight: bolder;\"><br></span></span></u></p><p class=\"MsoNormal\" style=\"text-align:justify\"><u style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><span style=\"font-weight: bolder;\"><br></span></span></u></p><p align=\"justify\"><u style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><span style=\"font-weight: bolder;\">Institutes We&nbsp;</span></span></u><span style=\"text-align: left; font-size: 16px;\"><span style=\"font-weight: bolder;\"><u>Represent</u></span></span><br></p><p align=\"justify\"><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">Algoma University</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">Brock University</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">Centennial College</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">Fanshawe College</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">Lakehead University</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">Mount Saint Vincent University</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">Seneca College</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">Thompson River University</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"text-indent: -0.25in; text-align: left; font-size: 12pt; line-height: 115%;\">Toronto School of Management</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"text-indent: -0.25in; text-align: left; font-size: 12pt; line-height: 115%;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;</span></span><span style=\"text-indent: -0.25in; text-align: left; font-size: 12pt; line-height: 115%;\">University Canada West</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">University of Manitoba</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">University of Regina</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">University of Saskatchewan</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">University of Windsor</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">Yorkville University</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\"><br></span></p><h2 style=\"text-align: center;\"><a href=\"http://futuretrackbd.com/appointment\" target=\"_blank\">For More info and Appointment </a></h2><p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\"><br></span></p>', 'en', 'publish', '2020-10-10 09:38:31', '2020-11-04 07:29:17');
INSERT INTO `pages` (`id`, `title`, `slug`, `meta_tags`, `meta_description`, `content`, `lang`, `status`, `created_at`, `updated_at`) VALUES
(7, 'NETHERLANDS', 'netherlands', 'netherlands', NULL, '<!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n  <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n  <w:View>Normal</w:View>\r\n  <w:Zoom>0</w:Zoom>\r\n  <w:TrackMoves></w:TrackMoves>\r\n  <w:TrackFormatting></w:TrackFormatting>\r\n  <w:PunctuationKerning></w:PunctuationKerning>\r\n  <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n  <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\r\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n  <w:Compatibility>\r\n   <w:BreakWrappedTables></w:BreakWrappedTables>\r\n   <w:SnapToGridInCell></w:SnapToGridInCell>\r\n   <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n   <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n   <w:DontGrowAutofit></w:DontGrowAutofit>\r\n   <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n   <w:DontVertAlignCellWithSp></w:DontVertAlignCellWithSp>\r\n   <w:DontBreakConstrainedForcedTables></w:DontBreakConstrainedForcedTables>\r\n   <w:DontVertAlignInTxbx></w:DontVertAlignInTxbx>\r\n   <w:Word11KerningPairs></w:Word11KerningPairs>\r\n   <w:CachedColBalance></w:CachedColBalance>\r\n  </w:Compatibility>\r\n  <m:mathPr>\r\n   <m:mathFont m:val=\"Cambria Math\"></m:mathFont>\r\n   <m:brkBin m:val=\"before\"></m:brkBin>\r\n   <m:brkBinSub m:val=\"--\"></m:brkBinSub>\r\n   <m:smallFrac m:val=\"off\"></m:smallFrac>\r\n   <m:dispDef></m:dispDef>\r\n   <m:lMargin m:val=\"0\"></m:lMargin>\r\n   <m:rMargin m:val=\"0\"></m:rMargin>\r\n   <m:defJc m:val=\"centerGroup\"></m:defJc>\r\n   <m:wrapIndent m:val=\"1440\"></m:wrapIndent>\r\n   <m:intLim m:val=\"subSup\"></m:intLim>\r\n   <m:naryLim m:val=\"undOvr\"></m:naryLim>\r\n  </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin-top:0in;\r\n	mso-para-margin-right:0in;\r\n	mso-para-margin-bottom:10.0pt;\r\n	mso-para-margin-left:0in;\r\n	line-height:115%;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n<![endif]-->\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">WHY STUDY IN\r\nNETHERLANDS?</span></b></p><p class=\"MsoNormal\" style=\"text-align:justify\"><br></p>\r\n\r\n<p class=\"MsoNormal\" align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">The Netherlands, or\r\nHolland is one of the most popular countries in north-western Europe for\r\ninternational students. With some of the world’s finest universities, a modern\r\napproach to education, and a welcoming environment, no wonder, Netherlands is\r\none of the most desired study destinations. <br></span></p><p class=\"MsoNormal\" align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">You can expect a large\r\ncommunity of international students: More than 112,000 students from around the\r\nworld. Around 16% of all students come from abroad - one of the highest ratios\r\nanywhere in Europe.</span></p><p class=\"MsoNormal\" align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">Dutch universities are\r\namong the most innovative and modern institutions in the world and they are\r\nfamous for their top-notch education at Bachelor’s and Master’s levels. A wide\r\narray of programs related to engineering, law, business, environment, and energy\r\nmanagement are available here. More than 2,100 English taught courses are run by\r\nthe universities at undergraduate and postgraduate levels. The Dutch teaching technique\r\nis interactive and student-centric enabling students to develop valuable skills\r\nsuch as analyzing, problem-solving and creative thinking. <br></span></p><p class=\"MsoNormal\" align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">Universities in the\r\nNetherlands offers help to foreign students to acquire a Dutch student visa\r\nand if you get admission to any university, you are guaranteed to receive the\r\nvisa. After graduating from a Dutch university, you can also apply for a\r\npost-study work visa for one year. Some of the world’s largest companies are\r\nDutch and many global groups have their European headquarters in the\r\nNetherlands. Paired with the country’s international mindset, you will find a\r\nworkforce that is highly proficient in English and very welcoming towards\r\nforeign employees. Those are pristine conditions for international students. If\r\nyou graduate with a Bachelor’s or Master’s degree from a Dutch university, you\r\nwill stand a good chance at also finding a job and staying for a longer time.</span></p><p class=\"MsoNormal\" align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p><p align=\"justify\"><u style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><span style=\"font-weight: bolder;\">Institutes We&nbsp;</span></span></u><span style=\"text-align: left; font-size: 16px;\"><span style=\"font-weight: bolder;\"><u>Represent</u></span></span><br></p><p align=\"justify\"><br></p><p class=\"MsoNormal\" align=\"center\" style=\"text-align: left;\"><span style=\"line-height: 115%;\"><span style=\"font-size: 12pt;\"><b><o:p></o:p></b></span></span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"text-align:justify;text-indent:-.25in;\r\nmso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-size:12.0pt;\r\nline-height:115%;mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">1.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]--><span style=\"font-size:12.0pt;line-height:115%;\r\nmso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">University of\r\nAmsterdam<o:p></o:p></span></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-align:justify;text-indent:-.25in;\r\nmso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-size:12.0pt;\r\nline-height:115%;mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">2.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]--><span style=\"font-size:12.0pt;line-height:115%;\r\nmso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">Amsterdam\r\nUniversity of Applied Sciences<o:p></o:p></span></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-align:justify;text-indent:-.25in;\r\nmso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-size:12.0pt;\r\nline-height:115%;mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">3.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]--><span style=\"font-size:12.0pt;line-height:115%;\r\nmso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">The HAGUE\r\nUniversity of Applied Sciences<o:p></o:p></span></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-align:justify;text-indent:-.25in;\r\nmso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-size:12.0pt;\r\nline-height:115%;mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">4.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]--><span style=\"font-size:12.0pt;line-height:115%;\r\nmso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">Wittenborg\r\nUniversity of Applied Sciences<o:p></o:p></span></p><p class=\"MsoNormal\" align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</span></p><p class=\"MsoListParagraphCxSpLast\" style=\"text-align:justify;text-indent:-.25in;\r\nmso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-size:12.0pt;\r\nline-height:115%;mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">5.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]--><span style=\"font-size:12.0pt;line-height:115%;\r\nmso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">University of\r\nTwente<o:p></o:p></span></p><p class=\"MsoNormal\" align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p><h2 style=\"text-align: center; \"><a href=\"http://futuretrackbd.com/appointment\" target=\"_blank\">For More Info and Appointment click here</a></h2><p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p>', 'en', 'publish', '2020-10-10 09:39:47', '2020-11-04 07:32:54');
INSERT INTO `pages` (`id`, `title`, `slug`, `meta_tags`, `meta_description`, `content`, `lang`, `status`, `created_at`, `updated_at`) VALUES
(8, 'SWEDEN', 'sweden', 'sweden', NULL, '<!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n  <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n  <w:View>Normal</w:View>\r\n  <w:Zoom>0</w:Zoom>\r\n  <w:TrackMoves></w:TrackMoves>\r\n  <w:TrackFormatting></w:TrackFormatting>\r\n  <w:PunctuationKerning></w:PunctuationKerning>\r\n  <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n  <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\r\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n  <w:Compatibility>\r\n   <w:BreakWrappedTables></w:BreakWrappedTables>\r\n   <w:SnapToGridInCell></w:SnapToGridInCell>\r\n   <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n   <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n   <w:DontGrowAutofit></w:DontGrowAutofit>\r\n   <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n   <w:DontVertAlignCellWithSp></w:DontVertAlignCellWithSp>\r\n   <w:DontBreakConstrainedForcedTables></w:DontBreakConstrainedForcedTables>\r\n   <w:DontVertAlignInTxbx></w:DontVertAlignInTxbx>\r\n   <w:Word11KerningPairs></w:Word11KerningPairs>\r\n   <w:CachedColBalance></w:CachedColBalance>\r\n  </w:Compatibility>\r\n  <m:mathPr>\r\n   <m:mathFont m:val=\"Cambria Math\"></m:mathFont>\r\n   <m:brkBin m:val=\"before\"></m:brkBin>\r\n   <m:brkBinSub m:val=\"--\"></m:brkBinSub>\r\n   <m:smallFrac m:val=\"off\"></m:smallFrac>\r\n   <m:dispDef></m:dispDef>\r\n   <m:lMargin m:val=\"0\"></m:lMargin>\r\n   <m:rMargin m:val=\"0\"></m:rMargin>\r\n   <m:defJc m:val=\"centerGroup\"></m:defJc>\r\n   <m:wrapIndent m:val=\"1440\"></m:wrapIndent>\r\n   <m:intLim m:val=\"subSup\"></m:intLim>\r\n   <m:naryLim m:val=\"undOvr\"></m:naryLim>\r\n  </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin-top:0in;\r\n	mso-para-margin-right:0in;\r\n	mso-para-margin-bottom:10.0pt;\r\n	mso-para-margin-left:0in;\r\n	line-height:115%;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n<![endif]-->\r\n\r\n<p class=\"MsoNormal\" style=\"text-align: justify; \"><b>WHY STUDY IN SWEDEN?</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><o:p>&nbsp;</o:p>Sweden, situated in the northern European region, is well\r\nknown for its quality of education and research. It is an innovative country\r\nwith excellent living standards. The education system in Sweden encourages a\r\nnew way of thinking. It is a fun, exciting, and dynamic country to study in and\r\nhelps the students to engage in critical thinking. The Swedish Universities\r\nfocus on teamwork and cooperation and have an open learning environment.</p><p class=\"MsoNormal\"><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \">Almost 40 universities are located in Sweden, many of which\r\nmake it into top ranks globally. Sweden has been one of the European pioneers\r\nfor switching to English-language tuition and offers over 900 degrees to choose\r\nfrom.</p><p class=\"MsoNormal\" style=\"text-align: justify; \"><br></p><p class=\"MsoNormal\"><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \">Sweden has some of the best universities and fosters\r\ncreativity in the world. It has the largest number of multinationals per capita\r\nof any country in the world. A number of programs taught in Swedish universities\r\ninclude internships which not only give students a chance to receive hands-on\r\nexperience but also helps to build a strong international network. There is no\r\nlegal limit of working hours for students during their course which is unique\r\nto Sweden. It offers a culture that promotes diversity and equality while\r\nproviding a conducive environment for international students.</p><p class=\"MsoNormal\" style=\"text-align: justify; \"><br></p><p class=\"MsoNormal\"><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \">Sweden ranks among the world\'s most innovative nations and\r\nis well-adapted to the needs of international students. It places high importance\r\non sustainable development, the glimpses of which can be seen in its education\r\nsystem as well.</p><p class=\"MsoNormal\" style=\"text-align: justify; \"><br></p><p class=\"MsoNormal\"><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Sweden is home to a number of international brands such as\r\nVolvo, IKEA or H&amp;M, Skype, Spotify etc. The high proficiency of English\r\namong Swedes makes it fairly easy for qualified international graduates to get\r\ninto the Swedish job market, even when their knowledge of Swedish is limited.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><o:p>&nbsp;</o:p></p><p align=\"justify\"><u style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><span style=\"font-weight: bolder;\">Institutes We&nbsp;</span></span></u><span style=\"text-align: left; font-size: 16px;\"><span style=\"font-weight: bolder;\"><u>Represent</u></span></span><br></p><p align=\"justify\"><br></p><p class=\"MsoNormal\" align=\"center\" style=\"text-align: justify;\"><b><u><o:p></o:p></u></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Blekinge Institute of Technology<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Chalmers University of Technology<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Dalarna University<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Halmstad University<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">KTH Royal Institute of Technology<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Karlstad University<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Lund University<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Malmö University<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Mid Sweden University<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Mälardalen University<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Stockholm University<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Umeå University<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">University of Gothenburg<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Uppsala University<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align:justify\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: justify; \">Örebro University</p><p class=\"MsoNormal\" style=\"text-align: justify; \"><br></p><p style=\"text-align: justify;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: Arial;\"><br></span></p><p align=\"center\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: Arial;\"><br></span></p><h2 style=\"color: rgb(0, 0, 0); text-align: center;\"><a href=\"http://futuretrackbd.com/appointment\" target=\"_blank\">For more info make a appointment with Us</a></h2><p style=\"margin-bottom: 0.0001pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size:12.0pt;line-height:115%;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\n     mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\"><o:p></o:p></span></p>', 'en', 'publish', '2020-10-10 09:40:58', '2020-11-04 07:29:04'),
(9, 'IELTS', 'IELTS', 'IELTS Training', NULL, NULL, 'en', 'publish', '2020-10-10 09:48:00', '2024-01-27 04:54:49');
INSERT INTO `pages` (`id`, `title`, `slug`, `meta_tags`, `meta_description`, `content`, `lang`, `status`, `created_at`, `updated_at`) VALUES
(10, 'Our Partners', 'partners', 'partners,our allias', NULL, '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n  <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n  <w:View>Normal</w:View>\r\n  <w:Zoom>0</w:Zoom>\r\n  <w:TrackMoves></w:TrackMoves>\r\n  <w:TrackFormatting></w:TrackFormatting>\r\n  <w:PunctuationKerning></w:PunctuationKerning>\r\n  <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n  <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\r\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n  <w:Compatibility>\r\n   <w:BreakWrappedTables></w:BreakWrappedTables>\r\n   <w:SnapToGridInCell></w:SnapToGridInCell>\r\n   <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n   <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n   <w:DontGrowAutofit></w:DontGrowAutofit>\r\n   <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n   <w:DontVertAlignCellWithSp></w:DontVertAlignCellWithSp>\r\n   <w:DontBreakConstrainedForcedTables></w:DontBreakConstrainedForcedTables>\r\n   <w:DontVertAlignInTxbx></w:DontVertAlignInTxbx>\r\n   <w:Word11KerningPairs></w:Word11KerningPairs>\r\n   <w:CachedColBalance></w:CachedColBalance>\r\n  </w:Compatibility>\r\n  <m:mathPr>\r\n   <m:mathFont m:val=\"Cambria Math\"></m:mathFont>\r\n   <m:brkBin m:val=\"before\"></m:brkBin>\r\n   <m:brkBinSub m:val=\"--\"></m:brkBinSub>\r\n   <m:smallFrac m:val=\"off\"></m:smallFrac>\r\n   <m:dispDef></m:dispDef>\r\n   <m:lMargin m:val=\"0\"></m:lMargin>\r\n   <m:rMargin m:val=\"0\"></m:rMargin>\r\n   <m:defJc m:val=\"centerGroup\"></m:defJc>\r\n   <m:wrapIndent m:val=\"1440\"></m:wrapIndent>\r\n   <m:intLim m:val=\"subSup\"></m:intLim>\r\n   <m:naryLim m:val=\"undOvr\"></m:naryLim>\r\n  </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin-top:0in;\r\n	mso-para-margin-right:0in;\r\n	mso-para-margin-bottom:10.0pt;\r\n	mso-para-margin-left:0in;\r\n	line-height:115%;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n<![endif]-->\r\n\r\n</p><h2 style=\"text-align:center\"><b><u>INSTITUTES WE REPRESENT</u></b></h2><p class=\"MsoNormal\" style=\"text-align:center\" align=\"center\"><br></p><p class=\"MsoListParagraphCxSpFirst\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->1.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->De Montfort University International College\r\n(DMUIC)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->2.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->Bangor University International College (BUIC)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->3.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->International College Dundee (ICD)<o:p></o:p></p><p class=\"MsoListParagraphCxSpLast\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->4.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Greenwich International College\r\n(UGIC)<o:p></o:p></p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p>&nbsp;</p><p class=\"MsoListParagraphCxSpFirst\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->5.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->St Mary’s University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->6.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->Worcester University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->7.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Creative Arts<o:p></o:p></p><p class=\"MsoListParagraphCxSpLast\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->8.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->Bedfordshire University</p><p class=\"MsoListParagraphCxSpLast\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><br></p><p class=\"MsoListParagraphCxSpLast\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><o:p>&nbsp;</o:p><span style=\"text-indent: -0.25in;\">9.</span><span style=\"text-indent: -0.25in; font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><span style=\"text-indent: -0.25in;\">Middlesex University</span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->10.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Northumbria<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->11.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Ulster<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->12.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Roehampton<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->13.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->London Metropolitan University<o:p></o:p></p><p class=\"MsoListParagraphCxSpLast\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->14.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Solent University<o:p></o:p></p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoListParagraphCxSpFirst\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->15.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Anglia Ruskin University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->16.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Sunderland<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->17.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Wales (Trinity St David London)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->18.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Greenwich<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->19.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Middlesex<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->20.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Bedfordshire<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->21.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->London Southbank University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->22.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Canterbury Crist Church University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->23.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of East London<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->24.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Brunel University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->25.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Hertfordshire<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->26.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Chester<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->27.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University College Birmingham<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->28.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Birmingham City University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->29.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Aston University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->30.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Wolverhampton<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->31.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Derby<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->32.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->De Montfort University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->33.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Bolton<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->34.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Central Lancashire<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->35.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Plymouth<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->36.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Falmouth University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->37.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of the West of Scotland<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->38.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Amity University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->39.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Liverpool<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->40.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Portsmouth<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->41.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Westminster<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->42.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->St Mary’s University Tw Ickenham<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->43.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->City University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->44.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Oxford Brooks University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->45.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Arden University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->46.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Gloucestershire<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->47.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->London Metropolitan University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->48.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Bangor<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->49.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Birkbeck University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->50.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Kingston University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->51.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Northampton<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->52.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Leicester<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->53.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Swansea<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->54.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Dundee<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->55.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->David Game University<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->56.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->UK College (UKCBC)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->57.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Morley College<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->58.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Global Banking School<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->59.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Newcastle College<o:p></o:p></p><p class=\"MsoListParagraphCxSpLast\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->60.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->London School Commerce<o:p></o:p></p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p>&nbsp;</p><p class=\"MsoListParagraphCxSpFirst\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->61.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Amsterdam</p><p class=\"MsoListParagraphCxSpLast\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->62.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Amsterdam University of Applied Science<o:p></o:p></p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoListParagraphCxSpFirst\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->63.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Trent University (Undergraduate and Masters)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->64.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Manitoba (Undergraduate)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->65.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Mount Allison University (Undergraduate and\r\nMaster’s)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->66.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Mount Saint Vincent University (Undergraduate\r\nand Masters)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->67.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Laurentian University (Undergraduate and\r\nMasters)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->68.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->The University of Winnipeg (Undergraduate)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->69.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Saskatchewan (Undergraduate and\r\nMasters)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->70.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of New Brunswick (Undergraduate and\r\nMBA)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->71.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Wilfrid Laurier University (Undergraduate and\r\nMBA)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->72.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Kings University College at Western\r\n(Undergraduate and Master’s)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->73.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of waterloo (Undergraduate and ESL\r\nplus-MBET<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->74.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Memorial University of Newfoundland\r\n(Undergraduate)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->75.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Vancouver Island University (Undergraduate)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->76.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Cape Breton University (Undergraduate)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->77.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Acadia University (Undergraduate)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->78.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Concordia University of Edmonton (Undergraduate)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->79.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->McEwan University (Undergardauate0<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->80.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->St. Francis Xavier University (Undergraduate)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->81.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Manitoba Institute of Trade and Technology\r\n(Diploma and Post Graduate Diploma)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->82.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Fleming College<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->83.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Seneca College<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->84.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Loyalist College<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->85.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Durham College (Diploma and Post Graduate\r\nDiploma)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->86.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Ontario Tec. University (Undergraduate)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->87.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->University of Leithbridge (Undergraduate)<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->88.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Thompson River University (Undergraduate\r\nProgram)<o:p></o:p></p><p class=\"MsoListParagraphCxSpLast\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->89.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->The University of Winnipeg Collegiate\r\n(University Foundation and Grade-9-12)<o:p></o:p></p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p>&nbsp;</p><p class=\"MsoListParagraphCxSpFirst\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->90.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->TDSB-Toronto District School Board –\r\n(Play-Grade-12) Total 50 School Accept International Application<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->91.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->\"York Region District School Board-Play\r\ngroup -Grade-12) Total 20 School Received International Application)\"<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->92.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->\"Kawarthapine District School Board. (Play\r\nGroup to Grade-12) Total-10 School accept international Application\"<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->93.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->\"Peel District School Board- (Play Group to\r\nGrade-12) Total 10 School accept international Application\"<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align:center\" align=\"center\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->94.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;\r\n</span><!--[endif]-->Vancouver School board – (Playgroup to Grade-12)\r\nTotal school 25 we can place international Student.</p>', 'en', 'publish', '2020-10-10 10:33:28', '2022-02-13 02:25:53');
INSERT INTO `pages` (`id`, `title`, `slug`, `meta_tags`, `meta_description`, `content`, `lang`, `status`, `created_at`, `updated_at`) VALUES
(11, 'GERMANY', 'germany', 'germany', 'germany', '<div align=\"justify\"><p><span style=\"font-size: 14pt; line-height: 115%; font-family: &quot;Arial&quot;;\"><span style=\"font-weight: bolder; font-family: Lato, sans-serif; font-size: 15px; text-align: left;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: &quot;Times New Roman&quot;, serif;\">WHY STUDY IN GERMANY?</span></span><br></span></p><p><span style=\"font-size: 14pt; line-height: 115%; font-family: &quot;Arial&quot;;\"><br></span></p><p><span style=\"font-size: 14pt; line-height: 115%; font-family: &quot;Arial&quot;;\">Germany is considered to\r\nbe one of the best international study destinations among the students. \r\nThis country offers a wide variety of course options such as university \r\nfoundations,\r\nundergraduate diplomas, bachelors, postgraduate diplomas/certificates,\r\nmaster’s degrees, and PhDs as well. Research is a key component of \r\nCanadian universities and it plays a vital role in the advancement of\r\ntechnology.</span></p><p><u style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><span style=\"font-weight: bolder;\"><br></span></span></u></p><p align=\"justify\"><u style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><span style=\"font-weight: bolder;\">Institutes We&nbsp;</span></span></u><span style=\"text-align: left; font-size: 16px;\"><span style=\"font-weight: bolder;\"><u>Represent</u></span></span><br></p><p class=\"MsoListParagraphCxSpFirst\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->1.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->Arden University</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->2.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->GISMA Business School</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->3.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->International University of Bad Honnef (IUBH<o:p></o:p></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->4.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->Berlin School of Business and Innovation<o:p></o:p></p><p align=\"justify\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]-->5.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><!--[endif]-->Munich Business School, University of Applied\r\nSciences</p><p align=\"center\"><span style=\"font-size: 14pt; line-height: 115%; font-family: &quot;Arial&quot;;\"><br></span></p><h2 style=\"text-align: center; \"><a href=\"http://futuretrackbd.com/appointment\" target=\"_blank\">For more info make a appointment with Us</a></h2></div>', 'en', 'publish', '2020-10-10 11:09:33', '2020-11-04 07:34:45'),
(12, 'MALAYSIA', 'malaysia', 'malaysia', 'malaysia', '<p align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-weight: bolder; font-family: Lato, sans-serif; font-size: 15px; text-align: left;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: &quot;Times New Roman&quot;, serif;\">WHY STUDY IN MALAYSIA?</span></span><br></span></p><p align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p><p align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">Malaysia is considered to\r\nbe one of the best international study destinations among the students. \r\nThis country offers a wide variety of course options such as university \r\nfoundations, undergraduate diplomas, bachelors, postgraduate diplomas / certificates,\r\nmaster’s degrees, and PhDs as well. Research is a key component of \r\nCanadian universities and it plays a vital role in the advancement of\r\ntechnology.</span></p><p align=\"justify\"><span style=\"font-size:14.0pt;\r\nline-height:115%;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><br></span></p><p align=\"justify\"><u style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><span style=\"font-weight: bolder;\">Institutes We&nbsp;</span></span></u><span style=\"text-align: left; font-size: 16px;\"><b><u>Represent</u></b></span><br></p><p align=\"justify\"><br></p><p align=\"justify\"><span style=\"text-indent: -0.25in; text-align: left; font-size: 12pt; line-height: 115%;\">MAHSA University<br></span></p><p align=\"justify\"><span style=\"text-indent: -0.25in; text-align: left; font-size: 12pt; line-height: 115%;\">Asia Pacific University</span></p><p align=\"justify\"><span style=\"font-size: 12pt; text-align: left; text-indent: -0.25in;\">MAHSA International School</span><br></p><p align=\"justify\"><span style=\"text-indent: -0.25in; text-align: left; font-size: 12pt; line-height: 115%;\"><br></span></p><p align=\"center\"><br></p><h2 style=\"color: rgb(0, 0, 0); text-align: center;\"><a href=\"http://futuretrackbd.com/appointment\" target=\"_blank\">For More Info and Appointment click here</a></h2>', 'en', 'publish', '2020-10-10 11:11:04', '2020-11-04 07:32:12'),
(13, 'Appointment', 'appointment', 'appointment', 'appointment', NULL, 'en', 'publish', '2020-10-11 07:44:50', '2020-10-11 07:44:50'),
(14, 'Message From MD', 'md-message', 'md message', NULL, '<p align=\"justify\"><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n  <o:AllowPNG/>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n  <w:View>Normal</w:View>\r\n  <w:Zoom>0</w:Zoom>\r\n  <w:TrackMoves/>\r\n  <w:TrackFormatting/>\r\n  <w:PunctuationKerning/>\r\n  <w:ValidateAgainstSchemas/>\r\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n  <w:DoNotPromoteQF/>\r\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\r\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n  <w:Compatibility>\r\n   <w:BreakWrappedTables/>\r\n   <w:SnapToGridInCell/>\r\n   <w:WrapTextWithPunct/>\r\n   <w:UseAsianBreakRules/>\r\n   <w:DontGrowAutofit/>\r\n   <w:SplitPgBreakAndParaMark/>\r\n   <w:DontVertAlignCellWithSp/>\r\n   <w:DontBreakConstrainedForcedTables/>\r\n   <w:DontVertAlignInTxbx/>\r\n   <w:Word11KerningPairs/>\r\n   <w:CachedColBalance/>\r\n  </w:Compatibility>\r\n  <m:mathPr>\r\n   <m:mathFont m:val=\"Cambria Math\"/>\r\n   <m:brkBin m:val=\"before\"/>\r\n   <m:brkBinSub m:val=\"--\"/>\r\n   <m:smallFrac m:val=\"off\"/>\r\n   <m:dispDef/>\r\n   <m:lMargin m:val=\"0\"/>\r\n   <m:rMargin m:val=\"0\"/>\r\n   <m:defJc m:val=\"centerGroup\"/>\r\n   <m:wrapIndent m:val=\"1440\"/>\r\n   <m:intLim m:val=\"subSup\"/>\r\n   <m:naryLim m:val=\"undOvr\"/>\r\n  </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"/>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin-top:0in;\r\n	mso-para-margin-right:0in;\r\n	mso-para-margin-bottom:10.0pt;\r\n	mso-para-margin-left:0in;\r\n	line-height:115%;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n<![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" align=\"justify\"><span style=\"font-family:&quot;Segoe UI Light&quot;,&quot;sans-serif&quot;\">In\r\nline with our brand message “Shape your career abroad,” we, Future Track,\r\nthrive on providing the best possible service to our clients in their study\r\nabroad journey. Providing you a transparent and meteoric service is our only\r\ngoal. Whether you’re a potential student with a wit to take up the challenge\r\nahead; an existing client checking up on our latest news and offers; or future applicants looking for your opportunities, I can assure that at Future Track,\r\nyou’ll find what you’re looking. We believe in what we offer and we believe in\r\nour purpose.</span></p><p class=\"MsoNormal\" align=\"justify\"><span style=\"font-family:&quot;Segoe UI Light&quot;,&quot;sans-serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" align=\"justify\"><span style=\"font-family:&quot;Segoe UI Light&quot;,&quot;sans-serif&quot;\">Applying\r\nto study abroad is a climacteric decision for you and so we do not limit our counseling just to the right country and institute choice but extend it to\r\nhelp you make the right career decision. Our experienced counselors are here\r\nto assist you in shortlisting the options relevant to your profile by taking\r\nyour academic attainments and career objectives under consideration. They then\r\nwill suggest the programs in the countries and institutions matching your\r\npreferences. As soon as you get your admission to your preferred institution,\r\nwe will proceed with your visa application as well. We have a dedicated team\r\nworking only for visa documentation.<br></span></p><p class=\"MsoNormal\" align=\"justify\"><span style=\"font-family:&quot;Segoe UI Light&quot;,&quot;sans-serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" align=\"justify\"><span style=\"font-family:&quot;Segoe UI Light&quot;,&quot;sans-serif&quot;\">If\r\nyou are in search of new opportunities, we thank you for choosing Future Track\r\nfor the next stage in your career. Our story is about commitment, expertise, and\r\nexcellence. It speaks to the success and it starts with trust. Earning the trust of\r\nclients is a core principle of our company, and we work hard at it every day. We\r\ninvite you to take a moment to explore Future Track and discover our history,\r\nthe core values that we’re built on, what others are saying about us, and what\r\nwe do. <br></span></p><p class=\"MsoNormal\" align=\"justify\"><span style=\"font-family:&quot;Segoe UI Light&quot;,&quot;sans-serif&quot;\"><br></span></p><p class=\"MsoNormal\" align=\"justify\"><span style=\"font-family:&quot;Segoe UI Light&quot;,&quot;sans-serif&quot;\"><br></span></p>\r\n\r\n<p class=\"MsoNormal\" align=\"justify\"><span style=\"font-family:&quot;Segoe UI Light&quot;,&quot;sans-serif&quot;\">Sincerely,</span></p>\r\n\r\n<p class=\"MsoNormal\" align=\"justify\"><span style=\"font-family:&quot;Segoe UI Light&quot;,&quot;sans-serif&quot;\">Rifaat\r\nWahid</span></p>\r\n\r\n<div align=\"justify\"><span style=\"font-size:11.0pt;line-height:115%;font-family:&quot;Segoe UI Light&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:Calibri;mso-fareast-theme-font:minor-latin;mso-ansi-language:\r\nEN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA\">Managing Director</span></div>', 'en', 'publish', '2020-10-20 11:31:32', '2020-10-20 11:31:32');
INSERT INTO `pages` (`id`, `title`, `slug`, `meta_tags`, `meta_description`, `content`, `lang`, `status`, `created_at`, `updated_at`) VALUES
(15, 'Study Online', 'study-online', 'study online, online courses,registration process ,subjects', 'study online, online courses', '<p class=\"MsoNormal\"><b style=\"text-align: justify;\">Why Online Qualifications?</b></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">Whether\r\nyou are to enhance your existing knowledge &amp; skills or looking for job or\r\ncurrently working,</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>Future Track BD connects</b> you with a\r\nnumber of reputed international awarding bodies who offer a variety of\r\nqualifications that will allow you to go ahead of the competition in extremely\r\nchallenging job market.</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">It\r\ndefinitely will develop your knowledge and skills that employer looking for\r\nfrom a candidate then, it will help to grow your key competencies to tackle\r\nwork projects and then to get promotions within workplace.</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>Standards &amp; Recognitions:<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">All\r\nthe academic and technical qualifications are approved and regulated by office\r\nof the qualifications and examinations regulation body in UK and USA.</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>Study worldwide at your convenience:<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">You\r\ncan enroll and complete these qualifications online. That means, you can start\r\nwhen you like and finish when you like. </p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">Learners\r\ncan cut the amount of time and money to achieve a degree by more than half.</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>Pathway to International\r\nBachelor/Master/MBA Degree:<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">Then,\r\nthese qualifications allow you to progress onto relevant Bachelor Degree/Masters\r\nDegree/M.B.A. top up programs. This is a pathway to British Degree/Masters\r\nProgram.</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">This\r\nis because awarding bodies have special arrangements with a range of\r\nuniversities that enable learners to skip an entire year’s study of the degree\r\nfor every level they achieve with different awarding bodies.</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>Affordable Cost:<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">All\r\nthese awarding bodies are non-profit organizations and so it ensures to charge\r\nvery nominal fees without compromising quality and standard. Please see the\r\nregistration and exam fees section for details.</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p><b style=\"text-align: left;\">&nbsp;</b><b style=\"text-align: left;\">&nbsp;</b></p><p class=\"MsoNormal\"><b>Registered Learner:<o:p></o:p></b></p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">To\r\nbe a registered learner, you have to pay a one-off registration fees through\r\nlocal authorized partner according to the level of the size of the\r\nqualifications. Local approved center will also charge tuition fees for\r\nproviding lectures and other academic supports. </p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>Who are Awarding\r\nBodies?<o:p></o:p></b></p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">Awarding\r\nbodies are not university but global provider in awarding UK &amp; USA\r\nqualifications, work with the international university partners and local approved\r\ncenters to offer programs online from foundation level (Level 3), Degree level\r\n(Level 4 – Level 6) up to Masters level (Level 7). </p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>Career Development to Increase Credibility:<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">Level\r\n3 &amp; level 4 learners can gain practical operational training, level 5\r\nlearners can gain supervisory management techniques, level 6 learners can gain\r\nmanagerial knowledge and level 7 learners can gain senior management skills.</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>Qualifications Assessment and Certification\r\nDelivery:<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">Qualifications\r\nare coursework based and local study center will deliver the qualifications,\r\nassess course work, conduct internal verification and then awarding bodies will\r\nconduct external verifications &amp; issue certificate.</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>Study Center:<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">Awarding\r\nbodies support for the development of the study center and provides a wide\r\nrange of support services including training materials, lecture sheets, train\r\nthe trainers etc.</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>Awarding Bodies &gt;\r\nCompTIA &gt;othm&gt; CIPS &gt;athe&gt;ibat College Dublin</b></p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>The Computing Technology Industry\r\nAssociation (CompTIA)</b> is a leading advocate for the 50 million-plus\r\nprofessionals who design, implement, manage &amp; safeguard the technology that\r\npowers the world’s economy. Through education, training, certification,\r\nadvocacy and market research CompTIA promotes the development of a highly\r\nskilled workforce and the opportunities &amp; benefits made possible by\r\ntechnology are available to all. For more details, please visit <a href=\"http://www.comptia.org/\">www.comptia.org</a></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>OTHM</b> a recognized awarding body by\r\nQualifications of Wales launched in the year 2003, approved and regulated by\r\nOfqual, a full member of Federation of Awarding Bodies (FAB). For more details,\r\nplease visit <a href=\"http://www.othm.org.uk/\">www.othm.org.uk</a></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>CIPS</b> a professional awarding body for\r\nCIPS qualifications, training courses and professional development programs to\r\nsupport your career progression. CIPS qualifications are globally recognized as\r\nthe drivers of leading-edge thinking and professionalism leading to award of\r\nMCIPS and beyond. For more details, please visit <a href=\"http://www.cips.org/\">www.cips.org</a></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>ATHE</b> is a global awarding organization\r\nregulated by ufqual and other UK and international regulators. ATHE offers a\r\nwide portfolio of vocationally oriented and internationally recognized\r\nqualifications. ATHE qualifications are approved as progression pathwayto\r\nrelevant Bachelor’s and Master’s top up degrees by a growing number of UK and\r\ninternational universities, providing significant tertiary education\r\nopportunities for our learners. For more details, please visit <a href=\"http://www.athe.co.uk/\">www.athe.co.uk</a></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><b>ibatCollege Dublin </b>is a focused\r\nprovider of highly desirable awards in the fields of Business, IT, Sports, Tourism\r\n&amp; English Language. Renowned for the College of choice to quip and connect\r\ndomestic and international students in the programmes they offer.</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p><b style=\"text-align: left;\">&nbsp;</b></p><p class=\"MsoNormal\"><b>Qualifications:<o:p></o:p></b></p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>CompTIA\r\nCertifications&gt;<o:p></o:p></b></p><p class=\"MsoNormal\"><b>Core</b>: </p><p class=\"MsoNormal\">A+ | Network + | Security +</p><p class=\"MsoNormal\"><b>Infrastructure:<o:p></o:p></b></p><p class=\"MsoNormal\">Cloud+ | Linux+ | Server+</p><p class=\"MsoNormal\"><b>Cybersecurity:<o:p></o:p></b></p><p class=\"MsoNormal\">CySA+ | PenTest+ | CASP+</p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>OTHM &gt;<o:p></o:p></b></p><p class=\"MsoNormal\"><b>Foundation Programmes:<o:p></o:p></b></p><p class=\"MsoNormal\">Level 3 Diploma in Business Studies | Level 3 Diploma in\r\nAccountancy | Level 3 Diploma for Higher Education Studies</p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>Undergraduate\r\nProgrammes:<o:p></o:p></b></p><p class=\"MsoNormal\"><b>&nbsp;</b></p><p class=\"MsoNormal\"><b>Year 1 of Bachelor’s\r\nDegree<o:p></o:p></b></p><p class=\"MsoNormal\">Level 4 Diploma in Business Management</p><p class=\"MsoNormal\">Level 4 Diploma in Accounting &amp; Business | Diploma in\r\nTourism &amp; Hospitality</p><p class=\"MsoNormal\"><b>&nbsp;</b></p><p class=\"MsoNormal\"><b>Year 2 of Bachelor’s\r\nDegree<o:p></o:p></b></p><p class=\"MsoNormal\">Level 5 Diploma in Business Management</p><p class=\"MsoNormal\">Level 5 Diploma in Accounting &amp; Business | Diploma in\r\nTourism &amp; Hospitality</p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>Year 3 of Bachelor’s\r\nDegree<o:p></o:p></b></p><p class=\"MsoNormal\">Level 6 Diploma in Business Management</p><p class=\"MsoNormal\">Level 6 Diploma in Accounting &amp; Business | Diploma in\r\nTourism &amp; Hospitality</p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>Postgraduate Programmes<o:p></o:p></b></p><p class=\"MsoNormal\">Level 7 Diploma in Accounting &amp; Finance</p><p class=\"MsoNormal\">Level 7 Diploma in Strategic management &amp; Leadership |\r\nDiploma in Tourism &amp; Hospitality Management</p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>University Programmes<o:p></o:p></b></p><p class=\"MsoNormal\">Successful completion of diplomas will allow learners to\r\nprogress to Bachelors &amp; Masters degree top-ups.</p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>ATHE&gt;<o:p></o:p></b></p><p class=\"MsoNormal\">Level 3 – Level 7 Business &amp; Strategic Management</p><p class=\"MsoNormal\">Level 4 – Level 5 Travel &amp; Tourism Management</p><p class=\"MsoNormal\">Level 3 – Level 5 Law</p><p class=\"MsoNormal\">Level 4 – Level 7 Accounting</p><p class=\"MsoNormal\">Level – Level 5 Computing</p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>University Programmes<o:p></o:p></b></p><p class=\"MsoNormal\">Successful completion of diplomas will allow learners to progress\r\nto Bachelors &amp; Masters degree top-ups.</p><p class=\"MsoNormal\"><br></p><p class=\"MsoNormal\"><b>CIPS&gt;<o:p></o:p></b></p><p class=\"MsoNormal\">Supply Chain Management &amp; Supply Relationship Management</p><p class=\"MsoNormal\">Procurement Management</p><p class=\"MsoNormal\">Risk/Mitigation</p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>ibat College\r\nDublin&gt;<o:p></o:p></b></p><p class=\"MsoNormal\">Diploma in Predictive Data Analytics</p><p class=\"MsoNormal\">Diploma in Cyber &amp; digital Security</p><p class=\"MsoNormal\">Diploma in Event Management</p><p class=\"MsoNormal\">Diploma in Strategic Business Management</p><p class=\"MsoNormal\">Diploma in Human Resource Management</p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>Registration Process<o:p></o:p></b></p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">Awarding\r\nbodies do not accept learner directly. Learners must be registered through\r\nawarding bodies approved center. It is the center responsibility to register\r\nall learners. Learner registration must be done using the learner registration\r\nspreadsheet. </p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><b>Learner Registration\r\nSpreadsheet:<o:p></o:p></b></p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p>&nbsp;</p><p class=\"MsoNormal\"><b>Stipend&amp; Awards&gt;<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">Stipend\r\nand award programs are held throughout the year for Future Track student\r\nmembers.&nbsp; Available programs are:</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><br></p><p class=\"MsoListParagraphCxSpFirst\" style=\"text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-.25in;mso-list:l1 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->All students will be offered 10% discount on\r\ncourse fees for 2<sup>nd</sup> level of courses and onwards.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-align:justify;text-justify:\r\ninter-ideograph;text-indent:-.25in;mso-list:l1 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->A BDT 50,000.00 scholarship will be awarded for\r\n(5)top scoring students combining all subjects every year.</p><p class=\"MsoListParagraphCxSpLast\" style=\"text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-.25in;mso-list:l1 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->A BDT 50,000.00 will be awarded for each student\r\nwho will progress to university program.</p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p><b>Registration &amp;\r\nExam Fees&gt;</b></p><p class=\"MsoNormal\"><b>&nbsp;</b></p><p class=\"MsoNormal\"><b>othm qualifications:<o:p></o:p></b></p><p class=\"MsoListParagraph\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo2\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Price for each level of qualification: Registration\r\n+ Course Book + Tuition + Lab + Review + Certification: Tk. 2,00,000.00</p><p class=\"MsoNormal\"><b>&nbsp;</b></p><p class=\"MsoNormal\"><b>athe qualifications:<o:p></o:p></b></p><p class=\"MsoListParagraph\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo2\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Price for each level of qualification: Registration\r\n+ Course Book + Tuition + Lab + Review + Certification: Tk. 2,00,000.00</p><p class=\"MsoNormal\"><b>&nbsp;</b></p><p class=\"MsoNormal\"><b>CIPS qualifications:<o:p></o:p></b></p><p class=\"MsoListParagraph\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo2\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Price for each level of qualification: Registration\r\n+ Course Book + Tuition + Lab + Review + Certification: Tk. 15,000.00<b><o:p></o:p></b></p><p class=\"MsoNormal\"><b>&nbsp;</b></p><p class=\"MsoNormal\"><b>CompTIA\r\nqualifications:<o:p></o:p></b></p><p class=\"MsoListParagraphCxSpFirst\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo2\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Price for each level of qualification: Registration\r\n+ Course Book + Tuition + Lab: Tk. 15,000.00<b><o:p></o:p></b></p><p class=\"MsoListParagraphCxSpLast\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo2\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Exam + Review + Certification: At actual (GBP\r\n120.00 to GBP 150.00)<b><o:p></o:p></b></p><p class=\"MsoNormal\"><b>&nbsp;</b></p><p class=\"MsoNormal\"><b>ibat qualifications:<o:p></o:p></b></p><p class=\"MsoListParagraph\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo2\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Price for each level of qualification: Registration\r\n+ Course Book + Tuition + Lab + Review + Certification: (GBP 750.00 – GBP 950.00)<b><o:p></o:p></b></p><p class=\"MsoNormal\"><b>&nbsp;</b></p><p class=\"MsoNormal\"><b>&nbsp;</b><b>Fees payment in easy\r\ninstallments.</b></p><p class=\"MsoNormal\"><b>&nbsp;</b><b>&nbsp;</b><b>&nbsp;</b></p><p class=\"MsoNormal\"><b>Certification&gt;<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">Study\r\ncenter will assess your work internally, conduct internal verification, arrange\r\nexternal verification by awarding bodies and then, awarding bodies will arrange\r\nto issue certificate within 2 weeks from the date of completion of external\r\nverification.</p><p class=\"MsoNormal\"><o:p>&nbsp;</o:p><b>&nbsp;</b></p><p class=\"MsoNormal\"><b>Center\r\nInformation&gt;<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">Awarding\r\nbodies arrange wide range of support and resource to deliver tuition for\r\nlearners.</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">Awarding\r\nbodies also arrange a series of training events throughout the year to deliver\r\nqualifications smoothly. To increase knowledge of staff and to continue with\r\nprofessional development, awarding bodies arrange following training module for\r\nthe study center:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo2\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Teaching and learning approaches</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo2\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Assessment and standardization</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo2\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Quality assurance including internal\r\nverification</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo2\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Feedback on center devised assignments</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo2\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Learner recruitment and induction</p><p class=\"MsoNormal\" style=\"text-align:justify;text-justify:inter-ideograph\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"text-indent:-.25in;mso-list:l0 level1 lfo2\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Awarding bodies policies &amp; procedures</p>', 'en', 'publish', '2020-11-02 10:52:23', '2022-07-07 00:21:24');

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

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

CREATE TABLE `password_resets` (
  `email` varchar(191) NOT NULL,
  `token` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `password_resets` (`email`, `token`, `created_at`) VALUES
('dvrobin4@gmail.com', 'tBrVsCSxrJA0eJsOSkpFyNgeXleI1p', NULL),
('pulak335@gmail.com', 'jIwOLmeGF0vXsy5HyvtOzhUq9yn86t', NULL),
('munirapsara@gmail.com', '4kDEaXWKENJ2CIMn4c5Un24AuKc1F3', NULL),
('info@futuretrackbd.com', 'nEJkTdZIXwxLUUSTo3cIZ7LckghSYg', NULL);

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

--
-- Table structure for table `payment_logs`
--

CREATE TABLE `payment_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `email` varchar(191) DEFAULT NULL,
  `name` varchar(191) DEFAULT NULL,
  `package_name` varchar(191) DEFAULT NULL,
  `package_price` varchar(191) DEFAULT NULL,
  `package_gateway` varchar(191) DEFAULT NULL,
  `order_id` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `transaction_id` longtext DEFAULT NULL,
  `track` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `popup_builders`
--

CREATE TABLE `popup_builders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `type` varchar(191) DEFAULT NULL,
  `title` varchar(191) DEFAULT NULL,
  `only_image` varchar(191) DEFAULT NULL,
  `background_image` varchar(191) DEFAULT NULL,
  `offer_time_end` varchar(191) DEFAULT NULL,
  `button_text` varchar(191) DEFAULT NULL,
  `button_link` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `btn_status` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `popup_builders`
--

INSERT INTO `popup_builders` (`id`, `name`, `type`, `title`, `only_image`, `background_image`, `offer_time_end`, `button_text`, `button_link`, `description`, `lang`, `btn_status`, `created_at`, `updated_at`) VALUES
(1, 'notice popup', 'notice', 'Notice!!', NULL, NULL, '2020-09-26', 'Buy Now', '#', 'She propriety immediate was improving. He or entrance humoured likewise moderate. Much nor game son say feel. Fat make met can must form into gate. Me we offending prevailed discovery. ', 'en', 'on', '2020-07-22 13:17:42', '2020-07-22 13:17:42'),
(3, 'Overseas Education Fair 2020', 'only_image', NULL, '171', NULL, NULL, NULL, NULL, NULL, 'en', NULL, '2020-07-25 13:44:40', '2020-10-20 10:34:11'),
(4, 'promotional popup', 'promotion', 'Nexelit', '83', '81', NULL, 'Buy Now', '#', 'There worse by an of miles civil. Manner before lively wholly am mr indeed expect. Among every merry his yet has her. You mistress get dashwood children off.', 'en', 'on', '2020-07-25 15:23:00', '2020-07-25 15:23:00'),
(5, 'discount popup', 'discount', 'Discount', '83', '81', '2020-09-30', 'Buy Now', '#', 'Out believe has request not how comfort evident.', 'en', 'on', '2020-07-26 04:28:42', '2020-07-26 05:00:54'),
(9, 'Fair', 'notice', 'Overseas Education Fair 2020', '105', '157', NULL, 'Reserve your seat', 'http://localhost/futuretrack/events/Education%20Faire', 'Overseas Education Fair', 'en', 'on', '2020-10-05 03:18:33', '2020-10-20 10:33:22'),
(10, 'Video promotion', 'promotion', 'Overseas Education Fair 2020', '106', NULL, NULL, 'Show', 'https://youtu.be/sfu-E9ezErU', 'Overseas Education Fair 2020\r\n\r\nPlace: Bangladesh Shooting sport Federation, Gulshan\r\nDate: 24/10/2020\r\nTime: 10 AM - 6PM', 'en', 'on', '2020-10-22 07:20:27', '2020-10-22 07:20:27');

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

--
-- Table structure for table `price_plans`
--

CREATE TABLE `price_plans` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `price` varchar(191) NOT NULL,
  `highlight` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `url_status` varchar(191) DEFAULT NULL,
  `type` varchar(191) DEFAULT NULL,
  `features` longtext NOT NULL,
  `btn_text` varchar(191) NOT NULL,
  `status` varchar(191) DEFAULT NULL,
  `btn_url` varchar(191) DEFAULT NULL,
  `categories_id` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `price_plan_categories`
--

CREATE TABLE `price_plan_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `price_plan_categories`
--

INSERT INTO `price_plan_categories` (`id`, `name`, `lang`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Development', 'en', 'publish', '2020-07-22 00:30:13', '2020-07-22 00:30:13'),
(2, 'Design', 'en', 'publish', '2020-07-22 00:30:20', '2020-07-22 00:30:42'),
(3, 'tasarlamak', 'tur', 'publish', '2020-07-22 00:30:37', '2020-07-22 00:30:37'),
(4, 'gelişme', 'tur', 'publish', '2020-07-22 00:30:55', '2020-07-22 00:30:55'),
(5, 'تطوير', 'ar', 'publish', '2020-07-22 00:32:17', '2020-07-22 00:32:17'),
(6, 'التصميم', 'ar', 'publish', '2020-07-22 00:32:30', '2020-07-22 00:32:30'),
(7, 'Diseño', 'sp', 'publish', '2020-07-22 00:32:43', '2020-07-22 00:32:43'),
(8, 'Desarrollo', 'sp', 'publish', '2020-07-22 00:32:55', '2020-07-22 00:32:55');

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

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

CREATE TABLE `products` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` text DEFAULT NULL,
  `slug` text DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `regular_price` varchar(191) DEFAULT NULL,
  `sale_price` int(11) DEFAULT NULL,
  `sku` varchar(191) DEFAULT NULL,
  `stock_status` varchar(191) DEFAULT NULL,
  `category_id` varchar(191) DEFAULT NULL,
  `short_description` longtext DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `attributes_title` longtext DEFAULT NULL,
  `total_sold` varchar(191) DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `gallery` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `is_downloadable` varchar(191) DEFAULT NULL,
  `downloadable_file` varchar(191) DEFAULT NULL,
  `meta_tags` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `attributes_description` longtext DEFAULT NULL,
  `badge` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `products` (`id`, `title`, `slug`, `lang`, `regular_price`, `sale_price`, `sku`, `stock_status`, `category_id`, `short_description`, `description`, `attributes_title`, `total_sold`, `image`, `gallery`, `status`, `is_downloadable`, `downloadable_file`, `meta_tags`, `meta_description`, `attributes_description`, `badge`, `created_at`, `updated_at`) VALUES
(1, 'Give lady of they such they sure it.', 'give-lady-of-they-such-they-sure-it', 'en', '99', 49, '34543', 'in_stock', '1', 'Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff.', '<p>Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff. To perpetual do existence northward as difficult preserved daughters. Continued at up to zealously necessary breakfast. Surrounded sir motionless she end literature. Gay direction neglected but supported yet her.&nbsp;</p><p>Mr oh winding it enjoyed by between. The servants securing material goodness her. Saw principles themselves ten are possession. So endeavor to continue cheerful doubtful we to. Turned advice the set vanity why mutual. Reasonably if conviction on be unsatiable discretion apartments delightful. Are melancholy appearance stimulated occasional entreaties end. Shy ham had esteem happen active county. Winding morning am shyness evident to. Garrets because elderly new manners however one village she.&nbsp;</p>', 'a:3:{i:0;s:6:\"Weight\";i:1;s:5:\"Width\";i:2;s:6:\"Height\";}', NULL, '65', '68|67|66', 'publish', NULL, NULL, NULL, NULL, 'a:3:{i:0;s:5:\"1.2KG\";i:1;s:3:\"11\"\";i:2;s:3:\"12\"\";}', 'New', '2020-07-21 01:15:15', '2020-07-21 01:15:15'),
(2, 'Multipurpose Laravel CMS', 'multipurpose-laravel-cms', 'en', '199', 150, NULL, 'in_stock', '2', 'Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an.', '<p>Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff. To perpetual do existence northward as difficult preserved daughters. Continued at up to zealously necessary breakfast. Surrounded sir motionless she end literature. Gay direction neglected but supported yet her.&nbsp;</p><p>Mr oh winding it enjoyed by between. The servants securing material goodness her. Saw principles themselves ten are possession. So endeavor to continue cheerful doubtful we to. Turned advice the set vanity why mutual. Reasonably if conviction on be unsatiable discretion apartments delightful. Are melancholy appearance stimulated occasional entreaties end. Shy ham had esteem happen active county. Winding morning am shyness evident to. Garrets because elderly new manners however one village she.&nbsp;</p><p>By so delight of showing neither believe he present. Deal sigh up in shew away when. Pursuit express no or prepare replied. Wholly formed old latter future but way she. Day her likewise smallest expenses judgment building man carriage gay. Considered introduced themselves mr to discretion at. Means among saw hopes for. Death mirth in oh learn he equal on.&nbsp;</p><div><br></div>', 'a:4:{i:0;s:11:\"PHP Version\";i:1;s:15:\"Laravel Version\";i:2;s:13:\"Mysql Version\";i:3;s:23:\"Required PHP Extensions\";}', NULL, '75', NULL, 'publish', 'on', '71595317436.zip', NULL, NULL, 'a:4:{i:0;s:4:\"7.2x\";i:1;s:2:\"7x\";i:2;s:3:\"5.7\";i:3;s:203:\"BCMath PHP Extension,\r\nCtype PHP Extension,\r\nFileinfo PHP extension,\r\nJSON PHP Extension,\r\nMbstring PHP Extension,\r\nOpenSSL PHP Extension,\r\nPDO PHP Extension,\r\nTokenizer PHP Extension,\r\nXML PHP Extension\";}', '-30%', '2020-07-21 01:40:02', '2020-07-21 01:43:56'),
(6, 'React Business Consulting Script', 'react-business-script', 'en', '139', 79, NULL, 'in_stock', '2', 'Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an.', '<p>Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff. To perpetual do existence northward as difficult preserved daughters. Continued at up to zealously necessary breakfast. Surrounded sir motionless she end literature. Gay direction neglected but supported yet her.&nbsp;</p><p><br></p><p>Mr oh winding it enjoyed by between. The servants securing material goodness her. Saw principles themselves ten are possession. So endeavor to continue cheerful doubtful we to. Turned advice the set vanity why mutual. Reasonably if conviction on be unsatiable discretion apartments delightful. Are melancholy appearance stimulated occasional entreaties end. Shy ham had esteem happen active county. Winding morning am shyness evident to. Garrets because elderly new manners however one village she.&nbsp;</p><p><br></p><p>By so delight of showing neither believe he present. Deal sigh up in shew away when. Pursuit express no or prepare replied. Wholly formed old latter future but way she. Day her likewise smallest expenses judgment building man carriage gay. Considered introduced themselves mr to discretion at. Means among saw hopes for. Death mirth in oh learn he equal on.&nbsp;</p><div><br></div>', 'a:2:{i:0;s:13:\"React Version\";i:1;s:12:\"Node Version\";}', NULL, '76', NULL, 'publish', 'on', '71595318407.zip', NULL, NULL, 'a:2:{i:0;s:3:\"16x\";i:1;s:14:\"v12.13.0 (LTS)\";}', '-40%', '2020-07-21 02:00:07', '2020-07-21 02:06:50'),
(7, 'Again keeps at no meant stuff', 'again-keeps-at-no-meant-stuff', 'en', '199', 49, '3452343', 'in_stock', '1', 'Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff.', '<p>Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff. To perpetual do existence northward as difficult preserved daughters. Continued at up to zealously necessary breakfast. Surrounded sir motionless she end literature. Gay direction neglected but supported yet her.&nbsp;</p><p>Mr oh winding it enjoyed by between. The servants securing material goodness her. Saw principles themselves ten are possession. So endeavor to continue cheerful doubtful we to. Turned advice the set vanity why mutual. Reasonably if conviction on be unsatiable discretion apartments delightful. Are melancholy appearance stimulated occasional entreaties end. Shy ham had esteem happen active county. Winding morning am shyness evident to. Garrets because elderly new manners however one village she.&nbsp;</p>', 'a:3:{i:0;s:6:\"Weight\";i:1;s:5:\"Width\";i:2;s:6:\"Height\";}', NULL, '73', '68|67|66', 'publish', NULL, NULL, NULL, NULL, 'a:3:{i:0;s:5:\"1.2KG\";i:1;s:3:\"11\"\";i:2;s:3:\"12\"\";}', 'Sale', '2020-07-21 02:11:05', '2020-07-21 02:18:38'),
(8, 'Perceived determine departure explained', 'perceived-determine-departure-explained', 'en', '99', 49, '34543', 'in_stock', '11', 'Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff.', '<p>Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff. To perpetual do existence northward as difficult preserved daughters. Continued at up to zealously necessary breakfast. Surrounded sir motionless she end literature. Gay direction neglected but supported yet her.&nbsp;</p><p>Mr oh winding it enjoyed by between. The servants securing material goodness her. Saw principles themselves ten are possession. So endeavor to continue cheerful doubtful we to. Turned advice the set vanity why mutual. Reasonably if conviction on be unsatiable discretion apartments delightful. Are melancholy appearance stimulated occasional entreaties end. Shy ham had esteem happen active county. Winding morning am shyness evident to. Garrets because elderly new manners however one village she.&nbsp;</p>', 'a:3:{i:0;s:6:\"Weight\";i:1;s:5:\"Width\";i:2;s:6:\"Height\";}', NULL, '72', '68|67|66', 'publish', NULL, NULL, NULL, NULL, 'a:3:{i:0;s:5:\"1.2KG\";i:1;s:3:\"11\"\";i:2;s:3:\"12\"\";}', 'New', '2020-07-21 02:11:10', '2020-07-24 05:09:33'),
(9, 'Contrasted dissimilar get joy you', 'contrasted-dissimilar-get-joy-you', 'en', '99', 49, '34543', 'in_stock', '11', 'Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff.', '<p>Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff. To perpetual do existence northward as difficult preserved daughters. Continued at up to zealously necessary breakfast. Surrounded sir motionless she end literature. Gay direction neglected but supported yet her.&nbsp;</p><p>Mr oh winding it enjoyed by between. The servants securing material goodness her. Saw principles themselves ten are possession. So endeavor to continue cheerful doubtful we to. Turned advice the set vanity why mutual. Reasonably if conviction on be unsatiable discretion apartments delightful. Are melancholy appearance stimulated occasional entreaties end. Shy ham had esteem happen active county. Winding morning am shyness evident to. Garrets because elderly new manners however one village she.&nbsp;</p>', 'a:3:{i:0;s:6:\"Weight\";i:1;s:5:\"Width\";i:2;s:6:\"Height\";}', NULL, '71', '68|67|66', 'publish', NULL, NULL, NULL, NULL, 'a:3:{i:0;s:5:\"1.2KG\";i:1;s:3:\"11\"\";i:2;s:3:\"12\"\";}', 'New', '2020-07-21 02:11:13', '2020-07-24 05:09:28'),
(10, 'Me contained explained my', 'me-contained-explained-my-education', 'en', '99', 49, '34543', 'in_stock', '3', 'Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff.', '<p>Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff. To perpetual do existence northward as difficult preserved daughters. Continued at up to zealously necessary breakfast. Surrounded sir motionless she end literature. Gay direction neglected but supported yet her.&nbsp;</p><p>Mr oh winding it enjoyed by between. The servants securing material goodness her. Saw principles themselves ten are possession. So endeavor to continue cheerful doubtful we to. Turned advice the set vanity why mutual. Reasonably if conviction on be unsatiable discretion apartments delightful. Are melancholy appearance stimulated occasional entreaties end. Shy ham had esteem happen active county. Winding morning am shyness evident to. Garrets because elderly new manners however one village she.&nbsp;</p>', 'a:3:{i:0;s:6:\"Weight\";i:1;s:5:\"Width\";i:2;s:6:\"Height\";}', NULL, '70', '68|67|66', 'publish', NULL, NULL, NULL, NULL, 'a:3:{i:0;s:5:\"1.2KG\";i:1;s:3:\"11\"\";i:2;s:3:\"12\"\";}', 'New', '2020-07-21 02:11:16', '2020-07-24 05:07:33'),
(11, 'The servants securing material goodness', 'the-servants-securing-material-goodness', 'en', '99', 49, '34543', 'in_stock', '3', 'Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff.', '<p>Give lady of they such they sure it. Me contained explained my education. Vulgar as hearts by garret. Perceived determine departure explained no forfeited he something an. Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff. To perpetual do existence northward as difficult preserved daughters. Continued at up to zealously necessary breakfast. Surrounded sir motionless she end literature. Gay direction neglected but supported yet her.&nbsp;</p><p>Mr oh winding it enjoyed by between. The servants securing material goodness her. Saw principles themselves ten are possession. So endeavor to continue cheerful doubtful we to. Turned advice the set vanity why mutual. Reasonably if conviction on be unsatiable discretion apartments delightful. Are melancholy appearance stimulated occasional entreaties end. Shy ham had esteem happen active county. Winding morning am shyness evident to. Garrets because elderly new manners however one village she.&nbsp;</p>', 'a:3:{i:0;s:6:\"Weight\";i:1;s:5:\"Width\";i:2;s:6:\"Height\";}', NULL, '69', '68|67|66', 'publish', NULL, NULL, NULL, NULL, 'a:3:{i:0;s:5:\"1.2KG\";i:1;s:3:\"11\"\";i:2;s:3:\"12\"\";}', 'New', '2020-07-21 02:11:20', '2020-07-24 05:07:39');

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

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

CREATE TABLE `product_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `status` varchar(191) NOT NULL,
  `lang` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `product_categories`
--

INSERT INTO `product_categories` (`id`, `title`, `status`, `lang`, `created_at`, `updated_at`) VALUES
(1, 'Accessories', 'publish', 'en', '2020-07-20 23:47:01', '2020-07-20 23:47:01'),
(2, 'Laravel Scripts', 'publish', 'en', '2020-07-20 23:47:11', '2020-07-20 23:47:11'),
(3, 'Shopping', 'publish', 'en', '2020-07-20 23:47:42', '2020-07-20 23:47:42'),
(11, 'Necessary Tools', 'publish', 'en', '2020-07-24 05:08:58', '2020-07-24 05:08:58');

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

--
-- Table structure for table `product_coupons`
--

CREATE TABLE `product_coupons` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `code` varchar(191) NOT NULL,
  `discount` varchar(191) DEFAULT NULL,
  `discount_type` varchar(191) DEFAULT NULL,
  `expire_date` varchar(191) DEFAULT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'draft',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `product_coupons`
--

INSERT INTO `product_coupons` (`id`, `code`, `discount`, `discount_type`, `expire_date`, `status`, `created_at`, `updated_at`) VALUES
(1, 'NEWYEAR', '10', 'percentage', '2020-08-21', 'publish', '2020-07-20 23:01:01', '2020-07-20 23:01:01'),
(2, 'SPECIALDISCOUNT', '35', 'amount', '2020-08-28', 'publish', '2020-07-20 23:01:18', '2020-07-20 23:01:18');

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

--
-- Table structure for table `product_orders`
--

CREATE TABLE `product_orders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `status` varchar(191) DEFAULT NULL,
  `payment_status` varchar(191) DEFAULT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `payment_track` varchar(191) DEFAULT NULL,
  `payment_gateway` varchar(191) DEFAULT NULL,
  `user_id` varchar(191) DEFAULT NULL,
  `subtotal` varchar(191) DEFAULT NULL,
  `coupon_discount` varchar(191) DEFAULT NULL,
  `shipping_cost` varchar(191) DEFAULT NULL,
  `product_shippings_id` varchar(191) DEFAULT NULL,
  `total` varchar(191) DEFAULT NULL,
  `billing_name` text DEFAULT NULL,
  `billing_email` text DEFAULT NULL,
  `billing_phone` text DEFAULT NULL,
  `billing_country` text DEFAULT NULL,
  `billing_street_address` text DEFAULT NULL,
  `billing_town` text DEFAULT NULL,
  `billing_district` text DEFAULT NULL,
  `different_shipping_address` text DEFAULT NULL,
  `shipping_name` text DEFAULT NULL,
  `shipping_email` text DEFAULT NULL,
  `shipping_phone` text DEFAULT NULL,
  `shipping_country` text DEFAULT NULL,
  `shipping_street_address` text DEFAULT NULL,
  `shipping_town` text DEFAULT NULL,
  `shipping_district` text DEFAULT NULL,
  `coupon_code` varchar(191) DEFAULT NULL,
  `cart_items` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `product_orders`
--

INSERT INTO `product_orders` (`id`, `status`, `payment_status`, `transaction_id`, `payment_track`, `payment_gateway`, `user_id`, `subtotal`, `coupon_discount`, `shipping_cost`, `product_shippings_id`, `total`, `billing_name`, `billing_email`, `billing_phone`, `billing_country`, `billing_street_address`, `billing_town`, `billing_district`, `different_shipping_address`, `shipping_name`, `shipping_email`, `shipping_phone`, `shipping_country`, `shipping_street_address`, `shipping_town`, `shipping_district`, `coupon_code`, `cart_items`, `created_at`, `updated_at`) VALUES
(1, 'pending', 'pending', NULL, 'jjAg457Rhrcg3HSr76jZ', 'razorpay', NULL, '297', '10', '0', '1', '267', 'Sharifur Rahmam', 'dvrobin4@gmail.com', '+8801847111881', 'Bangladesh', 'Adarsha Nagar', 'dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'NEWYEAR', 'a:2:{i:1;a:4:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"3\";s:5:\"price\";i:147;}i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-07-21 05:15:22', '2020-07-21 05:15:22'),
(2, 'pending', 'pending', NULL, '4QnouPjgODWL07i25PLl', 'razorpay', NULL, '297', '10', '0', '1', '267', 'Sharifur Rahmam', 'dvrobin4@gmail.com', '+8801847111881', 'Bangladesh', 'Adarsha Nagar', 'dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'NEWYEAR', 'a:2:{i:1;a:4:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"3\";s:5:\"price\";i:147;}i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-07-21 05:17:15', '2020-07-21 05:17:15'),
(3, 'pending', 'pending', NULL, 'NsshuICkYlT1v3WR3KIP', 'razorpay', NULL, '297', '10', '0', '1', '267', 'Sharifur Rahmam', 'dvrobin4@gmail.com', '+8801847111881', 'Bangladesh', 'Adarsha Nagar', 'dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'NEWYEAR', 'a:2:{i:1;a:4:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"3\";s:5:\"price\";i:147;}i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-07-21 05:18:50', '2020-07-21 05:18:50'),
(4, 'pending', 'complete', 'txn_1H7JcUEmGOuJLTMs5wha404D', 'nOUe9qxRdYrhugT55I4G', 'stripe', NULL, '444', '10', '0', '1', '399', 'Sharifur Rahmam', 'dvrobin4@gmail.com', '+8801847111881', 'Bangladesh', 'Adarsha Nagar', 'dhaka', 'Dhaka', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'NEWYEAR', 'a:5:{i:1;a:4:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"3\";s:5:\"price\";i:147;}i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:9;a:4:{s:2:\"id\";i:9;s:5:\"title\";s:33:\"Contrasted dissimilar get joy you\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-07-21 05:26:12', '2020-07-21 05:26:50'),
(5, 'pending', 'complete', 'txn_1H7cDcEmGOuJLTMs8mtGyzWo', 'NSV4aBvCJ83FxquRHu5Y', 'stripe', '1', '324', '10', '20', '4', '311', 'sharifur', 'dvrobin4@gmail.com', '24133424', 'Anguilla', 'Adarsha Nagar', 'dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'NEWYEAR', 'a:4:{i:10;a:4:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:11;a:4:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:9;a:4:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:33:\"Contrasted dissimilar get joy you\";s:8:\"quantity\";s:1:\"3\";s:5:\"price\";i:147;}i:6;a:4:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:32:\"React Business Consulting Script\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:79;}}', '2020-07-22 01:18:13', '2020-07-22 01:18:25'),
(7, 'pending', 'pending', NULL, 'PgcrLPa5JntpMcK5iHXW', 'paypal', NULL, '49', '0', '0', '1', '49', 'Demo', 'magicbytes2012@gmail.com', NULL, 'Netherlands', 'Amsterdam street 12', 'Amsterdam', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-07-30 23:55:13', '2020-07-30 23:55:13'),
(10, 'pending', 'pending', NULL, 'DSGqBOpxkgHklZb3rBAr', 'stripe', NULL, '49', '0', '0', '1', '49', 'qwqqw', 'as@as.com', '7676767676', 'India', '21 wew', 'erere', 'ererer', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-07-31 06:59:36', '2020-07-31 06:59:36'),
(11, 'pending', 'pending', NULL, 'KLTHCPVgpDOGoiLccyMC', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-07-31 09:02:06', '2020-07-31 09:02:06'),
(12, 'pending', 'pending', NULL, 'BK5fXrQzv35UpJLFfs5T', 'paytm', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-07-31 09:37:36', '2020-07-31 09:37:36'),
(13, 'pending', 'pending', NULL, 'UwTwrsGQvgEBsGm4P7Cg', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', 'Nguyễn Đức Hoài', 'duchoai@toucan.vn', '+84888468988', 'Vietnam', '81 Nguyễn Công Trứ, Phường 8', 'Đà Lạt', 'DALAT', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-07-31 09:49:42', '2020-07-31 09:49:42'),
(14, 'pending', 'pending', NULL, '5xb9eVlzaPGz50LgDBxB', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-07-31 15:26:34', '2020-07-31 15:26:34'),
(15, 'pending', 'pending', NULL, 'RzLHRVfY8hYs2sWKxg1c', 'manual_payment', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-07-31 17:58:59', '2020-07-31 17:58:59'),
(16, 'pending', 'pending', NULL, '4kcDOzH4SREKqn08iJZt', 'stripe', NULL, '147', '0', '0', '1', '147', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:2:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";i:2;s:5:\"price\";i:98;}}', '2020-07-31 18:02:49', '2020-07-31 18:02:49'),
(17, 'pending', 'pending', NULL, 'isjoJSRgsMgjoq8e52G0', 'manual_payment', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:2:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-07-31 18:04:33', '2020-07-31 18:04:33'),
(18, 'pending', 'pending', NULL, 'pPq5hzlcBYljnFlrKQ6K', 'paytm', NULL, '147', '0', '20', '4', '167', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"3\";s:5:\"price\";i:147;}}', '2020-07-31 18:46:20', '2020-07-31 18:46:20'),
(19, 'pending', 'complete', 'pay_FL8tdfTGroBVdd', 'B6wVIcHVtKOmvqUkFeyv', 'razorpay', NULL, '300', '0', '10', '3', '310', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"2\";s:5:\"price\";i:300;}}', '2020-07-31 18:51:09', '2020-07-31 18:53:23'),
(20, 'pending', 'pending', NULL, 'CKtz8ZPhq3gWARQx3ZCj', 'cash_on_delivery', NULL, '150', '0', '0', '1', '150', 'Deepak Singh', 'deepaksinghsou@gmail.com', '7903014220', 'India', 'Patna', 'Patna', 'Patna', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-07-31 20:58:04', '2020-07-31 20:58:04'),
(21, 'pending', 'pending', NULL, '2xM31S4kIjuSfWVRH9Dy', 'cash_on_delivery', '7', '150', '0', '0', '1', '150', 'Deepak Kumar', 'deepaksinghsou@gmail.com', '7903014220', 'Angola', 'Pathology', 'Patna', 'Paj', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-07-31 21:05:19', '2020-07-31 21:05:19'),
(22, 'pending', 'pending', NULL, 'oo593AIBfVCwppQ8QrtZ', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-07-31 22:07:51', '2020-07-31 22:07:51'),
(23, 'pending', 'pending', NULL, 'bgdR8cNbr2HWHs5zbiAu', 'razorpay', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-07-31 22:21:40', '2020-07-31 22:21:40'),
(24, 'pending', 'pending', NULL, 'o4XLmCv0UV8VteMxKlCk', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-07-31 23:16:21', '2020-07-31 23:16:21'),
(25, 'pending', 'pending', NULL, 'muyaPoIya6J6EZROReHB', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-07-31 23:25:14', '2020-07-31 23:25:14'),
(26, 'pending', 'pending', NULL, 'JeboUOk9nzMZByLlsO1t', 'stripe', NULL, '300', '0', '0', '1', '300', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"2\";s:5:\"price\";i:300;}}', '2020-08-01 11:31:59', '2020-08-01 11:31:59'),
(27, 'pending', 'pending', NULL, 'Gz4P2vBkdYY0DYcxDdLk', 'paystack', NULL, '49', '0', '10', '3', '59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:7;a:4:{s:2:\"id\";i:7;s:5:\"title\";s:29:\"Again keeps at no meant stuff\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-01 14:21:42', '2020-08-01 14:21:42'),
(28, 'pending', 'pending', NULL, 'syVFbXdgVBBmTE58tsKR', 'paytm', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-01 14:28:39', '2020-08-01 14:28:39'),
(29, 'pending', 'complete', 'pay_FLT3D1hlq3efPt', '4Iivz2ZdChWBdqbrQZSM', 'razorpay', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:7;a:4:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:29:\"Again keeps at no meant stuff\";s:8:\"quantity\";s:1:\"2\";s:5:\"price\";i:98;}}', '2020-08-01 14:35:10', '2020-08-01 14:36:03'),
(30, 'pending', 'pending', NULL, 'BbELlTfUGRx532haFkI6', 'razorpay', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-01 15:16:49', '2020-08-01 15:16:49'),
(31, 'pending', 'pending', NULL, 'pEEuD6q0f6rXN05qXjBE', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-01 16:40:11', '2020-08-01 16:40:11'),
(32, 'pending', 'pending', NULL, '4kzo12xJayeBBI5bJus6', 'manual_payment', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-03 00:50:32', '2020-08-03 00:50:32'),
(33, 'pending', 'pending', NULL, 'ldeww85OJCGibK5ewC2T', 'cash_on_delivery', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:2:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-03 10:31:34', '2020-08-03 10:31:34'),
(34, 'pending', 'pending', NULL, 'RFK1ch1eSoNuPhfv35Ze', 'cash_on_delivery', '1', '150', '35', '0', '1', '115', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SPECIALDISCOUNT', 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-03 14:08:41', '2020-08-03 14:08:41'),
(35, 'pending', 'pending', NULL, 'qJaINoAW84jg8rlvrFmp', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-04 01:13:00', '2020-08-04 01:13:00'),
(36, 'pending', 'pending', NULL, 'SaclS9Y7B55HJiJ1l1Xe', 'manual_payment', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-04 03:26:46', '2020-08-04 03:26:46'),
(37, 'pending', 'pending', NULL, 'ZyKUAAG3xcYiQjHSssUt', 'manual_payment', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-04 07:10:07', '2020-08-04 07:10:07'),
(38, 'pending', 'pending', NULL, 'Qfb2XPM5EEfEF5QmtA6e', 'paypal', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-04 11:43:00', '2020-08-04 11:43:00'),
(39, 'pending', 'pending', NULL, 'BXm30AGltFiua3FxFNp9', 'paystack', '11', '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-04 14:23:58', '2020-08-04 14:23:58'),
(40, 'pending', 'pending', 'Uytuıu', '5JUq3mnD3SPBEKzEaCA8', 'manual_payment', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:12;a:4:{s:2:\"id\";i:12;s:5:\"title\";s:35:\"Maddi iyiliği koruyan hizmetçiler\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-04 17:14:09', '2020-08-04 17:14:10'),
(41, 'pending', 'pending', NULL, 'HTXtEX8UOZBe7nNqNydx', 'stripe', NULL, '150', '0', '0', '1', '150', 'Charles', 'ccc@ccc.com', '123123123', 'Argentina', 'waefqweqwerf', 'qwefqwefqwef', 'qwefqwewqef', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-05 04:14:06', '2020-08-05 04:14:06'),
(51, 'pending', 'pending', NULL, '7H03uaXb6G8I6Jz6DFXH', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-06 22:37:21', '2020-08-06 22:37:21'),
(52, 'pending', 'pending', NULL, 'VCTBDiQVEdoqFo6JEaDD', 'paytm', '1', '365', '0', '0', '1', '365', 's', 'gabrielfreisan@gmail.com', 'sa', 'Austria', 'dsd', 'dsd', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:2:{i:6;a:4:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:32:\"React Business Consulting Script\";s:8:\"quantity\";s:1:\"4\";s:5:\"price\";i:316;}i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-06 22:57:46', '2020-08-06 22:57:46'),
(53, 'pending', 'pending', NULL, '3OHAUGOsf9MU1NFkSGIZ', 'paystack', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 02:31:56', '2020-08-07 02:31:56'),
(54, 'pending', 'pending', NULL, 'T9yO9IhYtjREQY9hhyVn', 'flutterwave', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 02:44:58', '2020-08-07 02:44:58'),
(55, 'pending', 'pending', NULL, '0CsxFRe1I3AgZwiEz0TR', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:9;a:4:{s:2:\"id\";i:9;s:5:\"title\";s:33:\"Contrasted dissimilar get joy you\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 03:19:41', '2020-08-07 03:19:41'),
(56, 'pending', 'pending', NULL, 'gIMl4wnohSHbGoeOOX46', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 08:30:17', '2020-08-07 08:30:17'),
(57, 'pending', 'pending', NULL, 'q2K59Ub3ULbbzijwYAoo', 'paytm', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:2:{i:10;a:4:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:11;a:4:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 08:32:20', '2020-08-07 08:32:20'),
(58, 'pending', 'pending', NULL, '2H4Ot6K3UWXqEcgMwQa5', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 08:43:10', '2020-08-07 08:43:10'),
(59, 'pending', 'pending', NULL, 'CopoxFhcOv7a7YYUbNGb', 'flutterwave', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 08:43:30', '2020-08-07 08:43:30'),
(60, 'pending', 'pending', NULL, 'CcKMQQheA5oW4tbhyYUI', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', 'dede', 'dede@mail.com', '1230123', 'Bangladesh', 'dede 32', 'dede to', 'wuwude', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 09:42:45', '2020-08-07 09:42:45'),
(61, 'pending', 'pending', NULL, 'NqLFVhvzaSxD1rGJqc0v', 'razorpay', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 10:15:32', '2020-08-07 10:15:32'),
(62, 'pending', 'pending', NULL, 'bAE8J3oVboYMypmXBMxL', 'paypal', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 10:27:25', '2020-08-07 10:27:25'),
(63, 'pending', 'pending', NULL, 'tss0SD3FsVibX8s14upZ', 'cash_on_delivery', NULL, '300', '0', '0', '1', '300', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"2\";s:5:\"price\";i:300;}}', '2020-08-07 10:31:14', '2020-08-07 10:31:14'),
(64, 'pending', 'pending', NULL, 'yYQ9ESvVOr6yI5XQ8tnm', 'paytm', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-07 10:39:53', '2020-08-07 10:39:53'),
(65, 'pending', 'pending', NULL, 'hs0F4oqi5bhf0fWZVXzl', 'paytm', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:2:{i:7;a:4:{s:2:\"id\";i:7;s:5:\"title\";s:29:\"Again keeps at no meant stuff\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 10:40:04', '2020-08-07 10:40:04'),
(66, 'pending', 'pending', NULL, 'aLTHQnJ4JR7cT37YCIIf', 'paytm', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-07 11:07:29', '2020-08-07 11:07:29'),
(67, 'pending', 'pending', NULL, 'rH8I5HTMtfT9UAayGMyZ', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 11:07:32', '2020-08-07 11:07:32'),
(68, 'pending', 'pending', NULL, 'ecAAfXCCFMAcj3POrvvV', 'paypal', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 11:34:21', '2020-08-07 11:34:21'),
(69, 'pending', 'pending', NULL, 'PTrAUDp8f9V2PuhkuLF0', 'razorpay', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-07 12:16:25', '2020-08-07 12:16:25'),
(70, 'pending', 'pending', NULL, '0CC4idj64960YUgZD7BP', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:16;a:4:{s:2:\"id\";i:16;s:5:\"title\";s:43:\"Testere prensipleri kendilerine on sahiptir\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 13:16:20', '2020-08-07 13:16:20'),
(71, 'pending', 'pending', NULL, '4xIhiwSQAFTpCZMx22as', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 13:17:46', '2020-08-07 13:17:46'),
(72, 'pending', 'pending', NULL, 'Qia8HBCQDTAmWbIEbpwu', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 13:37:18', '2020-08-07 13:37:18'),
(73, 'pending', 'pending', NULL, 'oIijjkw8W5c8YG1vBVif', 'paypal', NULL, '49', '0', '0', '1', '49', 'ghg', 'ghgfh', 'hgfhg', 'Albania', 'hfhgfh', 'hfhfgh', 'hfhg', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:20;a:4:{s:2:\"id\";i:20;s:5:\"title\";s:80:\"عطائي القيام الصيف على الرغم من ضيق ملحوظ في\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 13:39:36', '2020-08-07 13:39:36'),
(74, 'pending', 'pending', NULL, 'GeQpoqeBD9hUWzaWFHqh', 'cash_on_delivery', NULL, '147', '0', '0', '1', '147', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:3:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:7;a:4:{s:2:\"id\";i:7;s:5:\"title\";s:29:\"Again keeps at no meant stuff\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:9;a:4:{s:2:\"id\";i:9;s:5:\"title\";s:33:\"Contrasted dissimilar get joy you\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 14:11:07', '2020-08-07 14:11:07'),
(75, 'pending', 'pending', NULL, 'DotxEWgW5ujrERJlYy7U', 'cash_on_delivery', NULL, '98', '0', '0', '1', '98', 'Djobeni', 'djobeni33@gmail.com', '1010101', 'Australia', 'azerty cf', 'oodi', 'Jdjdld', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:2:{i:7;a:4:{s:2:\"id\";i:7;s:5:\"title\";s:29:\"Again keeps at no meant stuff\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 14:15:05', '2020-08-07 14:15:05'),
(76, 'pending', 'pending', NULL, 'R81BFmA8nmAGobJGvHiM', 'paytm', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-07 14:41:41', '2020-08-07 14:41:41'),
(77, 'pending', 'pending', NULL, 'k6Xsm6EUWUfuoALQURzx', 'paypal', '1', '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-07 14:55:24', '2020-08-07 14:55:24'),
(78, 'pending', 'pending', NULL, '2cfrTizCxl2jOBt5DZNj', 'paystack', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 16:18:13', '2020-08-07 16:18:13'),
(79, 'pending', 'pending', '2323123123', 'TeUhuhbdtu0FWYTAvUdz', 'manual_payment', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-07 16:34:57', '2020-08-07 16:34:57'),
(80, 'pending', 'pending', NULL, 'YwUn4HVW4LZKPJxKmKzw', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 16:42:31', '2020-08-07 16:42:31'),
(81, 'pending', 'pending', NULL, 'X4E67MT5g7rcP7xfOGGn', 'paystack', NULL, '150', '0', '0', '1', '150', 'Ayeni Miracle', 'haryenirmm@gmail.com', '+2348145632884', 'Nigeria', 'C/12 Iba ipe Akoko', 'Akure', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-07 16:51:59', '2020-08-07 16:51:59'),
(82, 'pending', 'pending', NULL, 'jEGo2patGc1voPDWikcw', 'paytm', NULL, '49', '0', '0', '1', '49', 'Shamsundar Vyankatesh Machha', 'machhashamsundar@gmail.com', '07058585178', 'India', '152 New Sunil Nagar,MIDC Road', 'Solapur', NULL, 'yes', 'Shamsundar Machha', 'arktechpark@gmail.com', '07058585178', 'India', 'Shop No. 17, Ramchandra Empire,', 'Solapur', NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 17:21:54', '2020-08-07 17:21:54'),
(83, 'pending', 'pending', NULL, 'nrY5qL951KGgVNrWRyYU', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 18:30:33', '2020-08-07 18:30:33'),
(84, 'pending', 'pending', NULL, 'a13KkS8x5Ft35N6oPTBf', 'paytm', NULL, '49', '0', '0', '1', '49', 'Sajin Rajesh', 'sajin.jin@outlook.com', '8870526405', 'India', 'Saralvilai', 'Muttaikadu', 'Kumarapuram', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 19:27:43', '2020-08-07 19:27:43'),
(85, 'pending', 'pending', NULL, 'ACiABEMtdEdzRpFHlUKy', 'paystack', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 19:45:48', '2020-08-07 19:45:48'),
(86, 'pending', 'pending', NULL, 'gdjDmY4htWna2lFHyFSu', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 19:47:17', '2020-08-07 19:47:17'),
(87, 'pending', 'pending', NULL, 'zJjw6No9Nb6mRWilikSn', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 19:59:31', '2020-08-07 19:59:31'),
(88, 'pending', 'pending', NULL, 'Si88wh0ROxfZarpawX9w', 'paytm', NULL, '49', '0', '0', '1', '49', 'mehul patel', 'mehulit77@gmail.com', '+919427981380', 'India', 'gujarat', 'idar', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 20:04:26', '2020-08-07 20:04:26'),
(89, 'pending', 'pending', NULL, 'OESuVlRsviZTyxYVuKO2', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 20:09:26', '2020-08-07 20:09:26'),
(90, 'pending', 'pending', NULL, 'l1CBB4oTskd6ecYXSq4K', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 20:14:47', '2020-08-07 20:14:47'),
(91, 'pending', 'pending', NULL, 'AXZt8lHbtuOyKECb7goM', 'paypal', NULL, '49', '0', '0', '1', '49', 'Testting', 'test@gmail.com', '08112345677', 'Estonia', 'Jl. Pelan-pelan', 'Mati', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 20:18:39', '2020-08-07 20:18:39'),
(92, 'pending', 'pending', NULL, 'eCshPYK8hWXKLacIt74J', 'cash_on_delivery', NULL, '150', '0', '0', '1', '150', 'vanhengsun ly', 'vanhengsunly5555@gmail.com', '010375555', 'Cambodia', 'ressey keo', 'phnom penh', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-07 20:32:22', '2020-08-07 20:32:22'),
(93, 'pending', 'pending', NULL, '6TJdURLZBPL6a7OUmY94', 'cash_on_delivery', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-07 20:38:22', '2020-08-07 20:38:22'),
(94, 'pending', 'pending', NULL, 'UuNRbYKImY3JKamT2qTO', 'cash_on_delivery', '1', '150', '0', '0', '1', '150', 'ghnm', 'ff@ff.com', '3456', 'Uganda', 'guio', 'fgh', 'fgh', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-07 20:52:18', '2020-08-07 20:52:18'),
(95, 'pending', 'pending', NULL, '30EFLArrJeFOxl6bWtrN', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 21:47:15', '2020-08-07 21:47:15'),
(96, 'pending', 'pending', NULL, '9sU6pQTpWKlF4vVigkaA', 'paypal', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 22:22:41', '2020-08-07 22:22:41'),
(97, 'pending', 'pending', NULL, 'U4ORpCzejHfibCOfhRzj', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:17;a:4:{s:2:\"id\";i:17;s:5:\"title\";s:45:\"العباد ضمان الخير المادي\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 23:44:23', '2020-08-07 23:44:23'),
(98, 'pending', 'pending', NULL, 'phcNqYEa7jzElUwn4jgt', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-07 23:53:41', '2020-08-07 23:53:41'),
(99, 'pending', 'pending', NULL, 'IZM52lAoNjoeS3MdzP1l', 'paytm', NULL, '79', '0', '0', '1', '79', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:6;a:4:{s:2:\"id\";i:6;s:5:\"title\";s:32:\"React Business Consulting Script\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:79;}}', '2020-08-08 00:35:14', '2020-08-08 00:35:14'),
(100, 'pending', 'pending', NULL, 'cUSyciQIlJdZMhJzHEyc', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:7;a:4:{s:2:\"id\";i:7;s:5:\"title\";s:29:\"Again keeps at no meant stuff\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 02:35:44', '2020-08-08 02:35:44'),
(101, 'pending', 'pending', NULL, 's8WQkoDgnGkfVRtd0JEW', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 02:36:08', '2020-08-08 02:36:08'),
(102, 'pending', 'pending', '1234', 'ReHRfzO6SECvCmKd9CbM', 'manual_payment', NULL, '79', '0', '0', '1', '79', 'jnaksdj', 'jnasf@lkmdfcom', '234234', 'Argentina', 'asflkamflk', 'lksmldk flksdg', 'lskdnlfksmdf', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:6;a:4:{s:2:\"id\";i:6;s:5:\"title\";s:32:\"React Business Consulting Script\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:79;}}', '2020-08-08 03:12:12', '2020-08-08 03:12:12'),
(103, 'pending', 'pending', NULL, '8RlTUPpk01XzX9Xe197M', 'razorpay', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"2\";s:5:\"price\";i:98;}}', '2020-08-08 07:22:14', '2020-08-08 07:22:14'),
(104, 'pending', 'pending', NULL, 'JLMFMB1EM6RWqEOCK3cg', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 08:07:29', '2020-08-08 08:07:29'),
(105, 'pending', 'pending', NULL, 'uUA4Xp8Bh07QYRiKFq0M', 'paytm', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-08 08:40:19', '2020-08-08 08:40:19'),
(106, 'pending', 'pending', NULL, 'BUPLx7TqOu9N4HfFGEI9', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 09:37:01', '2020-08-08 09:37:01'),
(107, 'pending', 'pending', NULL, '4haLwRiIRzAblU8a73HC', 'cash_on_delivery', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-08 10:57:02', '2020-08-08 10:57:02'),
(108, 'pending', 'pending', NULL, 'jJHwPDU5k4SKhBQIutMe', 'paystack', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 10:58:27', '2020-08-08 10:58:27'),
(109, 'pending', 'pending', '231231', 'kiRYhOM7MsIgzR2Lc7Ua', 'manual_payment', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 11:07:38', '2020-08-08 11:07:38'),
(110, 'pending', 'pending', NULL, 'fypXIF8lnPB0bBKBCVem', 'paypal', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 11:35:27', '2020-08-08 11:35:27'),
(111, 'pending', 'pending', NULL, 'DF5uYveV4DkxM0BpNawr', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 13:56:30', '2020-08-08 13:56:30'),
(112, 'pending', 'pending', NULL, 'CtrQ6GIf3QkTX7bhPHbY', 'flutterwave', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 13:59:45', '2020-08-08 13:59:45'),
(113, 'pending', 'pending', NULL, 'rKduhQ6bUSEu8B2ihlHA', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 15:30:25', '2020-08-08 15:30:25'),
(114, 'pending', 'pending', NULL, 'o3iPJNDrFwsWZeeUv24c', 'paypal', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 15:46:35', '2020-08-08 15:46:35'),
(115, 'pending', 'pending', NULL, 'qCEGN0t6La6BWCZMIQqa', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', 'fdsdfsdf', 'sdf', 'sdfsdf', 'Bangladesh', 'sdfsdf', 'sdfsdf', 'sdfsdf', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:12;a:4:{s:2:\"id\";i:12;s:5:\"title\";s:35:\"Maddi iyiliği koruyan hizmetçiler\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 16:02:05', '2020-08-08 16:02:05'),
(116, 'pending', 'pending', NULL, 'yxnbshBaKeGu7G55c7H3', 'paypal', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:2:{i:12;a:4:{s:2:\"id\";i:12;s:5:\"title\";s:35:\"Maddi iyiliği koruyan hizmetçiler\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 16:32:20', '2020-08-08 16:32:20'),
(117, 'pending', 'pending', NULL, 'ipKA25TVWs6W9fOqOpg1', 'cash_on_delivery', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-08 17:22:06', '2020-08-08 17:22:06'),
(118, 'pending', 'pending', NULL, 'J8CKmb5SlASpCaa9qdZC', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 18:06:34', '2020-08-08 18:06:34'),
(119, 'pending', 'pending', NULL, 'VNqL9CRRuaEkBYdsSNvy', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 18:41:21', '2020-08-08 18:41:21'),
(120, 'pending', 'pending', NULL, 'PzcSLNeyL6wkwqjbYzMB', 'paypal', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-08 21:22:25', '2020-08-08 21:22:25'),
(121, 'pending', 'pending', NULL, 'MWUVWcR3U2CXaUbE9cu1', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-09 00:27:24', '2020-08-09 00:27:24'),
(122, 'pending', 'pending', NULL, 'lRpcwqWpJnxSfLnJMZtm', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-09 11:45:31', '2020-08-09 11:45:31'),
(123, 'pending', 'pending', NULL, '823PVkkkVKNqQfdqDWv4', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-09 12:28:20', '2020-08-09 12:28:20'),
(124, 'pending', 'pending', NULL, 'Zt9I8qP1GQ0ijyknzddR', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-09 14:33:59', '2020-08-09 14:33:59'),
(125, 'pending', 'pending', NULL, 'EXc15tRqr6PGcRXyzzWk', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-09 15:21:35', '2020-08-09 15:21:35'),
(126, 'pending', 'pending', NULL, '3opToPP4TZCh44Ua4WJh', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-09 18:24:26', '2020-08-09 18:24:26'),
(127, 'pending', 'pending', NULL, 'WAwpnOqQcpEYfMr2Ai63', 'paypal', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-10 11:15:56', '2020-08-10 11:15:56'),
(128, 'pending', 'pending', NULL, 'LNVgWwtLyyi2zKyYVMmC', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:7;a:4:{s:2:\"id\";i:7;s:5:\"title\";s:29:\"Again keeps at no meant stuff\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-10 13:18:08', '2020-08-10 13:18:08'),
(129, 'pending', 'pending', NULL, 'nc6ndNQiFYK1e4pXcTUe', 'razorpay', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-10 20:22:56', '2020-08-10 20:22:56');
INSERT INTO `product_orders` (`id`, `status`, `payment_status`, `transaction_id`, `payment_track`, `payment_gateway`, `user_id`, `subtotal`, `coupon_discount`, `shipping_cost`, `product_shippings_id`, `total`, `billing_name`, `billing_email`, `billing_phone`, `billing_country`, `billing_street_address`, `billing_town`, `billing_district`, `different_shipping_address`, `shipping_name`, `shipping_email`, `shipping_phone`, `shipping_country`, `shipping_street_address`, `shipping_town`, `shipping_district`, `coupon_code`, `cart_items`, `created_at`, `updated_at`) VALUES
(130, 'pending', 'pending', NULL, 'c5LKcgj4oDvWsfWa3ZQz', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-10 20:28:13', '2020-08-10 20:28:13'),
(131, 'pending', 'pending', NULL, 'Bu4OQysvwSSeC4y5v64T', 'cash_on_delivery', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";i:2;s:5:\"price\";i:98;}}', '2020-08-10 20:29:02', '2020-08-10 20:29:02'),
(132, 'pending', 'pending', NULL, 'qRzndeW7H2OAql7xOQTq', 'cash_on_delivery', NULL, '79', '0', '0', '1', '79', 'Test', 'test@test.com', '1234567890', 'Anguilla', '123456789', 'qwertyuio', 'qwerty', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:6;a:4:{s:2:\"id\";i:6;s:5:\"title\";s:32:\"React Business Consulting Script\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:79;}}', '2020-08-10 22:39:08', '2020-08-10 22:39:08'),
(133, 'pending', 'pending', NULL, '4o1l1OSfSibSrDiwioVN', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 00:33:46', '2020-08-11 00:33:46'),
(134, 'pending', 'pending', NULL, 'nADSCNtNzqX1JjO0DKsy', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:16;a:4:{s:2:\"id\";i:16;s:5:\"title\";s:43:\"Testere prensipleri kendilerine on sahiptir\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 00:34:20', '2020-08-11 00:34:20'),
(135, 'pending', 'pending', NULL, 'nN4eDutEU9FP10OJjQyw', 'razorpay', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"2\";s:5:\"price\";i:98;}}', '2020-08-11 00:45:31', '2020-08-11 00:45:31'),
(136, 'pending', 'pending', NULL, '0G249NJY9S1ZZoGKRQyP', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:20;a:4:{s:2:\"id\";i:20;s:5:\"title\";s:80:\"عطائي القيام الصيف على الرغم من ضيق ملحوظ في\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 04:36:49', '2020-08-11 04:36:49'),
(137, 'pending', 'pending', NULL, 'ZzemfEyEb95gj4kNhq0M', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 05:51:22', '2020-08-11 05:51:22'),
(138, 'pending', 'pending', NULL, 'KElJ6trgQp9RzK2IShzz', 'flutterwave', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:21;a:4:{s:2:\"id\";i:21;s:5:\"title\";s:44:\"Los sirvientes asegurando la bondad material\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 05:58:14', '2020-08-11 05:58:14'),
(139, 'pending', 'pending', NULL, '1AJvEnomnGW4HLomCzOM', 'paystack', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:2:{i:7;a:4:{s:2:\"id\";i:7;s:5:\"title\";s:29:\"Again keeps at no meant stuff\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 09:26:35', '2020-08-11 09:26:35'),
(140, 'pending', 'pending', NULL, 'Mu6sw0cwBUGQEHMKs2ko', 'flutterwave', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '2020-08-11 09:26:53', '2020-08-11 09:26:53'),
(141, 'pending', 'pending', NULL, 'llA1ZBRZmHdQod5PJQtf', 'paystack', NULL, '49', '0', '0', '1', '49', 'Adeley', 'ade@gmail.com', '22345678', 'Nigeria', 'Solape', 'Ijebu', '224', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 09:28:58', '2020-08-11 09:28:58'),
(142, 'pending', 'pending', NULL, 'O0AiEFAmIiObMiONg5fC', 'paystack', NULL, '49', '0', '0', '1', '49', 'Solape', 'ade@gmail.com', '112222', 'Nigeria', '1123', 'Hello', 'Qwe', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 09:34:34', '2020-08-11 09:34:34'),
(143, 'pending', 'pending', NULL, 'GsOJUklNRDAZK518GZ9a', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 09:36:18', '2020-08-11 09:36:18'),
(144, 'pending', 'pending', NULL, 'uHe1m7OWKStVr33YZZMp', 'paystack', NULL, '49', '0', '0', '1', '49', 'Qde', 'ade@gmail.com', '1234', 'Nigeria', '112', 'Solape', 'Solape', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 09:37:40', '2020-08-11 09:37:40'),
(145, 'pending', 'pending', NULL, '654BBy6MYeqAh58IwGYf', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 12:56:34', '2020-08-11 12:56:34'),
(146, 'pending', 'pending', NULL, 'PktvQ6vpuntdNUxJPWs0', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 13:06:42', '2020-08-11 13:06:42'),
(147, 'pending', 'pending', NULL, 'whQ9W8g5tVFKkPM0eMl1', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:7;a:4:{s:2:\"id\";i:7;s:5:\"title\";s:29:\"Again keeps at no meant stuff\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-11 21:46:58', '2020-08-11 21:46:58'),
(148, 'pending', 'pending', NULL, 'mpghJXtjGqYZw5pCAdlg', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-12 13:44:29', '2020-08-12 13:44:29'),
(149, 'pending', 'pending', NULL, 'iCTkoU2Vy71685yGvNEx', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-12 14:49:26', '2020-08-12 14:49:26'),
(150, 'pending', 'pending', NULL, 'IE3mdF0v3FxujbtsfKZh', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-12 16:36:38', '2020-08-12 16:36:38'),
(151, 'pending', 'pending', NULL, 'ODi5qFB6rSXs2cSEQ0yT', 'stripe', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-12 17:02:11', '2020-08-12 17:02:11'),
(152, 'pending', 'pending', NULL, '6zM9UaFLRKY3RV5mNB6u', 'paytm', '1', '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-12 17:03:12', '2020-08-12 17:03:12'),
(153, 'pending', 'pending', NULL, 'XAbXjRwFfoPMQZ9fgM0a', 'razorpay', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-12 20:39:28', '2020-08-12 20:39:28'),
(154, 'pending', 'pending', NULL, 'U1o1rZMDeTEa8SA10M8v', 'razorpay', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-12 23:12:45', '2020-08-12 23:12:45'),
(155, 'pending', 'pending', NULL, 'e10M7xIZllSbrH0LOjHV', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:7;a:4:{s:2:\"id\";i:7;s:5:\"title\";s:29:\"Again keeps at no meant stuff\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-13 01:51:29', '2020-08-13 01:51:29'),
(156, 'pending', 'pending', NULL, 'tIYW2wL0tYzfgHwacJTi', 'razorpay', NULL, '49', '0', '0', '1', '49', 'Mohammed Sayeeduddin Ali Khan', 'websiteadvisor.info@gmail.com', '07286036207', 'India', 'Hyderabad', 'HYDERABAD', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-13 01:54:24', '2020-08-13 01:54:24'),
(157, 'pending', 'pending', NULL, 'pyLp84AjhMEThUt3GZw7', 'paystack', '1', '199', '0', '0', '1', '199', 'trtgstfr', 'test@gmail.com', '08025555', 'Nigeria', 'khli', 'tytry', 'strserter', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:2:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-13 04:06:29', '2020-08-13 04:06:29'),
(158, 'pending', 'pending', NULL, '899wg286ijseJRoQJIEJ', 'razorpay', '29', '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-13 07:06:08', '2020-08-13 07:06:08'),
(159, 'pending', 'pending', NULL, 'erWEJzDLz9mn2iZENkgM', 'cash_on_delivery', '29', '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-13 07:09:18', '2020-08-13 07:09:18'),
(160, 'pending', 'pending', NULL, 'htHBC74eUpeGzk5WeohG', 'stripe', NULL, '49', '0', '0', '1', '49', 'SDEFGHGJH', 'aasssg@sfddgd.com', '555555', 'Turkey', 'sadfghyhgffe', 'dfgjygnb', 'dgfh7', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-13 19:09:06', '2020-08-13 19:09:06'),
(161, 'pending', 'pending', NULL, 'YdIFhTPglIPeo7ZaTkUN', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-13 21:23:03', '2020-08-13 21:23:03'),
(162, 'pending', 'pending', NULL, 'IvjZ7BgnuLBkXBqKwFHD', 'paytm', NULL, '49', '0', '0', '1', '49', 'Ahmet Abiç', 'asmonfps1@gmail.com', '05061444151', 'Turkey', 'Dgdh', 'Balıkesir', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:12;a:4:{s:2:\"id\";i:12;s:5:\"title\";s:35:\"Maddi iyiliği koruyan hizmetçiler\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-13 21:59:59', '2020-08-13 21:59:59'),
(163, 'pending', 'pending', NULL, 'qYWPIyg7dqENPTHnVnpi', 'paypal', '1', '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-14 14:52:25', '2020-08-14 14:52:25'),
(164, 'pending', 'complete', 'tr_pdU5bPcMKn', 'dQOp2MUW1B37uRswbOi6', 'mollie', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-14 15:46:47', '2020-08-14 15:47:07'),
(165, 'pending', 'pending', NULL, 'IVfe22EDaMJGJAbQt5bF', 'paytm', NULL, '147', '0', '0', '1', '147', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"3\";s:5:\"price\";i:147;}}', '2020-08-14 15:51:56', '2020-08-14 15:51:56'),
(166, 'pending', 'pending', NULL, '967nfjOj7F11qd1tUQ7H', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-14 18:40:30', '2020-08-14 18:40:30'),
(167, 'pending', 'pending', NULL, '5dx6R4ZOOi79pJWKrz0h', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-14 23:23:38', '2020-08-14 23:23:38'),
(168, 'pending', 'pending', NULL, 'X9ZgOlhjXNFIfsu1CkIz', 'paypal', NULL, '150', '0', '0', '1', '150', 'Yao', 'franckyao34@gmail.com', '+22501757008', 'Ivory Coast', '0015ABIDJAN', 'Abidjan', 'Africa', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-14 23:25:47', '2020-08-14 23:25:47'),
(169, 'pending', 'pending', NULL, '1MUwSxXrJAbpu0grz9Qb', 'cash_on_delivery', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '2020-08-14 23:26:15', '2020-08-14 23:26:15'),
(170, 'pending', 'pending', NULL, 'qWnS3zP2VH08XxUDYC4t', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:9;a:4:{s:2:\"id\";i:9;s:5:\"title\";s:33:\"Contrasted dissimilar get joy you\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-15 04:08:15', '2020-08-15 04:08:15'),
(171, 'pending', 'pending', NULL, 'Wp7xqpz7VzMsSLOsT5Gp', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-15 09:27:15', '2020-08-15 09:27:15'),
(172, 'pending', 'pending', NULL, 'a2Y2bk48g2oADcWideu3', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-15 12:28:45', '2020-08-15 12:28:45'),
(173, 'pending', 'pending', NULL, 'jnGHtbu4cDUaDj57JjTB', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-15 17:30:45', '2020-08-15 17:30:45'),
(174, 'pending', 'pending', NULL, 'hG5oyL82uPEzKXxaGPbK', 'paypal', '1', '79', '0', '0', '1', '79', 'Sharifur Rahman', 'dvrobin4@gmail.com', NULL, 'Brazil', NULL, 'Dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:6;a:4:{s:2:\"id\";i:6;s:5:\"title\";s:32:\"React Business Consulting Script\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:79;}}', '2020-08-15 18:33:45', '2020-08-15 18:33:45'),
(175, 'pending', 'pending', NULL, 'hDf60DnWFpnOdoPcmfIm', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-16 00:25:13', '2020-08-16 00:25:13'),
(176, 'pending', 'pending', NULL, 'zaMrRwCWJRMsonuWHzsR', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:20;a:4:{s:2:\"id\";i:20;s:5:\"title\";s:80:\"عطائي القيام الصيف على الرغم من ضيق ملحوظ في\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-16 03:05:22', '2020-08-16 03:05:22'),
(177, 'pending', 'pending', NULL, '1QdmVzEf34K6g2f5Bc1f', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-16 04:03:47', '2020-08-16 04:03:47'),
(178, 'pending', 'pending', NULL, 'XIIJHXgn5PLOmmbwo0Qv', 'paystack', NULL, '79', '0', '0', '1', '79', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:6;a:4:{s:2:\"id\";i:6;s:5:\"title\";s:32:\"React Business Consulting Script\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:79;}}', '2020-08-16 10:15:10', '2020-08-16 10:15:10'),
(179, 'pending', 'pending', NULL, 'ZzgYatLeIkGv1SAqFrBj', 'paytm', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-16 15:36:56', '2020-08-16 15:36:56'),
(180, 'pending', 'pending', NULL, 'hbnvmsI4kkx7wcpWEoBT', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-16 18:14:25', '2020-08-16 18:14:25'),
(181, 'pending', 'pending', NULL, 'H9e69vGSTyNUzHVAdgBR', 'manual_payment', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-16 18:43:37', '2020-08-16 18:43:37'),
(182, 'pending', 'pending', NULL, 'pE3EA7umsVtqYg44hQip', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-16 23:46:48', '2020-08-16 23:46:48'),
(183, 'pending', 'pending', NULL, 'dXO1okrFcAslPobRh6mO', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'yes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-16 23:57:28', '2020-08-16 23:57:28'),
(184, 'pending', 'complete', 'txn_1HGsm6EmGOuJLTMsIJmiGdHS', 'iPG1cizryQbaZdCZddpJ', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 00:48:07', '2020-08-17 00:48:18'),
(185, 'pending', 'pending', NULL, '7uOw894XojRDORgKrWEv', 'flutterwave', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:2:{i:9;a:4:{s:2:\"id\";i:9;s:5:\"title\";s:33:\"Contrasted dissimilar get joy you\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 04:14:18', '2020-08-17 04:14:18'),
(186, 'pending', 'pending', NULL, 'pr9LIha4vxkwtAx5FM4E', 'paytm', NULL, '49', '0', '0', '1', '49', 'eMMANUEL |sOTONWA', 'emsolink@gmail.com', '08035557159', 'Nigeria', 'If you’re thinking about starting an eCommerce business and selling products online', 'LAGOS', 'EKO', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:9;a:4:{s:2:\"id\";i:9;s:5:\"title\";s:33:\"Contrasted dissimilar get joy you\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 04:15:53', '2020-08-17 04:15:53'),
(187, 'pending', 'pending', NULL, 'WGfB4e32RItga7lCaVPu', 'manual_payment', NULL, '49', '0', '0', '1', '49', 'eMMANUEL |sOTONWA', 'emsolink@gmail.com', '08035557159', 'Nigeria', 'If you’re thinking about starting an eCommerce business and selling products online', 'LAGOS', 'EKO', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 04:17:08', '2020-08-17 04:17:08'),
(188, 'pending', 'pending', NULL, '5kDgIVVtIQFOkVPr9Vak', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', 'eMMANUEL |sOTONWA', 'emsolink@gmail.com', '08035557159', 'Nigeria', 'If you’re thinking about starting an eCommerce business and selling products online', 'LAGOS', 'EKO', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 04:18:09', '2020-08-17 04:18:09'),
(189, 'pending', 'pending', NULL, 'mPopWnxPcHktIyaP3ZCd', 'flutterwave', NULL, '49', '0', '0', '1', '49', 'eMMANUEL |sOTONWA', 'emsolink@gmail.com', '08035557159', 'Nigeria', 'If you’re thinking about starting an eCommerce business and selling products online', 'LAGOS', 'EKO', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 04:19:31', '2020-08-17 04:19:31'),
(190, 'pending', 'pending', NULL, '8MqXsKOnU4844X0pTdem', 'paypal', '1', '49', '0', '0', '1', '49', 'Sharifur Rahman', 'dvrobin4@gmail.com', NULL, 'Brazil', NULL, 'Dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 07:23:24', '2020-08-17 07:23:24'),
(191, 'pending', 'pending', NULL, 'jpU7xgxaafxYWoAqeyuk', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 09:51:00', '2020-08-17 09:51:00'),
(192, 'pending', 'pending', NULL, 'GVO9tsxgPJjc0d1ygvyI', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 10:02:52', '2020-08-17 10:02:52'),
(193, 'pending', 'pending', NULL, 'uH2PujVTnjGNlca0a10k', 'paytm', NULL, '98', '0', '0', '1', '98', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:19;a:4:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:66:\"في الانخراط والد بسيط للآخرين ما عدا\";s:8:\"quantity\";s:1:\"2\";s:5:\"price\";i:98;}}', '2020-08-17 10:39:52', '2020-08-17 10:39:52'),
(194, 'pending', 'pending', NULL, 'OSlLZDywi4TCz5SVFCSl', 'paypal', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 11:36:11', '2020-08-17 11:36:11'),
(195, 'pending', 'pending', NULL, '9gD6cSfOzEbmP2wyRk7Y', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 12:25:50', '2020-08-17 12:25:50'),
(196, 'pending', 'pending', NULL, 'bOhi9xp8S2B4GQFCArg4', 'stripe', NULL, '441', '0', '0', '1', '441', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:12;a:4:{s:2:\"id\";i:12;s:5:\"title\";s:35:\"Maddi iyiliği koruyan hizmetçiler\";s:8:\"quantity\";s:1:\"9\";s:5:\"price\";i:441;}}', '2020-08-17 12:40:22', '2020-08-17 12:40:22'),
(197, 'pending', 'pending', NULL, 'RjTQsJ6AQWoM32cVc22t', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 14:41:56', '2020-08-17 14:41:56'),
(198, 'pending', 'pending', NULL, 'JkDS721wKrvTdvmNL3xR', 'paystack', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 15:44:41', '2020-08-17 15:44:41'),
(199, 'pending', 'pending', NULL, 'XUzFVWXt6LEuS308IDvs', 'cash_on_delivery', '1', '79', '0', '0', '1', '79', 'Sharifur Rahman', 'dvrobin4@gmail.com', NULL, 'Brazil', NULL, 'Dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:6;a:4:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:32:\"React Business Consulting Script\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:79;}}', '2020-08-17 15:50:51', '2020-08-17 15:50:51'),
(200, 'pending', 'pending', NULL, 't0Awi7uscZHAJPlCn8JM', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 17:03:42', '2020-08-17 17:03:42'),
(201, 'pending', 'pending', NULL, 'BnNgHjxjKf2ecLKrvwWk', 'cash_on_delivery', NULL, '248', '0', '0', '1', '248', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:3:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 17:22:09', '2020-08-17 17:22:09'),
(202, 'pending', 'pending', NULL, '851F0JIHgM2Zw5oLV6Hz', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 18:40:39', '2020-08-17 18:40:39'),
(203, 'pending', 'pending', NULL, 'qzi34qhAvfT5kSOWy1tw', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 19:01:01', '2020-08-17 19:01:01'),
(204, 'pending', 'pending', NULL, 'UE3FuMxUCAQD4lLceQUt', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 19:17:43', '2020-08-17 19:17:43'),
(205, 'pending', 'pending', NULL, 'FGkIj0S7onkUavexaigg', 'razorpay', '1', '49', '0', '0', '1', '49', 'Sharifur Rahman', 'dvrobin4@gmail.com', NULL, 'Brazil', NULL, 'Dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 19:45:05', '2020-08-17 19:45:05'),
(206, 'pending', 'pending', NULL, 'YzFXA3r9Yi8jpgpkhR6T', 'paytm', '39', '49', '0', '0', '1', '49', 'Mehdi boudhir', 'archivetunisia@gmail.com', '50635395', 'Qatar', 'zone 35,street 916,building No.86', 'Doha', 'Qatar', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:17;a:4:{s:2:\"id\";i:17;s:5:\"title\";s:45:\"العباد ضمان الخير المادي\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 20:30:07', '2020-08-17 20:30:07'),
(207, 'pending', 'pending', NULL, 'nEyBCGmf2N7sQSGAjfok', 'stripe', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 20:31:04', '2020-08-17 20:31:04'),
(208, 'pending', 'pending', NULL, '8zsUcw5WKBD3S4cPbn4U', 'paypal', '39', '49', '0', '0', '1', '49', 'Mehdi boudhir', 'archivetunisia@gmail.com', '50635395', 'Qatar', 'arab street', 'Doha', 'Doha', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:18;a:4:{s:2:\"id\";i:18;s:5:\"title\";s:29:\"شرح لي احتواء لي\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 20:32:57', '2020-08-17 20:32:57'),
(209, 'pending', 'pending', NULL, 'zPi1PkbVsnOHwKSOmq5V', 'paytm', NULL, '49', '0', '0', '1', '49', 'muneebul gulzar', 'muneebulgulzar@gmail.com', '09796303597', 'India', 'HNo 4 LD Colony Sanathnagar Srinagar', 'Srinagar', 'Jammu and Kashmir', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 20:48:52', '2020-08-17 20:48:52'),
(210, 'pending', 'pending', NULL, 'TUXZiZFdxSqAovLMTtqZ', 'cash_on_delivery', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 20:50:06', '2020-08-17 20:50:06'),
(211, 'pending', 'pending', NULL, 'gywHK6i5tqBl0lh7OBs1', 'paytm', NULL, '300', '0', '0', '1', '300', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"2\";s:5:\"price\";i:300;}}', '2020-08-17 22:36:46', '2020-08-17 22:36:46'),
(212, 'pending', 'pending', NULL, 'cdorh6L8fWaBSXz2XLu2', 'paystack', '1', '98', '0', '0', '1', '98', 'Sharifur Rahman', 'dvrobin4@gmail.com', NULL, 'Brazil', NULL, 'Dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:2:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-17 23:21:17', '2020-08-17 23:21:17'),
(213, 'pending', 'pending', NULL, '9T38BOt1KUhmI8bG0onl', 'paytm', NULL, '49', '0', '0', '1', '49', 'a', 'a@a.com', '0930932222', 'Ukraine', 'asd', 'asd', 'asd', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-18 01:06:24', '2020-08-18 01:06:24'),
(214, 'pending', 'pending', NULL, '2LeszZpIJ2nEe62KwYvD', 'paytm', NULL, '49', '0', '0', '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-18 01:22:24', '2020-08-18 01:22:24'),
(215, 'pending', 'complete', 'txn_1HHFxvEmGOuJLTMsBpg6zFrn', 'OYWHooBsV0CIdbZEeHlP', 'stripe', '1', '49', '0', '0', '1', '49', 'Sharifur Rahman', 'dvrobin4@gmail.com', NULL, 'Brazil', NULL, 'Dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-18 01:33:17', '2020-08-18 01:34:04'),
(216, 'pending', 'pending', NULL, 'x8UJtq8cBQATY3gcyxDa', 'stripe', NULL, '150', '0', '0', '1', '150', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-18 03:39:25', '2020-08-18 03:39:25'),
(217, 'pending', 'pending', NULL, 'TRphJzw44HeqHmFVyRJS', 'paypal', NULL, '150', '0', '0', '1', '150', 'steve', 'stevenapplewhite@gmail.com', '1234567890', 'United States', '230 riley st', 'buffalo', 'ny', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-18 06:37:41', '2020-08-18 06:37:41'),
(218, 'pending', 'pending', NULL, 'Adcnt6eTCwuR03PHolNT', 'paytm', NULL, '49', '0', '0', '1', '49', 'Juan Carlos Rodriguez', 'info@juancarz.com.ar', '646694', 'Spain', 'Pascualis 15', 'Valencia', 'Valencia', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-18 10:05:52', '2020-08-18 10:05:52'),
(222, 'pending', 'pending', NULL, 'YyiXB3JkMwnvhj99M3JI', 'paytm', NULL, '150', '0', '0', '1', '150', 'test', 'te@y.com', '010000000000', 'Afghanistan', '22', '22', '222', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-18 13:04:58', '2020-08-18 13:04:58'),
(225, 'pending', 'pending', NULL, 'IrAE32B72EUJ6JeqatUm', 'paytm', NULL, '49', '0', '0', '1', '49', 'adf', 'sd@123.com', '73455444', 'India', 'dd', 'sah', 'up', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-18 16:54:18', '2020-08-18 16:54:18'),
(228, 'pending', 'pending', NULL, 'PiG0hD1TQdVhqbSEfQOh', 'paytm', NULL, '49', '0', '0', '1', '49', 'Piyush Sharma', 'kpiyush@gmail.com', '08351939692', 'India', 'krishna vihar', 'paonta sahib', 'himachal', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:9;a:4:{s:2:\"id\";i:9;s:5:\"title\";s:33:\"Contrasted dissimilar get joy you\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-18 22:14:08', '2020-08-18 22:14:08'),
(235, 'pending', 'pending', NULL, 'Iu9wDGXFwO4T0qTJ1Q1J', 'paytm', NULL, '150', '0', '0', '1', '150', 'M.K. Mandawar', 'manmandawar@gmail.com', '09116482285', 'India', 'Mandawar', 'Mandawar', 'RAJASTHAN', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:2;a:4:{s:2:\"id\";i:2;s:5:\"title\";s:24:\"Multipurpose Laravel CMS\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:150;}}', '2020-08-19 15:21:56', '2020-08-19 15:21:56'),
(244, 'pending', 'pending', NULL, '9Zk3vjtPXHboK6pzZaxL', 'paystack', '42', '49', '0', '0', '1', '49', 'Naijablogger', 'langdung02@gmail.com', NULL, 'Nigeria', NULL, 'Rayfield', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:7;a:4:{s:2:\"id\";i:7;s:5:\"title\";s:29:\"Again keeps at no meant stuff\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-20 04:40:45', '2020-08-20 04:40:45'),
(262, 'pending', 'complete', 'pay_FTIz9iaKb9EaFZ', 'ZWcr7oynW5jqeQrknFaG', 'razorpay', '1', '49', '0', '5', '2', '54', 'Sharifur Rahman', 'dvrobin4@gmail.com', NULL, 'Brazil', NULL, 'Dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:11;a:4:{s:2:\"id\";i:11;s:5:\"title\";s:39:\"The servants securing material goodness\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-21 09:56:13', '2020-08-21 09:57:11'),
(272, 'pending', 'pending', NULL, 'Fxh0z9Rw1b9tz7TR1rK3', 'paytm', NULL, '49', '0', '0', '1', '49', 'SHAMEER K', 'shamirbhome@gmail.com', '09745107370', 'India', 'KOZHIKKOTTIL HOUSE', 'PALAKKAD', 'Kerala', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-22 06:43:58', '2020-08-22 06:43:58'),
(273, 'pending', 'pending', NULL, 'AuA5LzqOU5AS5dqe7iUE', 'paytm', NULL, '49', '0', '0', '1', '49', 'basir', 'basirulhaq1990@gmail.com', '92883773616', 'Bangladesh', 'churuch strret', 'pindi', 'dhaka', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:10;a:4:{s:2:\"id\";i:10;s:5:\"title\";s:25:\"Me contained explained my\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-22 17:30:18', '2020-08-22 17:30:18'),
(276, 'pending', 'pending', NULL, 'azYoAAeSSvmD4rpm0VMR', 'cash_on_delivery', '1', '49', '0', '0', '1', '49', 'Sharifur Rahman', 'dvrobin4@gmail.com', NULL, 'Brazil', NULL, 'Dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-23 08:08:46', '2020-08-23 08:08:46'),
(280, 'pending', 'pending', NULL, 'EGNqBDpxsGPtVfPXV9fY', 'paystack', NULL, '49', '0', '0', '1', '49', 'Test', 'test@gmail.com', '08038390333', 'Nigeria', '2 Awka Street', 'Awka', 'Anambra', 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:1;a:4:{s:2:\"id\";i:1;s:5:\"title\";s:36:\"Give lady of they such they sure it.\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-23 11:26:36', '2020-08-23 11:26:36'),
(283, 'pending', 'pending', NULL, '58WtJkZuloQboTV9GzRb', 'paytm', '1', '49', '0', '0', '1', '49', 'Sharifur Rahman', 'dvrobin4@gmail.com', NULL, 'Brazil', NULL, 'Dhaka', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'a:1:{i:8;a:4:{s:2:\"id\";i:8;s:5:\"title\";s:39:\"Perceived determine departure explained\";s:8:\"quantity\";s:1:\"1\";s:5:\"price\";i:49;}}', '2020-08-23 21:28:36', '2020-08-23 21:28:36');

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

--
-- Table structure for table `product_ratings`
--

CREATE TABLE `product_ratings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `ratings` int(11) DEFAULT NULL,
  `message` longtext DEFAULT NULL,
  `product_id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `product_ratings`
--

INSERT INTO `product_ratings` (`id`, `ratings`, `message`, `product_id`, `user_id`, `created_at`, `updated_at`) VALUES
(2, 5, 'Good draw knew bred ham busy his hour. Ask agreed answer rather joy nature admire wisdom. Moonlight age depending bed led therefore sometimes preserved exquisite she', 7, 1, '2020-07-21 12:15:59', '2020-07-21 12:15:59'),
(3, 5, 'Good draw knew bred ham busy his hour. Ask agreed answer rather joy nature admire wisdom. Moonlight age depending bed led therefore sometimes preserved exquisite she', 9, 1, '2020-07-21 12:16:21', '2020-07-21 12:16:21'),
(4, 5, 'Good draw knew bred ham busy his hour. Ask agreed answer rather joy nature admire wisdom. Moonlight age depending bed led therefore sometimes preserved exquisite she', 11, 1, '2020-07-21 12:16:44', '2020-07-21 12:16:44'),
(5, 5, 'Good draw knew bred ham busy his hour. Ask agreed answer rather joy nature admire wisdom. Moonlight age depending bed led therefore sometimes preserved exquisite she', 6, 1, '2020-07-21 12:16:50', '2020-07-21 12:16:50'),
(6, 5, 'Moonlight age depending bed led therefore sometimes preserved exquisite she', 11, 3, '2020-07-21 12:41:29', '2020-07-21 12:41:29'),
(7, 3, 'Good draw knew bred ham busy his hour.', 9, 3, '2020-07-21 12:41:53', '2020-07-21 12:41:53'),
(8, 4, 'Two indeed suffer saw beyond far former mrs remain. Occasional continuing possession we insensible an sentiments as is.', 6, 3, '2020-07-21 12:55:42', '2020-07-21 12:55:42'),
(9, 4, 'Contrasted dissimilar get joy you instrument out reasonably. Again keeps at no meant stuff.', 10, 1, '2020-07-22 02:31:33', '2020-07-22 02:31:33');

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

--
-- Table structure for table `product_shippings`
--

CREATE TABLE `product_shippings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `status` varchar(191) NOT NULL,
  `lang` varchar(191) NOT NULL,
  `description` text DEFAULT NULL,
  `cost` varchar(191) NOT NULL,
  `order` varchar(191) DEFAULT NULL,
  `is_default` varchar(191) DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `product_shippings`
--

INSERT INTO `product_shippings` (`id`, `title`, `status`, `lang`, `description`, `cost`, `order`, `is_default`, `created_at`, `updated_at`) VALUES
(1, 'Free Shipping', 'publish', 'en', 'Shipment will be within 10-15 Days', '0', '1', '1', '2020-07-20 23:17:00', '2020-07-20 23:25:33'),
(2, 'Standard Shipping', 'publish', 'en', 'Shipment will be within 5-10 Day.', '5', '2', '0', '2020-07-20 23:17:25', '2020-07-20 23:25:33'),
(3, '2-Day Shipping', 'publish', 'en', 'Shipment will be within 2 Days.', '10', '3', '0', '2020-07-20 23:17:47', '2020-07-20 23:17:47'),
(4, 'Same day delivery', 'publish', 'en', 'Shipment will be within 1 Day.', '20', '4', '0', '2020-07-20 23:18:09', '2020-07-20 23:18:09');

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

--
-- Table structure for table `quotes`
--

CREATE TABLE `quotes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `custom_fields` longtext DEFAULT NULL,
  `attachment` longtext DEFAULT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'pending',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `quotes`
--

INSERT INTO `quotes` (`id`, `custom_fields`, `attachment`, `status`, `created_at`, `updated_at`) VALUES
(10, 'a:6:{s:9:\"your-name\";s:13:\"Rakib Hossain\";s:7:\"address\";s:7:\"gabtoli\";s:12:\"phone-number\";s:11:\"01767838719\";s:10:\"your-email\";s:19:\"rakib.jlk@gmail.com\";s:15:\"desired-country\";s:11:\"netherlands\";s:43:\"if-have-your-any-question-or-ask-write-here\";s:6:\"messes\";}', 'a:0:{}', 'pending', '2020-10-11 08:16:16', '2020-10-11 08:16:16'),
(11, 'a:6:{s:9:\"your-name\";s:13:\"Rakib Hossain\";s:7:\"address\";s:7:\"gabtoli\";s:12:\"phone-number\";s:11:\"01767838719\";s:10:\"your-email\";s:19:\"rakib.jlk@gmail.com\";s:15:\"desired-country\";s:11:\"netherlands\";s:43:\"if-have-your-any-question-or-ask-write-here\";s:6:\"messes\";}', 'a:0:{}', 'pending', '2020-10-11 08:16:30', '2020-10-11 08:16:30'),
(12, 'a:6:{s:9:\"your-name\";s:13:\"Rakib Hossain\";s:7:\"address\";s:7:\"gabtoli\";s:12:\"phone-number\";s:11:\"01767838719\";s:10:\"your-email\";s:19:\"rakib.jlk@gmail.com\";s:15:\"desired-country\";s:11:\"netherlands\";s:43:\"if-have-your-any-question-or-ask-write-here\";s:6:\"messes\";}', 'a:0:{}', 'pending', '2020-10-11 08:17:55', '2020-10-11 08:17:55');

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

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

CREATE TABLE `services` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `categories_id` varchar(191) NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `meta_tag` text DEFAULT NULL,
  `slug` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `excerpt` text DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `description` text NOT NULL,
  `icon_type` varchar(191) DEFAULT NULL,
  `img_icon` varchar(191) DEFAULT NULL,
  `sr_order` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `services` (`id`, `title`, `icon`, `lang`, `categories_id`, `image`, `meta_tag`, `slug`, `meta_description`, `excerpt`, `status`, `description`, `icon_type`, `img_icon`, `sr_order`, `created_at`, `updated_at`) VALUES
(1, 'Free Counselling', 'flaticon-information', 'en', '21', '223', 'Free counselling', 'free-counselling', 'free counselling', 'We will help you find the suitable course based on your academic qualifications, test scores, specific interests and requirements.', 'publish', '<p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\">We will help you find the suitable course\r\nbased on your academic qualifications, test scores, specific interests and\r\nrequirements. Our unique team will match your grades, budget, preferred study\r\ndestination, preferred course and English language skills to produce a tailored\r\nset of opportunities. </span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><br></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\">We’ve assigned some highly professional admission\r\ncounselors having in-depth knowledge in this field and based on your competence;\r\nour counselors will help you choose the best available option.<o:p></o:p></span></p>', 'icon', NULL, NULL, '2020-05-31 15:53:06', '2020-11-02 10:11:04'),
(2, 'Bank Support', 'fas fa-money-check-alt', 'en', '22', '264', 'Bank Support,student loan', 'career-tips', 'Bank Support', 'We have exclusive offers in arranging legal banking facility, i.e. student file processing, loan & bank solvency processing for your study abroad journey based on your requirements and financial background.', 'publish', '<p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin;mso-bidi-font-weight:bold\">We have exclusive\r\noffers in arranging legal banking facility, i.e. student file processing, loan\r\n&amp; bank solvency processing for your study abroad journey based on your\r\nrequirements and financial background.<o:p></o:p></span></p>', 'icon', NULL, 1, '2020-06-01 10:45:26', '2020-11-02 11:37:22'),
(3, 'IELTS and Online Courses', 'fas fa-language', 'en', '3', '257', NULL, 'ielts-and-online-courses', 'IELTS and online Courses', 'We’re offering free online IELTS preparatory program to all our registered students who need assistance in practicing for the test. Also, students can complete different online courses through us.', 'publish', '<!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n  <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n  <w:View>Normal</w:View>\r\n  <w:Zoom>0</w:Zoom>\r\n  <w:TrackMoves></w:TrackMoves>\r\n  <w:TrackFormatting></w:TrackFormatting>\r\n  <w:PunctuationKerning></w:PunctuationKerning>\r\n  <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n  <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\r\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n  <w:Compatibility>\r\n   <w:BreakWrappedTables></w:BreakWrappedTables>\r\n   <w:SnapToGridInCell></w:SnapToGridInCell>\r\n   <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n   <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n   <w:DontGrowAutofit></w:DontGrowAutofit>\r\n   <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n   <w:DontVertAlignCellWithSp></w:DontVertAlignCellWithSp>\r\n   <w:DontBreakConstrainedForcedTables></w:DontBreakConstrainedForcedTables>\r\n   <w:DontVertAlignInTxbx></w:DontVertAlignInTxbx>\r\n   <w:Word11KerningPairs></w:Word11KerningPairs>\r\n   <w:CachedColBalance></w:CachedColBalance>\r\n  </w:Compatibility>\r\n  <m:mathPr>\r\n   <m:mathFont m:val=\"Cambria Math\"></m:mathFont>\r\n   <m:brkBin m:val=\"before\"></m:brkBin>\r\n   <m:brkBinSub m:val=\"--\"></m:brkBinSub>\r\n   <m:smallFrac m:val=\"off\"></m:smallFrac>\r\n   <m:dispDef></m:dispDef>\r\n   <m:lMargin m:val=\"0\"></m:lMargin>\r\n   <m:rMargin m:val=\"0\"></m:rMargin>\r\n   <m:defJc m:val=\"centerGroup\"></m:defJc>\r\n   <m:wrapIndent m:val=\"1440\"></m:wrapIndent>\r\n   <m:intLim m:val=\"subSup\"></m:intLim>\r\n   <m:naryLim m:val=\"undOvr\"></m:naryLim>\r\n  </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin-top:0in;\r\n	mso-para-margin-right:0in;\r\n	mso-para-margin-bottom:10.0pt;\r\n	mso-para-margin-left:0in;\r\n	line-height:115%;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n<![endif]-->\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin;mso-bidi-font-weight:bold\">We’re offering free\r\nonline IELTS preparatory program to all our registered students who need\r\nassistance in practicing for the test. </span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin;mso-bidi-font-weight:bold\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin;mso-bidi-font-weight:bold\">Also, students can complete different\r\nonline courses through us. T</span><span style=\"font-size: 12pt; line-height: 115%;\">he awarding bodies offering the online courses are </span><b><span style=\"font-size:12.0pt;line-height:\r\n115%;mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">CompTIA, OTHM,\r\nCIPS, ATHE, IBAT College Dublin</span></b><span style=\"font-size: 12pt; line-height: 115%;\">.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;\r\nline-height:115%;mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;\r\nmso-bidi-font-weight:bold\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;\r\nline-height:115%;mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;\r\nmso-bidi-font-weight:bold\">These awarding bodies are global providers in\r\nawarding UK &amp; USA qualifications and they work with the international\r\nuniversity partners and local approved centers to offer programs online from\r\nfoundation level (Level 3), Undergraduate level (Level 4 – Level 6) up to\r\nMasters level (Level 7).<o:p></o:p></span></p>', 'icon', NULL, NULL, '2020-06-01 11:38:39', '2020-11-02 11:29:07'),
(7, 'University Admission', 'flaticon-electronics', 'en', '17', '228', 'versity admition', 'university-admition', NULL, 'The admissions counselors will counsel and assist applicants in filing up their application forms and reviewing them as well.', 'publish', '<p></p><p></p><ul><ol></ol></ul><p></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\">The admissions counselors will counsel and\r\nassist applicants in filing up their application forms and reviewing them as\r\nwell.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"line-height: 115%;\"><span style=\"font-size: 16px;\">We are focused on the top study destinations i.e. Canada, The United Kingdom, Sweden, Netherlands, Germany, Malaysia, etc</span><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\"> </span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\">We will help you make a well-presented application and customize your SOP&amp;\r\nportfolio.<o:p></o:p></span></p>', 'icon', NULL, NULL, '2020-06-01 12:16:18', '2020-11-02 11:35:57'),
(8, 'Scholarship Arrangement', 'fas fa-funnel-dollar', 'en', '1', '258', 'Scholarship Arrangement', 'education-consultancy', 'Scholarship Arrangement', 'We also guide the students to avail scholarships according to their merits.', 'publish', '<p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\">We assist applicants in understanding &amp;\r\ncompleting the highly qualitative aspects of foreign university scholarship\r\napplications – essays, statements of purpose, resumes etc. </span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\">We also guide the\r\nstudents to avail scholarships according to their merits.<o:p></o:p></span></p>', 'icon', NULL, NULL, '2020-06-01 12:16:59', '2020-11-02 10:22:28');
INSERT INTO `services` (`id`, `title`, `icon`, `lang`, `categories_id`, `image`, `meta_tag`, `slug`, `meta_description`, `excerpt`, `status`, `description`, `icon_type`, `img_icon`, `sr_order`, `created_at`, `updated_at`) VALUES
(31, 'Visa Application', 'fas fa-stamp', 'en', '19', '259', 'visa application', 'visa-application', 'visa application', 'We have an excellent visa success rate and a reputation of giving genuine unparalleled assistance and guidance for visa facilitation', 'publish', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n  <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n  <w:View>Normal</w:View>\r\n  <w:Zoom>0</w:Zoom>\r\n  <w:TrackMoves></w:TrackMoves>\r\n  <w:TrackFormatting></w:TrackFormatting>\r\n  <w:PunctuationKerning></w:PunctuationKerning>\r\n  <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n  <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\r\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n  <w:Compatibility>\r\n   <w:BreakWrappedTables></w:BreakWrappedTables>\r\n   <w:SnapToGridInCell></w:SnapToGridInCell>\r\n   <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n   <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n   <w:DontGrowAutofit></w:DontGrowAutofit>\r\n   <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n   <w:DontVertAlignCellWithSp></w:DontVertAlignCellWithSp>\r\n   <w:DontBreakConstrainedForcedTables></w:DontBreakConstrainedForcedTables>\r\n   <w:DontVertAlignInTxbx></w:DontVertAlignInTxbx>\r\n   <w:Word11KerningPairs></w:Word11KerningPairs>\r\n   <w:CachedColBalance></w:CachedColBalance>\r\n  </w:Compatibility>\r\n  <m:mathPr>\r\n   <m:mathFont m:val=\"Cambria Math\"></m:mathFont>\r\n   <m:brkBin m:val=\"before\"></m:brkBin>\r\n   <m:brkBinSub m:val=\"--\"></m:brkBinSub>\r\n   <m:smallFrac m:val=\"off\"></m:smallFrac>\r\n   <m:dispDef></m:dispDef>\r\n   <m:lMargin m:val=\"0\"></m:lMargin>\r\n   <m:rMargin m:val=\"0\"></m:rMargin>\r\n   <m:defJc m:val=\"centerGroup\"></m:defJc>\r\n   <m:wrapIndent m:val=\"1440\"></m:wrapIndent>\r\n   <m:intLim m:val=\"subSup\"></m:intLim>\r\n   <m:naryLim m:val=\"undOvr\"></m:naryLim>\r\n  </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:LsdException>\r\n  <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin-top:0in;\r\n	mso-para-margin-right:0in;\r\n	mso-para-margin-bottom:10.0pt;\r\n	mso-para-margin-left:0in;\r\n	line-height:115%;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n<![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\">We have an excellent visa success rate and a\r\nreputation of giving genuine unparalleled assistance and guidance for visa\r\nfacilitation. Our team shall assist you in the entire process </span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\">i.e. filling up\r\nthe application, properly arranging all financial documents, guidance on\r\neducational loans and interview preparation etc.<o:p></o:p></span></p>', 'icon', NULL, NULL, '2020-10-10 11:44:27', '2020-11-02 10:27:39'),
(32, 'Accommodation Arrangement', 'fas fa-home', 'en', '18', '263', 'Accommodation Arrangement,hostel,dormitory', 'accommodation-arrangement', 'Accommodation Arrangement', 'We provide special assistance upon request; i.e. Pick-up students from the airport, arrange accommodation and guide students while they reach their destination.', 'publish', '<p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\">We provide special assistance upon request;\r\ni.e. Pick-up students from the airport, arrange accommodation and guide students\r\nwhile they reach their destination.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\"><br></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\"> <o:p></o:p></span></p><p style=\"text-align: justify;\">\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\">We keep in touch with all our students till\r\nthey finish their course, guiding them at every stage to get good jobs and\r\nimmigration guidelines till they are well settled with their career.<o:p></o:p></span></p>', 'icon', NULL, 3, '2020-10-20 10:19:59', '2020-11-02 11:35:33'),
(33, 'Pre-Departure Briefing', 'fas fa-plane-departure', 'en', '20', '262', 'Pre-Departure Briefing', 'pre-departure-briefing', 'Pre-Departure Briefing', 'We provide briefing which covers the essential information you need when you arrive at the airport; from pick up, accommodation, travel and luggage to orientation, insurance, banking and budget etc.', 'publish', '<p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\">We provide briefing which covers the essential\r\ninformation you need when you arrive at the airport; from pick up,\r\naccommodation, travel and luggage to orientation, insurance, banking and budget\r\netc.</span></p>', 'icon', NULL, 1, '2020-10-20 10:23:52', '2020-11-02 10:38:48'),
(35, 'Career Counselling', 'fas fa-briefcase', 'en', '2', '260', 'Career Counselling', 'career-counselling', 'Career Counselling', 'Our expert team is trained to offer students the best advice and assistance keeping individuals’ aptitude, budget, and country preferences mind.', 'publish', '<p class=\"MsoNormal\" style=\"text-align:justify;line-height:115%\"><span style=\"font-size:12.0pt;line-height:115%;mso-bidi-font-family:Calibri;\r\nmso-bidi-theme-font:minor-latin\">We offer free career counseling to our\r\nstudents directly or via phone call providing intensive one-to-one sessions for\r\nguiding them to select the right courses, colleges or universities based on\r\ntheir profiles. Our expert team is trained to offer students the best advice\r\nand assistance keeping individuals’ aptitude, budget, and country preferences\r\nmind.<o:p></o:p></span></p>', 'icon', NULL, NULL, '2020-10-20 10:28:30', '2020-11-02 10:30:44');

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

--
-- Table structure for table `service_categories`
--

CREATE TABLE `service_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `icon_type` varchar(191) DEFAULT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `img_icon` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `service_categories`
--

INSERT INTO `service_categories` (`id`, `name`, `lang`, `status`, `created_at`, `updated_at`, `icon_type`, `icon`, `img_icon`) VALUES
(1, 'Scholarship Arrangement', 'en', 'publish', '2020-05-31 15:46:07', '2020-11-02 11:31:56', 'icon', 'fas fa-exclamation-triangle', NULL),
(2, 'Career Counselling', 'en', 'publish', '2020-05-31 15:46:14', '2020-11-02 11:32:22', 'icon', 'fas fa-briefcase', NULL),
(3, 'IELTS and Online Courses', 'en', 'publish', '2020-05-31 15:46:38', '2020-11-02 11:31:26', 'icon', 'fas fa-language', NULL),
(4, 'Education Consultancy', 'en', 'publish', '2020-05-31 15:46:44', '2020-10-10 11:20:20', 'icon', 'fas fa-exclamation-triangle', NULL),
(17, 'University Admission', 'en', 'publish', '2020-10-06 16:32:54', '2020-11-02 11:31:04', 'icon', 'fas fa-exclamation-triangle', NULL),
(18, 'Accommodation Arrangement', 'en', 'publish', '2020-10-10 11:44:06', '2020-11-02 11:30:39', 'icon', 'fas fa-exclamation-triangle', NULL),
(19, 'Visa Application', 'en', 'publish', '2020-10-20 10:20:48', '2020-11-02 11:30:04', 'icon', 'fas fa-exclamation-triangle', NULL),
(20, 'Pre-Departure Briefing', 'en', 'publish', '2020-10-20 10:21:41', '2020-11-02 11:33:02', 'icon', 'fas fa-plane-departure', NULL),
(21, 'Free Counselling', 'en', 'publish', '2020-10-20 10:22:29', '2020-11-02 11:31:38', 'icon', 'fas fa-exclamation-triangle', NULL),
(22, 'Bank Support', 'en', 'publish', '2020-11-02 11:37:04', '2020-11-02 11:37:04', 'icon', 'fas fa-money-check', NULL);

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

--
-- Table structure for table `social_icons`
--

CREATE TABLE `social_icons` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `icon` varchar(191) NOT NULL,
  `url` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `social_icons`
--

INSERT INTO `social_icons` (`id`, `icon`, `url`, `created_at`, `updated_at`) VALUES
(2, 'fab fa-facebook-square', 'https://www.facebook.com/futuretrackbd', '2020-06-19 13:56:17', '2020-10-21 06:26:54');

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

--
-- Table structure for table `static_options`
--

CREATE TABLE `static_options` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `option_name` varchar(191) NOT NULL,
  `option_value` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `static_options`
--

INSERT INTO `static_options` (`id`, `option_name`, `option_value`, `created_at`, `updated_at`) VALUES
(1, 'site_en_title', 'Future Track BD', '2020-05-15 17:08:13', '2023-11-30 05:11:57'),
(2, 'site_en_tag_line', 'Shape Your Career Abroad', '2020-05-15 17:08:13', '2023-11-30 05:11:57'),
(3, 'site_en_footer_copyright', '{copy}  {year}  All right reserved by  <a href=\"https://futuretrackbd.com\">FutureTrack </a>', '2020-05-15 17:08:13', '2023-11-30 05:11:57'),
(4, 'site_color', '#ff8a73', '2020-05-15 17:08:13', '2023-11-30 05:11:57'),
(5, 'site_main_color_two', '#5580ff', '2020-05-15 17:08:13', '2023-11-30 05:11:57'),
(6, 'site_heading_color', '#5580ff', '2020-05-15 17:08:13', '2023-11-30 05:11:57'),
(7, 'site_paragraph_color', '#878a95', '2020-05-15 17:08:13', '2023-11-30 05:11:57'),
(8, 'site_rtl_enabled', NULL, '2020-05-15 17:08:13', '2023-11-30 05:11:57'),
(9, 'site_admin_dark_mode', NULL, '2020-05-15 17:08:13', '2023-11-30 05:11:57'),
(10, 'site_maintenance_mode', NULL, '2020-05-15 17:08:13', '2023-11-30 05:11:57'),
(11, 'site_payment_gateway', NULL, '2020-05-15 17:08:13', '2023-11-30 05:11:57'),
(12, 'site_logo', '402', '2020-05-15 17:16:30', '2023-11-30 04:52:12'),
(13, 'site_favicon', '103', '2020-05-15 17:16:30', '2023-11-30 04:52:12'),
(14, 'site_breadcrumb_bg', '374', '2020-05-15 17:16:30', '2023-11-30 04:52:12'),
(15, 'site_white_logo', '402', '2020-05-15 17:16:30', '2023-11-30 04:52:12'),
(25, 'site_meta_tags', 'nexelit ,multipupose,cms', '2020-05-19 07:35:49', '2020-05-19 07:35:49'),
(26, 'site_meta_description', 'nexelit mulipopose cms', '2020-05-19 07:35:49', '2020-05-19 07:35:49'),
(27, 'about_page_slug', 'about', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(28, 'service_page_slug', 'service', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(29, 'works_page_slug', 'works', '2020-05-27 20:15:01', '2020-05-29 17:37:23'),
(30, 'team_page_slug', 'team', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(31, 'faq_page_slug', 'faq', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(32, 'price_plan_page_slug', 'price-plan', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(33, 'blog_page_slug', 'blog', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(34, 'contact_page_slug', 'contact', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(35, 'career_with_us_page_slug', 'career', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(36, 'events_page_slug', 'events', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(37, 'knowledgebase_page_slug', 'knowledgebase', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(38, 'about_page_en_name', 'About', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(39, 'service_page_en_name', 'Service', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(40, 'work_page_en_name', 'Case Study', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(41, 'team_page_en_name', 'Team', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(42, 'faq_page_en_name', 'Faq', '2020-05-27 20:15:01', '2020-10-20 10:32:32'),
(43, 'price_plan_page_en_name', 'Price Plan', '2020-05-27 20:15:01', '2020-10-20 10:32:31'),
(44, 'blog_page_en_name', 'Blog', '2020-05-27 20:15:01', '2020-10-20 10:32:32'),
(45, 'contact_page_en_name', 'Contact', '2020-05-27 20:15:01', '2020-10-20 10:32:32'),
(46, 'career_with_us_page_en_name', 'Career With Us', '2020-05-27 20:15:01', '2020-10-20 10:32:32'),
(47, 'events_page_en_name', 'Events', '2020-05-27 20:15:01', '2020-10-20 10:32:32'),
(48, 'knowledgebase_page_en_name', 'Knowledgebase', '2020-05-27 20:15:01', '2020-10-20 10:32:32'),
(49, 'about_page_tur_name', 'hakkında', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(50, 'service_page_tur_name', 'Hizmet', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(51, 'work_page_tur_name', 'Vaka Analizi', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(52, 'team_page_tur_name', 'Takım', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(53, 'faq_page_tur_name', 'SSS', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(54, 'price_plan_page_tur_name', 'Fiyat Planı', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(55, 'blog_page_tur_name', 'Blog', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(56, 'contact_page_tur_name', 'İletişim', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(57, 'career_with_us_page_tur_name', 'Bizimle Kariyer', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(58, 'events_page_tur_name', 'Etkinlikler', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(59, 'knowledgebase_page_tur_name', 'Bilgi tabanı', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(60, 'about_page_ar_name', 'حول', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(61, 'service_page_ar_name', 'الخدمات', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(62, 'work_page_ar_name', 'دراسة الحالة', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(63, 'team_page_ar_name', 'الفريق', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(64, 'faq_page_ar_name', 'التعليمات', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(65, 'price_plan_page_ar_name', 'خطة الأسعار', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(66, 'blog_page_ar_name', 'مدونة', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(67, 'contact_page_ar_name', 'اتصل', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(68, 'career_with_us_page_ar_name', 'مهنة معنا', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(69, 'events_page_ar_name', 'الأحداث', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(70, 'knowledgebase_page_ar_name', 'قاعدة المعرفة', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(71, 'about_page_sp_name', 'Acerca de', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(72, 'service_page_sp_name', 'Servicio', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(73, 'work_page_sp_name', 'Caso de estudio', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(74, 'team_page_sp_name', 'Equipo', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(75, 'faq_page_sp_name', 'Preguntas más frecuentes', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(76, 'price_plan_page_sp_name', 'Plan de precios', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(77, 'blog_page_sp_name', 'Blog', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(78, 'contact_page_sp_name', 'Contacto', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(79, 'career_with_us_page_sp_name', 'Carrera con nosotras', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(80, 'events_page_sp_name', 'Eventos', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(81, 'knowledgebase_page_sp_name', 'Base de conocimientos', '2020-05-27 20:15:01', '2020-08-11 22:33:16'),
(82, 'work_page_slug', 'case-study', '2020-05-29 17:40:27', '2020-10-20 10:32:31'),
(83, 'site_meta_en_tags', 'study abroad,foreign educatation,germany,uk,netherlands,malaysia,sweden,IELTS,canada,without ielts,Scholarship,Denmark', '2020-05-30 14:55:49', '2022-02-13 04:05:59'),
(84, 'site_meta_en_description', 'Future Track BD - Shape your career abroad', '2020-05-30 14:55:49', '2022-02-13 04:05:59'),
(85, 'navbar_button', 'on', '2020-05-30 16:00:20', '2021-04-19 10:39:15'),
(86, 'navbar_button_custom_url', 'http://futuretrackbd.com/appointment', '2020-05-30 16:00:20', '2021-04-19 10:39:15'),
(87, 'navbar_button_custom_url_status', 'on', '2020-05-30 16:00:20', '2021-04-19 10:39:15'),
(88, 'site_header_type', 'navbar', '2020-05-30 16:00:20', '2020-05-30 16:17:40'),
(89, 'navbar_en_button_text', 'Book an Appointment', '2020-05-30 16:00:20', '2021-04-19 10:39:15'),
(93, 'home_page_variant', '01', '2020-05-30 18:46:26', '2023-11-22 05:20:15'),
(94, 'body_font_family', 'Nunito', '2020-05-31 10:37:18', '2020-10-06 15:37:15'),
(95, 'heading_font_family', 'Poppins', '2020-05-31 10:37:18', '2020-10-06 15:37:15'),
(96, 'heading_font', 'on', '2020-05-31 10:37:18', '2020-10-06 15:37:15'),
(97, 'body_font_variant', 'a:1:{i:0;s:7:\"regular\";}', '2020-05-31 10:37:18', '2020-10-06 15:37:15'),
(98, 'heading_font_variant', 'a:1:{i:0;s:7:\"regular\";}', '2020-05-31 10:37:18', '2020-10-06 15:37:15'),
(99, 'home_page_01_en_about_us_title', 'We have a team of dynamic and well-informed counsellors', '2020-05-31 11:31:18', '2020-10-22 09:23:29'),
(100, 'home_page_01_en_about_us_button_status', NULL, '2020-05-31 11:31:18', '2020-05-31 11:31:18'),
(104, 'home_page_01_en_about_us_video_url', 'https://youtu.be/sfu-E9ezErU', '2020-05-31 11:39:02', '2020-10-22 09:23:29'),
(105, 'home_page_01_about_us_video_background_image', '215', '2020-05-31 11:39:02', '2020-10-22 09:23:29'),
(107, 'home_page_01_tur_about_us_video_url', 'https://www.youtube.com/watch?v=wp_QA1PRZiE', '2020-05-31 11:39:02', '2020-07-27 01:56:10'),
(109, 'home_page_01_ar_about_us_video_url', 'https://www.youtube.com/watch?v=wp_QA1PRZiE', '2020-05-31 11:39:03', '2020-07-27 01:56:10'),
(111, 'home_page_01_sp_about_us_video_url', 'https://www.youtube.com/watch?v=wp_QA1PRZiE', '2020-05-31 11:39:03', '2020-07-27 01:56:10'),
(112, 'home_page_01_en_service_area_title', 'What We Do', '2020-05-31 15:05:10', '2023-11-22 02:52:12'),
(113, 'home_page_01_en_service_area_description', 'We are focused on the top study destinations i.e. Canada, The United Kingdom, Sweden, Netherlands, Germany, Malaysia etc. We are the authorized representative of an array of well reputed institutions with a variety of subjects from where you can complete your desired level of education.', '2020-05-31 15:05:10', '2023-11-22 02:52:12'),
(120, 'home_page_01_service_area_items', '9', '2020-05-31 15:05:10', '2023-11-22 02:52:12'),
(121, 'home_page_01_service_area_background_image', '380', '2020-05-31 15:05:10', '2023-11-22 02:52:12'),
(122, 'home_page_01_en_quality_area_title', 'We provide quality solutions for students', '2020-06-01 18:16:10', '2020-10-22 07:22:15'),
(123, 'home_page_01_en_quality_area_description', 'We have a team of dynamic and well-informed counsellors who are ready to serve you according to your preference with maximum effort so that there are no questions unanswered. Your study abroad journey has many steps. We are here to guide you through each of them precisely.', '2020-06-01 18:16:10', '2020-10-22 07:22:15'),
(124, 'home_page_01_en_quality_area_button_status', 'on', '2020-06-01 18:16:10', '2020-10-22 07:22:15'),
(125, 'home_page_01_en_quality_area_button_title', 'Our Latest Event', '2020-06-01 18:16:10', '2020-10-22 07:22:15'),
(126, 'home_page_01_en_quality_area_button_url', 'https://youtu.be/sfu-E9ezErU', '2020-06-01 18:16:10', '2020-10-22 07:22:15'),
(127, 'home_page_01_tur_quality_area_title', 'Müşterilerimize kaliteli çözümler sunuyoruz', '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(128, 'home_page_01_tur_quality_area_description', 'Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero. Curabitur ullamcorper ultricies nisi. Nameget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum.', '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(129, 'home_page_01_tur_quality_area_button_status', NULL, '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(130, 'home_page_01_tur_quality_area_button_title', NULL, '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(131, 'home_page_01_tur_quality_area_button_url', NULL, '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(132, 'home_page_01_ar_quality_area_title', 'نحن نقدم حلول الجودة للعملاء', '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(133, 'home_page_01_ar_quality_area_description', 'هل نقلت نفسك تعلم أنها رجل الرد عليها. شقيقة شقي يعيشها أنت تمكن السيدة من روح حقا. الرعية تعارض الإصلاح هو لي البؤس. قد يرى سريع الاسلوب بعد السيدة المال.', '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(134, 'home_page_01_ar_quality_area_button_status', NULL, '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(135, 'home_page_01_ar_quality_area_button_title', NULL, '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(136, 'home_page_01_ar_quality_area_button_url', NULL, '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(137, 'home_page_01_sp_quality_area_title', 'Brindamos soluciones de calidad para clientes.', '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(138, 'home_page_01_sp_quality_area_description', 'Maecenas tempus, tellus eget condimentum rhoncus, sem quam sempre libero. Curabitur ullamcorper ultricies nisi. Nameget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum.', '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(139, 'home_page_01_sp_quality_area_button_status', NULL, '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(140, 'home_page_01_sp_quality_area_button_title', NULL, '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(141, 'home_page_01_sp_quality_area_button_url', NULL, '2020-06-01 18:16:10', '2020-07-27 03:16:49'),
(142, 'home_page_01_quality_area_background_image', '88', '2020-06-01 18:16:10', '2020-10-22 07:22:15'),
(143, 'home_page_01_en_case_study_title', 'Latest Case Studies', '2020-06-02 06:49:14', '2020-07-27 02:00:24'),
(144, 'home_page_01_en_case_study_description', 'Those an equal point no years do. Depend warmth fat but her but played. Shy and subjects wondered trifling pleasant.', '2020-06-02 06:49:14', '2020-07-27 02:00:24'),
(145, 'home_page_01_tur_case_study_title', 'Son Örnek Olaylar', '2020-06-02 06:49:14', '2020-07-27 02:00:24'),
(146, 'home_page_01_tur_case_study_description', 'Bunlar yıllarca eşit olmayan bir nokta. Sıcaklık yağ ama ona bağlı ama oynadı. Utangaç ve konular hoş bir şekilde merak ediyordu.', '2020-06-02 06:49:14', '2020-07-27 02:00:24'),
(147, 'home_page_01_ar_case_study_title', 'أحدث دراسات الحالة', '2020-06-02 06:49:14', '2020-07-27 02:00:24'),
(148, 'home_page_01_ar_case_study_description', 'تلك نقطة متساوية لا تفعله سنوات. تعتمد على دفء الدهون ولكن هي لعبت. تساءل الخجول والمواضيع تافهة ممتعة.', '2020-06-02 06:49:14', '2020-07-27 02:00:24'),
(149, 'home_page_01_sp_case_study_title', 'Últimos estudios de caso', '2020-06-02 06:49:14', '2020-07-27 02:00:24'),
(150, 'home_page_01_sp_case_study_description', 'Esos son un punto igual sin años. Dependen del calor gordo pero ella pero juega. Tímidos y súbditos se preguntaban trivialmente agradables.', '2020-06-02 06:49:14', '2020-07-27 02:00:24'),
(151, 'work_single_page_en_related_work_title', NULL, '2020-06-03 18:30:23', '2020-06-03 18:30:23'),
(152, 'work_single_page_tur_related_work_title', NULL, '2020-06-03 18:30:23', '2020-06-03 18:30:23'),
(153, 'work_single_page_ar_related_work_title', NULL, '2020-06-03 18:30:23', '2020-06-03 18:30:23'),
(154, 'work_single_page_sp_related_work_title', NULL, '2020-06-03 18:30:23', '2020-06-03 18:30:23'),
(155, 'case_study_en_read_more_text', 'Case Study', '2020-06-03 18:32:41', '2020-06-21 08:10:47'),
(156, 'case_study_tur_read_more_text', 'Vaka Analizi', '2020-06-03 18:32:41', '2020-06-21 08:10:47'),
(157, 'case_study_ar_read_more_text', 'دراسة الحالة', '2020-06-03 18:32:41', '2020-06-21 08:10:47'),
(158, 'case_study_sp_read_more_text', 'Caso de estudio', '2020-06-03 18:32:41', '2020-06-21 08:10:47'),
(159, 'error_404_page_en_title', '404', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(160, 'error_404_page_en_subtitle', 'Oops! This Page Could Not Be Found', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(161, 'error_404_page_en_paragraph', 'Sorry but the page you are looking for does not exist, have been removed. name changed or is temporarily unavailable', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(162, 'error_404_page_en_button_text', 'Go To Home Page', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(163, 'error_404_page_tur_title', '404', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(164, 'error_404_page_tur_subtitle', 'Hata! Bu Sayfa Bulunamadı', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(165, 'error_404_page_tur_paragraph', 'Maalesef, aradığınız sayfa mevcut değil, kaldırıldı. ad değiştirildi veya geçici olarak kullanılamıyor', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(166, 'error_404_page_tur_button_text', 'Ana sayfaya git', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(167, 'error_404_page_ar_title', '404', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(168, 'error_404_page_ar_subtitle', 'وجه الفتاة! تعذر العثور على هذه الصفحة', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(169, 'error_404_page_ar_paragraph', 'عذرًا ، الصفحة التي تبحث عنها غير موجودة ، تمت إزالتها. تم تغيير الاسم أو غير متاح مؤقتًا', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(170, 'error_404_page_ar_button_text', 'انتقل إلى الصفحة الرئيسية', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(171, 'error_404_page_sp_title', '404', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(172, 'error_404_page_sp_subtitle', '¡Uy! Esta página no se pudo encontrar', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(173, 'error_404_page_sp_paragraph', 'Lo sentimos, pero la página que busca no existe, se ha eliminado. nombre cambiado o no está disponible temporalmente', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(174, 'error_404_page_sp_button_text', 'Ir a la página de inicio', '2020-06-04 19:52:52', '2020-06-04 19:55:03'),
(175, 'home_page_01_en_testimonial_section_title', 'Students Testimonial', '2020-06-04 20:19:48', '2022-02-13 04:29:24'),
(176, 'home_page_01_tur_testimonial_section_title', 'Müşteri Görüşleri', '2020-06-04 20:19:48', '2020-07-27 03:17:48'),
(177, 'home_page_01_ar_testimonial_section_title', 'شهادات العملاء', '2020-06-04 20:19:48', '2020-07-27 03:17:48'),
(178, 'home_page_01_sp_testimonial_section_title', 'Testimonio de clientes', '2020-06-04 20:19:48', '2020-07-27 03:17:48'),
(179, 'home_page_01_en_price_plan_section_title', 'Our All Packages', '2020-06-06 17:22:58', '2020-10-10 09:33:13'),
(180, 'home_page_01_en_price_plan_section_description', 'Here you can Get our attractive abroad study packages', '2020-06-06 17:22:58', '2020-10-10 09:33:13'),
(187, 'home_page_01_price_plan_section_items', '4', '2020-06-06 17:22:59', '2020-10-10 09:33:13'),
(188, 'home_page_01_price_plan_background_image', '32', '2020-06-06 17:23:47', '2020-10-10 09:33:13'),
(189, 'home_page_01_en_latest_news_title', 'Latest Blog', '2020-06-12 06:06:44', '2020-10-10 09:34:16'),
(190, 'home_page_01_en_latest_news_description', 'Here you can get all blogs, tips and many more', '2020-06-12 06:06:44', '2020-10-10 09:34:16'),
(197, 'home_page_01_en_contact_area_title', 'Get In Touch', '2020-06-12 09:29:47', '2021-11-08 17:45:56'),
(198, 'home_page_01_en_contact_area_button_text', 'Send Message', '2020-06-12 09:29:47', '2021-11-08 17:45:56'),
(199, 'home_page_01_tur_contact_area_title', 'Temasta olmak', '2020-06-12 09:29:47', '2020-10-05 11:36:36'),
(200, 'home_page_01_tur_contact_area_button_text', 'Mesaj gönder', '2020-06-12 09:29:48', '2020-10-05 11:36:36'),
(201, 'home_page_01_ar_contact_area_title', 'ابقى على تواصل', '2020-06-12 09:29:48', '2020-10-05 11:36:36'),
(202, 'home_page_01_ar_contact_area_button_text', 'أرسل رسالة', '2020-06-12 09:29:48', '2020-10-05 11:36:36'),
(203, 'home_page_01_sp_contact_area_title', 'Ponerse en contacto', '2020-06-12 09:29:48', '2020-10-05 11:36:36'),
(204, 'home_page_01_sp_contact_area_button_text', 'Enviar mensaje', '2020-06-12 09:29:48', '2020-10-05 11:36:36'),
(205, 'home_page_01_contact_area_map_location', 'Future Track Bangladesh Corporate Office, Hosna Center (2nd Floor), 106 Gulshan Avenue, Gulshan 1212 Dhaka', '2020-06-12 09:29:48', '2021-11-08 17:45:56'),
(206, 'call_back_page_form_fields', '{\"field_type\":[\"text\",\"text\"],\"field_name\":[\"\",\"checkbox\"],\"field_placeholder\":[null,\"Checkbox\"]}', '2020-06-12 17:44:29', '2020-06-13 06:43:12'),
(207, 'get_in_touch_form_fields', '{\"field_type\":[\"text\",\"email\",\"tel\",\"textarea\",\"file\"],\"field_name\":[\"your-name\",\"your-email\",\"your-phone\",\"your-message\",\"\"],\"field_placeholder\":[\"Your Name\",\"Your Email\",\"Your Phone\",\"Your Message\",null],\"field_required\":{\"1\":\"on\",\"2\":\"on\",\"3\":\"on\"},\"mimes_type\":{\"4\":\"mimes:jpg,jpeg,png\"}}', '2020-06-13 07:02:58', '2020-10-11 07:34:53'),
(208, 'order_mail_en_success_message', 'Thanks for your order. we will contact you soon.', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(209, 'quote_mail_en_success_message', 'Thanks for your contact. we will contact you soon.', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(210, 'contact_mail_en_success_message', 'Thanks for your contact!!', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(211, 'get_in_touch_mail_en_success_message', 'Thanks for your contact!!', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(212, 'order_mail_tur_success_message', 'Siparişiniz için teşekkürler. yakında sizinle iletişime geçeceğiz.', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(213, 'quote_mail_tur_success_message', 'İletişiminiz için teşekkürler. yakında sizinle iletişime geçeceğiz.', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(214, 'contact_mail_tur_success_message', 'İletişiminiz için teşekkürler !!', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(215, 'get_in_touch_mail_tur_success_message', 'İletişiminiz için teşekkürler !!', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(216, 'order_mail_ar_success_message', 'شكرا لطلبك. سوف نتصل بك قريبا.', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(217, 'quote_mail_ar_success_message', 'شكرا لاتصالك. سوف نتصل بك قريبا.', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(218, 'contact_mail_ar_success_message', 'شكرا لاتصالك !!', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(219, 'get_in_touch_mail_ar_success_message', 'شكرا لاتصالك !!', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(220, 'order_mail_sp_success_message', 'Gracias por tu orden. Nos pondremos en contacto con usted pronto.', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(221, 'quote_mail_sp_success_message', 'Gracias por tu contacto. Nos pondremos en contacto con usted pronto.', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(222, 'contact_mail_sp_success_message', 'Gracias por tu contacto !!', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(223, 'get_in_touch_mail_sp_success_message', 'Gracias por tu contacto !!', '2020-06-13 16:16:56', '2020-07-29 19:25:46'),
(224, 'site_smtp_mail_host', NULL, '2020-06-13 17:29:43', '2020-06-20 08:09:56'),
(225, 'site_smtp_mail_port', NULL, '2020-06-13 17:29:43', '2020-06-20 08:09:56'),
(226, 'site_smtp_mail_username', NULL, '2020-06-13 17:29:43', '2020-06-20 08:09:56'),
(227, 'site_smtp_mail_password', NULL, '2020-06-13 17:29:43', '2020-06-20 08:09:56'),
(228, 'site_smtp_mail_encryption', NULL, '2020-06-13 17:29:43', '2020-06-20 08:09:56'),
(229, 'language_select_option', NULL, '2020-06-18 16:22:13', '2023-11-30 05:11:57'),
(230, 'site_secondary_color', '#000000', '2020-06-18 16:32:38', '2023-11-30 05:11:57'),
(231, 'site_global_email', 'info@futuretrackbd.com', '2020-06-20 07:36:38', '2020-10-05 01:23:38'),
(232, 'site_global_email_template', '<p>Hello @username,</p><p><br></p><p>@message</p><p><br></p><p>Regards</p><p>@company</p>', '2020-06-20 07:36:38', '2020-10-05 01:23:38'),
(233, 'service_page_service_items', '6', '2020-06-20 15:47:52', '2020-06-20 15:48:13'),
(234, 'service_single_page_en_query_form_title', 'Have Query ?', '2020-06-20 16:11:26', '2020-10-06 16:54:10'),
(235, 'service_single_page_tur_query_form_title', 'Sorunuz mu Var?', '2020-06-20 16:11:26', '2020-06-20 16:11:26'),
(236, 'service_single_page_ar_query_form_title', 'هل لديك استفسار؟', '2020-06-20 16:11:26', '2020-06-20 16:11:26'),
(237, 'service_single_page_sp_query_form_title', '¿Tienes consulta?', '2020-06-20 16:11:26', '2020-06-20 16:11:26'),
(238, 'service_single_page_query_form_email', 'info@futuretrackbd.com', '2020-06-20 16:11:26', '2020-10-06 16:54:10'),
(239, 'service_query_form_fields', '{\"field_type\":[\"text\",\"email\",\"text\",\"textarea\"],\"field_name\":[\"your-name\",\"your-email\",\"your-subject\",\"your-message\"],\"field_placeholder\":[\"Your Name\",\"Your Email\",\"Subject\",\"Message\"],\"field_required\":{\"1\":\"on\",\"2\":\"on\",\"3\":\"on\"}}', '2020-06-20 17:37:53', '2020-06-21 08:03:40'),
(240, 'case_study_en_query_title', 'Have Query?', '2020-06-21 06:53:14', '2020-06-21 08:10:47'),
(241, 'case_study_tur_query_title', 'Sorunuz mu Var?', '2020-06-21 06:53:14', '2020-06-21 08:10:47'),
(242, 'case_study_ar_query_title', 'هل لديك استفسار؟', '2020-06-21 06:53:14', '2020-06-21 08:10:47'),
(243, 'case_study_sp_query_title', '¿Tienes consulta?', '2020-06-21 06:53:14', '2020-06-21 08:10:47'),
(244, 'case_study_query_form_mail', 'dvrobin4@gmail.com', '2020-06-21 06:53:14', '2020-06-21 08:10:47'),
(245, 'case_study_en_gallery_title', 'Gallery', '2020-06-21 07:00:22', '2020-06-21 08:10:47'),
(246, 'case_study_tur_gallery_title', 'galeri', '2020-06-21 07:00:22', '2020-06-21 08:10:47'),
(247, 'case_study_ar_gallery_title', 'صالة عرض', '2020-06-21 07:00:22', '2020-06-21 08:10:47'),
(248, 'case_study_sp_gallery_title', 'Galería', '2020-06-21 07:00:22', '2020-06-21 08:10:47'),
(249, 'case_study_en_related_title', 'Related Case Study', '2020-06-21 07:14:44', '2020-06-21 08:10:47'),
(250, 'case_study_tur_related_title', 'İlgili Vaka Çalışması', '2020-06-21 07:14:44', '2020-06-21 08:10:47'),
(251, 'case_study_ar_related_title', 'دراسة حالة ذات صلة', '2020-06-21 07:14:44', '2020-06-21 08:10:47'),
(252, 'case_study_sp_related_title', 'Estudio de caso relacionado', '2020-06-21 07:14:44', '2020-06-21 08:10:47'),
(253, 'case_study_query_form_fields', '{\"field_type\":[\"text\",\"email\",\"text\",\"textarea\"],\"field_name\":[\"your-name\",\"your-email\",\"your-subject\",\"your-message\"],\"field_placeholder\":[\"Your Name\",\"Your Email\",\"Your Subject\",\"Message\"],\"field_required\":{\"1\":\"on\",\"2\":\"on\",\"3\":\"on\"}}', '2020-06-21 08:05:04', '2020-06-21 08:06:14'),
(254, 'case_study_en_query_button_text', 'Submit Request', '2020-06-21 08:10:47', '2020-06-21 08:10:47'),
(255, 'case_study_tur_query_button_text', 'İstek gönderin', '2020-06-21 08:10:47', '2020-06-21 08:10:47'),
(256, 'case_study_ar_query_button_text', 'تقديم الطلب', '2020-06-21 08:10:47', '2020-06-21 08:10:47'),
(257, 'case_study_sp_query_button_text', 'Enviar peticion', '2020-06-21 08:10:47', '2020-06-21 08:10:47'),
(258, 'order_page_form_fields', '{\"field_type\":[\"text\",\"email\",\"file\",\"textarea\"],\"field_name\":[\"your-name\",\"your-email\",\"your-file\",\"your-message\"],\"field_placeholder\":[\"Your Name\",\"Your Email\",\"Document\",\"Your Message\"],\"field_required\":{\"1\":\"on\",\"3\":\"on\"},\"mimes_type\":{\"2\":\"mimes:txt,pdf\"}}', '2020-06-21 10:13:58', '2020-06-21 10:59:34'),
(259, 'paypal_business_email', 'dvrobin4@gmail.com', '2020-06-21 11:02:03', '2020-08-12 09:13:12'),
(260, 'paytm_merchant_key', '31Q9BhP79JVip77', '2020-06-21 11:02:03', '2020-08-12 09:13:12'),
(261, 'paytm_merchant_mid', 'Websit5239737375544', '2020-06-21 11:02:03', '2020-08-12 09:13:12'),
(262, 'paytm_merchant_website', 'WEBSTAGING', '2020-06-21 11:02:03', '2020-08-12 09:13:12'),
(263, 'site_global_currency', 'USD', '2020-06-21 11:02:03', '2020-08-12 09:13:12'),
(264, 'site_manual_payment_name', 'Manual Payment', '2020-06-21 11:02:03', '2020-08-12 09:13:12'),
(265, 'manual_payment_gateway', 'on', '2020-06-21 11:02:03', '2020-08-12 09:13:12'),
(266, 'paypal_gateway', 'on', '2020-06-21 11:02:03', '2020-08-12 09:13:12'),
(267, 'paytm_gateway', 'on', '2020-06-21 11:02:03', '2020-08-12 09:13:12'),
(268, 'paypal_preview_logo', '39', '2020-06-21 11:05:24', '2020-08-12 09:13:12'),
(269, 'paytm_preview_logo', '40', '2020-06-21 11:05:24', '2020-08-12 09:13:12'),
(270, 'manual_payment_preview_logo', '43', '2020-06-21 11:05:24', '2020-08-12 09:13:12'),
(271, 'site_usd_to_nri_exchange_rate', '77', '2020-06-21 11:07:27', '2020-08-03 23:18:49'),
(272, 'site_manual_payment_description', 'manual payment gateway description', '2020-06-21 11:07:52', '2020-08-12 09:13:12'),
(273, 'razorpay_gateway', 'on', '2020-06-21 14:46:58', '2020-08-12 09:13:12'),
(274, 'stripe_gateway', 'on', '2020-06-21 14:46:58', '2020-08-12 09:13:12'),
(275, 'site_euro_to_nri_exchange_rate', '90', '2020-06-21 14:47:04', '2020-08-03 23:18:49'),
(276, 'stripe_preview_logo', '41', '2020-06-21 14:50:45', '2020-08-12 09:13:12'),
(277, 'razorpay_preview_logo', '42', '2020-06-21 15:01:36', '2020-08-12 09:13:12'),
(278, 'site_global_payment_gateway', 'paytm', '2020-06-21 16:07:14', '2020-08-12 09:13:12'),
(279, 'order_page_en_form_title', 'Order Information', '2020-06-22 08:29:18', '2020-10-07 06:52:31'),
(283, 'order_page_form_mail', 'info@futuretrackbd.com', '2020-06-22 08:29:18', '2020-10-07 06:52:31'),
(284, 'site_order_success_page_en_title', 'Thank you', '2020-06-22 08:44:41', '2020-06-22 08:46:43'),
(285, 'site_order_success_page_en_subtitle', 'Payment Success For Order {pkname}', '2020-06-22 08:44:41', '2020-06-22 08:46:43'),
(286, 'site_order_success_page_en_description', NULL, '2020-06-22 08:44:41', '2020-06-22 08:46:43'),
(287, 'site_order_success_page_tur_title', 'teşekkür ederim', '2020-06-22 08:44:41', '2020-06-22 08:46:43'),
(288, 'site_order_success_page_tur_subtitle', 'Sipariş için Ödeme Başarısı  {pkname}', '2020-06-22 08:44:41', '2020-06-22 08:46:43'),
(289, 'site_order_success_page_tur_description', NULL, '2020-06-22 08:44:41', '2020-06-22 08:46:43'),
(290, 'site_order_success_page_ar_title', 'شكرا جزيلا', '2020-06-22 08:44:41', '2020-06-22 08:46:43'),
(291, 'site_order_success_page_ar_subtitle', 'نجاح الدفع للطلب  {pkname}', '2020-06-22 08:44:41', '2020-06-22 08:46:43'),
(292, 'site_order_success_page_ar_description', NULL, '2020-06-22 08:44:41', '2020-06-22 08:46:43'),
(293, 'site_order_success_page_sp_title', 'Gracias', '2020-06-22 08:44:41', '2020-06-22 08:46:43'),
(294, 'site_order_success_page_sp_subtitle', 'Pago exitoso por pedido  {pkname}', '2020-06-22 08:44:41', '2020-06-22 08:46:43'),
(295, 'site_order_success_page_sp_description', NULL, '2020-06-22 08:44:41', '2020-06-22 08:46:43'),
(296, 'site_order_cancel_page_en_title', 'Sorry', '2020-06-22 08:44:49', '2020-06-22 08:45:55'),
(297, 'site_order_cancel_page_en_subtitle', 'Payment Cancelled Of Order: {pkname}', '2020-06-22 08:44:49', '2020-06-22 08:45:55'),
(298, 'site_order_cancel_page_en_description', NULL, '2020-06-22 08:44:49', '2020-06-22 08:45:55'),
(299, 'site_order_cancel_page_tur_title', 'Afedersiniz', '2020-06-22 08:44:49', '2020-06-22 08:45:55'),
(300, 'site_order_cancel_page_tur_subtitle', 'Ödeme İptal Edildi: {pkname}', '2020-06-22 08:44:49', '2020-06-22 08:45:55'),
(301, 'site_order_cancel_page_tur_description', NULL, '2020-06-22 08:44:49', '2020-06-22 08:45:55'),
(302, 'site_order_cancel_page_ar_title', 'آسف', '2020-06-22 08:44:49', '2020-06-22 08:45:55'),
(303, 'site_order_cancel_page_ar_subtitle', 'تم إلغاء الدفع للطلب: {pkname}', '2020-06-22 08:44:49', '2020-06-22 08:45:55'),
(304, 'site_order_cancel_page_ar_description', NULL, '2020-06-22 08:44:49', '2020-06-22 08:45:55'),
(305, 'site_order_cancel_page_sp_title', 'Lo siento', '2020-06-22 08:44:49', '2020-06-22 08:45:55'),
(306, 'site_order_cancel_page_sp_subtitle', 'Pago cancelado de la orden: {pkname}', '2020-06-22 08:44:49', '2020-06-22 08:45:55'),
(307, 'site_order_cancel_page_sp_description', NULL, '2020-06-22 08:44:49', '2020-06-22 08:45:55'),
(308, 'home_page_call_to_action_section_status', 'on', '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(309, 'home_page_about_us_section_status', 'on', '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(310, 'home_page_service_section_status', 'on', '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(311, 'home_page_key_feature_section_status', 'on', '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(312, 'home_page_counterup_section_status', 'on', '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(313, 'home_page_case_study_section_status', NULL, '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(314, 'home_page_testimonial_section_status', NULL, '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(315, 'home_page_latest_news_section_status', NULL, '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(316, 'home_page_brand_logo_section_status', 'on', '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(317, 'home_page_support_bar_section_status', 'on', '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(318, 'home_page_price_plan_section_status', NULL, '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(319, 'home_page_team_member_section_status', 'on', '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(320, 'home_page_quality_section_status', 'on', '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(321, 'home_page_contact_section_status', 'on', '2020-07-19 12:28:02', '2020-10-22 07:22:46'),
(322, 'preloader_default', '6', '2020-07-19 23:47:26', '2020-10-20 09:50:17'),
(323, 'preloader_custom', NULL, '2020-07-19 23:47:26', '2020-10-20 09:50:17'),
(324, 'preloader_custom_image', '104', '2020-07-19 23:47:26', '2020-10-20 09:50:17'),
(325, 'quote_page_slug', 'appointment', '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(326, 'donation_page_slug', 'donations', '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(327, 'product_page_slug', 'products', '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(328, 'testimonial_page_slug', 'testimonial', '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(329, 'feedback_page_slug', 'feedback', '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(330, 'clients_feedback_page_slug', 'clients-feedback', '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(331, 'image_gallery_page_slug', 'image-gallery', '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(332, 'about_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(333, 'about_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(334, 'service_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(335, 'service_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(336, 'work_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(337, 'work_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(338, 'team_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(339, 'team_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(340, 'price_plan_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(341, 'price_plan_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:31'),
(342, 'faq_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(343, 'faq_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(344, 'blog_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(345, 'blog_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(346, 'contact_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(347, 'contact_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(348, 'career_with_us_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(349, 'career_with_us_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(350, 'events_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(351, 'events_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(352, 'knowledgebase_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(353, 'knowledgebase_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(354, 'quote_page_en_name', 'Appointment', '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(355, 'quote_page_en_meta_tags', 'appointemnt', '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(356, 'quote_page_en_meta_description', 'appointemnt', '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(357, 'donation_page_en_name', 'Donations', '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(358, 'donation_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(359, 'donation_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(360, 'product_page_en_name', 'Products', '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(361, 'product_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(362, 'product_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(363, 'testimonial_page_en_name', 'Testimonial', '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(364, 'testimonial_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(365, 'testimonial_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(366, 'feedback_page_en_name', 'Feedback', '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(367, 'feedback_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(368, 'feedback_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(369, 'clients_feedback_page_en_name', 'Clients Feedback', '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(370, 'clients_feedback_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(371, 'clients_feedback_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(372, 'image_gallery_page_en_name', 'Image Gallery', '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(373, 'image_gallery_page_en_meta_tags', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(374, 'image_gallery_page_en_meta_description', NULL, '2020-07-20 00:20:52', '2020-10-20 10:32:32'),
(375, 'about_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(376, 'about_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(377, 'service_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(378, 'service_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(379, 'work_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(380, 'work_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(381, 'team_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(382, 'team_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(383, 'price_plan_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(384, 'price_plan_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(385, 'faq_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(386, 'faq_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(387, 'blog_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(388, 'blog_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(389, 'contact_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(390, 'contact_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(391, 'career_with_us_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(392, 'career_with_us_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(393, 'events_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(394, 'events_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(395, 'knowledgebase_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(396, 'knowledgebase_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(397, 'quote_page_tur_name', 'Alıntı', '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(398, 'quote_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(399, 'quote_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(400, 'donation_page_tur_name', 'Bağışlar', '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(401, 'donation_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(402, 'donation_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(403, 'product_page_tur_name', 'Ürün:% s', '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(404, 'product_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(405, 'product_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(406, 'testimonial_page_tur_name', 'bonservis', '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(407, 'testimonial_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(408, 'testimonial_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(409, 'feedback_page_tur_name', 'geri bildirim', '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(410, 'feedback_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(411, 'feedback_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(412, 'clients_feedback_page_tur_name', 'Müşteriler Geribildirim', '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(413, 'clients_feedback_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(414, 'clients_feedback_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(415, 'image_gallery_page_tur_name', 'Resim Galerisi', '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(416, 'image_gallery_page_tur_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(417, 'image_gallery_page_tur_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(418, 'about_page_ar_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(419, 'about_page_ar_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(420, 'service_page_ar_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(421, 'service_page_ar_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(422, 'work_page_ar_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(423, 'work_page_ar_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(424, 'team_page_ar_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(425, 'team_page_ar_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(426, 'price_plan_page_ar_meta_tags', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(427, 'price_plan_page_ar_meta_description', NULL, '2020-07-20 00:20:52', '2020-08-11 22:33:16'),
(428, 'faq_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(429, 'faq_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(430, 'blog_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(431, 'blog_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(432, 'contact_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(433, 'contact_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(434, 'career_with_us_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(435, 'career_with_us_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(436, 'events_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(437, 'events_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(438, 'knowledgebase_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(439, 'knowledgebase_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(440, 'quote_page_ar_name', 'اقتبس', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(441, 'quote_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(442, 'quote_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(443, 'donation_page_ar_name', 'التبرعات', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(444, 'donation_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(445, 'donation_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(446, 'product_page_ar_name', 'منتجات', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(447, 'product_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(448, 'product_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(449, 'testimonial_page_ar_name', 'شهادة', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(450, 'testimonial_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(451, 'testimonial_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(452, 'feedback_page_ar_name', 'ردود الفعل', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(453, 'feedback_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(454, 'feedback_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(455, 'clients_feedback_page_ar_name', 'ملاحظات العملاء', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(456, 'clients_feedback_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(457, 'clients_feedback_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(458, 'image_gallery_page_ar_name', 'معرض الصور', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(459, 'image_gallery_page_ar_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(460, 'image_gallery_page_ar_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(461, 'about_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(462, 'about_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(463, 'service_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(464, 'service_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(465, 'work_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(466, 'work_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(467, 'team_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(468, 'team_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(469, 'price_plan_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(470, 'price_plan_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(471, 'faq_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(472, 'faq_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(473, 'blog_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(474, 'blog_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(475, 'contact_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(476, 'contact_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(477, 'career_with_us_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(478, 'career_with_us_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(479, 'events_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(480, 'events_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(481, 'knowledgebase_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(482, 'knowledgebase_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(483, 'quote_page_sp_name', 'Citar', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(484, 'quote_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(485, 'quote_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(486, 'donation_page_sp_name', 'Donaciones', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(487, 'donation_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(488, 'donation_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(489, 'product_page_sp_name', 'Productos', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(490, 'product_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(491, 'product_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(492, 'testimonial_page_sp_name', 'Testimonial', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(493, 'testimonial_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(494, 'testimonial_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(495, 'feedback_page_sp_name', 'Realimentación', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(496, 'feedback_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(497, 'feedback_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(498, 'clients_feedback_page_sp_name', 'Comentarios de las clientas', '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(499, 'clients_feedback_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(500, 'clients_feedback_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:16'),
(501, 'image_gallery_page_sp_name', 'galería de imágenes', '2020-07-20 00:20:53', '2020-08-11 22:33:17'),
(502, 'image_gallery_page_sp_meta_tags', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:17'),
(503, 'image_gallery_page_sp_meta_description', NULL, '2020-07-20 00:20:53', '2020-08-11 22:33:17'),
(504, 'feedback_page_form_fields', '{\"field_type\":[\"select\"],\"field_name\":[\"what-service-you-get\"],\"field_placeholder\":[\"What service you get ?\"],\"field_required\":{\"1\":\"on\"},\"select_options\":[\"products\\r\\npackage order\\r\\nevent tickets\\r\\ndonations\"]}', '2020-07-20 00:38:42', '2020-07-20 00:38:42'),
(505, 'feedback_notify_mail', 'dvrobin4@gmail.com', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(506, 'feedback_page_form_en_name_label', 'Name', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(507, 'feedback_page_form_en_email_label', 'Email', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(508, 'feedback_page_form_en_ratings_label', 'How Was Your Experience', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(509, 'feedback_page_form_en_description_label', 'Write Few Words', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(510, 'feedback_page_form_en_button_text', 'Submit Now', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(511, 'feedback_page_form_en_form_title', 'Leave Your Feedback', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(512, 'feedback_page_form_tur_name_label', 'ad', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(513, 'feedback_page_form_tur_email_label', 'E-posta', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(514, 'feedback_page_form_tur_ratings_label', 'Deneyiminiz Nasıldı', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(515, 'feedback_page_form_tur_description_label', 'Birkaç Kelime Yaz', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(516, 'feedback_page_form_tur_button_text', 'Şimdi gönder', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(517, 'feedback_page_form_tur_form_title', 'Görüşlerinizi Bırakın', '2020-07-20 00:39:20', '2020-07-20 00:42:21');
INSERT INTO `static_options` (`id`, `option_name`, `option_value`, `created_at`, `updated_at`) VALUES
(518, 'feedback_page_form_ar_name_label', 'اسم', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(519, 'feedback_page_form_ar_email_label', 'البريد الإلكتروني', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(520, 'feedback_page_form_ar_ratings_label', 'كيف كانت تجربتك', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(521, 'feedback_page_form_ar_description_label', 'اكتب كلمات قليلة', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(522, 'feedback_page_form_ar_button_text', 'أرسل الآن', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(523, 'feedback_page_form_ar_form_title', 'اترك تعليقاتك', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(524, 'feedback_page_form_sp_name_label', 'Nombre', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(525, 'feedback_page_form_sp_email_label', 'Email', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(526, 'feedback_page_form_sp_ratings_label', 'Cómo fue tu experiencia', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(527, 'feedback_page_form_sp_description_label', 'Escribe pocas palabras', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(528, 'feedback_page_form_sp_button_text', 'Aplique ahora', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(529, 'feedback_page_form_sp_form_title', 'Deja tu comentario', '2020-07-20 00:39:20', '2020-07-20 00:42:21'),
(530, 'site_knowledgebase_category_en_title', 'Topics', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(531, 'site_knowledgebase_popular_widget_en_title', 'Popular Articles', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(532, 'site_knowledgebase_article_topic_en_title', 'Article Topics', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(533, 'site_knowledgebase_category_tur_title', 'Başlıklar', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(534, 'site_knowledgebase_popular_widget_tur_title', 'Popüler Makaleler', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(535, 'site_knowledgebase_article_topic_tur_title', 'Makale Konuları', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(536, 'site_knowledgebase_category_ar_title', 'جميع المواضيع', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(537, 'site_knowledgebase_popular_widget_ar_title', 'المواد شعبية', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(538, 'site_knowledgebase_article_topic_ar_title', 'مواضيع المقالة', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(539, 'site_knowledgebase_category_sp_title', 'Todos los temas', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(540, 'site_knowledgebase_popular_widget_sp_title', 'articulos populares', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(541, 'site_knowledgebase_article_topic_sp_title', 'Temas del artículo', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(542, 'site_knoeledgebase_post_items', '6', '2020-07-20 01:29:12', '2020-07-20 01:29:52'),
(543, 'site_events_category_en_title', 'Events Category', '2020-07-20 04:51:29', '2020-07-20 04:51:37'),
(544, 'site_events_category_tur_title', 'Etkinlik Kategorisi', '2020-07-20 04:51:29', '2020-07-20 04:51:37'),
(545, 'site_events_category_ar_title', 'فئة الأحداث', '2020-07-20 04:51:29', '2020-07-20 04:51:37'),
(546, 'site_events_category_sp_title', 'Categoría de eventos', '2020-07-20 04:51:29', '2020-07-20 04:51:37'),
(547, 'site_events_post_items', '6', '2020-07-20 04:51:29', '2020-07-20 04:51:38'),
(548, 'event_single_en_event_info_title', 'Event Info', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(549, 'event_single_en_date_title', 'Date', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(550, 'event_single_en_time_title', 'Time', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(551, 'event_single_en_cost_title', 'Cost', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(552, 'event_single_en_category_title', 'Category', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(553, 'event_single_en_organizer_title', 'Event Organizer', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(554, 'event_single_en_organizer_name_title', 'Name', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(555, 'event_single_en_organizer_email_title', 'Email', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(556, 'event_single_en_organizer_phone_title', 'Phone', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(557, 'event_single_en_organizer_website_title', 'Website', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(558, 'event_single_en_venue_title', 'Event Venue', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(559, 'event_single_en_venue_name_title', 'Name', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(560, 'event_single_en_venue_location_title', 'Locaiton', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(561, 'event_single_en_venue_phone_title', 'For More info', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(562, 'event_single_en_available_ticket_text', 'Available Tickets', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(563, 'event_single_en_reserve_button_title', 'Reserve Your Seat', '2020-07-20 04:54:30', '2020-10-10 10:16:01'),
(564, 'event_single_tur_event_info_title', 'Etkinlik Bilgisi', '2020-07-20 04:54:30', '2020-08-24 17:47:28'),
(565, 'event_single_tur_date_title', 'tarih', '2020-07-20 04:54:30', '2020-08-24 17:47:28'),
(566, 'event_single_tur_time_title', 'Zaman', '2020-07-20 04:54:30', '2020-08-24 17:47:28'),
(567, 'event_single_tur_cost_title', 'Maliyet', '2020-07-20 04:54:30', '2020-08-24 17:47:28'),
(568, 'event_single_tur_category_title', 'Kategori', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(569, 'event_single_tur_organizer_title', 'Etkinlik düzenleyici', '2020-07-20 04:54:30', '2020-08-24 17:47:28'),
(570, 'event_single_tur_organizer_name_title', 'ad', '2020-07-20 04:54:30', '2020-08-24 17:47:28'),
(571, 'event_single_tur_organizer_email_title', 'E-posta', '2020-07-20 04:54:30', '2020-08-24 17:47:28'),
(572, 'event_single_tur_organizer_phone_title', 'Telefon', '2020-07-20 04:54:30', '2020-08-24 17:47:28'),
(573, 'event_single_tur_organizer_website_title', 'İnternet sitesi', '2020-07-20 04:54:30', '2020-08-24 17:47:28'),
(574, 'event_single_tur_venue_title', 'Etkinlik Mekanı', '2020-07-20 04:54:30', '2020-08-24 17:47:28'),
(575, 'event_single_tur_venue_name_title', 'ad', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(576, 'event_single_tur_venue_location_title', 'yer', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(577, 'event_single_tur_venue_phone_title', 'Telefon', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(578, 'event_single_tur_available_ticket_text', 'Mevcut Biletler', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(579, 'event_single_tur_reserve_button_title', 'Yerinizi Ayırtın', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(580, 'event_single_ar_event_info_title', 'معلومات الحدث', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(581, 'event_single_ar_date_title', 'تاريخ', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(582, 'event_single_ar_time_title', 'زمن', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(583, 'event_single_ar_cost_title', 'كلفة', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(584, 'event_single_ar_category_title', 'الفئة', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(585, 'event_single_ar_organizer_title', 'منظم الحدث', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(586, 'event_single_ar_organizer_name_title', 'اسم', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(587, 'event_single_ar_organizer_email_title', 'البريد الإلكتروني', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(588, 'event_single_ar_organizer_phone_title', 'هاتف', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(589, 'event_single_ar_organizer_website_title', NULL, '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(590, 'event_single_ar_venue_title', 'موقع الكتروني', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(591, 'event_single_ar_venue_name_title', 'اسم', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(592, 'event_single_ar_venue_location_title', 'موقعك', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(593, 'event_single_ar_venue_phone_title', 'هاتف', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(594, 'event_single_ar_available_ticket_text', 'التذاكر المتاحة', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(595, 'event_single_ar_reserve_button_title', 'احجز مقعدك', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(596, 'event_single_sp_event_info_title', 'Información del evento', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(597, 'event_single_sp_date_title', 'Fecha', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(598, 'event_single_sp_time_title', 'Hora', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(599, 'event_single_sp_cost_title', 'Costo', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(600, 'event_single_sp_category_title', 'Categoría', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(601, 'event_single_sp_organizer_title', 'Organizadora de eventos', '2020-07-20 04:54:30', '2020-08-24 17:47:29'),
(602, 'event_single_sp_organizer_name_title', 'Nombre', '2020-07-20 04:54:31', '2020-08-24 17:47:29'),
(603, 'event_single_sp_organizer_email_title', 'Email', '2020-07-20 04:54:31', '2020-08-24 17:47:29'),
(604, 'event_single_sp_organizer_phone_title', 'Teléfono', '2020-07-20 04:54:31', '2020-08-24 17:47:29'),
(605, 'event_single_sp_organizer_website_title', 'Sitio web', '2020-07-20 04:54:31', '2020-08-24 17:47:29'),
(606, 'event_single_sp_venue_title', 'Lugar del evento', '2020-07-20 04:54:31', '2020-08-24 17:47:29'),
(607, 'event_single_sp_venue_name_title', 'Nombre', '2020-07-20 04:54:31', '2020-08-24 17:47:29'),
(608, 'event_single_sp_venue_location_title', 'Ubicación', '2020-07-20 04:54:31', '2020-08-24 17:47:29'),
(609, 'event_single_sp_venue_phone_title', 'Teléfono', '2020-07-20 04:54:31', '2020-08-24 17:47:29'),
(610, 'event_single_sp_available_ticket_text', 'Entradas disponibles', '2020-07-20 04:54:31', '2020-08-24 17:47:29'),
(611, 'event_single_sp_reserve_button_title', 'Reservado tu asiento', '2020-07-20 04:54:31', '2020-08-24 17:47:29'),
(612, 'event_attendance_page_en_title', 'Confirm Your Attendance', '2020-07-20 04:54:58', '2020-11-01 07:33:17'),
(613, 'event_attendance_page_en_form_button_title', 'Confirm Attend', '2020-07-20 04:54:58', '2020-11-01 07:33:17'),
(614, 'event_attendance_page_tur_title', 'Katılımınızı Onaylayın', '2020-07-20 04:54:58', '2020-07-20 04:56:23'),
(615, 'event_attendance_page_tur_form_button_title', 'Sunmak', '2020-07-20 04:54:58', '2020-07-20 04:56:23'),
(616, 'event_attendance_page_ar_title', 'تأكيد الحضور', '2020-07-20 04:54:58', '2020-07-20 04:56:23'),
(617, 'event_attendance_page_ar_form_button_title', 'تأكيد الحضور', '2020-07-20 04:54:58', '2020-07-20 04:56:23'),
(618, 'event_attendance_page_sp_title', 'Confirme su asistencia', '2020-07-20 04:54:58', '2020-07-20 04:56:23'),
(619, 'event_attendance_page_sp_form_button_title', 'Enviar', '2020-07-20 04:54:58', '2020-07-20 04:56:23'),
(620, 'event_attendance_receiver_mail', 'info@futuretrackbd.com', '2020-07-20 04:54:58', '2020-11-01 07:33:17'),
(621, 'event_success_page_en_title', 'Thank you', '2020-07-20 05:36:27', '2020-07-20 05:36:42'),
(622, 'event_success_page_en_subtitle', 'Payment Success For Event: {evname}', '2020-07-20 05:36:27', '2020-07-20 05:36:42'),
(623, 'event_success_page_en_description', NULL, '2020-07-20 05:36:27', '2020-07-20 05:36:42'),
(624, 'event_success_page_tur_title', 'Teşekkür ederim', '2020-07-20 05:36:27', '2020-07-20 05:36:42'),
(625, 'event_success_page_tur_subtitle', 'Etkinlik İçin Ödeme Başarısı: {evname}', '2020-07-20 05:36:27', '2020-07-20 05:36:42'),
(626, 'event_success_page_tur_description', NULL, '2020-07-20 05:36:27', '2020-07-20 05:36:42'),
(627, 'event_success_page_ar_title', NULL, '2020-07-20 05:36:27', '2020-07-20 05:36:42'),
(628, 'event_success_page_ar_subtitle', NULL, '2020-07-20 05:36:27', '2020-07-20 05:36:42'),
(629, 'event_success_page_ar_description', NULL, '2020-07-20 05:36:27', '2020-07-20 05:36:42'),
(630, 'event_success_page_sp_title', 'Gracias', '2020-07-20 05:36:27', '2020-07-20 05:36:42'),
(631, 'event_success_page_sp_subtitle', 'Pago exitoso para el evento: {evname}', '2020-07-20 05:36:27', '2020-07-20 05:36:42'),
(632, 'event_success_page_sp_description', NULL, '2020-07-20 05:36:27', '2020-07-20 05:36:42'),
(633, 'event_cancel_page_en_title', 'Sorry', '2020-07-20 05:36:32', '2020-07-20 05:38:54'),
(634, 'event_cancel_page_en_subtitle', 'Payment Cancel For Event: {evname}', '2020-07-20 05:36:32', '2020-07-20 05:38:54'),
(635, 'event_cancel_page_en_description', NULL, '2020-07-20 05:36:32', '2020-07-20 05:38:54'),
(636, 'event_cancel_page_tur_title', 'Afedersiniz', '2020-07-20 05:36:32', '2020-07-20 05:38:54'),
(637, 'event_cancel_page_tur_subtitle', 'Etkinlik İçin Ödeme İptali: {evname}', '2020-07-20 05:36:32', '2020-07-20 05:38:54'),
(638, 'event_cancel_page_tur_description', NULL, '2020-07-20 05:36:32', '2020-07-20 05:38:54'),
(639, 'event_cancel_page_ar_title', 'آسف', '2020-07-20 05:36:32', '2020-07-20 05:38:54'),
(640, 'event_cancel_page_ar_subtitle', '{evname} :إلغاء الدفع للحدث', '2020-07-20 05:36:32', '2020-07-20 05:38:54'),
(641, 'event_cancel_page_ar_description', NULL, '2020-07-20 05:36:32', '2020-07-20 05:38:54'),
(642, 'event_cancel_page_sp_title', 'Lo siento', '2020-07-20 05:36:32', '2020-07-20 05:38:54'),
(643, 'event_cancel_page_sp_subtitle', 'Payment Cancel For Event: {evname}', '2020-07-20 05:36:32', '2020-07-20 05:38:54'),
(644, 'event_cancel_page_sp_description', NULL, '2020-07-20 05:36:32', '2020-07-20 05:38:54'),
(645, 'product_success_page_en_title', 'Thanks For Your Order', '2020-07-20 05:37:13', '2020-07-20 05:38:22'),
(646, 'product_success_page_en_description', NULL, '2020-07-20 05:37:13', '2020-07-20 05:38:22'),
(647, 'product_success_page_tur_title', 'Siparişiniz için teşekkürler', '2020-07-20 05:37:13', '2020-07-20 05:38:22'),
(648, 'product_success_page_tur_description', NULL, '2020-07-20 05:37:13', '2020-07-20 05:38:22'),
(649, 'product_success_page_ar_title', 'شكرا لطلبك', '2020-07-20 05:37:13', '2020-07-20 05:38:22'),
(650, 'product_success_page_ar_description', NULL, '2020-07-20 05:37:13', '2020-07-20 05:38:22'),
(651, 'product_success_page_sp_title', 'Gracias por tu orden', '2020-07-20 05:37:13', '2020-07-20 05:38:22'),
(652, 'product_success_page_sp_description', NULL, '2020-07-20 05:37:13', '2020-07-20 05:38:22'),
(653, 'product_cancel_page_en_title', 'You Payment  Is Not Succeced', '2020-07-20 05:37:19', '2020-07-20 05:38:08'),
(654, 'product_cancel_page_en_description', NULL, '2020-07-20 05:37:19', '2020-07-20 05:38:08'),
(655, 'product_cancel_page_tur_title', 'Siparişiniz İçin Ödeme İptal Edilir', '2020-07-20 05:37:19', '2020-07-20 05:38:08'),
(656, 'product_cancel_page_tur_description', NULL, '2020-07-20 05:37:19', '2020-07-20 05:38:08'),
(657, 'product_cancel_page_ar_title', 'دفعتك لم تنجح', '2020-07-20 05:37:19', '2020-07-20 05:38:08'),
(658, 'product_cancel_page_ar_description', NULL, '2020-07-20 05:37:19', '2020-07-20 05:38:08'),
(659, 'product_cancel_page_sp_title', 'El pago de su pedido es cancelar', '2020-07-20 05:37:19', '2020-07-20 05:38:08'),
(660, 'product_cancel_page_sp_description', NULL, '2020-07-20 05:37:19', '2020-07-20 05:38:08'),
(661, 'product_add_to_cart_button_en_text', 'Add To Cart', '2020-07-20 05:37:27', '2020-07-21 11:07:47'),
(662, 'product_add_to_cart_button_tur_text', 'Sepete ekle', '2020-07-20 05:37:27', '2020-07-21 11:07:47'),
(663, 'product_add_to_cart_button_ar_text', 'أضف إلى السلة', '2020-07-20 05:37:27', '2020-07-21 11:07:47'),
(664, 'product_add_to_cart_button_sp_text', 'Añadir al carrito', '2020-07-20 05:37:27', '2020-07-21 11:07:47'),
(665, 'product_post_items', '6', '2020-07-20 05:37:27', '2020-07-21 11:07:47'),
(666, 'contact_page_contact_form_fields', '{\"field_type\":[\"text\",\"email\",\"tel\",\"textarea\"],\"field_name\":[\"your-name\",\"your-email\",\"your-phone\",\"your-message\"],\"field_placeholder\":[\"Your Name\",\"Your Email\",\"Phone\",\"Message\"],\"field_required\":{\"1\":\"on\"}}', '2020-07-20 06:39:06', '2020-07-20 06:39:06'),
(667, 'contact_page_contact_info_section_status', 'on', '2020-07-20 06:39:27', '2020-07-20 06:39:27'),
(668, 'contact_page_contact_section_status', 'on', '2020-07-20 06:39:27', '2020-07-20 06:39:27'),
(669, 'contact_page_en_form_section_title', 'Keep In Touch', '2020-07-20 06:39:50', '2020-10-06 16:40:39'),
(670, 'contact_page_en_form_submit_btn_text', 'Send Message', '2020-07-20 06:39:50', '2020-10-06 16:40:39'),
(672, 'contact_page_tur_form_submit_btn_text', 'Mesaj gönder', '2020-07-20 06:39:50', '2020-07-20 06:40:15'),
(674, 'contact_page_ar_form_submit_btn_text', 'أرسل رسالة', '2020-07-20 06:39:50', '2020-07-20 06:40:15'),
(676, 'contact_page_sp_form_submit_btn_text', 'Enviar mensaje', '2020-07-20 06:39:50', '2020-07-20 06:40:15'),
(677, 'contact_page_form_receiving_mail', 'info@futuretrackbd.com', '2020-07-20 06:39:50', '2020-10-06 16:40:39'),
(678, 'contact_page_map_section_location', 'Hosna Center (2nd Floor), 106 Gulshan Avenue, Gulshan 1212 Dhaka', '2020-07-20 06:40:44', '2021-11-08 17:39:23'),
(679, 'contact_page_map_section_zoom', '10', '2020-07-20 06:40:44', '2021-11-08 17:39:23'),
(680, 'event_attendance_form_fields', '{\"field_type\":[\"text\",\"checkbox\",\"email\",\"tel\",\"checkbox\",\"textarea\"],\"field_name\":[\"your-name\",\"sex\",\"your-email\",\"your-phone\",\"terms-condition\",\"your-messsage\"],\"field_placeholder\":[\"Your Name\",\"Male\",\"Your Email\",\"Your Phone\",\"Agree With <a href=\",\"Message\"],\"field_required\":{\"0\":\"on\",\"1\":\"on\",\"2\":\"on\",\"3\":\"on\",\"5\":\"on\"}}', '2020-07-20 06:44:10', '2020-10-20 10:37:01'),
(681, 'apply_job_page_form_fields', '{\"field_type\":[\"text\",\"email\",\"text\",\"file\",\"textarea\"],\"field_name\":[\"your-name\",\"your-email\",\"your-expected-salary\",\"your-cv\",\"your-additional-info\"],\"field_placeholder\":[\"Your Name\",\"Your Email\",\"Your Expected Salary\",\"Your CV\",\"About Yourself\"],\"field_required\":{\"1\":\"on\",\"2\":\"on\",\"3\":\"on\",\"4\":\"on\"},\"mimes_type\":{\"3\":\"mimes:txt,pdf\"}}', '2020-07-20 06:54:09', '2020-07-20 06:54:09'),
(682, 'job_single_page_en_job_context_label', 'Job Context', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(683, 'job_single_page_en_job_responsibility_label', 'Job Responsibility', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(684, 'job_single_page_en_education_requirement_label', 'Educational Requirement', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(685, 'job_single_page_en_experience_requirement_label', 'Experience Requirement', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(686, 'job_single_page_en_additional_requirement_label', 'Additional Requirement', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(687, 'job_single_page_en_others_benefits_label', 'Others Benefits', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(688, 'job_single_page_en_apply_button_text', 'Apply To The Job', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(689, 'job_single_page_en_job_info_text', 'Jobs Information', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(690, 'job_single_page_en_company_name_text', 'Company Name', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(691, 'job_single_page_en_job_category_text', 'Job Category', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(692, 'job_single_page_en_job_position_text', 'Job Position', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(693, 'job_single_page_en_job_type_text', 'Job Type', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(694, 'job_single_page_en_salary_text', 'Salary', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(695, 'job_single_page_en_job_location_text', 'Job Location', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(696, 'job_single_page_en_job_deadline_text', 'Deadline', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(697, 'job_single_page_tur_job_context_label', 'İş Bağlamı', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(698, 'job_single_page_tur_job_responsibility_label', 'İş sorumluluğu', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(699, 'job_single_page_tur_education_requirement_label', 'Eğitim Gereksinimi', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(700, 'job_single_page_tur_experience_requirement_label', 'Deneyim Gereksinimi', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(701, 'job_single_page_tur_additional_requirement_label', 'Ek gereksinim', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(702, 'job_single_page_tur_others_benefits_label', 'Others Benefits', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(703, 'job_single_page_tur_apply_button_text', 'İşe Başvur', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(704, 'job_single_page_tur_job_info_text', 'İş bilgisi', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(705, 'job_single_page_tur_company_name_text', 'şirket', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(706, 'job_single_page_tur_job_category_text', 'iş kategorisi', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(707, 'job_single_page_tur_job_position_text', 'İş pozisyonu', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(708, 'job_single_page_tur_job_type_text', 'Meslek türü', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(709, 'job_single_page_tur_salary_text', 'Maaş', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(710, 'job_single_page_tur_job_location_text', 'iş konumu', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(711, 'job_single_page_tur_job_deadline_text', 'Son tarih', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(712, 'job_single_page_ar_job_context_label', 'سياق العمل', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(713, 'job_single_page_ar_job_responsibility_label', 'مسؤولية العمل', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(714, 'job_single_page_ar_education_requirement_label', 'المتطلبات التربوية', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(715, 'job_single_page_ar_experience_requirement_label', 'متطلبات الخبرة', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(716, 'job_single_page_ar_additional_requirement_label', 'متطلبات إضافية', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(717, 'job_single_page_ar_others_benefits_label', 'فوائد الآخرين', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(718, 'job_single_page_ar_apply_button_text', 'قدم على الوظيفة', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(719, 'job_single_page_ar_job_info_text', 'معلومات الوظائف', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(720, 'job_single_page_ar_company_name_text', 'شركة', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(721, 'job_single_page_ar_job_category_text', 'تصنيف الوظيفة', '2020-07-20 07:42:27', '2020-07-20 08:39:08'),
(722, 'job_single_page_ar_job_position_text', 'وظيفه', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(723, 'job_single_page_ar_job_type_text', 'نوع الوظيفة', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(724, 'job_single_page_ar_salary_text', 'راتب', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(725, 'job_single_page_ar_job_location_text', 'مكان العمل', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(726, 'job_single_page_ar_job_deadline_text', 'الموعد النهائي', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(727, 'job_single_page_sp_job_context_label', 'Contexto de trabajo', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(728, 'job_single_page_sp_job_responsibility_label', 'Responsabilidad laboral', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(729, 'job_single_page_sp_education_requirement_label', 'Requisito Educativo', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(730, 'job_single_page_sp_experience_requirement_label', 'Requisito de experiencia', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(731, 'job_single_page_sp_additional_requirement_label', 'Requerimiento adicional', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(732, 'job_single_page_sp_others_benefits_label', 'Otros beneficios', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(733, 'job_single_page_sp_apply_button_text', 'Aplicar al trabajo', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(734, 'job_single_page_sp_job_info_text', 'Información de trabajos', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(735, 'job_single_page_sp_company_name_text', 'Empresa', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(736, 'job_single_page_sp_job_category_text', 'Categoría de Trabajo', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(737, 'job_single_page_sp_job_position_text', 'Puesto de trabajo', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(738, 'job_single_page_sp_job_type_text', 'Tipo de empleo', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(739, 'job_single_page_sp_salary_text', 'Salario', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(740, 'job_single_page_sp_job_location_text', 'locación de trabajo', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(741, 'job_single_page_sp_job_deadline_text', 'Fecha límite', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(742, 'job_single_page_apply_form', 'on', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(743, 'job_single_page_applicant_mail', 'dvrobin4@gmail.com', '2020-07-20 07:42:28', '2020-07-20 08:39:08'),
(744, 'site_jobs_category_en_title', 'Jobs Category', '2020-07-20 08:41:01', '2020-07-20 08:41:01'),
(745, 'site_jobs_category_tur_title', 'İş Kategorisi', '2020-07-20 08:41:01', '2020-07-20 08:41:01'),
(746, 'site_jobs_category_ar_title', 'فئة الوظائف', '2020-07-20 08:41:01', '2020-07-20 08:41:01'),
(747, 'site_jobs_category_sp_title', 'Categoría de trabajos', '2020-07-20 08:41:01', '2020-07-20 08:41:01'),
(748, 'site_job_post_items', '6', '2020-07-20 08:41:01', '2020-07-20 08:41:01'),
(749, 'donation_success_page_en_title', 'Thank You', '2020-07-20 11:04:21', '2020-07-20 11:04:21'),
(750, 'donation_success_page_en_subtitle', 'Payment Success For Donation:  {dnname}', '2020-07-20 11:04:21', '2020-07-20 11:04:21'),
(751, 'donation_success_page_en_description', NULL, '2020-07-20 11:04:21', '2020-07-20 11:04:21'),
(752, 'donation_success_page_tur_title', 'Teşekkürler', '2020-07-20 11:04:21', '2020-07-20 11:04:21'),
(753, 'donation_success_page_tur_subtitle', 'Bağış İçin Ödeme Başarısı: {dnname}', '2020-07-20 11:04:21', '2020-07-20 11:04:21'),
(754, 'donation_success_page_tur_description', NULL, '2020-07-20 11:04:21', '2020-07-20 11:04:21'),
(755, 'donation_success_page_ar_title', 'شكرا', '2020-07-20 11:04:21', '2020-07-20 11:04:21'),
(756, 'donation_success_page_ar_subtitle', 'نجاح الدفع للتبرع:', '2020-07-20 11:04:21', '2020-07-20 11:04:21'),
(757, 'donation_success_page_ar_description', NULL, '2020-07-20 11:04:21', '2020-07-20 11:04:21'),
(758, 'donation_success_page_sp_title', 'Gracias', '2020-07-20 11:04:21', '2020-07-20 11:04:21'),
(759, 'donation_success_page_sp_subtitle', 'Pago exitoso por donación: {dnname}', '2020-07-20 11:04:21', '2020-07-20 11:04:21'),
(760, 'donation_success_page_sp_description', NULL, '2020-07-20 11:04:21', '2020-07-20 11:04:21'),
(761, 'donation_cancel_page_en_title', 'Sorry!!', '2020-07-20 11:05:10', '2020-07-20 11:05:10'),
(762, 'donation_cancel_page_en_subtitle', 'Payment Cancel For Donation: {dnname}', '2020-07-20 11:05:10', '2020-07-20 11:05:10'),
(763, 'donation_cancel_page_en_description', NULL, '2020-07-20 11:05:10', '2020-07-20 11:05:10'),
(764, 'donation_cancel_page_tur_title', 'Afedersiniz!!', '2020-07-20 11:05:10', '2020-07-20 11:05:10'),
(765, 'donation_cancel_page_tur_subtitle', 'Bağış İçin İptal Edildi: {dnname}', '2020-07-20 11:05:10', '2020-07-20 11:05:10'),
(766, 'donation_cancel_page_tur_description', NULL, '2020-07-20 11:05:10', '2020-07-20 11:05:10'),
(767, 'donation_cancel_page_ar_title', 'آسف', '2020-07-20 11:05:10', '2020-07-20 11:05:10'),
(768, 'donation_cancel_page_ar_subtitle', 'إلغاء الدفع للتبرع:', '2020-07-20 11:05:10', '2020-07-20 11:05:10'),
(769, 'donation_cancel_page_ar_description', NULL, '2020-07-20 11:05:10', '2020-07-20 11:05:10'),
(770, 'donation_cancel_page_sp_title', '¡¡Lo siento!!', '2020-07-20 11:05:10', '2020-07-20 11:05:10'),
(771, 'donation_cancel_page_sp_subtitle', 'Pago cancelado por donación: {dnname}', '2020-07-20 11:05:10', '2020-07-20 11:05:10'),
(772, 'donation_cancel_page_sp_description', NULL, '2020-07-20 11:05:10', '2020-07-20 11:05:10'),
(773, 'donation_notify_mail', 'dvrobin4@gmail.com', '2020-07-20 11:07:53', '2020-08-24 17:49:28'),
(774, 'donation_single_en_form_title', 'Donate for help', '2020-07-20 11:07:53', '2020-08-24 17:49:28'),
(775, 'donation_single_en_form_button_text', 'Donate Now', '2020-07-20 11:07:53', '2020-08-24 17:49:28'),
(776, 'donation_single_tur_form_title', 'Yardım için bağış yapın', '2020-07-20 11:07:53', '2020-08-24 17:49:28'),
(777, 'donation_single_tur_form_button_text', 'Şimdi Bağış yap', '2020-07-20 11:07:53', '2020-08-24 17:49:28'),
(778, 'donation_single_ar_form_title', 'تبرع للمساعدة', '2020-07-20 11:07:53', '2020-08-24 17:49:28'),
(779, 'donation_single_ar_form_button_text', 'تبرع الآن', '2020-07-20 11:07:53', '2020-08-24 17:49:28'),
(780, 'donation_single_sp_form_title', 'Done por ayuda', '2020-07-20 11:07:53', '2020-08-24 17:49:28'),
(781, 'donation_single_sp_form_button_text', 'Done ahora', '2020-07-20 11:07:53', '2020-08-24 17:49:28'),
(782, 'donor_page_post_items', '6', '2020-07-20 11:12:21', '2020-07-20 11:12:21'),
(783, 'donation_button_en_text', 'Donate Now', '2020-07-20 11:12:22', '2020-07-20 11:12:22'),
(784, 'donation_goal_en_text', 'Goal:', '2020-07-20 11:12:22', '2020-07-20 11:12:22'),
(785, 'donation_raised_en_text', 'Raised:', '2020-07-20 11:12:22', '2020-07-20 11:12:22'),
(786, 'donation_button_tur_text', 'Şimdi Bağış yap', '2020-07-20 11:12:22', '2020-07-20 11:12:22'),
(787, 'donation_goal_tur_text', 'Hedef:', '2020-07-20 11:12:22', '2020-07-20 11:12:22'),
(788, 'donation_raised_tur_text', 'yükseltilmiş:', '2020-07-20 11:12:22', '2020-07-20 11:12:22'),
(789, 'donation_button_ar_text', 'تبرع الآن', '2020-07-20 11:12:22', '2020-07-20 11:12:22'),
(790, 'donation_goal_ar_text', 'هدف:', '2020-07-20 11:12:22', '2020-07-20 11:12:22'),
(791, 'donation_raised_ar_text', 'رفع:', '2020-07-20 11:12:22', '2020-07-20 11:12:22'),
(792, 'donation_button_sp_text', 'Done ahora', '2020-07-20 11:12:22', '2020-07-20 11:12:22'),
(793, 'donation_goal_sp_text', 'Objetivo:', '2020-07-20 11:12:22', '2020-07-20 11:12:22'),
(794, 'donation_raised_sp_text', 'Elevada:', '2020-07-20 11:12:22', '2020-07-20 11:12:22'),
(795, 'quote_page_form_fields', '{\"field_type\":[\"text\",\"text\",\"tel\",\"email\",\"select\",\"select\",\"select\",\"text\",\"select\",\"select\",\"text\",\"text\",\"textarea\",\"file\"],\"field_name\":[\"your-name\",\"address\",\"phone-number\",\"your-email\",\"desired-country\",\"ielts-details\",\"marital-status\",\"passport-number\",\"\",\"last-education-details\",\"board-or-universities\",\"result-gpa\",\"if-have-your-any-question-or-ask-write-here\",\"your-file\"],\"field_placeholder\":[\"Your Name\",\"Address\",\"Your Mobile Number\",\"Your Email\",\"Desired Country\",\"IELTS Details\",\"Marital Status\",\"Do you have valid Passport? if have enter The Passport number\",\"Looking For\",\"Last Education Details\",\"Type your Education Board or University Name\",\"Type here your last Education\'s GPA Or CGPA\",\"Your Message\",\"Attachments (If have)\"],\"field_required\":{\"0\":\"on\",\"1\":\"on\",\"2\":\"on\",\"3\":\"on\",\"4\":\"on\",\"6\":\"on\",\"7\":\"on\",\"8\":\"on\",\"9\":\"on\",\"10\":\"on\",\"11\":\"on\",\"13\":\"on\"},\"select_options\":[\"Select Your Country\\r\\nCanada\\r\\nUk\\r\\nSweden\\r\\nGermany\\r\\nNetherlands\\r\\nMalaysia\",\"Select your IELTS info\\r\\n5.0\\r\\n5.5\\r\\n6.0\\r\\n6.5\\/Above\\r\\nAppeared\\r\\nNo IELTS yet\",\"Select Status\\r\\nSingle\\r\\nMarried\\r\\nDivorced\",\"Select Your Program \\r\\n01. Bachelors\\r\\n02. Masters\\r\\n03. Diploma\\r\\n04. PHD\\r\\n05. Others\",\"Select Your Last Education\\r\\n01. SSC\\r\\n02. HSC\\r\\n03.Diploma\\r\\n04. Honors\\r\\n05. Masters\"],\"mimes_type\":{\"13\":\"mimes:jpg,jpeg,png\"}}', '2020-07-20 11:50:29', '2020-11-04 07:44:08'),
(796, 'quote_page_en_form_title', 'Make An Appointment', '2020-07-20 11:50:50', '2020-10-11 07:36:33'),
(797, 'quote_page_en_form_button_text', 'Send Request', '2020-07-20 11:50:50', '2020-10-11 07:36:33'),
(799, 'quote_page_tur_form_button_text', 'Teklif Gönderin', '2020-07-20 11:50:50', '2020-07-27 09:42:52'),
(801, 'quote_page_ar_form_button_text', 'إرسال اقتباس', '2020-07-20 11:50:50', '2020-07-27 09:42:52'),
(803, 'quote_page_sp_form_button_text', 'Enviar presupuesto', '2020-07-20 11:50:50', '2020-07-27 09:42:52'),
(804, 'quote_page_form_mail', 'info@futuretrackbd.com', '2020-07-20 11:50:50', '2020-10-11 07:36:33'),
(805, 'product_single_en_add_to_cart_text', 'Add To Cart', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(806, 'product_single_en_category_text', 'Category:', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(807, 'product_single_en_sku_text', 'SKU:', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(808, 'product_single_en_description_text', 'Description', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(809, 'product_single_en_attributes_text', 'Additional Information', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(810, 'product_single_en_related_product_text', 'Related Products', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(811, 'product_single_tur_add_to_cart_text', 'Sepete ekle', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(812, 'product_single_tur_category_text', 'Kategori:', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(813, 'product_single_tur_sku_text', 'SKU:', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(814, 'product_single_tur_description_text', 'Açıklama', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(815, 'product_single_tur_attributes_text', 'ek bilgi', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(816, 'product_single_tur_related_product_text', 'ilgili ürünler', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(817, 'product_single_ar_add_to_cart_text', 'أضف إلى السلة', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(818, 'product_single_ar_category_text', 'الفئة:', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(819, 'product_single_ar_sku_text', 'كود التخزين التعريفي:', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(820, 'product_single_ar_description_text', 'تفسير', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(821, 'product_single_ar_attributes_text', 'معلومة اضافية', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(822, 'product_single_ar_related_product_text', 'منتجات ذات صله', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(823, 'product_single_sp_add_to_cart_text', 'Añadir al carrito', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(824, 'product_single_sp_category_text', 'Categoría:', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(825, 'product_single_sp_sku_text', 'SKU:', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(826, 'product_single_sp_description_text', 'Descripción', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(827, 'product_single_sp_attributes_text', 'Información Adicional', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(828, 'product_single_sp_related_product_text', 'Productos relacionados', '2020-07-21 01:20:43', '2020-07-21 10:06:22'),
(829, 'product_category_en_text', 'Category', '2020-07-21 04:37:42', '2020-07-21 11:07:47'),
(830, 'product_category_tur_text', 'Kategori', '2020-07-21 04:37:42', '2020-07-21 11:07:47'),
(831, 'product_category_ar_text', 'الفئة', '2020-07-21 04:37:42', '2020-07-21 11:07:47'),
(832, 'product_category_sp_text', 'Categoría', '2020-07-21 04:37:42', '2020-07-21 11:07:47'),
(833, 'cash_on_delivery_preview_logo', '77', '2020-07-21 05:18:45', '2020-08-12 09:13:12'),
(834, 'paystack_preview_logo', '78', '2020-07-21 05:18:45', '2020-08-12 09:13:12'),
(835, 'paystack_public_key', 'pk_test_081a8fcd9423dede2de7b4c3143375b5e5415290', '2020-07-21 05:18:45', '2020-08-12 09:13:12'),
(836, 'paystack_secret_key', 'sk_test_c874d38f8d08760efc517fc83d8cd574b906374f', '2020-07-21 05:18:45', '2020-08-12 09:13:12'),
(837, 'paystack_merchant_email', 'dvrobin4@gmail.com', '2020-07-21 05:18:45', '2020-08-12 09:13:12'),
(838, 'razorpay_key', 'rzp_test_SXk7LZqsBPpAkj', '2020-07-21 05:18:45', '2020-08-12 09:13:12'),
(839, 'razorpay_secret', 'Nenvq0aYArtYBDOGgmMH7JNv', '2020-07-21 05:18:45', '2020-08-12 09:13:12'),
(840, 'stripe_publishable_key', 'pk_test_51GwS1SEmGOuJLTMsIeYKFtfAT3o3Fc6IOC7wyFmmxA2FIFQ3ZigJ2z1s4ZOweKQKlhaQr1blTH9y6HR2PMjtq1Rx00vqE8LO0x', '2020-07-21 05:18:45', '2020-08-12 09:13:12'),
(841, 'stripe_secret_key', 'sk_test_51GwS1SEmGOuJLTMs2vhSliTwAGkOt4fKJMBrxzTXeCJoLrRu8HFf4I0C5QuyE3l3bQHBJm3c0qFmeVjd0V9nFb6Z00VrWDJ9Uw', '2020-07-21 05:18:45', '2020-08-12 09:13:12'),
(842, 'paystack_gateway', 'on', '2020-07-21 05:18:45', '2020-08-12 09:13:12'),
(843, 'cash_on_delivery_gateway', 'on', '2020-07-21 05:18:45', '2020-08-12 09:13:12'),
(844, 'blog_page_en_read_more_btn_text', 'Read More', '2020-07-21 05:28:57', '2020-07-21 05:28:57'),
(845, 'blog_page_tur_read_more_btn_text', 'Daha fazla oku', '2020-07-21 05:28:57', '2020-07-21 05:28:57'),
(846, 'blog_page_ar_read_more_btn_text', 'قراءة المزيد', '2020-07-21 05:28:57', '2020-07-21 05:28:57'),
(847, 'blog_page_sp_read_more_btn_text', 'Lee mas', '2020-07-21 05:28:57', '2020-07-21 05:28:57'),
(848, 'blog_page_item', '6', '2020-07-21 05:28:57', '2020-07-21 05:28:57'),
(849, 'blog_page_recent_post_widget_items', '5', '2020-07-21 05:28:57', '2020-07-21 05:28:57'),
(850, 'blog_single_page_en_related_post_title', 'Related Post', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(851, 'blog_single_page_en_share_title', 'Share', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(852, 'blog_single_page_en_category_title', 'Blog Categories', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(853, 'blog_single_page_en_recent_post_title', 'Related Posts', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(854, 'blog_single_page_en_tags_title', 'Tags', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(855, 'blog_single_page_tur_related_post_title', 'İlgili Yazı', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(856, 'blog_single_page_tur_share_title', 'Paylaş', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(857, 'blog_single_page_tur_category_title', 'Blog Kategorileri', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(858, 'blog_single_page_tur_recent_post_title', 'yakın zamanda Gönderilenler', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(859, 'blog_single_page_tur_tags_title', 'Etiketler', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(860, 'blog_single_page_ar_related_post_title', 'منشور له صلة', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(861, 'blog_single_page_ar_share_title', 'شارك', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(862, 'blog_single_page_ar_category_title', 'الفئة', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(863, 'blog_single_page_ar_recent_post_title', 'المنشور الاخير...', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(864, 'blog_single_page_ar_tags_title', 'العلامات', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(865, 'blog_single_page_sp_related_post_title', 'Publicación relacionada', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(866, 'blog_single_page_sp_share_title', 'Compartir', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(867, 'blog_single_page_sp_category_title', 'Categorías de blog', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(868, 'blog_single_page_sp_recent_post_title', 'Mensajes recientes', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(869, 'blog_single_page_sp_tags_title', 'Etiquetas', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(870, 'blog_single_page_recent_post_item', '5', '2020-07-21 05:29:29', '2020-07-21 05:30:39'),
(871, 'product_price_filter_en_text', 'Price Filter', '2020-07-21 09:40:41', '2020-07-21 11:07:47'),
(872, 'product_rating_filter_en_text', 'Rating Filter', '2020-07-21 09:40:41', '2020-07-21 11:07:47'),
(873, 'product_price_filter_tur_text', 'Fiyat Filtresi', '2020-07-21 09:40:42', '2020-07-21 11:07:47'),
(874, 'product_rating_filter_tur_text', 'Derecelendirme Filtresi', '2020-07-21 09:40:42', '2020-07-21 11:07:47'),
(875, 'product_price_filter_ar_text', 'تصفية الأسعار', '2020-07-21 09:40:42', '2020-07-21 11:07:47'),
(876, 'product_rating_filter_ar_text', 'مرشح التصنيف', '2020-07-21 09:40:42', '2020-07-21 11:07:47'),
(877, 'product_price_filter_sp_text', 'Filtro de precios', '2020-07-21 09:40:42', '2020-07-21 11:07:47'),
(878, 'product_rating_filter_sp_text', 'Filtro de calificación', '2020-07-21 09:40:42', '2020-07-21 11:07:47'),
(879, 'product_single_en_ratings_text', 'Ratings', '2020-07-21 10:06:22', '2020-07-21 10:06:22'),
(880, 'product_single_tur_ratings_text', 'Puanlar', '2020-07-21 10:06:22', '2020-07-21 10:06:22'),
(881, 'product_single_ar_ratings_text', 'التقييمات', '2020-07-21 10:06:22', '2020-07-21 10:06:22'),
(882, 'product_single_sp_ratings_text', 'Calificaciones', '2020-07-21 10:06:22', '2020-07-21 10:06:22'),
(883, 'site_rss_feed_description', 'The description of the feed.', '2020-07-23 01:32:47', '2020-07-23 01:35:22'),
(884, 'site_rss_feed_title', 'My feeds', '2020-07-23 01:32:47', '2020-07-23 01:35:22'),
(885, 'site_rss_feed_url', '/feeds', '2020-07-23 01:32:47', '2020-07-23 01:35:22'),
(886, 'site_gdpr_cookie_en_title', 'Cookies & Privacy', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(887, 'site_gdpr_cookie_en_message', 'Is education residence conveying so so. Suppose shyness say ten behaved morning had. Any unsatiable assistance compliment occasional too reasonably advantages.', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(888, 'site_gdpr_cookie_en_more_info_label', 'More information', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(889, 'site_gdpr_cookie_en_more_info_link', '{url}/p/privacy-policy', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(890, 'site_gdpr_cookie_en_accept_button_label', 'Accept Cookie', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(891, 'site_gdpr_cookie_tur_title', 'Çerezler ve Gizlilik', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(892, 'site_gdpr_cookie_tur_message', 'Eğitim yurdu da öyle mi? Diyelim ki utangaç sabahın on davranmış olduğunu söylüyor. Herhangi bir tatmin edici yardım, zaman zaman çok makul avantajlar iltifat.', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(893, 'site_gdpr_cookie_tur_more_info_label', 'Daha fazla bilgi', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(894, 'site_gdpr_cookie_tur_more_info_link', '#', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(895, 'site_gdpr_cookie_tur_accept_button_label', 'Çerez Kabul Et', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(896, 'site_gdpr_cookie_ar_title', 'ملفات تعريف الارتباط والخصوصية', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(897, 'site_gdpr_cookie_ar_message', 'هل نقل التعليم هو الأمر كذلك. افترض أن الخجل يقول إن العاشرة صباح تصرفت. أي مساعدة غير مرضية تكمل مزايا عرضية للغاية.', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(898, 'site_gdpr_cookie_ar_more_info_label', 'معلومات اكثر', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(899, 'site_gdpr_cookie_ar_more_info_link', '#', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(900, 'site_gdpr_cookie_ar_accept_button_label', 'قبول ملف تعريف الارتباط', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(901, 'site_gdpr_cookie_sp_title', 'Cookies y privacidad', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(902, 'site_gdpr_cookie_sp_message', '¿La residencia educativa se transmite así? Supongamos que la timidez dice que diez se portaron bien. Cualquier asistencia insaciable complementa las ventajas ocasionales y demasiado razonables.', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(903, 'site_gdpr_cookie_sp_more_info_label', 'Más información', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(904, 'site_gdpr_cookie_sp_more_info_link', '#', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(905, 'site_gdpr_cookie_sp_accept_button_label', 'Aceptar cookie', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(906, 'site_gdpr_cookie_delay', '5000', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(907, 'site_gdpr_cookie_enabled', 'on', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(908, 'site_gdpr_cookie_expire', '30', '2020-07-24 11:02:41', '2020-07-24 11:11:03'),
(909, 'site_gdpr_cookie_en_decline_button_label', 'Decline Cookie', '2020-07-24 11:07:57', '2020-07-24 11:11:03'),
(910, 'site_gdpr_cookie_tur_decline_button_label', 'Çerezleri Reddet', '2020-07-24 11:07:57', '2020-07-24 11:11:03'),
(911, 'site_gdpr_cookie_ar_decline_button_label', 'رفض ملف تعريف الارتباط', '2020-07-24 11:07:57', '2020-07-24 11:11:03'),
(912, 'site_gdpr_cookie_sp_decline_button_label', 'Rechazar Cookie', '2020-07-24 11:07:57', '2020-07-24 11:11:03'),
(913, 'site_disqus_key', 'Future Track', '2020-07-24 11:41:07', '2020-11-29 08:19:32'),
(914, 'site_google_analytics', 'UA-184152745-1', '2020-07-24 11:41:07', '2020-11-29 08:19:32'),
(915, 'tawk_api_key', 'ca8b1ccd40c6743a18997b81d651162811f151c0', '2020-07-24 11:41:07', '2020-11-29 08:19:32'),
(916, 'site_google_map_api', NULL, '2020-07-24 11:41:07', '2020-07-24 11:41:33'),
(917, 'site_google_captcha_v3_site_key', NULL, '2020-07-24 11:41:07', '2020-11-29 08:19:32'),
(918, 'site_google_captcha_v3_secret_key', NULL, '2020-07-24 11:41:07', '2020-11-29 08:19:32'),
(919, 'site_install_path', 'https://futuretrackbd.com', '2020-07-24 23:56:42', '2026-06-15 06:33:45'),
(920, 'site_admin_path', 'https://futuretrackbd.com/admin-home', '2020-07-24 23:56:42', '2026-06-15 06:33:45'),
(921, 'site_frontend_path', 'https://futuretrackbd.com', '2020-07-24 23:56:42', '2026-06-15 06:33:45'),
(922, 'site_script_version', '1.9', '2020-07-24 23:56:42', '2026-06-15 06:33:45'),
(923, 'item_purchase_key', NULL, '2020-07-25 00:27:03', '2020-07-25 04:31:33'),
(924, 'item_license_status', 'not_verified', '2020-07-25 00:27:03', '2022-07-23 23:33:45'),
(925, 'item_license_msg', 'license your cms from \"General Settings > License\". &nbsp; To stay safe and get update also get best support.', '2020-07-25 00:27:03', '2022-07-23 23:33:45'),
(926, 'site_script_unique_key', 'NB2GLtODUjYOc9bFkPq2pKI8uma3G6WX', '2020-07-25 00:57:35', '2026-06-15 06:33:45'),
(927, 'site_sticky_navbar_enabled', 'on', '2020-07-25 07:32:50', '2023-11-30 05:11:57'),
(928, 'popup_enable_status', NULL, '2020-07-26 04:34:23', '2020-10-06 15:51:37'),
(929, 'popup_delay_time', '10000', '2020-07-26 04:34:23', '2020-10-06 15:51:37'),
(930, 'popup_selected_en_id', '9', '2020-07-26 04:34:23', '2020-10-06 15:51:37'),
(931, 'popup_selected_tur_id', '6', '2020-07-26 04:34:23', '2020-10-05 01:24:35'),
(932, 'popup_selected_ar_id', '7', '2020-07-26 04:34:23', '2020-10-05 01:24:35'),
(933, 'popup_selected_sp_id', '8', '2020-07-26 04:34:23', '2020-10-05 01:24:35'),
(934, 'about_page_en_about_section_title', 'Future Track is a foreign education consultancy firm rendering global education opportunities to Bangladeshi students', '2020-07-26 12:54:47', '2020-10-06 16:46:08'),
(935, 'about_page_en_about_section_description', 'Future Track is a foreign education consultancy firm rendering global education opportunities to Bangladeshi students in different levels of study. We strive to extend end-to-end guidance from analyzing your educational and financial profile, selecting the perfect course and institutions with maximum scholarship opportunities available and finally providing transparent documentation guidance for your VISA application. To put it simply, our aim is to help you make a great career.', '2020-07-26 12:54:47', '2020-10-06 16:46:08'),
(936, 'about_page_en_about_section_quote_text', 'When it comes to reliability and dedicated services, you are guaranteed to have the best experience from us throughout the process.', '2020-07-26 12:54:47', '2020-10-06 16:46:08'),
(939, 'about_page_tur_about_section_quote_text', 'İşiniz ne olursa olsun, ister yaratıcı bir ajans, ister dijital stüdyo yönetin.', '2020-07-26 12:54:47', '2020-07-27 00:57:01'),
(942, 'about_page_ar_about_section_quote_text', 'مهما كان عملك ، سواء كنت تدير وكالة إبداعية ، أو استوديو رقمي.', '2020-07-26 12:54:47', '2020-07-27 00:57:01'),
(945, 'about_page_sp_about_section_quote_text', 'Cualquiera sea su negocio, ya sea que dirija una agencia creativa, un estudio digital.', '2020-07-26 12:54:47', '2020-07-27 00:57:01'),
(946, 'about_page_image_two', '84', '2020-07-26 12:54:47', '2020-10-06 16:46:08'),
(947, 'about_page_image_one', '85', '2020-07-26 12:54:47', '2020-10-06 16:46:08'),
(948, 'about_page_en_global_network_button_url', 'https://futuretrackbd.com/f/service', '2020-07-26 12:55:06', '2020-10-20 11:11:03'),
(949, 'about_page_en_global_network_button_title', 'For more info', '2020-07-26 12:55:06', '2020-10-20 11:11:03'),
(950, 'about_page_en_global_network_button_status', 'on', '2020-07-26 12:55:06', '2020-10-20 11:11:03'),
(951, 'about_page_en_global_network_description', 'We are focused on the top study destinations i.e. Canada, The United Kingdom, Sweden, Netherlands, Germany, Malaysia etc. We are the authorized representative of an array of well reputed institutions with a variety of subjects from where you can complete your desired level of education.', '2020-07-26 12:55:06', '2020-10-20 11:11:03'),
(952, 'about_page_en_global_network_title', 'We Have Global Network Of Universities', '2020-07-26 12:55:06', '2020-10-20 11:11:03'),
(953, 'about_page_tur_global_network_button_url', '#', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(954, 'about_page_tur_global_network_button_title', 'Daha fazla bilgi edin', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(955, 'about_page_tur_global_network_button_status', 'on', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(956, 'about_page_tur_global_network_description', 'Takdir yetkisi olduğu gibi ilan ediliyor. Şimdi ay saygısı çok yakın altı izin karşı. Çok hızlı bir şekilde algılamanızın kilidini açtı. Sıkıştırılmış suç ruhları veya ofisler arasında. Atışta gerçek dört yaşındaydı. Mutlak bekar altı çocuk seni kıldı. Vanity tüm konuşkan.', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(957, 'about_page_tur_global_network_title', 'Küresel Müşteri Ağımız Var', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(958, 'about_page_ar_global_network_button_url', '#', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(959, 'about_page_ar_global_network_button_title', 'أعرف أكثر', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(960, 'about_page_ar_global_network_button_status', 'on', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(961, 'about_page_ar_global_network_description', 'الإساءة لتقدير كما يفعل الإعلان. الآن احترام أشهر تعارض أقرب تمكين ستة أيضا. لقد فتحت لك العديد من التصورات بسرعة. أرواح مخالفة ملحقة أو أنتم من مكاتب بين. الحقيقي على النار كانت أربعة أس. البكالوريوس المطلق جعلك ستة أيام من الأحداث. الغرور كله شطي.', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(962, 'about_page_ar_global_network_title', 'لدينا شبكة عالمية من العملاء', '2020-07-26 12:55:06', '2020-07-27 01:00:30');
INSERT INTO `static_options` (`id`, `option_name`, `option_value`, `created_at`, `updated_at`) VALUES
(963, 'about_page_sp_global_network_button_url', '#', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(964, 'about_page_sp_global_network_button_title', 'Aprende más', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(965, 'about_page_sp_global_network_button_status', 'on', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(966, 'about_page_sp_global_network_description', 'Afrontar discreción como hacer es anunciar. Ahora los meses de oposición se oponen más cerca de habilitar también seis. Ella numerosos desbloqueados que percibes rápidamente. Espíritus ofensivos fijos o ye de oficinas entre. Real en tiro eran cuatro y as. El soltero absoluto se convirtió en seis menos juveniles. Vanidad entera es hablador.', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(967, 'about_page_sp_global_network_title', 'Tenemos una red global de clientes', '2020-07-26 12:55:06', '2020-07-27 01:00:30'),
(968, 'about_page_global_network_image', '86', '2020-07-26 12:55:06', '2020-10-20 11:11:03'),
(969, 'about_page_testimonial_section_status', NULL, '2020-07-26 12:55:25', '2020-10-20 11:08:08'),
(970, 'about_page_about_us_section_status', 'on', '2020-07-26 12:55:25', '2020-10-20 11:08:08'),
(971, 'about_page_brand_logo_section_status', 'on', '2020-07-26 12:55:25', '2020-10-20 11:08:08'),
(972, 'about_page_team_member_section_status', 'on', '2020-07-26 12:55:25', '2020-10-20 11:08:08'),
(973, 'about_page_experience_section_status', NULL, '2020-07-26 12:55:25', '2020-10-20 11:08:08'),
(974, 'about_page_key_feature_section_status', 'on', '2020-07-26 12:55:25', '2020-10-20 11:08:08'),
(975, 'about_page_global_network_section_status', 'on', '2020-07-26 12:55:25', '2020-10-20 11:08:08'),
(976, 'about_page_en_experience_title', 'We Have 5 Years Of Experience Of Student Consultency', '2020-07-27 01:04:13', '2020-10-20 11:13:54'),
(977, 'about_page_en_experience_description', 'Future Track is a foreign education consultancy firm rendering global education opportunities to Bangladeshi students at different levels of study for 5 years of experience', '2020-07-27 01:04:13', '2020-10-20 11:13:54'),
(978, 'about_page_en_experience_video_url', '#', '2020-07-27 01:04:13', '2020-10-20 11:13:54'),
(979, 'about_page_en_quote_text', 'We have a team of dynamic and well-informed counsellors who are ready to serve you according to your preference with maximum effort so that there are no questions unanswered.', '2020-07-27 01:04:13', '2020-10-20 11:13:54'),
(980, 'about_page_tur_experience_title', '15 Yıllık Teknoloji Tecrübemiz Var', '2020-07-27 01:04:13', '2020-07-27 01:04:13'),
(981, 'about_page_tur_experience_description', 'Takdir yetkisi olduğu gibi ilan ediliyor. Şimdi ay saygısı çok yakın altı izin karşı. Çok hızlı bir şekilde algılamanızın kilidini açtı. Sıkıştırılmış suç ruhları veya ofisler arasında.', '2020-07-27 01:04:13', '2020-07-27 01:04:13'),
(982, 'about_page_tur_experience_video_url', 'https://www.youtube.com/watch?v=k26DOtwPN7s', '2020-07-27 01:04:13', '2020-07-27 01:04:13'),
(983, 'about_page_tur_quote_text', 'Yarım ledin neden yatağın yakınında olduğunu kaybet. Başkalarının dışında dönemin basit babası meşgul. Verdiğim dar olsa işaretlenmiş yaz yapmak. Bahar resmi hiçbir ilçe beklemiyordunuz.', '2020-07-27 01:04:13', '2020-07-27 01:04:13'),
(984, 'about_page_ar_experience_title', 'لدينا 15 عاما من الخبرة التقنية', '2020-07-27 01:04:13', '2020-07-27 01:04:13'),
(985, 'about_page_ar_experience_description', 'الإساءة لتقدير كما يفعل الإعلان. الآن احترام أشهر تعارض أقرب تمكين ستة أيضا. لقد فتحت لك العديد من التصورات بسرعة. أرواح مخالفة ملحقة أو أنتم من مكاتب بين.', '2020-07-27 01:04:13', '2020-07-27 01:04:13'),
(986, 'about_page_ar_experience_video_url', 'https://www.youtube.com/watch?v=k26DOtwPN7s', '2020-07-27 01:04:13', '2020-07-27 01:04:13'),
(987, 'about_page_ar_quote_text', 'خسر بعيدًا عن نصف مصباح بالقرب من السرير. في الانخراط والد بسيط للآخرين ما عدا. عطائي القيام الصيف على الرغم من ضيق ملحوظ في. انتظر الربيع الرسمي لا مقاطعة انتم.', '2020-07-27 01:04:13', '2020-07-27 01:04:13'),
(988, 'about_page_sp_experience_title', 'Tenemos 15 años de experiencia en tecnología', '2020-07-27 01:04:13', '2020-07-27 01:04:13'),
(989, 'about_page_sp_experience_description', 'Afrontar discreción como hacer es anunciar. Ahora los meses de oposición se oponen más cerca de habilitar también seis. Ella numerosos desbloqueados que percibes rápidamente. Espíritus ofensivos fijos o ye de oficinas entre.', '2020-07-27 01:04:13', '2020-07-27 01:04:13'),
(990, 'about_page_sp_experience_video_url', 'https://www.youtube.com/watch?v=k26DOtwPN7s', '2020-07-27 01:04:13', '2020-07-27 01:04:13'),
(991, 'about_page_sp_quote_text', 'Perder de vista por qué medio conducido tiene cerca de la cama. En comprometer padre simple de período otros excepto. Mi donación de verano de aunque estrecho marcado en. Primavera formal que ningún condado esperó.', '2020-07-27 01:04:13', '2020-07-27 01:04:13'),
(992, 'about_page_experience_signature_image', '213', '2020-07-27 01:04:13', '2020-10-20 11:13:54'),
(993, 'about_page_experience_video_background_image', '187', '2020-07-27 01:04:13', '2020-10-20 11:13:54'),
(994, 'about_page_en_team_member_section_title', 'Our Team', '2020-07-27 01:05:21', '2022-02-13 02:32:01'),
(995, 'about_page_en_team_member_section_description', 'Lose away off why half led have near bed. At engage simple father of period others except. My giving do summer of though narrow marked at. Spring formal no county ye waited.', '2020-07-27 01:05:21', '2022-02-13 02:32:01'),
(996, 'about_page_tur_team_member_section_title', 'Bizim takım', '2020-07-27 01:05:21', '2020-07-27 01:05:21'),
(997, 'about_page_tur_team_member_section_description', 'Yarım ledin neden yatağın yakınında olduğunu kaybet. Başkalarının dışında dönemin basit babası meşgul. Verdiğim dar olsa işaretlenmiş yaz yapmak. Bahar resmi hiçbir ilçe beklemiyordunuz.', '2020-07-27 01:05:21', '2020-07-27 01:05:21'),
(998, 'about_page_ar_team_member_section_title', 'فريقنا', '2020-07-27 01:05:21', '2020-07-27 01:05:21'),
(999, 'about_page_ar_team_member_section_description', 'خسر بعيدًا عن نصف مصباح LED بالقرب من السرير. في الانخراط والد بسيط للآخرين ما عدا. عطائي القيام الصيف على الرغم من ضيق ملحوظ في. انتظر الربيع الرسمي لا مقاطعة انتم.', '2020-07-27 01:05:21', '2020-07-27 01:05:21'),
(1000, 'about_page_sp_team_member_section_title', 'Nuestro equipo', '2020-07-27 01:05:21', '2020-07-27 01:05:21'),
(1001, 'about_page_sp_team_member_section_description', 'Perder de vista por qué medio conducido tiene cerca de la cama. En comprometer padre simple de período otros excepto. Mi donación de verano de aunque estrecho marcado en. Primavera formal que ningún condado esperó.', '2020-07-27 01:05:21', '2020-07-27 01:05:21'),
(1002, 'about_page_team_member_item', '6', '2020-07-27 01:05:21', '2022-02-13 02:32:01'),
(1003, 'about_page_en_testimonial_title', 'Students Testimonial', '2020-07-27 01:06:37', '2020-10-20 11:07:50'),
(1004, 'about_page_tur_testimonial_title', 'Müşteri Görüşleri', '2020-07-27 01:06:37', '2020-07-27 01:06:37'),
(1005, 'about_page_ar_testimonial_title', 'شهادات العملاء', '2020-07-27 01:06:37', '2020-07-27 01:06:37'),
(1006, 'about_page_sp_testimonial_title', 'Testimonio de clientes', '2020-07-27 01:06:37', '2020-07-27 01:06:37'),
(1007, 'about_page_testimonial_background_image', '89', '2020-07-27 01:06:37', '2020-10-20 11:07:50'),
(1008, 'about_page_testimonial_item', '4', '2020-07-27 01:06:37', '2020-10-20 11:07:50'),
(1009, 'maintain_page_en_title', 'We are on Scheduled Maintenance', '2020-07-27 01:11:36', '2020-07-27 01:12:20'),
(1010, 'maintain_page_en_description', 'Lose away off why half led have near bed. At engage simple father of period others except. My giving do summer of though narrow marked at. Spring formal no county ye waited.', '2020-07-27 01:11:36', '2020-07-27 01:12:20'),
(1011, 'maintain_page_tur_title', NULL, '2020-07-27 01:11:36', '2020-07-27 01:12:20'),
(1012, 'maintain_page_tur_description', NULL, '2020-07-27 01:11:36', '2020-07-27 01:12:20'),
(1013, 'maintain_page_ar_title', NULL, '2020-07-27 01:11:36', '2020-07-27 01:12:20'),
(1014, 'maintain_page_ar_description', NULL, '2020-07-27 01:11:36', '2020-07-27 01:12:20'),
(1015, 'maintain_page_sp_title', NULL, '2020-07-27 01:11:36', '2020-07-27 01:12:20'),
(1016, 'maintain_page_sp_description', NULL, '2020-07-27 01:11:36', '2020-07-27 01:12:20'),
(1017, 'maintain_page_logo', '5', '2020-07-27 01:11:55', '2020-07-27 01:11:55'),
(1018, 'maintain_page_background_image', '89', '2020-07-27 01:11:55', '2020-07-27 01:11:55'),
(1019, 'home_page_02_about_us_video_background_image', '156', '2020-07-27 01:54:01', '2020-10-11 10:45:10'),
(1020, 'home_page_02_about_us_signature_image', '104', '2020-07-27 01:54:01', '2020-10-11 10:45:10'),
(1021, 'home_page_01_en_about_us_description', 'we are ready to serve you according to your preference with maximum effort so that there are no questions unanswered. Your study abroad journey has many steps. We are here to guide you through each of them precisely.', '2020-07-27 01:54:56', '2020-10-20 10:39:11'),
(1022, 'home_page_01_en_about_us_quote_text', 'When it comes to reliability and dedicated services, you are guaranteed to have the best experience from us throughout the process', '2020-07-27 01:54:56', '2020-10-20 10:39:11'),
(1024, 'home_page_01_tur_about_us_quote_text', 'İki konforu davet etti. Yine de gelir etkisi edward. Tüm arzu yolu tasarımı az.', '2020-07-27 01:56:10', '2020-07-27 02:27:29'),
(1026, 'home_page_01_ar_about_us_quote_text', 'خسر بعيدًا عن نصف مصباح LED بالقرب من السرير. في الانخراط والد بسيط للآخرين ما عدا.', '2020-07-27 01:56:10', '2020-07-27 02:27:29'),
(1028, 'home_page_01_sp_about_us_quote_text', 'Ella formando dos consuelo invitado. Sin embargo, ella tiene un efecto edward. Todo el deseo de diseño pocos.', '2020-07-27 01:56:10', '2020-07-27 02:27:29'),
(1029, 'home_page_01_en_quality_area_list', NULL, '2020-07-27 01:58:27', '2020-10-22 07:22:15'),
(1030, 'home_page_01_tur_quality_area_list', 'Nasıl mükemmel merak henüz mutluluk girişiminde.\r\nHer gecikme ölümü için stil isteyin.\r\nYani benim tarafından yapabildim.\r\nEkstremite şimdi yabancılara kahvaltı söylemleri eklemeler içeriyordu.', '2020-07-27 01:58:27', '2020-07-27 03:16:49'),
(1031, 'home_page_01_ar_quality_area_list', 'كيف الترويج فضول ممتاز مع محاولة السعادة.\r\nعن كل تأخير الموت نسأل أسلوب.\r\nأعني قادرة على من هم فيها.\r\nاحتوى التطرف الآن الغرباء على وجبة الإفطار له إضافات الخطاب.', '2020-07-27 01:58:27', '2020-07-27 03:16:49'),
(1032, 'home_page_01_sp_quality_area_list', 'Cómo fomentar una excelente curiosidad al tratar de ser feliz.\r\nPor cada retraso en la muerte requerimos estilo.\r\nMe refiero a capaces de quienes son.\r\nEl extremismo ahora contenía extraños para el desayuno con discurso extra.', '2020-07-27 01:58:27', '2020-07-27 03:16:49'),
(1033, 'home_page_02_quality_area_image', '86', '2020-07-27 01:58:27', '2020-07-27 02:17:13'),
(1034, 'home_page_04_quality_area_image', '93', '2020-07-27 01:58:27', '2020-07-27 03:16:49'),
(1035, 'home_page_01_case_study_items', '6', '2020-07-27 02:00:18', '2020-07-27 02:00:24'),
(1036, 'home_page_02_case_study_background_image', '90', '2020-07-27 02:00:18', '2020-07-27 02:00:24'),
(1037, 'home_page_01_en_team_member_section_title', 'Our Team', '2020-07-27 02:01:24', '2020-07-27 02:02:26'),
(1038, 'home_page_01_en_team_member_section_description', 'Those an equal point no years do. Depend warmth fat but her but played. Shy and subjects wondered trifling pleasant.', '2020-07-27 02:01:24', '2020-07-27 02:02:26'),
(1045, 'home_page_01_team_member_items', '4', '2020-07-27 02:01:24', '2020-07-27 02:02:26'),
(1046, 'home_page_01_en_brand_logo_area_title', 'We have more then 42 Univerites alliance around the globe', '2020-07-27 02:03:10', '2020-10-21 05:52:45'),
(1047, 'home_page_01_tur_brand_logo_area_title', 'Biz daha sonra 20k memnun müşteri bu çalışmaları bizimle.', '2020-07-27 02:03:10', '2020-07-27 02:03:10'),
(1048, 'home_page_01_ar_brand_logo_area_title', 'لدينا أكثر من 20 ألف عميل راضٍ عن هذه الأعمال معنا.', '2020-07-27 02:03:10', '2020-07-27 02:03:10'),
(1049, 'home_page_01_sp_brand_logo_area_title', 'Tenemos más de 20 mil clientes satisfechos que trabajan con nosotros.', '2020-07-27 02:03:10', '2020-07-27 02:03:10'),
(1050, 'home_page_03_about_us_image_one', '84', '2020-07-27 02:27:29', '2020-10-20 10:39:11'),
(1051, 'home_page_03_about_us_image_two', '85', '2020-07-27 02:27:29', '2020-10-20 10:39:11'),
(1052, 'home_page_01_en_cta_area_button_title', 'Call +88-01877710112 or connect with us', '2020-07-27 02:29:05', '2020-10-20 11:15:45'),
(1053, 'home_page_01_en_cta_area_title', 'Are you looking for more details', '2020-07-27 02:29:05', '2020-10-20 11:15:45'),
(1054, 'home_page_01_en_cta_area_button_status', 'on', '2020-07-27 02:29:05', '2020-10-20 11:15:45'),
(1064, 'home_page_01_cta_area_button_url', 'https://futuretrackbd.com/f/appointment', '2020-07-27 02:29:05', '2020-10-20 11:15:45'),
(1065, 'home_page_01_en_about_us_our_mission_title', 'Our Mission', '2020-07-27 03:11:34', '2020-07-27 03:13:51'),
(1066, 'home_page_01_en_about_us_our_mission_description', 'My whether cheered at regular it of promise blushes perhaps. Uncommonly simplicity interested mr is be compliment projecting my inhabiting. Gentleman he september in oh excellent.', '2020-07-27 03:11:34', '2020-07-27 03:13:51'),
(1067, 'home_page_01_en_about_us_our_vision_title', 'Our Vision', '2020-07-27 03:11:34', '2020-07-27 03:13:51'),
(1068, 'home_page_01_en_about_us_our_vision_description', 'My whether cheered at regular it of promise blushes perhaps. Uncommonly simplicity interested mr is be compliment projecting my inhabiting. Gentleman he september in oh excellent.', '2020-07-27 03:11:34', '2020-07-27 03:13:51'),
(1069, 'home_page_04_about_us_our_mission_image', '91', '2020-07-27 03:11:34', '2020-07-27 03:13:51'),
(1070, 'home_page_04_about_us_our_vision_image', '92', '2020-07-27 03:11:34', '2020-07-27 03:13:51'),
(1071, 'home_page_01_tur_about_us_our_mission_title', 'Görevimiz', '2020-07-27 03:13:51', '2020-07-27 03:13:51'),
(1072, 'home_page_01_tur_about_us_our_mission_description', 'Benim düzenli olarak tezahürat olsun belki de kızarıyor. Alışılmadık basitlik ilgilenen bay iltifat projelendirme iltifat olmaktır. Beyefendi o eylül mükemmel.', '2020-07-27 03:13:51', '2020-07-27 03:13:51'),
(1073, 'home_page_01_tur_about_us_our_vision_title', 'Vizyonumuz', '2020-07-27 03:13:51', '2020-07-27 03:13:51'),
(1074, 'home_page_01_tur_about_us_our_vision_description', 'Benim düzenli olarak tezahürat olsun belki de kızarıyor. Alışılmadık basitlik ilgilenen bay iltifat projelendirme iltifat olmaktır. Beyefendi o eylül mükemmel.', '2020-07-27 03:13:51', '2020-07-27 03:13:51'),
(1075, 'home_page_01_ar_about_us_our_mission_title', 'مهمتنا', '2020-07-27 03:13:51', '2020-07-27 03:13:51'),
(1076, 'home_page_01_ar_about_us_our_mission_description', 'بلدي هل هلل هل بانتظام في الوعد خجل ربما. السيد المهتم بالبساطة غير المألوف هو مجاملة إسقاط مسكني. الرجل الذي كان في سبتمبر يا ممتاز.', '2020-07-27 03:13:51', '2020-07-27 03:13:51'),
(1077, 'home_page_01_ar_about_us_our_vision_title', 'رؤيتنا', '2020-07-27 03:13:51', '2020-07-27 03:13:51'),
(1078, 'home_page_01_ar_about_us_our_vision_description', 'بلدي هل هلل هل بانتظام في الوعد خجل ربما. السيد المهتم بالبساطة غير المألوف هو مجاملة إسقاط مسكني. الرجل الذي كان في سبتمبر يا ممتاز.', '2020-07-27 03:13:51', '2020-07-27 03:13:51'),
(1079, 'home_page_01_sp_about_us_our_mission_title', 'Nuestra misión', '2020-07-27 03:13:51', '2020-07-27 03:13:51'),
(1080, 'home_page_01_sp_about_us_our_mission_description', 'Mi si aplaudió regularmente de promesa se sonroja quizás. La simplicidad poco común que le interesa al Sr. es un cumplido proyectando mi habitación. Caballero, septiembre en oh excelente.', '2020-07-27 03:13:51', '2020-07-27 03:13:51'),
(1081, 'home_page_01_sp_about_us_our_vision_title', 'Nuestra visión', '2020-07-27 03:13:51', '2020-07-27 03:13:51'),
(1082, 'home_page_01_sp_about_us_our_vision_description', 'Mi si aplaudió regularmente de promesa se sonroja quizás. La simplicidad poco común que le interesa al Sr. es un cumplido proyectando mi habitación. Caballero, septiembre en oh excelente.', '2020-07-27 03:13:51', '2020-07-27 03:13:51'),
(1083, 'home_03_testimonial_bg', NULL, '2020-07-27 03:17:48', '2022-02-13 04:29:24'),
(1084, 'site_third_party_tracking_code', '<!--Start of Tawk.to Script-->\r\n<script type=\"text/javascript\">\r\nvar Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();\r\n(function(){\r\nvar s1=document.createElement(\"script\"),s0=document.getElementsByTagName(\"script\")[0];\r\ns1.async=true;\r\ns1.src=\'https://embed.tawk.to/5f745f9c4704467e89f37bb4/default\';\r\ns1.charset=\'UTF-8\';\r\ns1.setAttribute(\'crossorigin\',\'*\');\r\ns0.parentNode.insertBefore(s1,s0);\r\n})();\r\n</script>\r\n<!--End of Tawk.to Script-->\r\n\r\n\r\n<script data-ad-client=\"ca-pub-1844063768641558\" async src=\"https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script>\r\n\r\n\r\n\r\n\r\n<<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-184152745-1\">\r\n</script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'UA-184152745-1\');\r\n</script>\r\n\r\n<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-184152745-1\">\r\n</script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'UA-184152745-1\');\r\n</script>', '2020-07-28 22:28:37', '2020-11-29 08:19:32'),
(1085, 'service_query_en_success_message', 'Thanks for your message. we will contact you soon.', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1086, 'case_study_query_en_success_message', 'Thanks for your message. we will contact you soon.', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1087, 'apply_job_en_success_message', 'Your Application Is Submitted Successfully!!', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1088, 'event_attendance_mail_en_success_message', 'Thanks for your Booking. we will get back to you very soon.', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1089, 'feedback_form_mail_en_success_message', 'Thanks for your feedback!!', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1090, 'service_query_tur_success_message', 'Mesajın için teşekkürler. yakında sizinle iletişime geçeceğiz.', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1091, 'case_study_query_tur_success_message', 'Mesajın için teşekkürler. yakında sizinle iletişime geçeceğiz.', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1092, 'apply_job_tur_success_message', 'Başvurunuz Başarıyla Gönderildi !!', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1093, 'event_attendance_mail_tur_success_message', 'Rezervasyonunuz için teşekkürler. çok yakında size geri döneceğiz.', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1094, 'feedback_form_mail_tur_success_message', 'Geri bildiriminiz için teşekkürler!!', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1095, 'service_query_ar_success_message', 'شكرا على رسالتك. سوف نتصل بك قريبا.', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1096, 'case_study_query_ar_success_message', 'شكرا على رسالتك. سوف نتصل بك قريبا.', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1097, 'apply_job_ar_success_message', 'يتم تقديم طلبك بنجاح !!', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1098, 'event_attendance_mail_ar_success_message', 'شكرا لحجزك. ونحن سوف نعود إليكم قريبا جدا.', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1099, 'feedback_form_mail_ar_success_message', 'شكرا لملاحظاتك!!', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1100, 'service_query_sp_success_message', 'Gracias por tu mensaje. Nos pondremos en contacto con usted pronto.', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1101, 'case_study_query_sp_success_message', 'Gracias por tu mensaje. Nos pondremos en contacto con usted pronto.', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1102, 'apply_job_sp_success_message', 'Başvurunuz Başarıyla Gönderildi !!', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1103, 'event_attendance_mail_sp_success_message', 'Gracias por su reserva. Regresaremos a Ud. muy pronto.', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1104, 'feedback_form_mail_sp_success_message', 'Gracias por tus comentarios !!', '2020-07-29 19:12:35', '2020-07-29 19:25:46'),
(1105, 'site_usd_to_eur_exchange_rate', '0.85', '2020-08-03 23:18:49', '2020-08-12 09:13:12'),
(1106, 'site_usd_to_ngn_exchange_rate', '385', '2020-08-03 23:18:49', '2020-08-12 09:13:12'),
(1107, 'site_euro_to_ngn_exchange_rate', '436', '2020-08-03 23:18:49', '2020-08-03 23:18:49'),
(1108, 'mollie_public_key', 'test_SMWtwR6W48QN2UwFQBUqRDKWhaQEvw', '2020-08-03 23:18:49', '2020-08-12 09:13:12'),
(1109, 'mollie_preview_logo', '98', '2020-08-03 23:18:49', '2020-08-12 09:13:12'),
(1110, 'flutterwave_preview_logo', '97', '2020-08-03 23:18:49', '2020-08-12 09:13:12'),
(1111, 'flutterwave_secret_key', 'FLWSECK-e33b022937c2a64446dca55dbb7ceb08-X', '2020-08-03 23:18:49', '2020-08-12 09:13:12'),
(1112, 'flutterwave_public_key', 'FLWPUBK-d981d2a182ba72915b699603c2db82e0-X', '2020-08-03 23:18:49', '2020-08-12 09:13:12'),
(1113, 'mollie_gateway', 'on', '2020-08-03 23:18:49', '2020-08-12 09:13:12'),
(1114, 'flutterwave_gateway', 'on', '2020-08-03 23:18:49', '2020-08-12 09:13:12'),
(1115, 'job_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1116, 'events_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1117, 'product_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1118, 'donations_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1119, 'knowledgebase_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1120, 'job_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1121, 'events_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1122, 'product_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1123, 'donations_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1124, 'knowledgebase_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1125, 'job_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1126, 'events_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1127, 'product_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1128, 'donations_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1129, 'knowledgebase_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1130, 'job_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1131, 'events_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1132, 'product_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1133, 'donations_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1134, 'knowledgebase_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1135, 'job_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1136, 'events_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1137, 'product_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1138, 'donations_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1139, 'knowledgebase_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1140, 'job_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1141, 'events_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1142, 'product_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1143, 'donations_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1144, 'knowledgebase_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1145, 'job_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1146, 'events_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1147, 'product_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1148, 'donations_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1149, 'knowledgebase_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1150, 'job_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1151, 'events_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1152, 'product_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1153, 'donations_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1154, 'knowledgebase_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1155, 'job_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1156, 'events_module_status', 'on', NULL, '2020-10-11 11:11:30'),
(1157, 'product_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1158, 'donations_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1159, 'knowledgebase_module_status', NULL, NULL, '2020-10-11 11:11:30'),
(1160, 'donor_page_slug', 'donor-list', '2020-08-11 22:32:03', '2020-10-20 10:32:31'),
(1161, 'donor_page_en_name', 'Donor List', '2020-08-11 22:32:03', '2020-10-20 10:32:32'),
(1162, 'donor_page_en_meta_tags', NULL, '2020-08-11 22:32:03', '2020-10-20 10:32:32'),
(1163, 'donor_page_en_meta_description', NULL, '2020-08-11 22:32:03', '2020-10-20 10:32:32'),
(1164, 'donor_page_tur_name', 'Donör Listesi', '2020-08-11 22:32:03', '2020-08-11 22:33:16'),
(1165, 'donor_page_tur_meta_tags', NULL, '2020-08-11 22:32:03', '2020-08-11 22:33:16'),
(1166, 'donor_page_tur_meta_description', NULL, '2020-08-11 22:32:03', '2020-08-11 22:33:16'),
(1167, 'donor_page_ar_name', 'قائمة المتبرعين', '2020-08-11 22:32:04', '2020-08-11 22:33:16'),
(1168, 'donor_page_ar_meta_tags', NULL, '2020-08-11 22:32:04', '2020-08-11 22:33:16'),
(1169, 'donor_page_ar_meta_description', NULL, '2020-08-11 22:32:04', '2020-08-11 22:33:16'),
(1170, 'donor_page_sp_name', 'Lista de donantes', '2020-08-11 22:32:04', '2020-08-11 22:33:17'),
(1171, 'donor_page_sp_meta_tags', NULL, '2020-08-11 22:32:04', '2020-08-11 22:33:17'),
(1172, 'donor_page_sp_meta_description', NULL, '2020-08-11 22:32:04', '2020-08-11 22:33:17'),
(1173, 'site_usd_to_inr_exchange_rate', '75.04', '2020-08-12 09:13:12', '2020-08-12 09:13:12'),
(1174, 'site_usd_to_idr_exchange_rate', '14714.20', '2020-08-12 09:13:12', '2020-08-12 09:13:12'),
(1175, 'site_usd_to_aud_exchange_rate', '1.40', '2020-08-12 09:13:12', '2020-08-12 09:13:12'),
(1176, 'site_usd_to_sgd_exchange_rate', '1.37', '2020-08-12 09:13:12', '2020-08-12 09:13:12'),
(1177, 'site_usd_to_jpy_exchange_rate', '105.92', '2020-08-12 09:13:12', '2020-08-12 09:13:12'),
(1178, 'site_usd_to_gbp_exchange_rate', '0.77', '2020-08-12 09:13:12', '2020-08-12 09:13:12'),
(1179, 'site_usd_to_myr_exchange_rate', '4.19', '2020-08-12 09:13:12', '2020-08-12 09:13:12'),
(1180, 'site_usd_to_php_exchange_rate', '49.08', '2020-08-12 09:13:12', '2020-08-12 09:13:12'),
(1181, 'site_usd_to_thb_exchange_rate', '31.23', '2020-08-12 09:13:12', '2020-08-12 09:13:12'),
(1182, 'site_usd_to_krw_exchange_rate', '1189.17', '2020-08-12 09:13:12', '2020-08-12 09:13:12'),
(1183, 'site_usd_to_ghs_exchange_rate', '5.77', '2020-08-12 09:13:12', '2020-08-12 09:13:12'),
(1184, 'preloader_status', NULL, '2020-08-13 17:32:24', '2020-10-20 09:50:17'),
(1185, 'og_meta_image_for_site', '104', '2020-08-24 17:35:17', '2023-11-30 05:11:57'),
(1186, 'disable_backend_preloader', 'on', '2020-08-24 17:35:18', '2023-11-30 05:11:57'),
(1187, 'disable_user_email_verify', 'on', '2020-08-24 17:35:18', '2023-11-30 05:11:57'),
(1188, 'event_single_en_event_expire_text', 'Event Expired', '2020-08-24 17:47:28', '2020-10-10 10:16:01'),
(1189, 'event_single_tur_event_expire_text', NULL, '2020-08-24 17:47:29', '2020-08-24 17:47:29'),
(1190, 'event_single_ar_event_expire_text', NULL, '2020-08-24 17:47:29', '2020-08-24 17:47:29'),
(1191, 'event_single_sp_event_expire_text', NULL, '2020-08-24 17:47:29', '2020-08-24 17:47:29'),
(1192, 'donation_custom_amount', '10,20,30,40,50', '2020-08-24 17:49:28', '2020-08-24 17:49:28'),
(1193, 'donation_default_amount', '15', '2020-08-24 17:49:28', '2020-08-24 17:49:28'),
(1194, 'home_page_01_service_area_item_type', 'service', '2020-10-10 11:15:25', '2023-11-22 02:52:12');

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

--
-- Table structure for table `team_members`
--

CREATE TABLE `team_members` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `designation` varchar(191) NOT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `icon_one` varchar(191) DEFAULT NULL,
  `icon_two` varchar(191) DEFAULT NULL,
  `icon_three` varchar(191) DEFAULT NULL,
  `icon_one_url` varchar(191) DEFAULT NULL,
  `icon_two_url` varchar(191) DEFAULT NULL,
  `icon_three_url` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `team_members`
--

INSERT INTO `team_members` (`id`, `name`, `designation`, `lang`, `description`, `image`, `icon_one`, `icon_two`, `icon_three`, `icon_one_url`, `icon_two_url`, `icon_three_url`, `created_at`, `updated_at`) VALUES
(49, 'Mahbuba Akter Jui', 'Student Counselor', 'en', NULL, '415', 'fab fa-instagram', 'fab fa-twitter', 'fab fa-facebook-f', NULL, NULL, NULL, '2023-11-21 05:19:55', '2024-01-28 03:58:13'),
(50, 'Nira Islam Nithi', 'Student Counsellor', 'en', NULL, '448', 'fab fa-instagram', 'fab fa-twitter', 'fab fa-facebook-f', NULL, NULL, NULL, '2023-11-21 05:20:53', '2024-10-23 01:27:27'),
(55, 'Taniya Ahmed', 'Senior Counselor', 'en', NULL, '388', 'fab fa-instagram', 'fab fa-twitter', 'fab fa-facebook-f', NULL, NULL, NULL, '2023-11-21 05:24:00', '2024-01-28 03:54:04'),
(56, 'Mahfuza Akther', 'Head of Admission & Visa', 'en', NULL, '383', 'fab fa-instagram', 'fab fa-twitter', 'fab fa-facebook-f', NULL, NULL, NULL, '2023-11-21 05:26:43', '2024-01-28 03:56:45'),
(57, 'Md Rashed Un Nabi', 'Head of Brand & Operations', 'en', NULL, '384', 'fab fa-instagram', 'fab fa-twitter', 'fab fa-facebook-f', NULL, NULL, NULL, '2023-11-21 05:28:57', '2024-01-28 03:56:16'),
(58, 'Sarwar Zaman', 'Marketing Director, Future Track Canada', 'en', NULL, '389', 'fab fa-instagram', 'fab fa-twitter', 'fab fa-facebook-f', NULL, NULL, NULL, '2023-11-21 05:30:37', '2024-01-28 03:55:24'),
(60, 'Rifaat Wahid', 'Managing Director', 'en', NULL, '385', 'fab fa-instagram', 'fab fa-twitter', 'fab fa-facebook-f', NULL, NULL, NULL, '2024-01-28 03:46:21', '2024-01-28 03:55:08');

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

--
-- Table structure for table `testimonials`
--

CREATE TABLE `testimonials` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `description` text NOT NULL,
  `status` varchar(191) DEFAULT NULL,
  `designation` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `users` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `email` varchar(191) NOT NULL,
  `username` varchar(191) NOT NULL,
  `email_verified` varchar(191) DEFAULT '0',
  `email_verify_token` text DEFAULT NULL,
  `phone` varchar(191) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `state` varchar(191) DEFAULT NULL,
  `city` varchar(191) DEFAULT NULL,
  `zipcode` varchar(191) DEFAULT NULL,
  `country` varchar(191) DEFAULT NULL,
  `password` varchar(191) NOT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `users` (`id`, `name`, `email`, `username`, `email_verified`, `email_verify_token`, `phone`, `address`, `state`, `city`, `zipcode`, `country`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(51, 'Fairuz Faiza', 'fairuzfaiza9@gmail.com', 'Fairuz Faiza', '0', 'iAQGwJi85a3NhGNmTKzL', NULL, NULL, NULL, 'Chittagong', NULL, 'Bangladesh', '35c84ed4de243bda1584c5075933387e', NULL, '2020-10-28 13:01:17', '2020-10-28 13:01:18'),
(52, 'Abdul kuyyam', 'kuyyamit@yahoo.com', 'kuyyam', '0', '3Citqwpg7zXxsYVugcLX', NULL, NULL, NULL, 'chittagon', NULL, 'Bangladesh', '$2y$10$eQ0TYG1dK11lRynTPGIxze3x6DYOZa5Rz6SJPnOJGb4krGS5fDgH6', NULL, '2020-11-02 06:49:00', '2020-11-02 06:49:00'),
(53, 'Pradyut Kumar Saha', 'sahapradyut88@gmail.com', 'Pradyut Kumar Saha', '0', 'dvwnWkmqL2zDer4SSaOy', NULL, NULL, NULL, 'Chittagong', NULL, 'Bangladesh', '$2y$10$.ZB6vdScgZCnaTR7Tz0N5eaIeM4ze23D9yrGf7xra4T6XOYW.duZe', NULL, '2020-11-05 11:58:51', '2020-11-05 11:58:52'),
(54, 'Roni hasan', 'Ronihasan9819@gmail.com', 'Roni', '0', 'UxyvHPgKSW9EXOAFK3t1', NULL, NULL, NULL, 'sylhet', NULL, 'Bangladesh', '$2y$10$tcnC2U/PoKv23xeXLzk8gOeXGsp/RVppd.nMJlZDpjFmUht.eRYt6', NULL, '2020-11-05 19:26:44', '2020-11-05 19:26:45'),
(55, 'Adiba Ajrin Moushi', 'adibaajrin21@gmail.com', 'Moushi', '0', NULL, NULL, NULL, NULL, 'Gazipur', NULL, 'Bangladesh', '$2y$10$SoSGoDGRNUlyKA0OodWLp.PVaDdxChmXosEOCIYvWxCIuPnqVYd2q', NULL, '2020-11-06 04:21:22', '2020-11-06 04:21:22'),
(56, 'Md Khaled Hasan', 'amikhaled601@gmail.com', 'md_hasan', '0', 'Ik6mFWnGUMWzcX6Sv1gk', NULL, NULL, NULL, 'Sylhet', NULL, 'Bangladesh', '$2y$10$R5WzyyNZHtGAzhcloMq5Guhe4ABWixoMLMpJz4xOhuEthxsyf.i.S', NULL, '2020-11-14 13:47:48', '2020-11-14 13:47:48'),
(57, 'Azizul Islam Sowmik', 'asowmik55@gmail.com', 'asowmik55', '0', 'yRMPaT19YndNWulVL2td', NULL, NULL, NULL, 'Sylhet', NULL, 'Bangladesh', '$2y$10$fKoLwoQ7ID.HaN55rfcAouwOCtZ0.1IaDoK6WQoSHNOeW4mL9xkJy', NULL, '2020-11-14 16:21:37', '2020-11-14 16:21:38'),
(58, 'Md Shahin Hossain', 'theshahinbd2020@gmail.com', 'theshahinbd', '0', 'pLkLTU8azuuLadUOlXxY', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$df1VpDKtbao2J4s.OK3d4.qmIskKTQO7OB8PZftAfIF9Yg56B2Djm', NULL, '2020-11-18 11:51:48', '2020-11-18 11:51:49'),
(59, 'Abdullah Al Tahsin', 'tahsinmd325@gmail.com', 'Tahsin', '0', 'ZyFi2sSmBotmmms3wMjS', NULL, NULL, NULL, 'Chittagong', NULL, 'Bangladesh', '$2y$10$YOiSVlCuPwZ4.bAjDVSmXu1tYU3fLYFm9.kUzt/lpnKcmIwv7moYy', NULL, '2020-12-07 06:06:16', '2020-12-07 06:06:17'),
(60, 'ÿþX http://mail.com/402', 'carillofrancoise.23455645@gmail.com', 'ÿþX http://mail.com/402', '0', 'TIVdAptEyDWCs7xmah3l', NULL, NULL, NULL, 'ÐœÐ¾ÑÐºÐ²Ð°', NULL, 'Tokelau', '$2y$10$ftXKXnqJeX4LAo8Jtei03Oh0xJ2dmBjxZppABjMtaBycPx1nAvICS', NULL, '2020-12-21 19:51:55', '2020-12-21 19:52:02'),
(61, 'XXVO74SUQ8A7T73YAFLKFVXX http://mail.com/008', 'waggamantitus18157413@gmail.com', 'XXVO74SUQ8A7T73YAFLKFVXX http://mail.com/008', '0', 'RfgJrtjfKho2Kt4Jzr6t', NULL, NULL, NULL, 'РњРѕСЃРєРІР°', NULL, 'Gabon', '$2y$10$ZL4ySnWgQsayjjM7.I.rHu7jH9uaftiqor9VjDeENBDEG45/jDXIK', NULL, '2020-12-27 03:36:16', '2020-12-27 03:36:18'),
(62, 'Документ номер WLR57848WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com', 'ivanovmarkfxb@mail.ru', 'Документ номер WLR57848WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com', '0', NULL, NULL, NULL, NULL, 'РњРѕСЃРєРІР°', NULL, 'Finland', '$2y$10$WkMKEublRXp/YYRAXQU53uU9AVEaa.8YU0q3gJLWz5qWEb/qlifnG', NULL, '2021-01-03 00:12:41', '2021-01-03 00:12:41'),
(63, 'Tom Mueller IV', 'rweinholdt@volcano.net', 'Golden.Hessel', '0', 'Wy6Tez3R0INiguSPmPgS', NULL, NULL, NULL, 'Hackettmouth', NULL, 'United States of America', '$2y$10$Aut5huX2fkKtByqtrWiNGub9.wwPPAawKtvpFPLfVv1RGdJkGemMy', NULL, '2021-01-10 20:25:48', '2021-01-10 20:25:50'),
(64, 'Allen Jast', 'josh.billman@gmail.com', 'Malinda66', '0', 'preNcXTRE018Udd5wDR1', NULL, NULL, NULL, 'Runolfssonmouth', NULL, 'United States of America', '$2y$10$FuaN3Zv.4.ow7QtiTK64YupcBEKEIekGMfM.h38sK3ul4h4mnaqdm', NULL, '2021-01-13 18:15:46', '2021-01-13 18:15:48'),
(65, 'June Luettgen', 'feminorandy@yahoo.com', 'Santos_Kilback94', '0', '1QfwixzoTOtkyQ3HrvrT', NULL, NULL, NULL, 'Oberbrunnerfort', NULL, 'United States of America', '$2y$10$GH1NhQLYs5l5uQ7osSvf7eUQfx1X32wtPHAKR5PyX3fJ0Xuyj0g5u', NULL, '2021-01-14 16:34:00', '2021-01-14 16:34:01'),
(66, 'Olin Ward', 'brad.malkin@noblehomeloans.com', 'Abner92', '0', '2UXsNWaxCL7Y27OyNgUb', NULL, NULL, NULL, 'Kuhicberg', NULL, 'United States of America', '$2y$10$VPY478k6NRJGIMwa8w6zseRgiROoFISwdsq/IYGBEOsy1lXX64Pwi', NULL, '2021-01-18 01:54:40', '2021-01-18 01:54:41'),
(67, 'Md. Mofazzal Hossain', 'mofazzalj68@gmail.com', 'Mofazzal', '0', 'YVxXmYsddeYxFiUyK4WA', NULL, NULL, NULL, 'Gazipur City', NULL, 'Bangladesh', '$2y$10$3ULOXcp.ghr0fP/3HXCEWenu8qQiTUJpC3/AsQb0JEtMmQ1YMf4La', NULL, '2021-01-18 13:39:30', '2021-01-18 13:39:30'),
(68, 'Документ номер WLR547108WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com', 'ovchinnikovantonhli@mail.ru', 'Документ номер WLR547108WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com', '0', 'CMsEw69gOROZ1SvGpVFH', NULL, NULL, NULL, 'РњРѕСЃРєРІР°', NULL, 'Virgin Islands (USA)', '$2y$10$zmz3l4o/.KYSZ0eoc/AI.OZnMdXstAT5Id54rLCH6pkiQRa4M8QUK', NULL, '2021-01-23 05:54:10', '2021-01-23 05:54:20'),
(69, 'Gail Haley', 'leannhiltonusa@gmail.com', 'Ramiro.Brown', '0', 'KHTHdhjItw5uoTm366Pq', NULL, NULL, NULL, 'Vonland', NULL, 'United States of America', '$2y$10$F69LF9SpWSCUAr8IUqcwC.ml/HFNZBhg3WAxQF8crxS5eRbIEJ3S6', NULL, '2021-01-23 09:27:47', '2021-01-23 09:27:48'),
(70, 'Mysha Tarannum', 'tarannummysha900@gmail.com', 'Mysha Tarannum', '0', 'IbHiJmZcAEwg89ysqZc7', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$TYlnLULgoesGGDwFqOkU7O7WXYEsnfCp2V3RgsVDF43KRuiLmPmq6', NULL, '2021-01-23 15:44:18', '2021-01-23 15:44:18'),
(71, 'Sajid Raihan', 'sajidraihan725@gmail.com', 'sajid', '0', 'vsx6UtWZ6Ha9elESX4Uq', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$n.MwCZT5W6bIwwZ.rownre/4b64X6ZrXZh6CgVOeo480ysRD.bEtG', NULL, '2021-01-26 10:04:58', '2021-01-26 10:04:59'),
(72, 'Документ номер WLR1381984WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com', 'orlovamariiasydj@mail.ru', 'Документ номер WLR1381984WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com', '0', 'BBOVsaRf8EV5Zu2FQOs7', NULL, NULL, NULL, 'РњРѕСЃРєРІР°', NULL, 'Guatemala', '$2y$10$DYNufQyDaa31zsQSmhhmSOG3auO3SguRbTaPNw33XPLqDlxeIuhGm', NULL, '2021-01-29 16:35:11', '2021-01-29 16:35:16'),
(73, 'Salvatore Bernhard', 's.marissa83@yahoo.com', 'Tristin14', '0', 's15DzCGLtYKvx6Sr67Yl', NULL, NULL, NULL, 'New Margie', NULL, 'United States of America', '$2y$10$2lL2fVS/0UdhCr3v0NqkseXgrnF5Jwy7GvnSqMGCQrXBW9mxJVUGO', NULL, '2021-01-29 18:10:00', '2021-01-29 18:10:02'),
(74, 'Mrs. Jasen Monahan', 'maryanne.sacha@yahoo.com', 'Ana_Macejkovic11', '0', 'eTWoP9ZAlBsu485roGi2', NULL, NULL, NULL, 'South Oma', NULL, 'United States of America', '$2y$10$1JdZKhO7.UavB3hE0vDsWu7odw5xLgLfWSUyv41XcqltDaSqcMPy.', NULL, '2021-01-30 15:19:30', '2021-01-30 15:19:32'),
(75, 'Jameson Wyman', 'teambispo@gmail.com', 'Jeanne.Kohler28', '0', 'OCe28uvxJFjMBcpVoMUm', NULL, NULL, NULL, 'Port Lisa', NULL, 'United States of America', '$2y$10$8271KxAmktYDsbt0hb8HR.P6I27IIDdkRNIFMp4ibfu6u82R2fGX6', NULL, '2021-02-03 15:04:06', '2021-02-03 15:04:07'),
(76, 'kawsar mahmud', 'nrain798@gmail.com', 'kawsar', '0', 'AhVXLoZB7zGuAX7GfuJI', NULL, NULL, NULL, 'dhaka', NULL, 'Bangladesh', '$2y$10$kWDO2TlJPfW.BobDeDE5RughVC/iBw8uYO1FosZPMp3oVAH5f38Ne', NULL, '2021-02-03 15:29:57', '2021-02-03 15:29:58'),
(77, 'Mr. Dion Feeney', 'sandrinecotica@hotmail.fr', 'Fernando21', '0', 'dbm5oAgvSC5toDESEcmi', NULL, NULL, NULL, 'Gilbertchester', NULL, 'United States of America', '$2y$10$RRlDYJ54XtmapE9SpA4JkOMCtc12M1eSIJqkEEYXh2M6Z42O1bju.', NULL, '2021-02-03 17:41:33', '2021-02-03 17:41:35'),
(78, 'Tasman Walid Lyon', 'tasmanwalid2603@gmail.com', 'Tasman', '0', 'gLzfvgefXzrTFzX71bWw', NULL, NULL, NULL, 'Sylhet', NULL, 'Bangladesh', '$2y$10$d8ltOZwdp/tIsk6it88IUOCL7CllPcAXlTPX.cRISC/6yikW0wBbe', NULL, '2021-02-04 07:38:13', '2021-02-04 07:38:14'),
(79, 'Md Anis', 'anis61945@gmail.com', 'Mia', '0', '2JVzV6cx4s7SF3VrcATX', NULL, NULL, NULL, 'Cumilla', NULL, 'Canada', '$2y$10$sVIw5naCu6lo/LFVeb7sOu87hja4Y8FcV/N.VJFBXK9DWy84aZ7RS', NULL, '2021-02-04 09:09:17', '2021-02-04 09:09:17'),
(80, 'Md.abdul mumin parvez', 'parvez.am37@gmail.com', 'Parvez', '0', '7SK7Yo8oWng3Mv9uziIE', NULL, NULL, NULL, 'Sylhet', NULL, 'Afganistan', '$2y$10$fQcEBlm4qBz9ygAX/02AXeI5wWyzrthlh0cuGeHVwyN1oI/U0vpQK', NULL, '2021-02-08 15:54:42', '2021-02-08 15:54:43'),
(81, 'Viva Osinski', 'scott.richter01@gmail.com', 'Ozella.Heathcote25', '0', 'J6pI9EyFp6HRcjiOZvIY', NULL, NULL, NULL, 'Stantonberg', NULL, 'United States of America', '$2y$10$STwxO1GLHk43bnQ09eCc0u/CBKdX3JnHfivs2j68tZ3u82jguOLPi', NULL, '2021-02-10 01:29:13', '2021-02-10 01:29:15'),
(82, 'Alayna Kihn', 'anjusharma2005.05@gmail.com', 'Ola43', '0', 'Uc7SDyzNGVyNuXT9W3uD', NULL, NULL, NULL, 'Hillsville', NULL, 'United States of America', '$2y$10$Q5UIE8FSVAYH7AgfmwNKZeqvrjM3I9HJ4PVUn6odpMq4GtFhc9you', NULL, '2021-02-17 00:03:34', '2021-02-17 00:03:36'),
(83, 'Arik Monawwar', 'ariqmonawwar06@gmail.com', 'Arik', '0', 'UrHNpdSezHBZCYK682KK', NULL, NULL, NULL, 'Sylhet', NULL, 'Bangladesh', '$2y$10$7yIaVw5xyrkdDL6N1/KCj.dEKTPUf9napSE7OMzZXzh4NsxTv0tdy', NULL, '2021-02-17 05:37:48', '2021-02-17 05:37:49'),
(84, 'Prity Ranjan Talukdar', 'shuvro.talukdar11@gmail.com', 'Shuvro', '0', 'sGb3N1zgAN0hZRORebFu', NULL, NULL, NULL, 'Sylhet', NULL, 'Bangladesh', '$2y$10$b.QT8smSS2B9iufT0tpuFu44tS8TzJmTE4NlZIZsXk51f6/MrMB5W', NULL, '2021-02-27 16:19:55', '2021-02-27 16:19:55'),
(85, 'ASHRAFUL ISLAM', 'ashrafulislam91@yahoo.com', 'ashrafulislamjehun@gmail.com', '0', 'mAlmcO18H7DvqrlANDIO', NULL, NULL, NULL, 'Kasba', NULL, 'Bangladesh', '$2y$10$D2BvU96JpBsCIenZBH/ujelCyp9ZjViuOJs5pBkAT3f0hAioXwZAe', NULL, '2021-03-01 15:17:30', '2021-03-01 15:17:30'),
(86, 'Hassan Grimes', 'bensengle@gmail.com', 'Houston.OReilly74', '0', 'nd3ZRh7DBTWevlJdJCWU', NULL, NULL, NULL, 'Port Ashleychester', NULL, 'United States of America', '$2y$10$/IxcFoSLaabrOncRRxdg1OSqyONIslujwzZGJvCr9Xv616S1wgo6C', NULL, '2021-03-03 13:36:15', '2021-03-03 13:36:16'),
(87, 'S M Faiaz Tamim', 'sfaiaztamim@gmail.com', 'sm_faiaz', '0', 'SCEPS3wIRVC0IWuAlGAp', NULL, NULL, NULL, 'Comilla', NULL, 'Bangladesh', '$2y$10$.6Lc3bLKfxzgGubBKCynYOMKXkwqBYhNkbkLSIZT6m98.D1DSM7Ge', NULL, '2021-03-12 08:03:14', '2021-03-12 08:03:15'),
(88, 'Md .Borhan uddin', 'mdborhanuddin829@gmail.com', 'Borhan', '0', 'xkx3bmr26tZ0yx09x15x', NULL, NULL, NULL, 'comilla', NULL, 'Bangladesh', '$2y$10$tHhlL98ULuj.YqQASDijqe3gFqbuQSJbd6fuub0Xkh0JDiZ/ykiPO', NULL, '2021-03-16 04:34:58', '2021-03-16 04:34:59'),
(89, 'Nusrat Jahan Sweety', 'ahshakil793@gmail.com', 'Nusrat', '0', 'BqHV7CakKNLWh33Pqe4d', NULL, NULL, NULL, 'Cumilla', NULL, 'Canada', '$2y$10$sWqEH7pcnZl3hz9x5mqKNu9qc8bJa4o6RLiUDmXWgMyHKAUqZPkFK', NULL, '2021-03-16 08:26:52', '2021-03-16 08:26:52'),
(90, 'Osvaldo Collins', 'deseraymeza@yahoo.com', 'Armani76', '0', 'IG2snUCcHlwKPCTjZVTM', NULL, NULL, NULL, 'Jakubowskifort', NULL, 'United States of America', '$2y$10$fYxYURLrHf27tTxMS4tzRu/suMZCh8GitnxxC76g9mX9pHBmTXGsa', NULL, '2021-03-18 03:59:30', '2021-03-18 03:59:32'),
(91, 'YTX07YYYNB9NSFCE6UR9BXTY http://google.com/724', 'maryleedierdre43531958@gmail.com', 'YTX07YYYNB9NSFCE6UR9BXTY http://google.com/724', '0', 'IzCvNeBZleeO3ZT0u5TB', NULL, NULL, NULL, 'ÐœÐ¾ÑÐºÐ²Ð°', NULL, 'Republic of Montenegro', '$2y$10$sEXKPj/YQvBqsb5JhQQ.1em8g0XrGqG0brXcNcLb7XcB7WdcjYxRG', NULL, '2021-03-22 08:03:58', '2021-03-22 08:04:00'),
(92, 'Dina Luettgen', 'mariellegilbert@gmail.com', 'Carol_Rath83', '0', 'ZGysTj3gVvvX62tPZoJI', NULL, NULL, NULL, 'Remingtonshire', NULL, 'United States of America', '$2y$10$ydMX/upU2P7ComUm.rCLwu2hMsBWZCNnd4hY/ovgZexdEAlf.ojMK', NULL, '2021-03-28 23:30:01', '2021-03-28 23:30:02'),
(93, 'Destiney Bogisich', 'mrjce@icloud.com', 'Edwin89', '0', 'ngEY9o5T7SAnqFZ4LLcw', NULL, NULL, NULL, 'Amelieberg', NULL, 'United States of America', '$2y$10$ZPHpR2krA6m5GR6HWlNdt.D6VgHD12taMkMhH/Q81FztmO6NJ9nfq', NULL, '2021-03-29 12:34:37', '2021-03-29 12:34:39'),
(94, 'Jessika Macejkovic', 'listing@bithumbcorp.com', 'Arch_Witting9', '0', 'gmzSeraLwOKGsleiNw68', NULL, NULL, NULL, 'O\'Keefeport', NULL, 'United States of America', '$2y$10$y8Gze4sRfpSJLC5NVdEgB.YPtFPZWjz2l5HiZXy8ai0VLWyfQGTbm', NULL, '2021-04-04 16:20:14', '2021-04-04 16:20:15'),
(95, 'Merritt Collier', 'eltongerdesdyr59@gmail.com', 'Danika76', '0', '0obIhxSmUYjWJZIdcHQF', NULL, NULL, NULL, 'Goldnerburgh', NULL, 'United States of America', '$2y$10$XAFniJC3hE0/B39PtcWqIOjUFatyC3BHPL/Buy7EJL4WUKmuTV/AO', NULL, '2021-04-08 22:48:29', '2021-04-08 22:48:30'),
(96, 'Ms. Steve Abshire', 'klittlegeorge21@yahoo.com', 'Lourdes.Crona', '0', 'TQzkyFK32oWX4BcDBtXT', NULL, NULL, NULL, 'Port Mertieland', NULL, 'United States of America', '$2y$10$qTkPwJOPbBFlP2dHGH1wXejM18GBCg7rFqsAS0Vjz87WvTUWXBtu.', NULL, '2021-04-12 20:00:34', '2021-04-12 20:00:36'),
(97, 'Duane Bashirian', 'joancrawford@rogers.com', 'Dell45', '0', 'a19e4hlz1aRcmhvqiyl4', NULL, NULL, NULL, 'Lilyanmouth', NULL, 'United States of America', '$2y$10$0IEtuNkjBbb3fXhcGwV/MOhWyqdFD8PLWNP2EMMwts6PSpM/yIerq', NULL, '2021-04-16 02:54:45', '2021-04-16 02:54:46'),
(98, 'Ahmed Rahat', 'rahat09101995@gmail.com', 'Rahat09', '0', 'YmwpOyxUmwmVqSYKhWZY', NULL, NULL, NULL, 'dhaka', NULL, 'Bangladesh', '$2y$10$DK64AdjZjLga/uc1jSbLguPx7/sVsCxEEVR2ID1UkC6KDdeUa5q2.', NULL, '2021-07-06 06:41:11', '2021-07-06 06:41:11'),
(99, 'Miss Lucia Rau', 'vchisley@comcast.net', 'Jaquan_Parisian52', '0', '61AFDlXy4xlgoi8jn0OQ', NULL, NULL, NULL, 'Port Alanna', NULL, 'United States of America', '$2y$10$n2jjjIg/G97pii5/aVQEjOT/I64DrUfoN0JXURPpqsA3Pgs0C5iM6', NULL, '2021-07-17 16:20:13', '2021-07-17 16:20:15'),
(100, 'Tami Zemlak', 'dotyjaco@yahoo.com', 'Berenice.Gerlach', '0', 'mfwqKQMCRFIbfmxQikFV', NULL, NULL, NULL, 'South Sadye', NULL, 'United States of America', '$2y$10$HNxx7Ca6ZdDvVZ7z8M/c6en2glvPDWNOCZ7cl9kjtwEf1w3jrZdLW', NULL, '2021-07-18 12:52:24', '2021-07-18 12:52:26'),
(101, 'Kelsi Stark', 'lavanya.palaparthy@gmail.com', 'Adolfo.Emard', '0', NULL, NULL, NULL, NULL, 'North Norris', NULL, 'United States of America', '$2y$10$Z7wMRsrlsxqUxZvGm4gyEuqrpZJ/8BqLHxbNYgnte6mRBgi0g0aNa', NULL, '2021-07-20 08:02:00', '2021-07-20 08:02:00'),
(102, 'Rodisvieks', 'esapuned1871@maillux.online', 'Rodisvieks', '0', 'It3fFuU6gxhC3xcVWD3M', NULL, NULL, NULL, 'May', NULL, 'Russia', '$2y$10$aQkxyrQJS/MtI5H0EvuYfOkXbK5JssPiDy9Z8StmVxvYz9jFi2kVK', NULL, '2021-07-26 19:01:36', '2021-07-26 19:01:38'),
(103, 'Leatha Lebsack', 'joy_p@yahoo.com', 'Dessie.Hauck', '0', 'V3AnYbAi9q8ZBmb8KvNw', NULL, NULL, NULL, 'Sydneemouth', NULL, 'United States of America', '$2y$10$ae/CJLpUwYdQr.4ufzbMuez/lKVyfuUtxXwFX5JntE.VQQZttGsSC', NULL, '2021-08-11 02:28:57', '2021-08-11 02:28:59'),
(104, 'Noel O\'Hara', 'linda.drabek@gmail.com', 'Glen_Toy45', '0', 'nnAILJehrKalfbquY9GA', NULL, NULL, NULL, 'East Woodrowbury', NULL, 'United States of America', '$2y$10$3XMKm3wwyagpbywKr2PtZeRc9bW8HDtvvAt.ParpgrVYsyPpzj0Mq', NULL, '2021-08-19 13:10:05', '2021-08-19 13:10:06'),
(105, 'Dandre Franecki', 'h_sandlin16@yahoo.com', 'Juston.Mayert', '0', 'jbC4WElWgvAVxzDzcaXp', NULL, NULL, NULL, 'New Frederick', NULL, 'United States of America', '$2y$10$RvzUd.LwsZ5ryFdbt3FSeOnnQPmfATMVNqWuMrJYnPnCc6FO9jsAq', NULL, '2021-08-31 15:56:21', '2021-08-31 15:56:23'),
(106, 'Документ номер WLR1201480WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com', 'nikitinavikalhs@mail.ru', 'Документ номер WLR1201480WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com', '0', 'lARPyEAbJr9mwOn1NWcq', NULL, NULL, NULL, 'РњРѕСЃРєРІР°', NULL, 'Cocos Island', '$2y$10$1hrpCNhAyU.hsWyOJDwOFOHUV2dMU6dXuxMIktVBbWKdTS/QkShiW', NULL, '2021-09-07 22:51:49', '2021-09-07 22:51:52'),
(107, 'Horace Johns', 'info@remlyga.lt', 'Oren65', '0', 'Glg8EdbwTOdHpCJph4bS', NULL, NULL, NULL, 'South Yessenia', NULL, 'United States of America', '$2y$10$hmvhohEyhAhlfViUDZkNOO3fwTT4qg3l/8.jiWMRzHMrDTf2FT.vm', NULL, '2021-09-10 13:19:13', '2021-09-10 13:19:15'),
(108, 'Lucy Harber', 'mikenmic@rogers.com', 'Marcella68', '0', 'fJKNv1biHWzF6rQVX3eW', NULL, NULL, NULL, 'Hildastad', NULL, 'United States of America', '$2y$10$NP/RXOHrnJk1EtAiDvhuP.38S4Y3UjJczuYkt7VcpxKd0IYMT3ZYm', NULL, '2021-09-28 09:45:21', '2021-09-28 09:45:22'),
(109, 'Ariful Islam', 'arifulislam084@gmail.com', 'aiajoy1', '0', 'shMdNoAdUH8V1O33qxem', NULL, NULL, NULL, 'Gazipur', NULL, 'Bangladesh', '$2y$10$okDtkImpOElqSZO.oefEx.1vRMRxIY8Vd.BF3sdbJ/4rCEEj1rz7S', NULL, '2021-10-05 13:16:45', '2021-10-05 13:16:46'),
(110, 'futuretrackbd.com vnndighidfjsmfoehwjfehfkdghedjfwijfojdojgdmkcsdogejdowsfdegejjfwskfegeodfjijhsbjhsbhcgfdhsfdhhdgdhthd', 'sofiyasamylkin1987911be1+4r@bk.ru', 'futuretrackbd.com vnndighidfjsmfoehwjfehfkdghedjfwijfojdojgdmkcsdogejdowsfdegejjfwskfegeodfjijhsbjhsbhcgfdhsfdhhdgdhthd', '0', 'ZdzNcYDCxBA7vehDHvmL', NULL, NULL, NULL, 'futuretrackbd.com vnndighidfjsmfoehwjfehfkdghedjfwijfojdojgdmkcsdogejdowsfdegejjfwskfegeodfjijhsbjhsbhcgfdhsfdhhdgdhthd', NULL, 'futuretrackbd.com vnndighidfjsmfoehwjfehfkdghedjfwijfojdojgdmkcsdogejdowsfdegejjfwskfegeodfjijhsbjhsbhcgfdhsfdhhdgdhthd', '$2y$10$8em0wZSvgSjou1IAHOW58.nJkW4ZPl7lUBmlXkcfFLjx3SiHF3gbO', NULL, '2021-10-17 08:22:30', '2021-10-17 08:22:31'),
(111, 'Ali Saif Ahmed', 'alisaifahmed6@gmail.com', 'alisaifahmed', '0', 'YZbaoidHerwLoD64vIue', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$XHbCBjeungrGk0unw727eexPpZ.AtGNl1jzLpDLMeEljee9Oixlqa', NULL, '2021-10-23 02:04:59', '2021-10-23 02:05:00'),
(112, 'Imtiaz Ahmed', 'imtiazahmedaidas@gmail.com', 'imtiazahmed01', '0', 'o8PvrgpDf3W8LfNZa0Me', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$aYXzcxs45GCSIE1mpqu.zeIGgLQG4lVgCi8m2YMaMvIyuwkzW.7jS', NULL, '2021-11-11 09:45:45', '2021-11-11 09:45:46'),
(113, 'Afsana Afrin', 'afrinafsana1995@gmail.com', 'Afsana Afrin', '0', 'sbpEhN0sqFncJ4bQ4I8V', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$bK.tyeczxhnfmFbqkDQr/uVYJLjeUHG.qt3w8o7/iyMClMr1fce82', NULL, '2021-11-28 17:02:46', '2021-11-28 17:02:47'),
(114, 'Fatema', 'fatemabipa20@gmail.com', 'Fatematuj Johura', '0', 'gi0HlFWBgNyvgifY0mpz', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$3Q7BMJbCCoF74/87MNh40ehm/B0efTJeYajRxsoNw8Op0IRfAZQ2u', NULL, '2021-12-02 15:15:40', '2021-12-02 15:15:41'),
(115, 'Ibrahim Khalil', 'ibrahimkhalilow@gmail.com', 'ibrahim_khalil98', '0', '4mF6x0cBZ9d0w29kbSlC', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$qxq3Bawfyqd32vZqRB7P2OGiKjFIct2z5h9D72UFeJxaJzmEIbxxu', NULL, '2021-12-03 09:49:45', '2021-12-03 09:49:45'),
(116, 'kjfutyghjhtf54edshy65ui7tyihgjjxdt6rtfj https://forms.yandex.ru/u/61c8bc3dcf4b205b18d798ce Pa', 'vasilevaslava95@inbox.ru', 'kjfutyghjhtf54edshy65ui7tyihgjjxdt6rtfj https://forms.yandex.ru/u/61c8bc3dcf4b205b18d798ce Pa', '0', 'jrCa3YbGQhwX4sSJkm5o', NULL, NULL, NULL, 'РњРѕСЃРєРІР°', NULL, 'Switzerland', '$2y$10$KHIyErW03HGl7mNE.N9lq.USnF4Q99zGcVPVxXbtdSiE4JSvxQAn6', NULL, '2021-12-29 16:35:18', '2021-12-29 16:35:20'),
(117, 'Arman Wahid Rabbi', 'armaanmoon786@gmail.com', 'arman786', '0', 'XvrTcSqtL3gnHOms7aqt', NULL, NULL, NULL, 'Sylhet', NULL, 'Bangladesh', '$2y$10$tKv724RTo44R8w0JaqubeujU8lQfRiVqTwfmuXC5Jw9uUcbPOkHSy', NULL, '2022-02-02 20:26:49', '2022-02-02 20:26:50'),
(118, 'Sabria Nahar', 'sabria.nuha22@gmail.com', 'sabria_nuha22', '0', 'yOaCgbgIdXDka7RQd5XI', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$FZM.EX9qWnxJqYEa7dbEbOsl9z21VA/tsKWisvZaRj3Nh7abpPHe.', NULL, '2022-02-06 22:04:51', '2022-02-06 22:04:51'),
(119, 'futuretrackbd.com bbbdnwkdowifhrdokpwoeiyutrieowsowddfbvksodkasofjgiekwskfieghrhjkfejfegigofwkdkbhbgiejfwokdd', 'dimafokin199506780tx+e123@inbox.ru', 'futuretrackbd.com bbbdnwkdowifhrdokpwoeiyutrieowsowddfbvksodkasofjgiekwskfieghrhjkfejfegigofwkdkbhbgiejfwokdd', '0', 'gZBbxKSk2PAOAvguwBRt', NULL, NULL, NULL, 'futuretrackbd.com bbbdnwkdowifhrdokpwoeiyutrieowsowddfbvksodkasofjgiekwskfieghrhjkfejfegigofwkdkbhbgiejfwokdd', NULL, 'Croatia', '$2y$10$PEnFaY6Q7XFtCRfui1Aa4.pnJHEVaHZ7gED/e3fRBWTumkZP8g3/m', NULL, '2022-02-07 14:55:13', '2022-02-07 14:55:15'),
(120, 'FAIYAZ ALVI AHMED', 'faiyazalviahmed02@gmail.com', 'FAIYAZ AHMED', '0', 'llwQAob0j0I2uNjoqVPW', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$cnRv3/uiBI3J7h9FVlBGqO6lu43nvlADc0xOma5S4sY.pZL4EKQ7u', NULL, '2022-02-15 01:54:17', '2022-02-15 01:54:17'),
(121, 'Lamia Khan', 'khanlamia2665@gmail.com', 'Lamia2665', '0', 'S622SXFLgTFt8rgCYO1g', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$3rdasMNJxB5Whl0fKNCft.wTIsiT.CAGK4hqNbkUjsfle.VXg5q9a', NULL, '2022-02-16 00:18:28', '2022-02-16 00:18:28'),
(122, 'Nelson M Silwimba', 'nelsonmengoson18@gmail.com', 'Mengoson', '0', 'Ejhv3H4lUhkFpswQjJog', NULL, NULL, NULL, 'Kitwe', NULL, 'Zambia', '$2y$10$qI5pPGcSHXbfbl9mAoF4auQW/zcAfSG1P6xylx5iqCjdbPzBwmcbC', NULL, '2022-02-16 09:55:32', '2022-02-16 09:55:33'),
(123, 'Shreosee Khan', 'shreokhan@gmail.com', 'shreo_khan', '0', 'oOIyHQZKcLF6AtbE9ofH', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$RF.sBnwapKav/72mctBq6OcNPaR3jkijp8JkbxF/TJsGvtUKfkbGO', NULL, '2022-02-17 02:13:33', '2022-02-17 02:13:33'),
(124, 'Shrima', 'belalucy4097@gmail.com', 'belalucy', '0', 'GR7H4Oz1v2hJqVCSlJoU', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$tD76yZoTyOUDpLEpr4te3OvI6KqtO5zJGx1XTPK4vSD1kQIOImTeO', NULL, '2022-02-18 02:04:13', '2022-02-18 02:04:13'),
(125, 'Aktaruzzaman Apple', 'applemimi13@gmail.com', 'Apple', '0', 'YLTm3cjO3yRsgAmlSdMz', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$5bd3G6zvH7cuX8sA/tClIuvUTGfSafJwMVPYwhvzmIqCMtMbzwdE6', NULL, '2022-02-19 09:18:20', '2022-02-19 09:18:21'),
(126, 'Shakur Mohammed Showri', 'shakurmohammedshowri@gmail.com', 'Showri', '0', 'PPdDedrbUFUkyxsO48pq', NULL, NULL, NULL, 'Narsingdi', NULL, 'Bangladesh', '$2y$10$VjmJj/YMMVhXiCoIQ5cd/e7.5CTb0W6aBA7QXA37OU7rJL3dx/v2S', NULL, '2022-03-01 23:29:26', '2022-03-01 23:29:27'),
(127, 'Shimul Chandra Sarker', 'Shimulcsarkeranik@gmail.com', 'Shimul', '0', 'zzQAyuMCMN4LwUZPrj49', NULL, NULL, NULL, 'Tangail', NULL, 'Bangladesh', '$2y$10$eaJzzVtkyAi65vp5CzOsTulP8xLQoV7XsuAAcrfUplWrmoBKNkfhG', NULL, '2022-03-07 10:20:40', '2022-03-07 10:20:41'),
(128, 'futuretrackbd.com ugrfeiohofidsksmvnjdbvsijf94t9u5t0i4r94ijgrjght9y84r49t64rkowf0ereiuguejdkwdiweofuehdskodjjdgofjsoddggfsidj', 'KsenofontMaidanov+1f6r@mail.ru', 'futuretrackbd.com ugrfeiohofidsksmvnjdbvsijf94t9u5t0i4r94ijgrjght9y84r49t64rkowf0ereiuguejdkwdiweofuehdskodjjdgofjsoddggfsidj', '0', 'JThzX2czbbaND7jY5qIi', NULL, NULL, NULL, 'futuretrackbd.com ugrfeiohofidsksmvnjdbvsijf94t9u5t0i4r94ijgrjght9y84r49t64rkowf0ereiuguejdkwdiweofuehdskodjjdgofjsoddggfsidj', NULL, 'Guadeloupe', '$2y$10$RXoN4YsLpwC8mfRGKhh4juzB64EJDzxjPWw/cFBQCZgwoP7A/ab/u', NULL, '2022-04-17 12:51:53', '2022-04-17 12:51:55'),
(129, 'Arafat Islam', 'pulak335@gmail.com', 'arafat135', '0', 'ut3WcAYfF1BaNfdmk8Jx', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$tBgbQEgYaC0WdMNYzHkej.FonBwLKoSN3qOKVZXbF3j15OI6npPC6', NULL, '2022-06-02 11:34:06', '2022-06-02 11:34:06'),
(130, 'Habib Bin Aziz', 'habibh61@gmail.com', 'habibisyl91', '0', 'FEYkVRITkjusfeiOdqto', NULL, NULL, NULL, 'sylhet', NULL, 'Bangladesh', '$2y$10$0TssqtfK0mZd5Qoxoew16ek9.YvX0/2NCvzDP1hckd9.uFfmxoiz2', NULL, '2022-07-31 03:09:41', '2022-07-31 03:09:41'),
(131, 'Затруднительно знакомиться с девушками? Забудь об этом! Подберем тебе подходящую https://apple.com', 'likax9yev@mail.ru', 'Затруднительно знакомиться с девушками? Забудь об этом! Подберем тебе подходящую https://apple.com', '0', 'iFY03XltS5JWpgSbgSoY', NULL, NULL, NULL, 'РњРѕСЃРєРІР°', NULL, 'Netherlands', '$2y$10$eCl5lXQiDy5TE4egztUg9OiqmuMcu8wO1i0ITLPWkdPmRUqGt24km', NULL, '2022-08-16 23:16:49', '2022-08-16 23:16:51'),
(132, 'Miran', 'miranalmehrab@protonmail.com', 'miranalmehrab', '0', 'u41Y8u8XCK9E3N22OSsA', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$IRpzq0ipEKYF8CS93WgYfutvrl1ai/.GJIL96RWmd3S5UzfP6P0pS', NULL, '2022-09-20 12:31:13', '2022-09-20 12:31:13'),
(133, 'NufhedjiwidjwjdwihdisjadhuijdaodejguhweikabfdJIDHWIAUFAWFAWHFAAJDIHIjifheifjeifhwodjssfhuiifiwswhdusfi futuretrackbd.com', 'g.e.r.aldk.u.mser.t@gmail.com', 'NufhedjiwidjwjdwihdisjadhuijdaodejguhweikabfdJIDHWIAUFAWFAWHFAAJDIHIjifheifjeifhwodjssfhuiifiwswhdusfi futuretrackbd.com', '0', 'VyH5evWnMLkLNlXtXGiu', NULL, NULL, NULL, 'NufhedjiwidjwjdwihdisjadhuijdaodejguhweikabfdJIDHWIAUFAWFAWHFAAJDIHIjifheifjeifhwodjssfhuiifiwswhdusfi futuretrackbd.com', NULL, 'Chad', '$2y$10$U9QZzNkRqkx1BTQfsdOecu.9xMDSV/vDA/vm4hU/o2pdwRC1GUR.G', NULL, '2022-11-10 08:31:36', '2022-11-10 08:31:38'),
(134, 'Abdullah Ansari', 'aaaabdullahansari@gmail.com', 'Abdullah', '0', 'hTicCmfKDATr5Vz2oJ7c', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$wH7bZcmBdsl397XmHgFzOuOo1sBHNU85aRC3cdegIwTV6AD4Jn4C.', NULL, '2022-12-01 22:19:59', '2022-12-01 22:19:59'),
(135, 'Mfjejdkwdwfkjwkw,.//fwdbdjswfjwsjdakdjwsjfhwkdajdk рырвоышвофшаргырагфошвОРРРраы: kkwjdkwdwfkefwksmxdke Заосшырацоырвфвравыо gjdjwsfegfksfgrjkfkfhjk futuretrackbd.com', 'maek.el.y.418@gmail.com', 'Mfjejdkwdwfkjwkw,.//fwdbdjswfjwsjdakdjwsjfhwkdajdk рырвоышвофшаргырагфошвОРРРраы: kkwjdkwdwfkefwksmxdke Заосшырацоырвфвравыо gjdjwsfegfksfgrjkfkfhjk futuretrackbd.com', '0', 'mUuPalHCdr5mBybhbnXQ', NULL, NULL, NULL, 'Mfjejdkwdwfkjwkw,.//fwdbdjswfjwsjdakdjwsjfhwkdajdk рырвоышвофшаргырагфошвОРРРраы: kkwjdkwdwfkefwksmxdke Заосшырацоырвфвравыо gjdjwsfegfksfgrjkfkfhjk futuretrackbd.com', NULL, 'Singapore', '$2y$10$95/hnDhRtA21B85EbWQr8.PTQembJPCyvYjTEi2fxm3Uowvzo6bPe', NULL, '2023-01-21 22:43:54', '2023-01-21 22:43:56'),
(136, 'Ibtehaz Mozumder', 'mac.tavish644@yahoo.com', 'squarephoenix10', '0', '92gdY2UAvWQL151jgLQ2', NULL, NULL, NULL, 'Chittagong', NULL, 'Bangladesh', '$2y$10$zAJrrT6/G2pw.KSVCVFFvuHcahy1gucfmA//.DAAw6l8gTy0Cq3gG', 'GSTj5Z3YODPLTwMPc0FI1cQDYEomMtiXr4ILBVuUpwBJz5r1PW8rhIFxjFuJ', '2023-02-13 18:50:33', '2023-02-13 18:50:33'),
(137, 'taj', 'sanjid886@gmail.com', 'taj', '0', 'ORRJEWuJyYlYYxMSeyqF', NULL, NULL, NULL, 'ad', NULL, 'Afganistan', '$2y$10$bxNod28R1fQ.1XqVUHCmoeBIHRU5HcztxW/XXFoZCBuLQPUPPb2wm', NULL, '2023-03-06 01:04:31', '2023-03-06 01:04:31'),
(138, 'shawon', 'shawonm303@gmail.com', 'fakir', '0', '93rxb4JyuvcNKoX535K0', NULL, NULL, NULL, 'rajshahi', NULL, 'Bangladesh', '$2y$10$dYE887ype8yCQQy5.7ruGOX/kajqN4eP22/AaX5iWuTQfZWX99SCa', NULL, '2023-03-09 12:38:32', '2023-03-09 12:38:32'),
(139, 'Saiful Islam Rifat', 'sirifat017@gmail.com', 'sirifat017', '0', 'Cvqj26YvgVbSgwJAKvjg', NULL, NULL, NULL, 'Sylhet', NULL, 'Bangladesh', '$2y$10$BIqllbRahJudUchbVi6YiersL6glMOj1zLNH4XGCRzOxdflFLFtcG', NULL, '2023-03-11 07:39:13', '2023-03-11 07:39:13'),
(140, 'Redwan Ahammed Deepto', 'revaildeepto@gmail.com', 'Redwan Ahammed Deepto', '0', '9LjStkaGfiQF1eO9BJsc', NULL, NULL, NULL, 'Savar', NULL, 'Bangladesh', '$2y$10$yvMPuqdOdk4ScQM3dGCxw.pGNNlp5HDcPv2hsUp3cpOB.pYsQ5YLe', NULL, '2023-03-25 01:57:19', '2023-03-25 01:57:19'),
(141, 'Arju chowdhury', 'arjushahela@gmail.com', 'Bisal', '0', 'vPyaOm3va8irqf3pHynV', NULL, NULL, NULL, 'Lakshmipur', NULL, 'Bangladesh', '$2y$10$XdsnJgD6vo8bkGwKux0UbuGauppSm222Qp/0EW3CywUiB7QceUF5y', NULL, '2023-05-14 01:50:19', '2023-05-14 01:50:19'),
(142, 'Apsara', 'munirapsara@gmail.com', 'Apsara Munir', '0', '54Sb1NY62cm49W27FUVU', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$ovtZYXZROdnXeIKz.DxWo.0U/ow8t0.ZH.5CtNsnoOR3X6YxF2xoW', NULL, '2023-06-08 05:04:28', '2023-06-08 05:04:28'),
(143, 'Zarif Raihan Joy', 'zarifraihan201@gmail.com', 'Zarif', '0', 'BEXDWoNFplRAekf4D6jQ', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$ZKsygTmYpHS7slUQO.U7vuik5TUQTtsvzT9VDNaCmP3NJ9k53MohC', NULL, '2023-07-28 00:57:34', '2023-07-28 00:57:35'),
(144, 'Pfiefjwdjwihdwjdiwjdwh гпругшовшырваувапцовцврц аоувацвошцвргцр jedfjisfeufhuhdwdiwjdwisfuediudiywfuw ьвцыволоыоцпарыойырцпв udwhudwsfueufywudiadwuf futuretrackbd.com', 'al.ber.t.h.an.s.hi.n.4.9@gmail.com', 'Pfiefjwdjwihdwjdiwjdwh гпругшовшырваувапцовцврц аоувацвошцвргцр jedfjisfeufhuhdwdiwjdwisfuediudiywfuw ьвцыволоыоцпарыойырцпв udwhudwsfueufywudiadwuf futuretrackbd.com', '0', 'U4KtFEI4v21EKnR1S8xB', NULL, NULL, NULL, 'Pfiefjwdjwihdwjdiwjdwh гпругшовшырваувапцовцврц аоувацвошцвргцр jedfjisfeufhuhdwdiwjdwisfuediudiywfuw ьвцыволоыоцпарыойырцпв udwhudwsfueufywudiadwuf futuretrackbd.com', NULL, 'Puerto Rico', '$2y$10$tSkersfoh4WJcPjPvabHIOi5tx4tIKpd14AojLHITYNnFaVudeIFK', NULL, '2023-08-01 16:57:28', '2023-08-01 16:57:31'),
(145, 'Tasneem Islam', 'tsnym555tip@gmail.com', 'Tasneem', '0', 'uCkAT2NS9hD6E7vCYFdx', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$DS/uepRJy12Fn11tzL55/Ok6BrjGqEFZAyR4xzBydP0ARb9RSehCi', NULL, '2023-09-09 14:34:29', '2023-09-09 14:34:29'),
(146, 'Sumaiya', 'kimjeonshi2007@gmail.com', 'Anoara', '0', '5cFc36kBfrcPov0LeE6w', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$VYPhanltmY6bkN7jgYrXzuEg49CpAIjP6E6EeKazskKB2B4CD2lzK', NULL, '2023-09-27 08:02:14', '2023-09-27 08:02:15'),
(147, 'Alton Toy', 'Thalia115.OReilly_1995@alabamahomenetwoks.com', 'Selina.Wunsch2', '0', '2Q2i6T4li7VjpHL7BQVi', NULL, NULL, NULL, 'Handland', NULL, 'United States of America', '$2y$10$vH4ORBornDbSSlCauPwjd.rgr1LamFbjYyeVvJSXq/RzeXwzyGCqe', NULL, '2023-10-13 16:39:56', '2023-10-13 16:39:57'),
(148, 'XhTrwdmTJiClakyDt', 'oXfSmS.tqbqqw@pointel.xyz', 'XhTrwdmTJiClakyDt', '0', 'Qt6vnK29QFoHcCsR33QU', NULL, NULL, NULL, NULL, NULL, 'Afganistan', '$2y$10$iPYFbnoM0Ltc8ZUcV8aQ0uDuYPuzYNnKntB2FtByz6zgpT8NSArIW', NULL, '2023-10-21 03:37:20', '2023-10-21 03:37:22'),
(149, '🎁 Get free iPhone 15: http://jimantley.app/AncDNA2GDAT/uploads/go.php 🎁 hs=bdf0a41fb04e9ad1e9d7b756815c89cc*', 'okebepu@merepost.com', 'hbenax', '0', 'ZwBhxr7b6KdwofiL7lds', NULL, NULL, NULL, '6xpait', NULL, 'Zimbabwe', '$2y$10$vPwcRDnkwhQ0NrHMI35cxOBCs6bE/jQdlmyJY0G5w2V4Rr.zzh2Qm', NULL, '2023-10-23 21:00:41', '2023-10-23 21:00:43'),
(150, 'Florence Conroy', 'Melvin715_Nienow1980@alabamahomenetwoks.com', 'Gina_Bahringer', '0', 'o1ZOIu6ZzFTvuXRfUB3G', NULL, NULL, NULL, 'Abernathyworth', NULL, 'United States of America', '$2y$10$ddGiCSaX0mmHW5l2RsN2fu/H0OESVe60WF75fUTphVmJOV.bsG9ea', NULL, '2023-10-25 23:27:43', '2023-10-25 23:27:45'),
(151, 'Maureen Tremblay', 'Emmet646Harvey.1965@alabamahomenetwoks.com', 'Janet_Terry57', '0', 'kbId7BXiNymRPfSceg65', NULL, NULL, NULL, 'Hayesburgh', NULL, 'United States of America', '$2y$10$pHcTeyUFQ6k2JC8D/E6x1.pesMKV2uATCOWma1Wv2fhyT0U/WyZOe', NULL, '2023-11-03 08:38:30', '2023-11-03 08:38:31'),
(152, 'MLKVqRAqqQ', 'YazXVk.qqbcbcm@scranch.shop', 'MLKVqRAqqQ', '0', '1jij7L9EZTR7RAAss5zQ', NULL, NULL, NULL, NULL, NULL, 'Afganistan', '$2y$10$73XAWZkGsEj6f7I3Ke4UVOT7flZg.pGZgcr8Dj0gseLUgeIY.gbti', NULL, '2023-11-19 04:18:48', '2023-11-19 04:18:50'),
(153, 'tjHKbWwiwEnUmssN', 'HrnjFm.ttwcccd@rottack.autos', 'tjHKbWwiwEnUmssN', '0', 'oFNoM88tFXTHBrZueHz8', NULL, NULL, NULL, NULL, NULL, 'Afganistan', '$2y$10$gdy7Iq8q6R3plfi.hd.YUewvgdM/OxxbHGhsU16ZImK.Lau33VeOi', NULL, '2023-11-27 01:59:41', '2023-11-27 01:59:45'),
(154, 'Md Sulmanur Rahman', 'mdsulmanurrahman@gmail.com', 'Sulman', '0', '5mRw0yO50fkUOwg0HOV5', NULL, NULL, NULL, 'Comilla', NULL, 'Bangladesh', '$2y$10$moupDK.NYuMw7NO/K6MQOOjimAwKXYVghCeHS0OJUuqL9kpzxerJq', NULL, '2023-11-28 10:11:27', '2023-11-28 10:11:27'),
(155, 'Sadia alom shetu', 'sadiaalom550@gmail.com', 'Shetu', '0', 'vheeLAblfBlPEGE3Asvq', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$FIRZWKX5ldBDnnkofbEaluxCNosiE0ufUuAiCPU7QB1dyNh3kW2EO', NULL, '2023-11-30 11:44:49', '2023-11-30 11:44:49'),
(156, 'Heidi', 'IJJnvj.hbwdqc@rightbliss.beauty', 'IJJnvj.hbwdqc', '0', 'q9QOKHTlPYxWaQydgGAo', NULL, NULL, NULL, 'Hensley', NULL, 'Afganistan', '$2y$10$AOzD2vFLFpO0MJ2q5GqS7ucaU17B78iNAAeekxbd5bYU34I6BoxjO', NULL, '2023-11-30 21:16:29', '2023-11-30 21:16:31'),
(157, 'BCXAALaEw', 'bWubVC.hmmcmhb@tarboosh.shop', 'BCXAALaEw', '0', '1KHikKBFl6J3tgpvA0Pj', NULL, NULL, NULL, NULL, NULL, 'Afganistan', '$2y$10$a8LgewKUXLLYAK9qTkbYR.wRcfIZQ6RhCmlt/R9nMhDosBZO4N8M6', NULL, '2023-12-05 12:06:16', '2023-12-05 12:06:20'),
(158, 'KwQeDnnxrnFR', 'aQOABz.cjbqpbb@zetetic.sbs', 'KwQeDnnxrnFR', '0', 'lvDS4IRHhwLQlp9gWeUW', NULL, NULL, NULL, NULL, NULL, 'Afganistan', '$2y$10$jj1R.7hrXDY9aSAF7uYJMexI83lrtAlK1brSE1ikKC3Iy1Qyst9F2', NULL, '2023-12-07 10:25:08', '2023-12-07 10:25:12'),
(159, 'Shepard', 'bVYzFz.hpdptmd@rushlight.cfd', 'bVYzFz.hpdptmd', '0', 'DjZqtkc4qut1Iq3adC42', NULL, NULL, NULL, 'Bernard', NULL, 'Afganistan', '$2y$10$qf1c8YOr9OPgWX8mEea0PuO.0lZo0s/yfJm12d.iMWPXMe.4DHfM6', NULL, '2023-12-12 02:22:52', '2023-12-12 02:22:54'),
(160, 'qttDKsMOXy', 'DBSrXC.pmjmcdc@scranch.shop', 'qttDKsMOXy', '0', 'HnHffr1aphXhH25KCAWW', NULL, NULL, NULL, NULL, NULL, 'Afganistan', '$2y$10$Q12nUdy8x5ET2sZ01l5GtuvpTe/QQKSg4m63whcOYX9g0LKYeQemi', NULL, '2023-12-16 21:11:20', '2023-12-16 21:11:22'),
(161, 'Samara', 'rwwjjM.qqhdpmb@sandcress.xyz', 'rwwjjM.qqhdpmb', '0', 'ppVzgsQbVLBmXJX7T5mV', NULL, NULL, NULL, 'Duran', NULL, 'Afganistan', '$2y$10$d47hDpqIUXrWQv6VrCPD4uXVGVb1FrOSn5FnMzEVZ8CQNt9ZPNmrW', NULL, '2023-12-18 05:23:28', '2023-12-18 05:23:29'),
(162, 'Rory', 'TOPTEC.cjjtdbd@gemination.hair', 'TOPTEC.cjjtdbd', '0', '3JhvzeTV1xWho9qhnWWm', NULL, NULL, NULL, 'Chandler', NULL, 'Afganistan', '$2y$10$TTtHRj5WBzkCsy42wSYjnebe1tdPAXrSvqzmKlPwmsuE8qY2KqvA6', NULL, '2023-12-21 14:18:30', '2023-12-21 14:18:31'),
(163, 'Aabid Ahmed Chowdhury', 'aabidchowdhury@gmail.com', 'aabid', '0', 'POFJcmLriihH2kCPRRKq', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$AUTHh9evjDEfVcWwPm/Sq.cRkopWuFi.09fuKJqt46zSoEXY7.MFK', NULL, '2023-12-29 07:43:41', '2023-12-29 07:43:41'),
(164, 'YVpTjBue', 'leonidkrylovk63u@outlook.com', 'LAyUrDBqOYiMH', '0', 'vBtd3AK6t8KZM4Mkc8Va', NULL, NULL, NULL, 'DSdHvhCOGitIE', NULL, 'Zimbabwe', '$2y$10$WEaKgBrVepSS6gR.d7opLOwTBtX23.d1e3OfRAMjupLusm28e2V/S', NULL, '2024-01-26 10:57:48', '2024-01-26 10:57:51'),
(165, 'Sarai', 'dAKatK.hhbcdb@pointel.xyz', 'dAKatK.hhbcdb', '0', 'FxDDzvenkAZWSLjk9u3u', NULL, NULL, NULL, 'Esparza', NULL, 'Afganistan', '$2y$10$e50UkXUisCaCmck2IniNi.aqjnOvMEY6f2ApATaHKWWBIpMno0Um.', NULL, '2024-01-31 19:21:12', '2024-01-31 19:21:13'),
(166, 'Emiliano', 'JKNlrn.chdpjjw@bakling.click', 'JKNlrn.chdpjjw', '0', 'cuz9Pkyp0o16Aa4E3Gqf', NULL, NULL, NULL, 'Donaldson', NULL, 'Afganistan', '$2y$10$P9cCauFL34joKZ.BflSX0OJemRIphNiE/C3VoJ8gdVy6U3Roxfs5G', NULL, '2024-02-04 23:40:40', '2024-02-04 23:40:44'),
(167, 'Nusaiba Kibria', 'kibrianusaiba@gmail.com', 'nusaiba kibria', '0', 'fClCpigL9W1Rbd00Kc2S', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$M9BCTlWWHA8w3N86iJWXL.7EtZ1.GUbxZAS73aZOB2h4cxYQ2kOiO', NULL, '2024-02-06 11:09:51', '2024-02-06 11:09:51'),
(168, 'RevYrCXGc', 'jones_lindsey1983@yahoo.com', 'AJENPpQZsGeHRVyk', '0', 'zU8PXtkVIfgbbSpBz9mg', NULL, NULL, NULL, 'GgKIpDaYNv', NULL, 'Zimbabwe', '$2y$10$fwtGOOnd4.N/NnYGq8GaSeOZsnBwZKs9HRYez5HRvKF0dnVemYCCG', NULL, '2024-02-13 05:40:57', '2024-02-13 05:41:02'),
(169, 'Jax', 'sxjLWa.bjhwthd@pointel.xyz', 'sxjLWa.bjhwthd', '0', 'Q5x9UNICaNddBrkVbQPI', NULL, NULL, NULL, 'Farrell', NULL, 'Afganistan', '$2y$10$L/N9eEuEbZOBx2AS6hGkGuJHCbUZF9LoaUi.AzoacdJ60L/moltNi', NULL, '2024-02-15 15:29:46', '2024-02-15 15:29:47'),
(170, 'sgGeYyEkDNOcQa', 'kami60_jettonot@outlook.com', 'uRKvQrOxkDEMmngV', '0', NULL, NULL, NULL, NULL, 'hERjrqHnJGZQDe', NULL, 'Zimbabwe', '$2y$10$9vRP.lvbwxD5Q2bMmnbD1u5hLLDVSWmPRKp5yRTz1H0OjhFEoLCmO', NULL, '2024-02-21 20:22:15', '2024-02-21 20:22:15'),
(171, 'jubayad ahmmad', 'xmleditor420@gmail.com', 'jubayad019', '0', 'wxqQtjdV4aGH8XxFlqr9', NULL, NULL, NULL, 'Netrokona', NULL, 'Bangladesh', '$2y$10$S8GtwaJ3Pbf5fVK4gBNA5enY1fS0Ypk1mZiaQosWvywGnxz6Lv.n.', NULL, '2024-03-04 04:35:19', '2024-03-04 04:35:19'),
(172, 'Nathan', 'pqUfmV.tbhwcwh@rushlight.cfd', 'pqUfmV.tbhwcwh', '0', 'BEpYzVS3D3c71R6gMO9V', NULL, NULL, NULL, 'Perkins', NULL, 'Afganistan', '$2y$10$EoJ8noXYgejJd5gNW4cvOeZMr7evab.W85DhQ31BOLd6HD.LgXkVK', NULL, '2024-03-11 01:33:13', '2024-03-11 01:33:14'),
(173, 'otniel', 'qthmtmjdb.p@monochord.xyz', 'qthmtmjdb.p', '0', 'ZKDl1Gtf5kyS6zaaaDnn', NULL, NULL, NULL, 'otniel', NULL, 'Afganistan', '$2y$10$AIFA5c8onPwhKwbT1Jz9yeCQA84Y3w.PAyJ.H.WP2M4jZ0Q2HfFnO', NULL, '2024-03-15 03:36:27', '2024-03-15 03:36:27'),
(174, 'ermis', 'phpjpdmcq.p@monochord.xyz', 'phpjpdmcq.p', '0', '0hwEk4qtSgdP50udlWR0', NULL, NULL, NULL, 'ermis', NULL, 'Afganistan', '$2y$10$7vFNq/h5tK7VMjE6yI6WjO3IElOJqZDbfyfQaBnVlp3.DKG47FN.K', NULL, '2024-03-21 04:06:52', '2024-03-21 04:06:52'),
(175, 'fBOcYbenm', 'roy99minor5sp@outlook.com', 'ixXGArozImfUZR', '0', '2ASkhoQNGJJlUnTvlkog', NULL, NULL, NULL, 'haBUNsnA', NULL, 'Zimbabwe', '$2y$10$qbt9G3CBIh3SriGQX1V.n.RrMsvdAA2BWDxqkv4ncWrrR2bkDcbRq', NULL, '2024-03-21 12:26:44', '2024-03-21 12:26:49'),
(176, 'branten', 'qjhdqdhmqm.p@monochord.xyz', 'qjhdqdhmqm.p', '0', '9L8IdpsroxV3lZPanNn6', NULL, NULL, NULL, 'branten', NULL, 'Afganistan', '$2y$10$COfmh2/4xrhzK8F64tbOn.2XHh3QGq5mfTVujURZiljg/RaebI1Oe', NULL, '2024-03-23 20:21:48', '2024-03-23 20:21:48'),
(177, 'lyTJePSamsCo', 'daiannbrooks673@gmail.com', 'htAxumBOSv', '0', 'Mky36GaLzkOnCcZF9JXm', NULL, NULL, NULL, 'wZgQYpXzx', NULL, 'Zimbabwe', '$2y$10$EJg/n8X/UWgREeWquFAMeulgyAyE7JJUTWth2LsgU8i9yMbt9Qw5S', NULL, '2024-03-29 22:17:35', '2024-03-29 22:17:40'),
(178, 'SJWsPAajhNdIoB', 'oliver_mckenziemehj@outlook.com', 'PpDtkBcJqw', '0', 'hYmd7CisRdcQJIGVGGsx', NULL, NULL, NULL, 'ILfAZOjaTNnHpVWD', NULL, 'Zimbabwe', '$2y$10$5TGZRMJZBl3UTsCFVajmPOLtz7iNckox/M/zgT.oFxVQkB4O3SYuy', NULL, '2024-04-04 19:20:33', '2024-04-04 19:20:36'),
(179, 'CSZslBiVLQdFygWc', 'hornbredn525@gmail.com', 'CsRznIMeUpFf', '0', 'YNphT6VGl4vJgT0nlSbR', NULL, NULL, NULL, 'uSRshxkr', NULL, 'Zimbabwe', '$2y$10$hdnrxvhrfNpRnDjwz6P0WexUcybnSpAyYoQVjLlo.RmmlqMs4voOW', NULL, '2024-04-09 12:39:15', '2024-04-09 12:39:17'),
(180, 'zoURferCaG', 'fpeholden@outlook.com', 'mdpYtixKczRNs', '0', 'LcRzCnMk3ISIKCePeIbl', NULL, NULL, NULL, 'MqbOiknY', NULL, 'Zimbabwe', '$2y$10$.hPLRDpYGFtKyk4XJKbre.hlYMtutySk7N3toR.IzZmhgczLHtwFy', NULL, '2024-04-14 01:47:45', '2024-04-14 01:47:48'),
(181, 'cSJdwIAehZPL', 'cheng.laura1981@yahoo.com', 'GgHfZPUaVlKNFOAd', '0', '1IEcqDyOruMnAb8sRdat', NULL, NULL, NULL, 'hvTJCDLaegnkQuBM', NULL, 'Zimbabwe', '$2y$10$0hZt1M.sh.G7E0QixgFHa.LawvArHjGLTYMwqJMx1kySbvvOCVsAG', NULL, '2024-04-15 16:31:23', '2024-04-15 16:31:27'),
(182, 'CybXSPEphxcIURug', 'johnson_carrie1993@yahoo.com', 'YqVUlZrpmLzfwdg', '0', 'GpBkFKZffMljc63eujI3', NULL, NULL, NULL, 'NQkOTBgU', NULL, 'Zimbabwe', '$2y$10$DxMZ9Xml.NrC3h/gECOeF.Ng6zuXMIj9SMMKmR2Mlm0gfJk/8EZh.', NULL, '2024-04-17 17:29:09', '2024-04-17 17:29:11'),
(183, 'smXhywJU', 'kritaft3j7@outlook.com', 'aMAGzXsIP', '0', 'RLyxKJG0guMHdUrDPLoG', NULL, NULL, NULL, 'iZQLKusSPCGRoycH', NULL, 'Zimbabwe', '$2y$10$/W4qwhxx.7FrExrbvFrecuHqEdB3i9iOywKZKCG3BrlM.aeQ9DADO', NULL, '2024-04-23 04:25:52', '2024-04-23 04:25:55'),
(184, 'RKlxOFDPAErcmf', 'vashingtonmatthewsea1982@gmail.com', 'DNYezbIMXJSTcfFK', '0', 'nz5tqlbY5e0F5Ogm2BfP', NULL, NULL, NULL, 'NKfaQJPthz', NULL, 'Zimbabwe', '$2y$10$teO2b3Lvf07Y6JYMVhl4guV2LKHOk4UDre.qbxtyZxdN/wW.iBHyG', NULL, '2024-05-03 07:58:40', '2024-05-03 07:58:43'),
(185, 'JHQdNsemiSgofGLn', 'hroni9702@gmail.com', 'nhIirvDfkHdLW', '0', 'AkqlfmJVUw8NvcaoZadg', NULL, NULL, NULL, 'pjYPWInZMurKayR', NULL, 'Zimbabwe', '$2y$10$4bcBjY/nDVp89O3r975dEOO3iP/7SlQ9NpcoewLEASiNluOu9clb2', NULL, '2024-05-12 23:27:51', '2024-05-12 23:27:57'),
(186, 'Md Didarul Islam', 'didarul2911@gmail.com', '01521209127', '0', 'kTu6WnSFzGYf23ALNwlV', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$21ZDkBK1DvJ0kXmpZ/SCJuQivpHq8ZvoIgp8MrYxoJ8aumRQCEMM6', NULL, '2024-05-13 11:52:02', '2024-05-13 11:52:03'),
(187, 'FXJIvSWGCxywh', 'edwardkq_siebold1q@outlook.com', 'VtzghilpSBHKucC', '0', 'SoHbBfpyBh0maXSAgM0i', NULL, NULL, NULL, 'nkgwSCmTZEf', NULL, 'Zimbabwe', '$2y$10$FUVWM6o9sQFR5EmDuTpkCujq7YsLBOz/Am26ycmsf4pWaqZvwYThO', NULL, '2024-05-16 20:24:20', '2024-05-16 20:24:25'),
(188, 'KOyjcHZwhGkUlo', 'robbiebf_miles6x@outlook.com', 'GeJdtDMvmlkPzV', '0', 'oiyWDtZPXkAb6dPJk0GT', NULL, NULL, NULL, 'rgGbcKBQSjFYE', NULL, 'Zimbabwe', '$2y$10$Dwjnmh5daSA.A98Te3u5DeuiobmlrPUzoZqbuJPXALTy..QQ17x.y', NULL, '2024-05-20 00:18:07', '2024-05-20 00:18:09'),
(189, 'TOHIDA SULTANA', 'kibriajak@gmail.com', '01873911000', '0', 'cWox9APSwJakAKApHHpV', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$hiLNifhIq8fP2PDKAPwbjuNEDP4cuhhJ6BIoEan7URJMEHBkWlxY.', NULL, '2024-05-21 22:56:04', '2024-05-21 22:56:04'),
(190, 'omJgyTlOSCE', 'kathleen_ramirezigum@outlook.com', 'JQlHuptTnbX', '0', '3BZiRRp1a9UpdGIdHtKP', NULL, NULL, NULL, 'tCDJTOseInadgkv', NULL, 'Zimbabwe', '$2y$10$nbXZE1ok5FyjHA4RTW/rM.A5eJqJp8ZelT3AwePJ7sLv/k8jo91xu', NULL, '2024-05-23 18:03:11', '2024-05-23 18:03:15'),
(191, 'Jamima jahan', 'jamimajahan859@gmail.com', 'Jamima', '0', 'y9fc3PoeKfVQ5cMdEJrp', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$VP.hIleME0oaq09t8exJg.cljfoxDtZfq81.67RmAypjTQ2QB5yh.', NULL, '2024-06-03 02:29:03', '2024-06-03 02:29:04'),
(192, 'hBidmvxgQ', 'michelle.malpert795568@yahoo.com', 'wVnIouEzUvKqCePG', '0', 'ga5Gf4cAbCqXvtqkGs3m', NULL, NULL, NULL, 'HInYOGANbXgJr', NULL, 'Zimbabwe', '$2y$10$ng8.n0HSZRRDx086nbBI5uNBZKWHlcEPkegc6MTXf5qRrYo1rrkju', NULL, '2024-06-08 07:47:50', '2024-06-08 07:47:55'),
(193, 'SCZKUIgOuJok', 'haichdanielle2000@yahoo.com', 'CLdNKMRcWewx', '0', '8ZIfCygQDqnrcZglzc2p', NULL, NULL, NULL, 'QuqFrwlpyfK', NULL, 'Zimbabwe', '$2y$10$rbJKmrtT1dIWGWXxyLciquPFE8GAqduztrxQWiSMYkS1nLMqxV5Si', NULL, '2024-06-11 11:13:21', '2024-06-11 11:13:25'),
(194, 'The 2us2 11 futuretrackbd.com Pn', 'mitaxebandilis@gmail.com', 'The 2us2 11 futuretrackbd.com Pn', '0', '20uXZlAhqw7aAqj0SRnv', NULL, NULL, NULL, NULL, NULL, 'Indonesia', '$2y$10$I4vAWllFSjWiTwFENY4NMeZYlWW3EAagjzD5h5l.17ol7X6UH8GF6', NULL, '2024-08-24 13:53:52', '2024-08-24 13:53:53'),
(195, 'UmOXnTpChy', 'xusrikeden@outlook.com', 'ZzxtNkKFAXyE', '0', 'TnhyxtAKxA8PT9FeNnU0', NULL, NULL, NULL, 'cfUnaLoPknHM', NULL, 'Zimbabwe', '$2y$10$0l3qmy473usre7wSc6MW2uWWuPcBuRFp/swjQjOlWOnGgERDQhZeC', NULL, '2024-09-23 04:47:56', '2024-09-23 04:47:59'),
(196, 'yliNobIIzavJ', 'caseomar1990@yahoo.com', 'PhDFANEAqZuMf', '0', 'ygHPHfd2ZEe2I1WGIsKL', NULL, NULL, NULL, 'AjIGRwvC', NULL, 'Zimbabwe', '$2y$10$zpvdjiqG73OLv8E/MrFNw.wreqSGxBUPXMMZzjdkJujMakyxjSpmK', NULL, '2024-10-03 02:58:15', '2024-10-03 02:58:17'),
(197, 'OCdRcJtWXsEJL', 'abiavery213@gmail.com', 'SnUrJJYLFhYsf', '0', 'qbcVMXCQUcTtcyPnTv8I', NULL, NULL, NULL, 'AeydDMgxEtLD', NULL, 'Zimbabwe', '$2y$10$KIfJvWaAURHAcurGOKgjR.vHFx13hXxehuDTEb0mDVKM5xDJgbY5.', NULL, '2024-10-18 11:37:34', '2024-10-18 11:37:36'),
(198, 'M.A Barik Rashid', 'mabarikrashid35@gmail.com', 'Barik', '0', '0BF492Mth301GQ6Xa0Bf', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$0HBwev2oQ/KgilVoUSSS0.u4eamn9QeTO4DP5FPqrFYxmUUnyk7Aq', NULL, '2024-10-20 00:10:27', '2024-10-20 00:10:27'),
(199, 'JeErRHfTaC', 'oayalakr@gmail.com', 'XSDuwRUqaHwmwWF', '0', 'AeIoCPo9HrEDLVjr7QVt', NULL, NULL, NULL, 'fPrlAGJcWxiu', NULL, 'Zimbabwe', '$2y$10$8gI94EkdrOrD.0YODbw6j.3IPiH1Av.9IQBtHF94WvjflNf0Sfrra', NULL, '2024-10-26 02:30:01', '2024-10-26 02:30:04'),
(200, 'iFcCayeG', 'james12crockerfuc@outlook.com', 'nLexJoSIjPzUN', '0', '023eQDgGCkUGgSUoPQoJ', NULL, NULL, NULL, 'zVdbnsLHvDIAno', NULL, 'Zimbabwe', '$2y$10$XieKQAd7fogN1TMdxdOIiuo8PlGhydebrrMHUalZahNcqPDZRx6ZO', NULL, '2024-10-30 01:52:47', '2024-10-30 01:52:49'),
(201, 'JMQBROdOgDmjTup', 'pcoutelet@yahoo.fr', 'dzDLqgnBEBfWH', '0', 'XU7sDA9KTf2SZCkMibhQ', NULL, NULL, NULL, 'pJSSbMqTCHf', NULL, 'Zimbabwe', '$2y$10$9QOphYSiXGirFRaoHJfiUuOKmCUqIrro4/GpX662WlxeECTAz94MG', NULL, '2024-11-05 22:53:10', '2024-11-05 22:53:12'),
(202, 'NNQICFWPNnb', 'anfaxayjqa6szsj2@yahoo.com', 'uxEwZIOqXCJdS', '0', 'WVtPHvfUiPFOUCPV6A40', NULL, NULL, NULL, 'doBCJyqMYe', NULL, 'Zimbabwe', '$2y$10$XtDRyn4LetS.SwQ5heCq/.VAHkvHHAR/u5y5H2z2FNhpEOLZ.vyOy', NULL, '2024-11-07 22:06:01', '2024-11-07 22:06:06'),
(203, 'SSTMmiQIkiaEu', 'st.fiofab@yahoo.com', 'cOlfmGZI', '0', 'my6XJQ4AFr4NgLuBFbNq', NULL, NULL, NULL, 'QuEuprqLWlHuk', NULL, 'Zimbabwe', '$2y$10$xuWnHqPToqEWHOWVEJJZ3etLlAy9W5JpSUHjICrykWGUTDzbnTCIW', NULL, '2024-11-08 20:48:06', '2024-11-08 20:48:08'),
(204, 'Bula dinor 000x futuretrackbd.com G3', 'mita.xebandilis@gmail.com', 'Bula dinor 000x futuretrackbd.com G3', '0', 'd0MrQycqKfKmDQFAgw9o', NULL, NULL, NULL, NULL, NULL, 'Guyana', '$2y$10$07KUUo/VeNY4ECCfaUhMsOAgfYdeBwvq2dLwlIXStlV6WIRyaULyC', NULL, '2024-11-08 23:38:07', '2024-11-08 23:38:09'),
(205, 'BrWvTJJIYsWnb', 's0a0idmmz9clgldp@yahoo.com', 'RvQCuwwQmCCdiG', '0', 'Iu0cqomBYCKz80xy7VWT', NULL, NULL, NULL, 'AuMDWjdzhbMFI', NULL, 'Zimbabwe', '$2y$10$mBf3Ehq0jyg59avCwzEC6.5ytAh6hZyY1PC2aq0oz.dICNSh866FC', NULL, '2024-11-09 14:29:51', '2024-11-09 14:29:53'),
(206, 'ajforHzWPOEdvr', 'twgdqwfjtcap@yahoo.com', 'DXLKuRqI', '0', 'zlPfxf4ett0nA03wMiTt', NULL, NULL, NULL, 'gKKuiofrfXXPI', NULL, 'Zimbabwe', '$2y$10$zEuhCbOCpOkP3EvSIjChQuNArvUpSPKcKhVI4R2g1dEghFMMYY6pm', NULL, '2024-11-10 07:32:00', '2024-11-10 07:32:05'),
(207, 'AWXVwnvwufkd', 'hestersirshafr1993@gmail.com', 'ckWdlzKWhDvYYKP', '0', 'ZI38CVaVuiYBG7aE0yNs', NULL, NULL, NULL, 'rSspzQlxFZDTbUq', NULL, 'Zimbabwe', '$2y$10$1V64XhiovLS8XEwrnpBBculxyBYKTht86VeCkCsLk2Dq14.LrN162', NULL, '2024-11-11 00:53:00', '2024-11-11 00:53:02'),
(208, 'Md Faisal Khan', 'faisalkhandpi@gmail.com', 'Md Faisal Khan', '0', 'jCQkU5daNcspvxOaIqt3', NULL, NULL, NULL, 'Vatara', NULL, 'Bangladesh', '$2y$10$bWSJsxdDWnXp2XDC3WXNHupZPl99oS9gsSvJx2otZ5pMipJfT7MDG', NULL, '2024-11-11 11:32:24', '2024-11-11 11:32:24'),
(209, 'QSqKsJgJ', 'rayklaidr1997@gmail.com', 'WPPpNxGrkmk', '0', 'OAX0B56ercFQ8K4LF0OP', NULL, NULL, NULL, 'sSXJBCcPOXwCrfg', NULL, 'Zimbabwe', '$2y$10$wbL8UyvNzX9IsMSmqqr5EuzDARPH1yPeWAhvdCpMh4bCTN7dlH0AS', NULL, '2024-11-11 19:50:25', '2024-11-11 19:50:28'),
(210, 'CTZmbLBxoGtTqm', 'tiyagillespiemh18@gmail.com', 'hHgMJgAABPIFIZO', '0', 'fV7DP1kmcVfzrmQoXeif', NULL, NULL, NULL, 'QoHXuYnDUsIJj', NULL, 'Zimbabwe', '$2y$10$KUF1RmTAByi.R1rvYu7QIuEeuu8X99hFMQz2Rya/1QZYC2Dv8Cso.', NULL, '2024-11-12 18:24:05', '2024-11-12 18:24:08'),
(211, 'ULeIusHmKpes', 'i4ia9huysaanhxk@yahoo.com', 'flAyvWNvQiLKLYL', '0', '8DEp9FOhKSEawrxo96OJ', NULL, NULL, NULL, 'aqjPjyxtsLB', NULL, 'Zimbabwe', '$2y$10$LBYOKYWBfSHT12Ylm/5MRe2/av1D4G2idGjybE37p1im3VRV3NUim', NULL, '2024-11-13 15:52:20', '2024-11-13 15:52:23'),
(212, 'mqGtdaGfJfB', 'cletashow32@outlook.com', 'qAbTOznCJuRl', '0', 'NMLePbDSR7QiQCy6cX8H', NULL, NULL, NULL, 'MgJDmzFu', NULL, 'Zimbabwe', '$2y$10$dXXOBAeO5rRv4.8163kMv.6o.QDSc14axJgP/IUa.NCBV4.JUc6wq', NULL, '2024-11-14 13:01:35', '2024-11-14 13:01:38'),
(213, 'pPpJckUaSoP', 'vinsnewma@gmail.com', 'cdXNWbkeZmxA', '0', 'pav5OTybWJu5nc4MDURd', NULL, NULL, NULL, 'FHdmFYuQnt', NULL, 'Zimbabwe', '$2y$10$x9Ms3ukr7r9yBz8jXn4PwOXuQqKCt/4vFGaArQfL1HXZs1Zdxl0LS', NULL, '2024-11-15 09:20:40', '2024-11-15 09:20:42'),
(214, 'lSfLSxxOnyR', 'ookeuuhkdohgcb@yahoo.com', 'pksuufhudrVczcX', '0', 'WA4pWCNmWmfFkkhWDIlw', NULL, NULL, NULL, 'anlHzeOwtz', NULL, 'Zimbabwe', '$2y$10$KDE69L0IaThYyWZuqjiva.A5iE6uz5vn8fBobFa48EVZy2el6lnWu', NULL, '2024-11-16 06:04:36', '2024-11-16 06:04:45'),
(215, 'jRlLwKztbSTPe', 'bazildjacobsdb@gmail.com', 'pFWRDOWu', '0', 'AvX41AWBntm84hQfRIhl', NULL, NULL, NULL, 'OoblennWIH', NULL, 'Zimbabwe', '$2y$10$fI4zGwFGR7TVPfcTGVVgEuZp31.FhuxDTd3tOtApwR96ydlJgnJO2', NULL, '2024-11-18 15:42:31', '2024-11-18 15:42:34'),
(216, 'DJSeNmVfeto', 'weaverpiperh34@gmail.com', 'OfZGuXFKjKaUZ', '0', 'HlbVuRWLylJZpUSiv7m4', NULL, NULL, NULL, 'VtakFxmCOuUF', NULL, 'Zimbabwe', '$2y$10$CBwvRbRl1uX9m/gQrb8/VOBSkEBXrgzXAo6eyzwHkbxSCkXuWoYv.', NULL, '2024-11-21 23:16:00', '2024-11-21 23:16:06'),
(217, 'Ishruq Ahammed Fahim', '212-087-801@buft.edu.bd', 'Ishruq189', '0', 'KB4jIRbHsb8rLMe7j5oF', NULL, NULL, NULL, 'Dhaka-1230', NULL, 'Bangladesh', '$2y$10$SRWFBX2w3r4/VtJBBuRTn.oaq2vIJm/P/OsgMsQA31IGV.G2SU6RK', NULL, '2024-11-23 01:50:23', '2024-11-23 01:50:24'),
(218, 'uzmmyZfgLk', 'cortezzavira@gmail.com', 'BNqbPrbKA', '0', 'FAa4uLL3nVzbYLxwYcN0', NULL, NULL, NULL, 'ZlHJmxyIyES', NULL, 'Zimbabwe', '$2y$10$8GsyHdjKRseU7u2sU73MBuLkYx8NTnxPJrO071xzuVMxqY2I.a2mC', NULL, '2024-11-23 19:07:29', '2024-11-23 19:07:32'),
(219, 'VSfAnuGAL', 'dlilarogerq834@gmail.com', 'BdjJXDdzm', '0', 'E3VqxpY3ek1WuuxtYgAb', NULL, NULL, NULL, 'qsZyMvWyR', NULL, 'Zimbabwe', '$2y$10$IO5ZFULW3cSJxtTIt/I9FeBkemNeyf3e6dCsDkh8SFC73KMaciLB2', NULL, '2024-11-24 15:44:53', '2024-11-24 15:44:57'),
(220, 'ygEwVrzP', 'kbik302@gmail.com', 'GuLYPbJDAKkRacz', '0', 'BISN83DO86ghBQYcGMgA', NULL, NULL, NULL, 'kZHLxrpNg', NULL, 'Zimbabwe', '$2y$10$o4jV4mvc7ru4JIytCaaGrON9UTTj89/KrMHbh62RMp.Dpi1MsUCLK', NULL, '2024-11-25 13:04:13', '2024-11-25 13:04:15'),
(221, 'FcWpgJkQ', 'ltgriqi1hyy@yahoo.com', 'TqldJpFJo', '0', 'grrjN1e1AkAtLGDFZJQL', NULL, NULL, NULL, 'wEBulnjR', NULL, 'Zimbabwe', '$2y$10$/CQP1USOnzkMhEplfX4e/O97T1i3CLxj/DyRkjD9WDYKgHeoAWUE2', NULL, '2024-11-26 11:25:49', '2024-11-26 11:25:53'),
(222, 'nCXoEvhyQmkf', 'doylekakeio133@gmail.com', 'zczmQvoKQRpY', '0', 'W7MrMlDyhnJWGSvLYmyw', NULL, NULL, NULL, 'VNGQpDrfakXOBbi', NULL, 'Zimbabwe', '$2y$10$0Yr.4h2EWGiI3BNk9IDAweGxIHYhLpVw/Gb6oCWTrgbxSAUkk/Pfu', NULL, '2024-11-27 09:47:53', '2024-11-27 09:47:58'),
(223, 'LSEVNeSGmu', 'lyoffprre@yahoo.com', 'FvSkKzSiUYlx', '0', 'kWoadN0R3D12udvOALv4', NULL, NULL, NULL, 'HfjazDmpWAjVe', NULL, 'Zimbabwe', '$2y$10$TZehihA.3i1yy.SRD7uEb.0trdwsaMEbogJPH3NRjMjP52nZXSDPS', NULL, '2024-11-28 08:05:49', '2024-11-28 08:05:53'),
(224, 'EzuUGKPEpda', 'bt476oyamey@yahoo.com', 'xjQEnmzAyPeKS', '0', 'lWKWwNpgLHOap5UVYgEg', NULL, NULL, NULL, 'LacncDQTQGzoD', NULL, 'Zimbabwe', '$2y$10$hPp5CNmRFklqBhVpbCeSK.5Q3HrzRcL0WzwtOMMzPp4NEeUM3RpeG', NULL, '2024-11-29 03:29:39', '2024-11-29 03:29:42'),
(225, 'kjBsAYwqHFEFk', 'hillebranklmen@yahoo.com', 'iwZOralnTrrV', '0', 'SA8ntNyBTbjYU7hRhSkT', NULL, NULL, NULL, 'pbZfQmjZHWIrr', NULL, 'Zimbabwe', '$2y$10$C2renupzSzCbj4Vfex2XPO8EMwAfGBSHUbqT9aMrOm1cWgoCzXgTK', NULL, '2024-11-30 17:30:35', '2024-11-30 17:30:37');
INSERT INTO `users` (`id`, `name`, `email`, `username`, `email_verified`, `email_verify_token`, `phone`, `address`, `state`, `city`, `zipcode`, `country`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(226, 'wFdfYvfYzvBgrVI', 'oturicicgergl@yahoo.com', 'faxQcnrt', '0', 'Hcv3K1mNER1hxMmuzre6', NULL, NULL, NULL, 'WucTwIOvTs', NULL, 'Zimbabwe', '$2y$10$OvRj3nNYIaC6alHMgB8iEuayeMac47GXFcN46gfvUVkpsL56lELa6', NULL, '2024-12-01 11:30:21', '2024-12-01 11:30:25'),
(227, 'fGsMFzGABUV', 'echpahulu@yahoo.com', 'uFitGmbhY', '0', 'fWSvW9IiEd56fZ4AtRHc', NULL, NULL, NULL, 'CwmDQpYxIhPUMYS', NULL, 'Zimbabwe', '$2y$10$EQky6Vw7dGqIKYNCeUnQhOAINu8lXQpmuJjhi3U7H4ej0xwZjqvM6', NULL, '2024-12-01 11:37:32', '2024-12-01 11:37:36'),
(228, 'aLxYJTESh', 'qkgjtwxpbko@yahoo.com', 'WXMLKIvKpo', '0', 'd5aJNKaiDzgKUgmXIn7C', NULL, NULL, NULL, 'zNrpamoHQNC', NULL, 'Zimbabwe', '$2y$10$zt8TVoC/bFAn1UvbZ17NaeE8213Hc9meUk/H9mUzMrYlNNn.cgbnG', NULL, '2024-12-02 03:14:19', '2024-12-02 03:14:27'),
(229, 'RxHXcCGGvYZtqpg', 'lkjvqissaxocexof@yahoo.com', 'yNRzVhRKD', '0', 'VoEwS9zDlRDNis1feJbh', NULL, NULL, NULL, 'gAfEztczVskxy', NULL, 'Zimbabwe', '$2y$10$I2/2W5ThyWTquBs7RZq89.FwDYw1SydZyJcL7EaUlY9zd6ISpBndS', NULL, '2024-12-02 21:39:35', '2024-12-02 21:39:38'),
(230, 'fBjeMIygrRbY', 'kazeltensch@yahoo.com', 'jxgBGTJn', '0', 'b3lkc9b5S4mv3IjCeAtP', NULL, NULL, NULL, 'bKNiFuOA', NULL, 'Zimbabwe', '$2y$10$od7u.HIu4pHXKif0vPzWUeVdWr7WHO2M.0vdovXtqSXfHbrw/vURe', NULL, '2024-12-03 16:11:54', '2024-12-03 16:11:57'),
(231, 'orlmUMxJTRdoqE', 'lllbnwidgqeerdyi@yahoo.com', 'ArwQwnWFQ', '0', 'DP3lq1EHV80ZA616uwZo', NULL, NULL, NULL, 'RjJDmAlFLi', NULL, 'Zimbabwe', '$2y$10$Ah7hUX07c0.FzxDfhhAMQu1Woo4Ts2eXD5RkuZd1HpH3Qyf2ZnaQS', NULL, '2024-12-04 07:12:10', '2024-12-04 07:12:12'),
(232, 'XsHJYJRUa', 'hakeyhecet@yahoo.com', 'MJOYIdDL', '0', 'hKVL4SMQ1ZTZADYfLnXj', NULL, NULL, NULL, 'VjwwmfKlRda', NULL, 'Zimbabwe', '$2y$10$xWNvr2KSXS8P4o/2DaPLLuPNut1Shtd973IAxnZbrg5aBJkW2Rwty', NULL, '2024-12-05 01:22:23', '2024-12-05 01:22:25'),
(233, 'nmupKEkrr', 'xqwrmvrykqx@yahoo.com', 'TiuLTWRe', '0', 'bwyefKhkcmS87D5ACwV6', NULL, NULL, NULL, 'qoaKhntVkOCkS', NULL, 'Zimbabwe', '$2y$10$WPR56qy7KVlMmdD4CXs.guJuLcLiq2TQTWPW3cU2MDO1hjxZdHXAG', NULL, '2024-12-05 21:19:33', '2024-12-05 21:19:37'),
(234, 'QdlmzlvruCnbjK', 'mldccxorwpskrmb@yahoo.com', 'abLfOOIpQOHQW', '0', 'gjmNXLaXJNSlwv3FoFC2', NULL, NULL, NULL, 'dKNzdKeicJ', NULL, 'Zimbabwe', '$2y$10$I9V1k7ZEegJmcdo7dYBGt.w6c4LQfwN9Pw5nXarF4JFtFgjUlLdVq', NULL, '2024-12-07 10:06:41', '2024-12-07 10:06:43'),
(235, 'RAPNUiwjhowAym', 'hplawmvem@yahoo.com', 'hvHfRKGIwIKgjDc', '0', 'zFcz2vT1Zh5hRZPEPZv0', NULL, NULL, NULL, 'IIOigROZ', NULL, 'Zimbabwe', '$2y$10$RtNk.HlpEMug42Qoy.CGK.ZH9JQ8wdRTFSgCGcWYx4ZOKw3c6OB7m', NULL, '2024-12-08 03:58:18', '2024-12-08 03:58:23'),
(236, 'FgVHQJsnYBOwAGy', 'klodigoodii12@gmail.com', 'ugjMGeIPzgq', '0', 'eN2AxvWFxA1RiwhzNS7j', NULL, NULL, NULL, 'oIQuWjIwx', NULL, 'Zimbabwe', '$2y$10$7MGQqenfsW4O6E2rl1Ev7eDAYaDsn5JsFMZOTQbzyJbmm5cvxImWm', NULL, '2024-12-08 04:09:04', '2024-12-08 04:09:05'),
(237, 'lCreIOqNnYqe', 'cokspjnisuym@yahoo.com', 'wbbAyAFtbpeXs', '0', 'lvqewy914jndJck5xReN', NULL, NULL, NULL, 'BCevSQRcH', NULL, 'Zimbabwe', '$2y$10$D78Ev0xzcsr1CpdXt15D3eyNMJstHIIEm7NP91V/Llby0ksKPLA6i', NULL, '2024-12-08 04:11:02', '2024-12-08 04:11:05'),
(238, 'nEpMLyIjVmUETq', 'iadusko47legacy@gmail.com', 'UdPiKqoRm', '0', 'mRO1mke93Fc7jDQtmpPB', NULL, NULL, NULL, 'znlwPxXTbOS', NULL, 'Zimbabwe', '$2y$10$heecf4/7TlazFgTxsC0rEObrnFtu9zFnvmurTu0ZUr5TLPKwmp17y', NULL, '2024-12-08 04:13:24', '2024-12-08 04:13:26'),
(239, 'aCdDYIyHD', 'vilmamz1983@gmail.com', 'rzUKNqoiWD', '0', 'n1cJwNeDND4MFoQbr4sj', NULL, NULL, NULL, 'vYauAjLAWLTuL', NULL, 'Zimbabwe', '$2y$10$/QcJQta9Y53k2HudFj.qbuW68s98pQCYcO1P65i/IReGbVzp6rOy.', NULL, '2024-12-08 04:13:29', '2024-12-08 04:13:33'),
(240, 'pLRQLPmIbLcHxK', 'rrozasharn@gmail.com', 'pPFFhsxsnz', '0', 'hXoS9PZa74V1essCVUeR', NULL, NULL, NULL, 'SAYtwtvy', NULL, 'Zimbabwe', '$2y$10$ECGvMdIOnF5g.32m/RDzNO/duKK/v/ildGymQJvU9215QnuHG07ge', NULL, '2024-12-08 04:21:25', '2024-12-08 04:21:31'),
(241, 'kzQxBlwRcqTGp', 'prettyburt@gmail.com', 'OkSXSQDUZcGb', '0', 'AORnaak2pYShz1VU0mPY', NULL, NULL, NULL, 'JwJxgILlJPLSHVI', NULL, 'Zimbabwe', '$2y$10$jOQP6NH2skuPxfdgv.sxpOxicWXAKv3cdMTV8IczgVYNfPY72ubsC', NULL, '2024-12-08 22:38:38', '2024-12-08 22:38:41'),
(242, 'XBhkIPkubE', 'campoyawinast@yahoo.com', 'sHclqThasc', '0', 'q0kI6yPrq4CQDMhXUIwV', NULL, NULL, NULL, 'pcmNWejs', NULL, 'Zimbabwe', '$2y$10$SI81l5okXWUpk/wOG1qNfeIm70zkMDgrwESr7G0r1o.stZAHs4T46', NULL, '2024-12-09 22:29:41', '2024-12-09 22:29:45'),
(243, 'abwYjtaFJxkWm', 'heshgerwin@yahoo.com', 'TCylIjeFztcDVm', '0', '01jarbimx6ul2crCn0jI', NULL, NULL, NULL, 'MQkymYCe', NULL, 'Zimbabwe', '$2y$10$eWOqeahRk1r/89CLL.UxSu10QGrRQcGzDHdwccs0aNCAt0Hr/iboW', NULL, '2024-12-11 00:43:33', '2024-12-11 00:43:35'),
(244, '10% for 2 days here www.dc-btc.space?q=7259510', 'empresariallira.grupohinode+2kSTq@gmail.com', '10% for 2 days here www.dc-btc.space?q=7259510', '0', 'P5HZ70P9yDuxq0sEYjAM', NULL, NULL, NULL, 'РњРѕСЃРєРІР°', NULL, 'Norfolk Island', '$2y$10$HDiA.LklBaGYv9YdCbNuweQGWzgwgWd/v5qwn/0nMPM2GB9WCQJiy', NULL, '2024-12-11 15:20:42', '2024-12-11 15:20:45'),
(245, 'HZtmoAIEvpoDnru', 'endrofbnoi@yahoo.com', 'XgLwJksDr', '0', 'WpAekqTvZe0Jonoofd2D', NULL, NULL, NULL, 'HgqIGfzsPLc', NULL, 'Zimbabwe', '$2y$10$nEC9t0sXdh/brD3nNpcdaOvFz8bHEMqwbzLu6ll21qz7DHYHqlSD.', NULL, '2024-12-12 04:19:07', '2024-12-12 04:19:09'),
(246, 'BpTYKrRmMdDdvdf', 'aswfcucgkykqbz@yahoo.com', 'YHfRKFsDvNJd', '0', 'TWIQLz1FP5MLGhuUk22Y', NULL, NULL, NULL, 'bCrbHEitqHNjV', NULL, 'Zimbabwe', '$2y$10$HIsl.B7V7xQgo0i7hYEkVulTlzxFPw1gFrkaA6xMIE9rtnSj3SIH2', NULL, '2024-12-13 07:53:09', '2024-12-13 07:53:11'),
(247, 'TkLtFfHzDAy', 'mafiudox0cmen@yahoo.com', 'ErWEKtIjs', '0', '1Ypci9ku9LyErrbbDydr', NULL, NULL, NULL, 'WTETkUkcZXu', NULL, 'Zimbabwe', '$2y$10$mJNa0XapZbo.52I5BMqqzuSRn75XvCpb.rr.8U.COlW8RSMh2LB56', NULL, '2024-12-14 06:14:31', '2024-12-14 06:14:35'),
(248, 'iIyoDCwLHPGFvz', 'eazenithaiglyph61@gmail.com', 'RUoVNyexg', '0', 'Qgu1SC4JT9nUvvENcRrF', NULL, NULL, NULL, 'URhzVBNnzY', NULL, 'Zimbabwe', '$2y$10$5f6gdQPh2/eXuj2uohB4aucAvP037k0tN10OcZJBaDgavLkSYa.uK', NULL, '2024-12-15 01:55:33', '2024-12-15 01:55:36'),
(249, 'iSEXxtDWezZILY', 'schoupsgag@yahoo.com', 'OooIdQbHRZ', '0', 'zdUHOugaSSnE9jU2HFVJ', NULL, NULL, NULL, 'gBdTJiZefTfm', NULL, 'Zimbabwe', '$2y$10$VosHCeom7ei7HbIyYjSYVO6715/p.UplWwWbhGHun4g8RL6palZbe', NULL, '2024-12-16 00:25:04', '2024-12-16 00:25:07'),
(250, 'EXIhkcsru', 'zenickantuluri@yahoo.com', 'LzzvCsrc', '0', 'AF9KMyTGOETjyx0Qp2RZ', NULL, NULL, NULL, 'JGUnwsXLcMuurk', NULL, 'Zimbabwe', '$2y$10$A88JxWsG8SAVrXFklWDx0uhmYf4LvyrfDqZPUlVx9yBTanWoAUape', NULL, '2024-12-17 10:31:06', '2024-12-17 10:31:09'),
(251, 'mRbaIBOTqAs', 'motifanoci016@gmail.com', 'QzHPknwpSQP', '0', 'sZVr9TyfXbhiS7Vl8spK', NULL, NULL, NULL, 'dHyxXeIaxdxvAMd', NULL, 'Zimbabwe', '$2y$10$ERpepq0CG71BuJ74yxzA3eUoO3J19ptwZ7.TPmnya9JdCPIC3JjPW', NULL, '2024-12-18 10:33:06', '2024-12-18 10:33:10'),
(252, 'NyMXTlgnNG', 'xs4gejjr3smctr@yahoo.com', 'uIwLgjgTICmf', '0', 'qSuUVRpAFXAgdF1XQwZd', NULL, NULL, NULL, 'OXnOcJNuqa', NULL, 'Zimbabwe', '$2y$10$pMEIBfGsYCdEVmgf.PxU6O28BYIpCxrWnIvDZqTqGpykJlFFrKF6W', NULL, '2024-12-19 11:12:35', '2024-12-19 11:12:38'),
(253, 'gdcJACwUn', 'adeyehewig62@gmail.com', 'DiNaAbRWFn', '0', 'aKvDptq6HlJTqZ9Rng0q', NULL, NULL, NULL, 'jRWMbBITPxa', NULL, 'Zimbabwe', '$2y$10$6Pw5a0fBmursDlbwnFhjjuVi/OKAJ.NcfmoABmj5o8U64CqlgfYku', NULL, '2024-12-20 10:17:21', '2024-12-20 10:17:30'),
(254, 'pqLGVFzRHin', 'ixeyoquc97@gmail.com', 'ExTSqYKFLMaRnpS', '0', 'ebgF7s7rjNXBg48JIBgT', NULL, NULL, NULL, 'bqyoPQfZlBqGlYk', NULL, 'Zimbabwe', '$2y$10$PsK6jx8/D28ysA7X63ZBoua3nq9SvZy8nzy/loZAE3RuntiU.KVx6', NULL, '2024-12-21 06:16:25', '2024-12-21 06:16:30'),
(255, 'VWETxVTJvHmSM', 'baferaqudexi27@gmail.com', 'AUeWjFwhEy', '0', 'Q4DztLRbmIURfo9oYWpa', NULL, NULL, NULL, 'sYfFHtpmmwZA', NULL, 'Zimbabwe', '$2y$10$y48nQ8sWnbW963yI.A.bhOfoB6juCJId88HHM.nLbmG4o4XolJQCm', NULL, '2024-12-22 01:17:19', '2024-12-22 01:17:21'),
(256, 'aiYuzrDUnfV', 'dayenefuk121@gmail.com', 'EqsyiGOd', '0', '9jFfmCGgNosoyiFYof5f', NULL, NULL, NULL, 'kcAqaNVhPWP', NULL, 'Zimbabwe', '$2y$10$Uj4wd49ecqyUCRYdkDiVYO.L5JgztVvFWqg80AaWKToRHcm1i0pbK', NULL, '2024-12-22 20:04:48', '2024-12-22 20:04:52'),
(257, 'pwlMiffUI', 'leyayemawif739@gmail.com', 'KZmwYJCJkqLOZO', '0', '23uUCq89QkLaF8YSDBWM', NULL, NULL, NULL, 'XSLbILqA', NULL, 'Zimbabwe', '$2y$10$ywZc5RuGPmp3d6kq3xFRAOpVEtii5znOPhuiFrROE37U1PCL4pJ5W', NULL, '2024-12-23 18:11:47', '2024-12-23 18:11:53'),
(258, 'eTzKNhpVtjH', 'nirvanaia34chime@gmail.com', 'SzqbYCziXZPKZh', '0', 'ok6vZv9E18mLJRQiV0os', NULL, NULL, NULL, 'ZnGcdckbBluzas', NULL, 'Zimbabwe', '$2y$10$rsmMaMFi1pvphNk0w.tosublPTNd5VD8AG3ZGi0t8sarHkegfTTZ6', NULL, '2024-12-24 19:27:57', '2024-12-24 19:27:59'),
(259, 'AsWCQXUiz', 'ustovichtakashima@yahoo.com', 'KQHulQBRvRnibgz', '0', '27aAa2fSDfC666G3rbHO', NULL, NULL, NULL, 'MOcPZRLVxHJiKe', NULL, 'Zimbabwe', '$2y$10$PBFEZlUgngbhx3gq4/kbJeAtQHxON/ii8H9FxRaC5YLSb..kbCp1m', NULL, '2024-12-25 14:35:56', '2024-12-25 14:36:01'),
(260, 'uTgZwevsk', 'seviciyoye815@gmail.com', 'XQCViofLvZ', '0', 'seEpUqlGIQWzZ1qyCSFH', NULL, NULL, NULL, 'FwRvTgrrhNplNT', NULL, 'Zimbabwe', '$2y$10$DTWTLcqhyUyKWG49dQaDO.Lm.hwLlZvDLvHlFUljcaaDQe9Nia8uq', NULL, '2024-12-26 10:50:17', '2024-12-26 10:50:23'),
(261, 'IGaYSYYCCDYjgLy', 'schmeicelkozelov@yahoo.com', 'QPJuYebLhMQDltf', '0', '2QHDAlguJwLM7x3oMBJm', NULL, NULL, NULL, 'WBgJsFLbileM', NULL, 'Zimbabwe', '$2y$10$Wu2Y/.Q4Ahx5Z3DxMUOaqeUlLIwbb/AJ88U.XjPqPdbwwxEHiV3Fq', NULL, '2024-12-27 11:25:22', '2024-12-27 11:25:28'),
(262, 'LeBuoduHwJrt', 'wnss7k9ua@yahoo.com', 'vNPaXMaNHwVvNv', '0', 'lMYD20A39doign7gTYvM', NULL, NULL, NULL, 'ocfjkuxPH', NULL, 'Zimbabwe', '$2y$10$zydK/.jeO5nBO2HsoX851uSG0GhkiOZygpjGQ/.DKGwAuLA9MCJHO', NULL, '2024-12-28 09:20:26', '2024-12-28 09:20:28'),
(263, 'Look nice to ***000 futuretrackbd.com tY', 'mitaxebandili.s@gmail.com', 'Look nice to ***000 futuretrackbd.com tY', '0', 'PVDHqpWchZJGcoGDShkI', NULL, NULL, NULL, NULL, NULL, 'Niue', '$2y$10$8jmUlBkaD4NyYjfLDN9jHODaDI72/DE9z8QH3G3j0.89DMfcFBIZu', NULL, '2024-12-29 16:03:27', '2024-12-29 16:03:31'),
(264, 'cvFeSImGPF', 'lubirobawiq017@gmail.com', 'uQXuSKGXuNjhM', '0', 'farS5Suw7ixZfORiIwwi', NULL, NULL, NULL, 'TAiZjsHIZ', NULL, 'Zimbabwe', '$2y$10$n.LvPvKkEYpnfDA1bO0c/Ovh9UP3h8E5SOy.70mwy/XK0xXqxvfXi', NULL, '2024-12-30 04:10:35', '2024-12-30 04:10:39'),
(265, 'JIGxyoBoDiZDzU', 'dgjdl5pd0eg@yahoo.com', 'FmlWNkKXiRbKI', '0', 'BY6alK7gcZiPLgVwXmFw', NULL, NULL, NULL, 'npVwJsDv', NULL, 'Zimbabwe', '$2y$10$Q2TMHDK35dv0fmOaaNeIK.mJEpYNafqw.nYN0KfCkWFrdLcIrbOQa', NULL, '2024-12-31 01:01:35', '2024-12-31 01:01:40'),
(266, 'MDknNOdVKbbPU', 'ixucupaci96@gmail.com', 'TMzAKBWEclAcd', '0', 'XklZZ0kJhsxZzxWMvGFf', NULL, NULL, NULL, 'pMeYkUUhNIgu', NULL, 'Zimbabwe', '$2y$10$Tn65B3YO6thYFYTmIMuPW.ompgvZrtzUCs5bm670FtUHVVh/VfirO', NULL, '2024-12-31 19:15:07', '2024-12-31 19:15:09'),
(267, 'tGBwEhZvusTO', 'akulezula62@gmail.com', 'FuPDOyJHFLOzWFa', '0', 'DBCb036Xsms2aK7Xra6c', NULL, NULL, NULL, 'rsPDThnHTYQhN', NULL, 'Zimbabwe', '$2y$10$2rOaqxszKEycj/pm3BBaq.brBeKujRIhKfGva738eg4Z794Uw7qJq', NULL, '2025-01-01 12:19:30', '2025-01-01 12:19:37'),
(268, 'NIK0ryh3wm0nyw9 http://dc-btc.space 9069968', 'greyka2010+7OCTzhQm50@gmail.com', 'NIK0ryh3wm0nyw9 http://dc-btc.space 9069968', '0', 'o2HelPV9Alp5MwcCpHxn', NULL, NULL, NULL, 'РњРѕСЃРєРІР°', NULL, 'Haiti', '$2y$10$iHid1qd8qx6csPbIL7HO9u/x1FUrtExnM6MZF/0uWYbW/GPev5q0u', NULL, '2025-01-02 04:15:05', '2025-01-02 04:15:12'),
(269, 'vCOtOWlnRKL', 'ekekefuxepi495@gmail.com', 'ZunXFqhlwFkkZTC', '0', 'vAHNsFzexs1SpFypTbdZ', NULL, NULL, NULL, 'NlbiXOigbyNSP', NULL, 'Zimbabwe', '$2y$10$DtXpKBcEAqrkGclU.ctLK.RbSSCoCsoMNF/wI02OmnzdCndlvatje', NULL, '2025-01-02 05:47:13', '2025-01-02 05:47:16'),
(270, 'NIK0ryh3wm0nyw9 http://dc-btc.space 364718', 'greyka2010+PI2T3lxI@gmail.com', 'NIK0ryh3wm0nyw9 http://dc-btc.space 364718', '0', 'qRjpvUPbxktIB6hTsIov', NULL, NULL, NULL, 'РњРѕСЃРєРІР°', NULL, 'El Salvador', '$2y$10$2vmZfLDcw3V37TU1bT4oXOTSWzaXAVs3Z5P77onMlvwWeGcv3v6dq', NULL, '2025-01-02 12:06:13', '2025-01-02 12:06:19'),
(271, 'CAJMDKuKWFaUlWe', 'yuyunujegocu94@gmail.com', 'HyMnVceANdp', '0', 'JVrtb1IWEpwkwnyKk9sX', NULL, NULL, NULL, 'AScZADbx', NULL, 'Zimbabwe', '$2y$10$79xzDOnEZu6E2RudxmxfYeGAmJ2/EsmeI7tOMjzlo7LYx8/72DiHq', NULL, '2025-01-03 02:24:53', '2025-01-03 02:24:55'),
(272, 'iIrKBUjTnjDryzL', 'bokmansness@yahoo.com', 'triAnOaIiwguP', '0', 'Yv9nWtT0Vf0vC1IsYTTO', NULL, NULL, NULL, 'dbdGRMls', NULL, 'Zimbabwe', '$2y$10$mJEgIlbw3LerHVxo9U8.yOLvb9nZAMtKA7usd9HGjK2Dl6laYh5Uu', NULL, '2025-01-04 01:50:08', '2025-01-04 01:50:11'),
(273, 'FmOMNREtqoZkr', 'rockmannnaperstk@yahoo.com', 'WNrsKVTyWZ', '0', '3HK8UnhZA9sHVqX9Wqmh', NULL, NULL, NULL, 'wEOAcIDR', NULL, 'Zimbabwe', '$2y$10$cu5XPslvRFtcZy0fkE80XunJPBY5yiPqA1/ZYfmrieBOWymsBAnrm', NULL, '2025-01-05 02:06:31', '2025-01-05 02:06:36'),
(274, 'lobbyster yahoo.com', 'bocow94@mail.ru', 'lobbyster yahoo.com', '0', '3xVmcBm4Q0KCWFc80AEQ', NULL, NULL, NULL, 'lobbyster yahoo.com', NULL, 'Anguilla', '$2y$10$XNgNNBpqKhfMd/5hdgg/4eZZrVFJfIQVTztfuzvo9W4tA9v/TUYGu', NULL, '2025-01-05 10:36:26', '2025-01-05 10:36:27'),
(275, 'jpGdYzrTQqnbc', 'ucosapiv21@gmail.com', 'xwQbbuaJVIGH', '0', '7uYQ4Nu4f7VXwQiDbygs', NULL, NULL, NULL, 'bLjresraghLc', NULL, 'Zimbabwe', '$2y$10$Ehz05pnGfAYExd3guRGXFe2bpxUA4gPMMCIYYhdAfM7mfEckCpagG', NULL, '2025-01-06 07:37:30', '2025-01-06 07:37:35'),
(276, 'uJPMiWCO', 'awelapag62@gmail.com', 'KZLcKYjAxlz', '0', 'mSFTWjInibdV3M6kxAvb', NULL, NULL, NULL, 'cksPQDJbyADh', NULL, 'Zimbabwe', '$2y$10$PkonOipj7sdynMvtyAxzTeyW5upMKillKPS2uSVo35B8O7k/rbnWS', NULL, '2025-01-07 09:35:28', '2025-01-07 09:35:33'),
(277, 'UHtztpWArwL', 'tv2jiohujgj@yahoo.com', 'dBTFkrlaM', '0', 'r0iO6JZbszmndpeyLMkQ', NULL, NULL, NULL, 'TXJmYaAYqh', NULL, 'Zimbabwe', '$2y$10$xVjv3mO/WJH6qCenQvDMduA9PNrGVERkxGcnw4Q4ynqXebAQa/nU.', NULL, '2025-01-08 16:44:37', '2025-01-08 16:44:42'),
(278, 'OlPmpziAi', 'lvgbpuofgf@yahoo.com', 'lvMWyVaIagqUQpr', '0', 'eCE55fyoQYAIRC0N2t2K', NULL, NULL, NULL, 'AEkHezoN', NULL, 'Zimbabwe', '$2y$10$tITwidYLDVUkDMYD6d2E.OwP6O0DyTrqSDQnz0f9hQ7aR8Ym3dJcm', NULL, '2025-01-09 16:01:50', '2025-01-09 16:01:56'),
(279, 'ucNlDjczjjYNiqf', 'ofajahok951@gmail.com', 'LfPetlaIF', '0', 'ElbZ0yWm3a4omRgvYAMy', NULL, NULL, NULL, 'VJLimDUtQqwzBC', NULL, 'Zimbabwe', '$2y$10$tQ2vR0smcZjLnmMn6kJObu9Oy3NIsEuNVCm5o9rP/jQ4LguxrIuWa', NULL, '2025-01-10 14:22:07', '2025-01-10 14:22:10'),
(280, 'spxwoeb http://futuretrackbd.com/50969', 'greyka2010+T8wE1k8BhkAAB@gmail.com', 'spxwoeb http://futuretrackbd.com/50969', '0', 'kkw4Q3nG3sWvPIyMcmBA', NULL, NULL, NULL, 'РњРѕСЃРєРІР°', NULL, 'St Pierre & Miquelon', '$2y$10$dqUWR38aPC2l6Mgv.75H7OaOQ4Repl499yPVaAfq/Osd2wtf2hVxm', NULL, '2025-01-11 09:48:52', '2025-01-11 09:49:02'),
(281, 'wbsOcAvX', 'shakilheniff@yahoo.com', 'fGMCCwmtDtetBZJ', '0', '5paisGVHCOVhgJk6flwm', NULL, NULL, NULL, 'cnYIKcpEHMxJ', NULL, 'Zimbabwe', '$2y$10$7HZGt7CQbIkJ5s7RkL2LtuAOpyCFNFxJzYE69KYCPf5TZW6cfgND.', NULL, '2025-01-11 11:59:55', '2025-01-11 11:59:58'),
(282, 'kWXhQtLgs', 'qemucocijaj642@gmail.com', 'feonEdFJSuKo', '0', 'wTtIQtT0Z1qEcNlfMX1H', NULL, NULL, NULL, 'zjpvvWPoS', NULL, 'Zimbabwe', '$2y$10$c77mwC778JWURWtSv0DjCuZWTzm35n3h.tOap1pXwxCl1R8JtOfk6', NULL, '2025-01-12 14:21:21', '2025-01-12 14:21:27'),
(283, 'Abdullah Abu Jarr', 'nahidabdullah175735@gmail.com', 'Abu Jarr', '0', 'QmV61rBSGHQ3Hnb5bf0B', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$rRD3Pjpq4X/RV6sPkAAXMO/7YDzuGBoG/9WoEj60P9s2WKoOq0dSK', NULL, '2025-01-13 04:13:50', '2025-01-13 04:13:50'),
(284, 'UzKqxXdFGFS', 'lericksond37@gmail.com', 'GRySzlFDcOaguQ', '0', '1IBoq1FDf5u6m4jiaum1', NULL, NULL, NULL, 'GkSQODnrAGlsWNc', NULL, 'Zimbabwe', '$2y$10$fAm7eZu5odUxbS1XMOgaXeusTtHIONjT.VZ1fRs6FVxfQ0K6LoMzu', NULL, '2025-01-13 23:15:33', '2025-01-13 23:15:36'),
(285, 'cutOGeKxJ', 'famudimakovicka@yahoo.com', 'wkGxcVsKnZNxC', '0', 'nWbSe84T6LL5zPq97KWh', NULL, NULL, NULL, 'QINyTYWmdi', NULL, 'Zimbabwe', '$2y$10$4.mM38svQQN/Xrqjj5VOle1AK9uVlCcMWbKfsc7zCE4Zkyx4YLOkG', NULL, '2025-01-16 22:48:17', '2025-01-16 22:48:31'),
(286, 'DBopjslb', 'tb8nweoykv@yahoo.com', 'rbvIMGBtqfW', '0', 'bj4P0aL817bxmUlrmXu5', NULL, NULL, NULL, 'MlqoVRejJcFfM', NULL, 'Zimbabwe', '$2y$10$zV2NcwMC6lNVbk8Yd3k5VeUQtuWZwGtrwNpTQCAYjVsOAmICDADg6', NULL, '2025-01-18 02:36:56', '2025-01-18 02:37:00'),
(287, 'lFRauVZhyj', 'oophantomxenonio@gmail.com', 'WyAdRpHfPagX', '0', '3jQgN3JFGWUzit77rGWq', NULL, NULL, NULL, 'aFFWhfOicZXnm', NULL, 'Zimbabwe', '$2y$10$d4qRb2w3Hf99M.pJZDFPEula7OisG6upUNipKiLQKovmhm6nrSslm', NULL, '2025-01-18 23:56:55', '2025-01-18 23:56:59'),
(288, 'iSkJYeWPGIZ', 'oyfableo20alchemy27ay@gmail.com', 'mBIocnNUBrPIV', '0', 'wID1UTQXZwvkyGboh6Rr', NULL, NULL, NULL, 'yKHpKoCRpaZmixO', NULL, 'Zimbabwe', '$2y$10$MAHhZWapLS/nTcDBheWXxOZs527UCNIch2fjGquWR6jOdwCvPmjG2', NULL, '2025-01-19 21:01:46', '2025-01-19 21:01:48'),
(289, 'ALFdpcyzjFv', 'oejubileeiquartz22ey@gmail.com', 'nRfPeduFxDmxdL', '0', 'vFq41FQuihTCJwkES5v3', NULL, NULL, NULL, 'HebEZOzCLfS', NULL, 'Zimbabwe', '$2y$10$oTpCvRUzbyUasOLGM27Qeeev2hg90JbL562PcwCrBCu8iiJbVkSIi', NULL, '2025-01-20 22:51:58', '2025-01-20 22:52:02'),
(290, 'RGTeVfxtgCngaa', 'kantrascko@yahoo.com', 'cJViPmxUFwCak', '0', 'M87q33g8uOmUFqJjN8Au', NULL, NULL, NULL, 'MeYFCNfU', NULL, 'Zimbabwe', '$2y$10$ojtM.ml1WQg.5YgqHZj9Cuy3YWcnl1po.8OYaDPH.6SZU3ACnIKBm', NULL, '2025-01-22 11:42:15', '2025-01-22 11:42:20'),
(291, 'pDfxsYmJeKSRf', 'Zachary2Thomas5084@gmail.com', 'wkkwGSkrby', '0', '6OcMmnPCM40IeHzezhGb', NULL, NULL, NULL, 'CbREpNqlWf', NULL, 'Zimbabwe', '$2y$10$p1pajDAZhBUZlzCHEex72uFrtzFhvMIH1rzkMhkkRmo02BiI/vbEW', NULL, '2025-01-24 03:34:37', '2025-01-24 03:34:41'),
(292, 'YvcjAYfTaOg', 'wjohh56gu2nk@yahoo.com', 'oqaaIBII', '0', '3UkQEpB4vfBuAQ5jMkA5', NULL, NULL, NULL, 'KIsdngFGqTe', NULL, 'Zimbabwe', '$2y$10$Yt6hOyZMtVy8UoQadzUHz.wjMTslBMHvHUhU1djvSt1fLX3o7B2Bu', NULL, '2025-01-25 17:21:24', '2025-01-25 17:21:27'),
(293, 'yGzkZXuY', 'ryqolksrb@yahoo.com', 'LYJOdvpW', '0', 'XPHohpPjC6CxaD8U5L6C', NULL, NULL, NULL, 'ixQNmiofsGRr', NULL, 'Zimbabwe', '$2y$10$umZkmP9fgoNlmviOjgIdOOcvarXLikGuH2TVBy2RlIUbMzseckrS6', NULL, '2025-01-27 05:35:26', '2025-01-27 05:35:30'),
(294, 'OdyRSmECrFkzy', 'Josie5Steele8568@gmail.com', 'JdbtxAqfKyiyl', '0', '9c4GpnL08Yg3XZuDPe8i', NULL, NULL, NULL, 'gYLTDiHLfdOXKR', NULL, 'Zimbabwe', '$2y$10$C7CZnJ4K/uKjBzxcNZvlSOYwEtoy09Rz5VARy.oBWwvvUrbP/ho7G', NULL, '2025-01-30 00:32:14', '2025-01-30 00:32:17'),
(295, 'UEftWMOpbH', 'Eunice1Parsons5445@gmail.com', 'rykUzXBmJGhoxrp', '0', 'uOVCVuIDpDvI7BXX9SYr', NULL, NULL, NULL, 'kJWteMPSIrouu', NULL, 'Zimbabwe', '$2y$10$cngevWsaghTB350e/q/EmeikVwf1mEJGlnvXZb4jph3RS6LtSICqm', NULL, '2025-01-31 03:47:05', '2025-01-31 03:47:07'),
(296, 'qLMSLrkZFhLpU', 'duskia41chime53oo@gmail.com', 'ZoYwcYgQu', '0', 'OOGr3wCJcDQPKZXddaKd', NULL, NULL, NULL, 'gzeMyJhMIb', NULL, 'Zimbabwe', '$2y$10$DlYL9h6PRvC1mCbwkefksuALpmiZIF2nHWune37hZ4TGqsCY7TJO6', NULL, '2025-02-01 11:04:47', '2025-02-01 11:04:53'),
(297, 'mZlHqjAOeljTuGg', 'uuyfpjsbvrfgugfk@yahoo.com', 'acSVClESCCQpot', '0', 'f7vuiMCNogFPDjMvTR9n', NULL, NULL, NULL, 'zeRdKhrmZiLuxGB', NULL, 'Zimbabwe', '$2y$10$WksYcugAn6JKBJLwtGfV6.KCNLkLqLYMFZTapVlI6DEgljJxLxWwW', NULL, '2025-02-02 06:40:39', '2025-02-02 06:40:42'),
(298, 'lXSFqkyTZ', 'sedisigu619@gmail.com', 'xHEBcOxQEyqdFu', '0', 'JBcYfXZzIletUIGR38Tp', NULL, NULL, NULL, 'rJfpaNcc', NULL, 'Zimbabwe', '$2y$10$Sgb633nvt7Vqx0IhiMirVOYIzCG19xffJCTGIPuNAIbsGSyRyST7i', NULL, '2025-02-03 05:17:50', '2025-02-03 05:17:52'),
(299, 'kGZAypaOdLpkDsN', 'ayfableubrink@gmail.com', 'zIzkLvXfZVXFG', '0', 'p2OSTYMkBijJzvcUQeBp', NULL, NULL, NULL, 'VZsIIvbadXfMIy', NULL, 'Zimbabwe', '$2y$10$EJirEzO11tECeAK7dQGPmeG.kXwt4Efk4XweAe3TgoEN6eEYe5kSm', NULL, '2025-02-04 06:58:35', '2025-02-04 06:58:37'),
(300, 'kdmwRcLtbHl', 'iozenithuealchemyea@gmail.com', 'TzyAjJaLbyyvlUz', '0', 'oa1Z27sGENtCFkxUAk2j', NULL, NULL, NULL, 'tVppwDfY', NULL, 'Zimbabwe', '$2y$10$JXiRCgrEv11KSlBWs271zumFLvl3/PJkDNpDbYgYmQZ0pCRlqKRM2', NULL, '2025-02-05 07:28:36', '2025-02-05 07:28:39'),
(301, 'oBBBgIUN', 'crescentai64oracle21ay@gmail.com', 'fHpEKTWF', '0', '75Jv6rrjNyWLpiz6pRN0', NULL, NULL, NULL, 'ZdxFGHkuNpTiBjY', NULL, 'Zimbabwe', '$2y$10$5qXEaS0cxt/tGV0wITrzi.1ByiWIc4rYLht56qPf.hTn.TrpBmonG', NULL, '2025-02-06 07:50:22', '2025-02-06 07:50:25'),
(302, 'QQYZmgLSyRJqN', 'jubileeoui82echo41@gmail.com', 'NQJliMIVhgvGj', '0', 'zVmN6J0KtXkxdIu5BkYv', NULL, NULL, NULL, 'tFkpghcGIPiy', NULL, 'Zimbabwe', '$2y$10$Ovnw8oPH0edECo2pg6Rm7us9dtm0nevPkzYwnIk5WaSEmmYkSI9Oe', NULL, '2025-02-07 04:59:24', '2025-02-07 04:59:27'),
(303, 'SGoxIzpZ', 'aiphantom83pinnacle42io@gmail.com', 'ZXLxBYjsdJB', '0', '8o9K9rpyKQzu0YUCVgjo', NULL, NULL, NULL, 'CbFSRkhYmgrO', NULL, 'Zimbabwe', '$2y$10$FNmKPPD6molPiwPfMkTCruEDyL0Zugc2j/qQ0rkTGYX74eG6iZ./2', NULL, '2025-02-09 02:38:16', '2025-02-09 02:38:20'),
(304, 'Jobayer Ahmed Pritom', 'jobayerahmedpretom@gmail.com', 'Itsme_pritom', '0', 'QxOYPe1lNUiRr6sbC2Sr', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$Yw0CFloKXrHABuF8mMSdlexCZPJXPN/75.QsGI77wZstVV2zaKVlO', NULL, '2025-02-11 12:14:49', '2025-02-11 12:14:49'),
(305, 'Ashiquer Rahman', 'ariyanashique121@gmail.com', 'Ashik', '0', 'f8F2UIz834EXYaXkZEyC', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$6kIBFA3iUchHOKLwgBDr1.SUUjvJYb/tcy8ckhGsvTsFE2IM6djTK', NULL, '2025-02-11 12:24:04', '2025-02-11 12:24:05'),
(306, 'kdBACIIsBOq', 'yornerbarnettt9@gmail.com', 'jLmelxgrHux', '0', 'JrpuEsl60Lu0JZSlXPvd', NULL, NULL, NULL, 'ZmOjDkFsrxlWSOQ', NULL, 'Zimbabwe', '$2y$10$cGbJ8B1Esrm5Xvv523VJ4Ox6aHkE5CsG2G4/fyp8t6a4NGJOOp53O', NULL, '2025-02-15 03:50:50', '2025-02-15 03:50:54'),
(307, 'Miguelphymn', 'kertyucds@onet.eu', 'Miguelphymn', '0', 'SOPjBfHIYXUsBiJsLrtI', NULL, NULL, NULL, 'Stirling', NULL, 'United Kingdom', '$2y$10$nWMFZZGVwtSvaO2Wd1F7j.FnJLtD97kZYAyvMUOgaG754s70oYh9i', NULL, '2025-02-15 06:38:03', '2025-02-15 06:38:06'),
(308, 'Md Fokrul Islam', 'fokrulislamm093@gmail.com', 'fokrulislamm093@gmail', '0', 'q4Y0ZvSeMXQIJHdTElbb', NULL, NULL, NULL, 'Comilla', NULL, 'Bangladesh', '$2y$10$xb7HtQZOSH2OGAxmeKJMr.9HfLJkCtjL3AdPb6IXtNjga5NtS2/qG', NULL, '2025-02-15 12:21:27', '2025-02-15 12:21:27'),
(309, 'NGrXcboIHiaM', 'morankinefrid@gmail.com', 'TrirQZAm', '0', 'JeWvX9DRPG2NkPa5hjDa', NULL, NULL, NULL, 'aMZEIzjOBTnvyZt', NULL, 'Zimbabwe', '$2y$10$pjqVk1uAQFSaTLy3BrfIZu0reqWrROtFff22B8Wd60da31y2JA1rW', NULL, '2025-02-15 20:03:13', '2025-02-15 20:03:15'),
(310, 'DnnpXkzur', 'beatrisconleynr1980@gmail.com', 'zCOrZfPlF', '0', 'ryTHAkMPO1RRmY91641p', NULL, NULL, NULL, 'fwnUaxMcSoMEH', NULL, 'Zimbabwe', '$2y$10$ZR7ad0jmxgYj7Udjr4cAQu7FtMXR9fq83I8yRd/BMDM8o8G5l5qSK', NULL, '2025-02-16 12:08:01', '2025-02-16 12:08:07'),
(311, 'RMtTXaNZ', 'davidsontammie45@gmail.com', 'kUWKOkds', '0', 'WGSRKtd1d2zSHSUmhiuR', NULL, NULL, NULL, 'YsTNdjyVQCiLr', NULL, 'Zimbabwe', '$2y$10$J3Ym/oTeO95KJWywM69DK.K.YIWvACy.k0oWEttl0NpoOs/1BKQ/O', NULL, '2025-02-17 04:34:02', '2025-02-17 04:34:07'),
(312, 'TestUser', 'gvidbeyi@do-not-respond.me', 'TestUser', '0', NULL, NULL, NULL, NULL, 'MyName', NULL, 'Afganistan', '$2y$10$3Tnx1lFH0dDZbm49n4hg9OopI5ZB/NVKkQkr6nZ2Z2qiB7U8gTO7W', NULL, '2025-02-18 13:48:16', '2025-02-18 13:48:16'),
(313, 'SQluSCyJfb', 'stesantosda@gmail.com', 'pHhNHqTQ', '0', 'KNK6awStVfTzT3pPJHZr', NULL, NULL, NULL, 'OwpGFPbq', NULL, 'Zimbabwe', '$2y$10$qO3iqnnyz1CygSz1MRfbD.lMMl0.tHFsh/kbiBTOyXIWPLoSDyWPC', NULL, '2025-02-18 15:56:33', '2025-02-18 15:56:35'),
(314, 'Rajia Kabir Roja', 'rajiaroza07@gmail.com', 'Rajia Kabir Roja', '0', 'sT3ALT7RrhhMX8wOfkSF', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$3HqsieNFkPjoldBzd6YakuNfLTN9R1sfY8n6AdAdRJUfvwaRphOkG', NULL, '2025-02-19 14:10:52', '2025-02-19 14:10:53'),
(315, 'eQiBvxAUBurHTrk', 'spearsalvilda@gmail.com', 'DRKhhmlV', '0', 'b7BEUoxPs01GAMLyfeBB', NULL, NULL, NULL, 'abxqbdmQ', NULL, 'Zimbabwe', '$2y$10$MUNOvRJ741r2yz0dhcf0YugAlFkSyAFr.bRXnUcyDECbEQo/dkj2y', NULL, '2025-02-19 22:16:38', '2025-02-19 22:16:41'),
(316, 'RBabVeaDBjZpfuD', 'ailunar97oracleeo@gmail.com', 'qmsHkoNlqC', '0', 'QBkv7H3fEefTD5FnSm8m', NULL, NULL, NULL, 'HnrtCxZlEPA', NULL, 'Zimbabwe', '$2y$10$Yhk7JSFUaJRguLgwBVhgmujt4WkWO/FdXRPgx09WvWPZz24snJZCq', NULL, '2025-02-20 21:16:53', '2025-02-20 21:16:57'),
(317, 'QEIpbbrgHRc', 'davislessiq1@gmail.com', 'TQzlKIdsuHZ', '0', 'NJM0bhaEf8LJTAN1CdKf', NULL, NULL, NULL, 'eDMRlNIw', NULL, 'Zimbabwe', '$2y$10$F5TjvOEb8F5g/J.JH1bKFurRCraFbfCETQWnJkG9v2Wfxa6LgmJya', NULL, '2025-02-21 15:37:29', '2025-02-21 15:37:31'),
(318, 'OTQfbqzIXHWmoYw', 'megmql25@gmail.com', 'dphKLWfDeJ', '0', 'Az7dmmrmvKtM4fNpd6P7', NULL, NULL, NULL, 'oKgIRMcEiHJbQz', NULL, 'Zimbabwe', '$2y$10$8YqUpQxZ.jud8hc46cBhPuWVPPsxWfLRdp1Qs5N3cFu4JV555hmiq', NULL, '2025-02-22 13:16:40', '2025-02-22 13:16:43'),
(319, 'PAAsQKcgNiTyP', 'sesilgardnerh24@gmail.com', 'TVDlXRmLrh', '0', 'GJa54v1c5IdJK2ewtCgO', NULL, NULL, NULL, 'sHYftAfyj', NULL, 'Zimbabwe', '$2y$10$vcC8ASTQEZcbuRLXNROL/eS7qBiw1dpweX10qu11eitC2NG3wt.Pe', NULL, '2025-02-23 07:25:02', '2025-02-23 07:25:05'),
(320, 'nsOSjuwVPKsLx', 'stellare55brink66@gmail.com', 'vdMDFOjIDyQM', '0', 'O1BOHZgWyWzo5ukNFU91', NULL, NULL, NULL, 'fIWOjgmJ', NULL, 'Zimbabwe', '$2y$10$Dz8.igVCxxuvfEFxLiYHjOND/.4BQPKc9LrKcl.3MIa.rT60h4RPC', NULL, '2025-02-24 02:55:53', '2025-02-24 02:56:08'),
(321, 'eyxzHycgHYZOkV', 'vjppym8x9ltefgbdk@yahoo.com', 'JRwichPkImrRnNk', '0', '3kSbsNP1HIg4V6GGBaQj', NULL, NULL, NULL, 'yzacYUSs', NULL, 'Zimbabwe', '$2y$10$Dz5NG17qhwUP70JCkEMyGeZ4gWs..RlqETdDjZvR/O/saRgWZN9Ym', NULL, '2025-02-25 01:48:34', '2025-02-25 01:48:37'),
(322, 'UcDVQFWQZ', 'outempestayrift32@gmail.com', 'vNmPUwcEvsj', '0', 'H0Mr4XNw8gjCRkjz4wTF', NULL, NULL, NULL, 'UJzcsnhCpXNF', NULL, 'Zimbabwe', '$2y$10$K5hQkZBJd2JHiVf3J057reWnNHmoVr/l5XcaUz1.Ng0KgoUBUaXXi', NULL, '2025-02-26 06:04:43', '2025-02-26 06:04:48'),
(323, 'XydzbUCXTt', 'pgeilmb6@gmail.com', 'uoKqqZkNgx', '0', 'p2EkdNM8KNNdkO5OUBUG', NULL, NULL, NULL, 'QrVqUKYppqo', NULL, 'Zimbabwe', '$2y$10$SpgBUDbCENrQT37oCvQl7ORKQAvKzNYyP3aFKKFKkd7T1NcgppzhW', NULL, '2025-02-26 23:33:20', '2025-02-26 23:33:26'),
(324, 'MyName', 'cpmsdutr@do-not-respond.me', 'Hello', '0', NULL, NULL, NULL, NULL, 'TestUser', NULL, 'Afganistan', '$2y$10$3mHQh5QAHVc/j9Rzo6veGunHJtArorW4L8iA.wjnIs4fPVAqEhxIK', NULL, '2025-02-27 10:17:16', '2025-02-27 10:17:16'),
(325, 'sJYWPkvF', 'luprlchurxwlelcj@yahoo.com', 'YsBqoIhgFrP', '0', 'Wr1NQbpQrNip8MT0wugB', NULL, NULL, NULL, 'DJyqtlpNRJrywk', NULL, 'Zimbabwe', '$2y$10$ztYzm0uLfMi3Vgdyb5M5P.Vmqj4Z.hjAwrGJQ6q1yO8gjqK.Yg0W2', NULL, '2025-02-28 00:22:51', '2025-02-28 00:23:02'),
(326, 'ZAfzCozO', 'klevlozano1987@gmail.com', 'pESkgoaw', '0', 'fL0smkmMzs254JeY8M6B', NULL, NULL, NULL, 'SXwIXJDGxg', NULL, 'Zimbabwe', '$2y$10$mD5LCniO8UJWGKsHekd6oe/RBWgrMBRkfa9FTnrnyN0P9VViYJ7E.', NULL, '2025-02-28 18:19:26', '2025-02-28 18:19:30'),
(327, 'tGidtpQvL', 'oansoniya22@gmail.com', 'VtjEVdAz', '0', 'kGiPLLeNifHLpTSmKqBE', NULL, NULL, NULL, 'wIIcbGtenEgKa', NULL, 'Zimbabwe', '$2y$10$hzVa.JwF.zbqdzENMWwRk.UHWDZTXFI7JTlJGlBLSV0YPje4JxgVO', NULL, '2025-03-01 10:45:31', '2025-03-01 10:45:33'),
(328, 'FZNMNgbL', 'rkyintonq1988@gmail.com', 'gPRuHBsnoXWVZo', '0', 'hsEelhnTt9U8WHMSBVtS', NULL, NULL, NULL, 'RGzsXgQp', NULL, 'Zimbabwe', '$2y$10$ow7d0lOg3bjA8lDD2cEiuOP9TncOojo4Q.R1kQ85U4hxq390rJPMy', NULL, '2025-03-02 04:38:42', '2025-03-02 04:38:46'),
(329, 'gzosIECDafoKabo', 'anskomnolanc1991@gmail.com', 'yaMNEaCJabr', '0', 'dOjS440tiJV2RbcbC6Ji', NULL, NULL, NULL, 'ObzQQULiuxrHtWt', NULL, 'Zimbabwe', '$2y$10$Qlqdpwdsh/hhSwqdWfRrZ.LPNif7auDkSxxnezPJsOd7zZHisTWvS', NULL, '2025-03-02 21:20:14', '2025-03-02 21:20:22'),
(330, 'mSHLjZeJK', 'pollexdellacrose@yahoo.com', 'IrwPNYPYcAlu', '0', '59OtE4GDAn3FOdIqhRFp', NULL, NULL, NULL, 'mjxCiLjW', NULL, 'Zimbabwe', '$2y$10$Ms8oRUI3Vb9ZF2JQU0fzmeIu907XDb5d7JpHU6TjV8/k3QulfC0yC', NULL, '2025-03-03 22:09:18', '2025-03-03 22:09:22'),
(331, 'cIprFUVMld', 'vidconned42@gmail.com', 'bWfwPgLJSl', '0', 'YGRgDk4043TNzpDKidlw', NULL, NULL, NULL, 'sapXbZEnpsWnh', NULL, 'Zimbabwe', '$2y$10$tIsxkzUALbEKoelpWr/QOePDkePttgCd7EtpnjeLGjKLNFNahZ6Qe', NULL, '2025-03-04 23:19:22', '2025-03-04 23:19:26'),
(332, 'IHNmItNAah', 'crescenti21glyph@gmail.com', 'MPhtJzTmJGE', '0', 'hgVrfrXnaixporKMDen1', NULL, NULL, NULL, 'YtuoznXnUSr', NULL, 'Zimbabwe', '$2y$10$VoR9JdihANuuUQ9z.T.rDeIelHAJmIOBhX0bvmeLMotqBAkVRXdci', NULL, '2025-03-06 02:54:28', '2025-03-06 02:54:31'),
(333, 'DonaldDub', 'base.alllinks4@gmail.com', 'DonaldDub', '0', '3iZ8xBMOKciFLCiDPdVP', NULL, NULL, NULL, 'Linguere', NULL, 'Senegal', '$2y$10$rSbrie7Ksurv.PN3YsScq.rhtD7jxXF5vx1MnKXRVFFJR5HgOryZq', NULL, '2025-03-07 04:49:17', '2025-03-07 04:49:19'),
(334, 'zaAUKNZPCX', 'davilarozalinan3@gmail.com', 'RkWUlKxsrvaVloS', '0', 'gOqFBy7FnhzpIjxYXll0', NULL, NULL, NULL, 'MLZVFSKxqnHrL', NULL, 'Zimbabwe', '$2y$10$9WEeU3NTjBzJo4dAcLhvsekClQPA1ZZfgg2G.aKNBXDqy91zzZ.um', NULL, '2025-03-07 06:58:58', '2025-03-07 06:59:00'),
(335, 'QJXHamLofEjk', 'iolondat1986@gmail.com', 'dyPYLnoTqUPhUZ', '0', 'EZMxIvR4AkdH6jJpsiwF', NULL, NULL, NULL, 'BcWrlNkJ', NULL, 'Zimbabwe', '$2y$10$ZxHH1KqltdguX1dLf2aAf.hSbZKXgsl7yTtAL4hPmK3Bqwzf1N7pC', NULL, '2025-03-08 03:59:07', '2025-03-08 03:59:09'),
(336, 'Hello', 'ykjayzye@do-not-respond.me', 'MyName', '0', NULL, NULL, NULL, NULL, 'TestUser', NULL, 'Afganistan', '$2y$10$I47Lct8Z.qhb8y437YA3pOkGMW7uLPxloDWuHfreE.my30Mfy8ODe', NULL, '2025-03-08 05:38:12', '2025-03-08 05:38:12'),
(337, 'otBVxPfwxnvz', 'acarpenterqu41@gmail.com', 'nNTMidussDeotmg', '0', 'APESK3651CaLDcXki9bh', NULL, NULL, NULL, 'kywkseYyuop', NULL, 'Zimbabwe', '$2y$10$WbQGldVeH/2LAp5mnsJMSOBQwra/4OOmmVIBoUc8dYHzXaeX9exIq', NULL, '2025-03-09 01:25:17', '2025-03-09 01:25:25'),
(338, 'AWEsBaShQwyz', 'aetelriknolann@gmail.com', 'LKoRNnfSLUWt', '0', 'sZvbJe7g9AR3eptR63Iz', NULL, NULL, NULL, 'YBFjVyANp', NULL, 'Zimbabwe', '$2y$10$n9G2s8KoaH6pPVFi.sXeVeGuMHFIniQpLIErLfUTWeF.KlEpp/9wS', NULL, '2025-03-12 18:00:09', '2025-03-12 18:00:15'),
(339, 'aTxFdcaUQHFzk', 'eldismp1@gmail.com', 'GailcLwEaRaa', '0', 'hfa5w8e1iau6BfVkGBSP', NULL, NULL, NULL, 'goLheAPi', NULL, 'Zimbabwe', '$2y$10$5jPvhePRMYjf7zMSYOOireqYNNgUhG2RvecE310sVVhHroX6U0c0q', NULL, '2025-03-14 19:01:44', '2025-03-14 19:01:50'),
(340, 'yupTzdInKHTLlE', 'vonnibulloch51@gmail.com', 'SubfoAxAWiSMuz', '0', 'fGs1dQGecPrtvuoNOrX6', NULL, NULL, NULL, 'aHehfipUcxEdyL', NULL, 'Zimbabwe', '$2y$10$C4DKvxJapV6I08FB.EZHoObEkfbzMQKYHT7CKsbOwxZn9F6ILFUKS', NULL, '2025-03-16 05:02:34', '2025-03-16 05:02:39'),
(341, 'Nahid Hasan', 'mdnahidhasan4009@gmail.com', 'Nahid', '0', '1SBDgBnl46zcXWcRSNbl', NULL, NULL, NULL, 'Bogura', NULL, 'Bangladesh', '$2y$10$7pVTVQ/Ma5tgULFk.vA5DutLJ6vxCq2pb9yxOeIJBKN0WQPGpNmj6', NULL, '2025-03-16 22:43:44', '2025-03-16 22:43:45'),
(342, 'iyZFOqMNtjo', 'bremsavagecd@gmail.com', 'epIYAKjczx', '0', 'MQ2SE949qTRhOBN8J69m', NULL, NULL, NULL, 'DNgHysRSx', NULL, 'Zimbabwe', '$2y$10$PzL.dICwy6CNFhi8rrmTd.5fyzCc/o4xdajAVp.JN9g8CXmURquHG', NULL, '2025-03-16 23:57:38', '2025-03-16 23:57:40'),
(343, 'YJMonETMe', 'cmurillomo40@gmail.com', 'IKTqMqcLL', '0', '8e4QLqpC4LVPfzBaz3sF', NULL, NULL, NULL, 'oiQKxIJqxiR', NULL, 'Zimbabwe', '$2y$10$oZ5eHCVn6mwLj1d3DMgfL..CBeo3FdRFTZUtdXwXx8bXGP1skaMCK', NULL, '2025-03-18 05:23:40', '2025-03-18 05:23:44'),
(344, 'Boost Your Bitcoin Earnings With Free Bonuses. Tap To Start\r\n >>> https://t.me/+gzzgqez  #Lolllukazzzur333\r\n <<<  11969529', 'hru1@kirzzioh.store', 'Boost Your Bitcoin Earnings With Free Bonuses. Tap To Start\r\n >>> https://t.me/+gzzgqez  #Lolllukazzzur333\r\n <<<  11969529', '0', 'cYz5gd57vwERDTr4oGuY', NULL, NULL, NULL, 'РњРѕСЃРєРІР°', NULL, 'Luxembourg', '$2y$10$TUGw0awQweGrfPApOEAJSezR9147DTzH184wexM0toxg2eUP/HbiC', NULL, '2025-03-18 07:56:43', '2025-03-18 07:56:44'),
(345, 'MhMcinLjPLYFa', 'nikita.lin873689@yahoo.com', 'sYuiMywJ', '0', 'MBTmJWaW7R53nwJoAyIE', NULL, NULL, NULL, 'ucnhkxFF', NULL, 'Zimbabwe', '$2y$10$N86erRWlbNcC5QJdfdCONe9a8cLY5MIy3fSiiuZpGqwN5sVQgdHQC', NULL, '2025-03-20 12:03:00', '2025-03-20 12:03:07'),
(346, 'wFXJIlOcuIkEAa', 'sextonrolino@gmail.com', 'GubidaYlCxsvJln', '0', 'B99vdr9B700BHT1SVeio', NULL, NULL, NULL, 'twVqjeWmBpZq', NULL, 'Zimbabwe', '$2y$10$MmPAclwaezvaNcQ.Iatc7e4yi1gvN8JvqJj.G1PutFfJ6nB/qn612', NULL, '2025-03-21 00:54:23', '2025-03-21 00:54:28'),
(347, 'lttEZHryxzj', 'megan_williams994113@yahoo.com', 'HewIXckFI', '0', 'buYDyH7N1Yro6Zoh8V7k', NULL, NULL, NULL, 'LoCObKGOrW', NULL, 'Zimbabwe', '$2y$10$Yh2p/Tf4uSm3h99Fu3T6qeRRxLfxjPOabdyRtta1jety3eMqMoc9m', NULL, '2025-03-21 18:10:17', '2025-03-21 18:10:22'),
(348, 'WHdHnjtGwpn', 'reidaikenun55@gmail.com', 'NUmPSkWTKzhD', '0', 'dHuzL9yt0TUFUu5H7g10', NULL, NULL, NULL, 'vgngIJdWMyX', NULL, 'Zimbabwe', '$2y$10$O/ULv4F1jq9jJ5Xykg5Lf.r5vHU37UOV1yR0nH3Er6X23adNsg/MC', NULL, '2025-03-22 08:32:01', '2025-03-22 08:32:16'),
(349, 'DlZFJhaSToZPjAk', 'daliladraket@gmail.com', 'rbkCGwzzNNo', '0', 'xjOW1vdasMs2YToNodVw', NULL, NULL, NULL, 'BnGfOrTpk', NULL, 'Zimbabwe', '$2y$10$MgooqjSzVotrszU6nY0MW.F870SxPEpZQKU2zSTOdcUL3qVvBHbL.', NULL, '2025-03-22 23:47:51', '2025-03-22 23:47:55'),
(350, 'zsuLdnQhj', 'solisfrend2002@gmail.com', 'RktmGabHjZTqghG', '0', 'gZlHWszEgLUxbCW9nd4y', NULL, NULL, NULL, 'KvKweCFsDzpgn', NULL, 'Zimbabwe', '$2y$10$XkxyQJ/o760cm0DH/kaxGePBdz41h8r7sTkBn18UAhmPxbOhjyQmG', NULL, '2025-03-23 14:35:08', '2025-03-23 14:35:13'),
(351, 'PkNFqHjYjPnUMP', 'mariahbrown277963@yahoo.com', 'AiuopgXcKm', '0', 'ZxQtWcx7JLzMvnA79HDB', NULL, NULL, NULL, 'sADHqtPatt', NULL, 'Zimbabwe', '$2y$10$Dg/sFDOPPg1SWnyBSI90B.McMZfzBRJgU/CZw8RV9sWDnJeTqEvwy', NULL, '2025-03-24 08:49:47', '2025-03-24 08:50:08'),
(352, 'Abu Rayhan', 'abur5027@gmail.com', 'rayhan159', '0', 'o7LOUqHp8JemiWvTNRyL', NULL, NULL, NULL, 'Thakurgaon', NULL, 'Bangladesh', '$2y$10$Ii26.RhHgnpPohUzIyOMouFwm.pzPgG1tcbYdgpqnoR7wgd0koD/O', NULL, '2025-03-24 10:10:46', '2025-03-24 10:10:47'),
(353, 'ibtrLdsoZJ', 'karlisacub1987@gmail.com', 'rrCPMcvZjp', '0', 'n7C1J7rbUQRhXww6rabi', NULL, NULL, NULL, 'fJtLVQClfq', NULL, 'Zimbabwe', '$2y$10$Y3HlhVbU6Y.UAtQHbXmBJuZwkVpORaqNnCJw9zeCWZ3QeApv3/rlu', NULL, '2025-03-27 20:23:39', '2025-03-27 20:23:43'),
(354, 'ciQCRjmSfeGOix', 'htraernyc1@gmail.com', 'uAOISjntXFV', '0', 'GGVSfZKPGTM8fY1M3dsp', NULL, NULL, NULL, 'fKNEcEEy', NULL, 'Zimbabwe', '$2y$10$tK3Uia5jlJzzlvuZt18A4e9DT9Yb0KIUtMxPC86.uSH1ODN./14OK', NULL, '2025-03-27 21:51:44', '2025-03-27 21:51:48'),
(355, 'rtNOcjcDN', 'arlinapuy6@gmail.com', 'CKObKmzQt', '0', 'giAgRcIU1QXrAJ43DtMD', NULL, NULL, NULL, 'zOlqguLYfOQ', NULL, 'Zimbabwe', '$2y$10$9M8YTV3QyI7oD4pauy6/m.C2LTIdzDCbOzOxHZNzgVIFr2tHn62YG', NULL, '2025-03-28 06:19:44', '2025-03-28 06:19:49'),
(356, 'vaQfbJZCheOhD', 'lfuentesh2005@gmail.com', 'oFFDSQJKasaBW', '0', '2MNcfCDkIHFfMVVHHILs', NULL, NULL, NULL, 'KLgsLgfjLmW', NULL, 'Zimbabwe', '$2y$10$mTiuQjDlOlPU8VHv8cRIduzN3e5gnxBIXdGb11NdOA9Apyf6DeFn.', NULL, '2025-03-29 03:31:51', '2025-03-29 03:31:55'),
(357, 'Robertgc', 'area@prostpro.fun', 'Robertgc', '0', '6nP5QiDlwMAafXLzWWGn', NULL, NULL, NULL, 'Drezden', NULL, 'Germany', '$2y$10$lmUcdwxjPA5k1ZQ/xXBtB.bNBCWavOMv6EX3rQFBuMv/1JT/ldYnS', NULL, '2025-03-31 03:41:57', '2025-03-31 03:42:01'),
(358, 'ecgHbvrmu', 'makehoo87@gmail.com', 'UROwVEliaHikZ', '0', 'wblJjCG4zK0rnVSzBFTz', NULL, NULL, NULL, 'EDRUxshivlEGR', NULL, 'Zimbabwe', '$2y$10$S507DzIUFI3Cxmvwmh6AJOl8dTzMPMKk5bsJlpD2MB3Oiu5iQhCGu', NULL, '2025-03-31 14:46:16', '2025-03-31 14:46:19'),
(359, 'sVPflLbJhSOB', 'mejkorri@gmail.com', 'hRjyshLxzKnNQ', '0', 'YJysKSzUmrvala3PeO7o', NULL, NULL, NULL, 'jfaAiApodoTX', NULL, 'Zimbabwe', '$2y$10$vqawfzPBwGTRPwsKtmvQ8uFrRR0TA4xk/Ckw48YlquLDERvI.k/hC', NULL, '2025-03-31 20:22:20', '2025-03-31 20:22:22'),
(360, 'tWigYQqtJ', 'djanainsalinas88@gmail.com', 'GKuMmYloS', '0', '9IX83F6WPOKEMRZJXm7A', NULL, NULL, NULL, 'sUpMrTNXrJjVq', NULL, 'Zimbabwe', '$2y$10$X52c5LRHIDL6lqJ.L5Fg.ulYV.GGAo4JCPhey5Vu.l4F.BRUnxPH.', NULL, '2025-04-03 16:30:00', '2025-04-03 16:30:05'),
(361, 'PhilipMek', 'meg.a.s.to.pl.a.y@gmail.com', 'PhilipMek', '0', 'pSoRm6F597Ix26CcQubc', NULL, NULL, NULL, 'Axum', NULL, 'Ethiopia', '$2y$10$ShNVA2ku9gD7oOzsL6maAOgvFiHDerIx0NpfBlN186EzLxzrPqbDC', NULL, '2025-04-04 03:29:40', '2025-04-04 03:29:42'),
(362, 'GBgJkYFXLRAU', 'djenelsullivanrk@gmail.com', 'KWnOzdqhAYUr', '0', '0mQ1QGLPzKsunraBljsm', NULL, NULL, NULL, 'VJliTDUwZLk', NULL, 'Zimbabwe', '$2y$10$U3bsFBpGR1QD.wa95Ve4feE4JNaCUfkbDuVikTD1zavFXUZa5BLCi', NULL, '2025-04-05 08:37:08', '2025-04-05 08:37:11'),
(363, 'ylKAdhfue', 'brandon_hutchinson831663@yahoo.com', 'HZSjfWxBPuILBO', '0', '44yVTKwKjmwc1p8DBs3L', NULL, NULL, NULL, 'COKTCdZCvlA', NULL, 'Zimbabwe', '$2y$10$qoTo.LCyz7SgWPCtDVB7ouH0dcgXH7ZndfGadaVW7gNDLVoHrxwlu', NULL, '2025-04-06 10:45:18', '2025-04-06 10:45:22'),
(364, 'LhkmCjnYZxyWGms', 'ashliioneillq@gmail.com', 'eESvqxhfijrk', '0', 'M7LBeqmlUyRcUl4qzRQi', NULL, NULL, NULL, 'WgHQBzqBFK', NULL, 'Zimbabwe', '$2y$10$ra2FQwfDB5L1rJT0/kIknefJFqJUZmEadsqhZfWjP3Vjj9j9XWty6', NULL, '2025-04-06 17:21:17', '2025-04-06 17:21:21'),
(365, 'Opdwodowkdwiidwok djwkqdwqofhjqwlsqj jfkmclasdkjfjewlfjkwkdjoiqw fnedkwdkowfwhi jiowjiowhfiwkj rohriowjropwjrofwjrijeiwo futuretrackbd.com', 'nomin.momin+404k1@mail.ru', 'Opdwodowkdwiidwok djwkqdwqofhjqwlsqj jfkmclasdkjfjewlfjkwkdjoiqw fnedkwdkowfwhi jiowjiowhfiwkj rohriowjropwjrofwjrijeiwo futuretrackbd.com', '0', '7JUZcxoipsCO40x5RM3D', NULL, NULL, NULL, 'Opdwodowkdwiidwok djwkqdwqofhjqwlsqj jfkmclasdkjfjewlfjkwkdjoiqw fnedkwdkowfwhi jiowjiowhfiwkj rohriowjropwjrofwjrijeiwo futuretrackbd.com', NULL, 'Malaysia', '$2y$10$L4j6OOT1YaEMKm0bZlU40OqEqt0PLKnyqR6ESYdCNzVYdfcTvkCs6', NULL, '2025-04-08 01:57:45', '2025-04-08 01:57:48'),
(366, 'Ahmed Soikot', 'ahmedsoikot890@gmail.com', 'Soikot013', '0', 'o9rxV0a5pH4huwfkfXiB', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$C83/W3aZr07Vwv6CfkGhGuRGeDRqL4Nhz/8zscmtYqz5l3hRqxgPS', NULL, '2025-04-08 08:01:34', '2025-04-08 08:01:36'),
(367, 'Shamsira Jannat', 'shamsirajannat@gmail.com', 'Shamsira', '0', 'NlPnmCE4gfcSpmJ9Dv9I', NULL, NULL, NULL, 'Dinajpur', NULL, 'Bangladesh', '$2y$10$WiHCpboMo34lMlZlAF3XOOJT139HIIzlMsJ5n89kv.hvm4P5JLEqy', NULL, '2025-04-08 10:46:35', '2025-04-08 10:46:35'),
(368, 'sPLsXfBioDjX', 'donna_anderson729599@yahoo.com', 'HVelqRMHJmTnEsD', '0', 'NJf3AETQHy2i2pqIJ5j2', NULL, NULL, NULL, 'lZuJwSHhHyS', NULL, 'Zimbabwe', '$2y$10$nxHhnCT1KZ7alfSDhC1YOOtYX07Puy7ZfONzKHGvfsXjXX.S/iDOe', NULL, '2025-04-09 18:08:44', '2025-04-09 18:08:50'),
(369, 'Al Amin Riad', 'captainreo17@yahoo.com', 'captainrio', '0', 'rntVh2stK3TKdI0Ywze3', NULL, NULL, NULL, 'captainrio', NULL, 'Bangladesh', '$2y$10$mEm1/wZ6x.7AVpSpo1XOoOVMGzT3Y3mNQBDQlBdNwT/krS7SMUORG', NULL, '2025-04-11 02:11:16', '2025-04-11 02:11:16'),
(370, 'fMiilMVvqmQ', 'kiasimsyz1995@gmail.com', 'GnvUBrzFbqbIwRR', '0', '2PVxl2iH2MM8wcrtGMyU', NULL, NULL, NULL, 'kJkxKZvXmaxH', NULL, 'Zimbabwe', '$2y$10$96PbVzVa5.xRL5Sxx8r5pOdKRaZPBkZbbWcDv//oGSRsz82BN2p3m', NULL, '2025-04-11 08:07:58', '2025-04-11 08:08:02'),
(371, 'kzkd', 'stop@prostpro.fun', 'kzkd', '0', 'dayhSt94xHjDqPzlf0qA', NULL, NULL, NULL, 'Elvas', NULL, 'Portugal', '$2y$10$tDQ5bpM6A4T5luq3/TyMBu.SrAFxXDKuUyRE40nAWG3xwHnAXBqje', NULL, '2025-04-12 16:13:09', '2025-04-12 16:13:12'),
(372, 'lrgv', 'century@triol.site', 'lrgv', '0', 'vR7s7k8ogmR9kLGbIbRQ', NULL, NULL, NULL, 'Elvas', NULL, 'Portugal', '$2y$10$bsILjdKzs60SWtTIhtFc2e2Z/XVhME.eLKn67zjpP57hUIdFKPaQi', NULL, '2025-04-13 00:53:13', '2025-04-13 00:53:16'),
(373, 'nool', 'change@prostpro.fun', 'nool', '0', 'xz84hbRyI5CBYjxTYrsg', NULL, NULL, NULL, 'Elvas', NULL, 'Portugal', '$2y$10$w7dArEPcW39HO2G1JC4wHud9TxVdiR/VO2MHWRuiwDqRrSwQdIONy', NULL, '2025-04-13 19:33:05', '2025-04-13 19:33:08'),
(374, 'WIktuLTQx', 'gardndjoettzn3@gmail.com', 'DPaYHjfgqfJKk', '0', 'dSl5oyZNvow2K0U65Cq3', NULL, NULL, NULL, 'aGRfUxvJVZU', NULL, 'Zimbabwe', '$2y$10$4KqJNt1/Yy3mEB5TRTeeKOANk.GCYNSzXkTjn5Ox9BNB6Mb2U1zIm', NULL, '2025-04-15 01:01:26', '2025-04-15 01:01:29'),
(375, 'vNQQcVQlWVj', 'essibolton9@gmail.com', 'zpFtpjwl', '0', 'k5bxHUjEFhnCyMxCZtlY', NULL, NULL, NULL, 'VAeoppZs', NULL, 'Zimbabwe', '$2y$10$TK32dfxJF./nBtJI8ZqrTuK6E9ELVoWeyL05weVGcqM7vG7Uh04US', NULL, '2025-04-16 09:11:11', '2025-04-16 09:11:16'),
(376, 'kzeYAtyxJijg', 'clikerrnb@gmail.com', 'VuftMJSoiWSi', '0', 'jMJgcz7aLi7mg7SxIVR1', NULL, NULL, NULL, 'euqGPixzTR', NULL, 'Zimbabwe', '$2y$10$DLLt27IHFZQJ4RW.mNiMA./d7O3yxKPq74vC9jGRsv0gRnGVfQB7W', NULL, '2025-04-16 11:17:55', '2025-04-16 11:17:58'),
(377, 'Anandda', 'ananddamodak@gmail.com', 'Modak', '0', 'ILgUudui565aOWfdMd4u', NULL, NULL, NULL, 'Mymensingh', NULL, 'Bangladesh', '$2y$10$ohqL9hcYBHj5Z0xf71/E1evptBgmKdWomVwivOhrtG05sfw7iV9gO', NULL, '2025-04-16 12:22:56', '2025-04-16 12:22:56'),
(378, 'oxefcjdJVsWRG', 'eggig1989@gmail.com', 'uSpBFXRpOqo', '0', 'eIcxOTuodBwsnXFQpY8n', NULL, NULL, NULL, 'XXqrQhzMbBa', NULL, 'Zimbabwe', '$2y$10$J0FfoKHcH/0OsZIQ9Aqtxed6J7iMZfuoc1pk4aCp4prAwk/4G8eRG', NULL, '2025-04-16 14:06:48', '2025-04-16 14:06:53'),
(379, 'cNUvwqUj', 'gooddominbd23@gmail.com', 'yFYUDDeMDm', '0', 'vrFSd606xaD2jUWPG5mg', NULL, NULL, NULL, 'HaAAYWCEGrqQPu', NULL, 'Zimbabwe', '$2y$10$41z3Z/fME3Kn3eXeXKkwaeRYiUbgBnQWOVLelAJbcD5t7P6oXHHCK', NULL, '2025-04-16 19:23:13', '2025-04-16 19:23:19'),
(380, 'KbnRjrkJxrH', 'mcghezerj@gmail.com', 'KQjcpJlL', '0', 'GTrouEDs7eJvYeh4PO6R', NULL, NULL, NULL, 'dNVhzJsmzzWh', NULL, 'Zimbabwe', '$2y$10$gMNmpNhh79hgrGHubYK0PunjAEKLX/XXdKmBfz9WSaZrpNc.04SCS', NULL, '2025-04-16 22:58:29', '2025-04-16 22:58:38'),
(381, 'FlBBmlJoGv', 'gsisarbc49@gmail.com', 'MLYnjkNIlbCPxOH', '0', '66mATgSDcyd2ND9by3lt', NULL, NULL, NULL, 'XGImLCpcvKyxTMD', NULL, 'Zimbabwe', '$2y$10$RTFtLLjNqBtpXR1MscAZh.zDCJc3s2vW7tCYL9h4Fo58.BLPEaBOK', NULL, '2025-04-17 09:36:24', '2025-04-17 09:36:27'),
(382, 'nGqLYrRlUrzcFs', 'raitrichmgg7@gmail.com', 'EQZzqeCUJrfAAWn', '0', 'A5sUWxjcwhi1hGoIGeNE', NULL, NULL, NULL, 'pcyqnHbrpiDyqVV', NULL, 'Zimbabwe', '$2y$10$7f2hAt4lnyNu8WqAzSc8DesG6TPHCFboDXs9gF9dmjlCP9OV9Ml2.', NULL, '2025-04-18 03:34:15', '2025-04-18 03:34:21'),
(383, 'zOQobPakO', 'ebbamccont21@gmail.com', 'nWqXPYAY', '0', '5oHQwQ9YbKJ5HCztJMjb', NULL, NULL, NULL, 'zwFVuwZuA', NULL, 'Zimbabwe', '$2y$10$sCQGCNrf86CW6V209H76jO.pd/ROTmwCZozyw/Jxsr/dhgi8b95Im', NULL, '2025-04-19 01:22:50', '2025-04-19 01:22:55'),
(384, 'XNgKtFCHCfC', 'vollisrvp79@gmail.com', 'TaoIyWpx', '0', 'yOuQB6lTOL80fOQGrglC', NULL, NULL, NULL, 'TbsyjCgyENvvy', NULL, 'Zimbabwe', '$2y$10$a/zT/A2lIpz9VzE19gcZ.ON8gvcljJ8pmYNGpp8kwE2IwqPFR808i', NULL, '2025-04-19 07:15:20', '2025-04-19 07:15:23'),
(385, 'KxeYLKtftpA', 'lettipooleuz38@gmail.com', 'JvKbgFWtP', '0', 'CfyFDnPfmgOfGxoBlnBM', NULL, NULL, NULL, 'oBYZNRwO', NULL, 'Zimbabwe', '$2y$10$4N0sq.bVxFDSVVZj.JYio.mQz9KX1pjZmkH0qVEYBQtzCBXITipby', NULL, '2025-04-19 16:30:20', '2025-04-19 16:30:23'),
(386, 'oUksOKiFJpqusja', 'pollarddjilli2@gmail.com', 'NtoDNUKxY', '0', 'G5YQ0ek4FTAW1mj1OzFS', NULL, NULL, NULL, 'jThKlUao', NULL, 'Zimbabwe', '$2y$10$H8fnfxq/vOB9/KDftbDmpuZwQmRI6xu4/WivJJ.7dQCivy.PoAwl6', NULL, '2025-04-20 00:54:53', '2025-04-20 00:55:05'),
(387, 'jpcSUiegIIvV', 'bradybeverliw9@gmail.com', 'YHYJkVOTTKbAecX', '0', '6DBrb4BHh4k1ZWs2P4aI', NULL, NULL, NULL, 'WnZUJVdYDEmgy', NULL, 'Zimbabwe', '$2y$10$cm4RKmwBdjAuXNf.STqJAuh41pAz8716tZXq9DU7mP9pgY9musife', NULL, '2025-04-20 04:59:51', '2025-04-20 04:59:55'),
(388, 'SnBtgqShPNlVZ', 'starectrobar1989@yahoo.com', 'AjJuqANzcySVH', '0', '3o15904LzDKvt47xhpBA', NULL, NULL, NULL, 'naDTYGqluMXk', NULL, 'Zimbabwe', '$2y$10$qvk2wv2OHoJqHH5quHLkcuYMPTweLDPXu1M8890iHvcIi2o1MBkzu', NULL, '2025-04-20 11:46:21', '2025-04-20 11:46:24'),
(389, 'ECmlSpdbRGt', 'prestonpaceie@gmail.com', 'anARaXFAcKiUlSF', '0', '0bIUTFJ7tLkIisxaAvXi', NULL, NULL, NULL, 'cQLXlswtGipA', NULL, 'Zimbabwe', '$2y$10$DhgbhLpf3ZuOhpoTh3NzbeZTDmJK8sbTim2PHqyxIdrEFoHWU.UYS', NULL, '2025-04-21 04:42:39', '2025-04-21 04:42:55'),
(390, 'SmtylcfWXUu', 'harrgree43@gmail.com', 'GgGtgtkTKa', '0', 'HDqFNsqdmrJzFXM9sWpt', NULL, NULL, NULL, 'NavIRVXXAKUCG', NULL, 'Zimbabwe', '$2y$10$E0Qh.Ni4H9qWdsaImAf5XObBcMnTyGampLG5PJnpJm9UaUfBgJqGW', NULL, '2025-04-21 15:55:37', '2025-04-21 15:55:44'),
(391, 'yKtYVvBkKjQfa', 'aljirgalvan2000@gmail.com', 'PepsQphZZOcAY', '0', '4vVWPZX8QaZSNSA5UhYo', NULL, NULL, NULL, 'fVjvOvKkyfCAwvt', NULL, 'Zimbabwe', '$2y$10$hsXyUjMLVg9BjJa2ao/ikebB3Hdq.3m0Ji4X0CZBFZxxUx7oQpwLC', NULL, '2025-04-22 15:43:42', '2025-04-22 15:43:51'),
(392, 'EGYvrzLcLuUx', 'sdevondq8@gmail.com', 'EngYGTGgxFNEU', '0', '62FtVMgnjFhcxQh2G4Js', NULL, NULL, NULL, 'GfqhfpxF', NULL, 'Zimbabwe', '$2y$10$0UaSu.rLeC21HDtAAFCjQe9NLN9q5MU9t6qzs1kpOBp3HDUJkgmxm', NULL, '2025-04-23 03:36:08', '2025-04-23 03:36:12'),
(393, 'nvwehjfdAqXyB', 'kmclaughlinys69@gmail.com', 'YtSRhLaS', '0', 'kSSNJ09vF6WDpYKwcOL7', NULL, NULL, NULL, 'gjpLpuEk', NULL, 'Zimbabwe', '$2y$10$cq8xafs.S2U/oOzjXxtSouwSwxKQyRE76.AVIceD6Nws.E5Fmlqsy', NULL, '2025-04-23 17:13:19', '2025-04-23 17:13:39'),
(394, 'ZQNbSOGWpWY', 'ofsurvecu1982@yahoo.com', 'xspcqOaAOV', '0', 'S1KUyOTtUz6rezUyXv48', NULL, NULL, NULL, 'piPkdEvQBwL', NULL, 'Zimbabwe', '$2y$10$KXPDhKtlI4veHcpW5REZaeiggx7E2facj5kP2IfzspW0s9jWntyCq', NULL, '2025-04-24 11:34:04', '2025-04-24 11:34:14'),
(395, 'NXzYmJgfcYpY', 'tenkacoten1982@yahoo.com', 'PlDFqwuBcrQC', '0', 'wGgrRmdWwSuoEEIp8Q7o', NULL, NULL, NULL, 'FDRcPbdk', NULL, 'Zimbabwe', '$2y$10$bx2URWxOdC0frz8Yj7ZGFuZ0DSplrjPzNh.QaKo31h4ul6eh2hMR.', NULL, '2025-04-27 10:17:23', '2025-04-27 10:17:28'),
(396, 'kGdSsBKnsVtspR', 'elizrj71@gmail.com', 'pRDCwyBobIGzEA', '0', 'pVbOEa1eHgQwfXmiCKuO', NULL, NULL, NULL, 'kVleypQR', NULL, 'Zimbabwe', '$2y$10$3606AYHusjWNFPdi7B.96.vIyY1POy4zvg3U6JCCg3G2/uTJgX3Ou', NULL, '2025-04-28 01:19:24', '2025-04-28 01:19:33'),
(397, 'IRSNqpodiRqZHP', 'afrederickb1983@gmail.com', 'hoMvmwvToPQro', '0', '7JD3iv7hPc43hdccGzzO', NULL, NULL, NULL, 'KNdVeQipqqeR', NULL, 'Zimbabwe', '$2y$10$YKth29jgmFLQgmM.2ATI5OkdbK8HkTcNVIAVOjRbwdS/W9ub1HTmm', NULL, '2025-04-28 02:43:13', '2025-04-28 02:43:17'),
(398, 'OtMwBHmUcYO', 'gabinewmanot36@gmail.com', 'huBPqEEdBy', '0', '4l96Jfb3iUR42J9Sm6Og', NULL, NULL, NULL, 'TsFdaqKmdYOw', NULL, 'Zimbabwe', '$2y$10$YxMdMuFDhAyBJ3eGeaSlS.4J0Uwt2NnlX7oV6CJL/bHBwyT8EhhEi', NULL, '2025-04-28 11:10:46', '2025-04-28 11:10:54'),
(399, 'zhvjfqDWGynwiJl', 'babbigael40@gmail.com', 'JfACUtLKWiOHpsz', '0', '1qZsqymJORIi35gHtSLP', NULL, NULL, NULL, 'pqBlvXeWrQyKxYh', NULL, 'Zimbabwe', '$2y$10$/islJAxBobLS3WTOJrQgeeDC/dxPY0qT4DOoKJCieIpswlfezaHiy', NULL, '2025-04-28 14:18:35', '2025-04-28 14:18:40'),
(400, 'dcUptLUmOrcHrfL', 'tdavenportea4@gmail.com', 'WfgMAysQs', '0', 'h6knZkmZKWLFleseyAfd', NULL, NULL, NULL, 'ZZOCMDcRKASw', NULL, 'Zimbabwe', '$2y$10$jsQKqNMLkeiNZ2v3ZTh8xumo5cuKBCKy1AW/FDch8HFd/aQ9VIM9W', NULL, '2025-04-28 20:09:02', '2025-04-28 20:09:12'),
(401, 'VNsGWJvqhOSFs', 'huiposcame1972@yahoo.com', 'lFColgavKFRFOKo', '0', 'ziX1PxxprgYXncOKGN3h', NULL, NULL, NULL, 'ccpoMKtagAQfzf', NULL, 'Zimbabwe', '$2y$10$QOskMpSr31hDFMjYAjsJs.MI3y0ruan5pEdQ9BXatnwoT9TJyemC.', NULL, '2025-04-29 00:28:22', '2025-04-29 00:28:25'),
(402, 'MD IFTEKHARUL ISLAM', 'islam.iftekharul2011@gmail.com', 'IFTEKHARUL', '0', 'eH1WuSB78FMTbXEilMIE', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$8n3la39qrmi78pbWxuVCjOuZklQMrWJsXWDUUsCPFwcYTJIKcqmna', NULL, '2025-04-30 07:36:37', '2025-04-30 07:36:37'),
(403, 'RJMPokClIZKJiHJ', 'matildafaulknerbe@gmail.com', 'EyHnjzGDL', '0', '0JMn3EIIgfgK31UpYPNO', NULL, NULL, NULL, 'KvSgdxQTSmYNUQD', NULL, 'Zimbabwe', '$2y$10$Ww14MUtz5ostmlRJ.XNwX.x6wgPYJ4I/Qxpw0aAE2nmyPKJjvKOAC', NULL, '2025-04-30 09:34:11', '2025-04-30 09:34:15'),
(404, 'pbGcixWX', 'perseffernan3@gmail.com', 'ljbBBZcm', '0', 'IelDrknpfRONOUUIzOZZ', NULL, NULL, NULL, 'noxwUsbTgRZOF', NULL, 'Zimbabwe', '$2y$10$XGxeTUClGRoB/sMbf9stU.wjOZhfWmfq4C0Lo3pEKT8XUxVS9qGv6', NULL, '2025-04-30 11:55:34', '2025-04-30 11:55:38'),
(405, 'rfaPztoPpEshd', 'noyblrj95@gmail.com', 'tnaLGnZdtCJISam', '0', 'JFozML4Ukz84tM897DEI', NULL, NULL, NULL, 'lzwkRtkgc', NULL, 'Zimbabwe', '$2y$10$r.WpEISGf/Tc7V9z4Lbcs.mm/DIN2ZDGf9jnau21Va5gKdVolfp.y', NULL, '2025-05-01 15:58:40', '2025-05-01 15:58:43'),
(406, 'ftBaodBFlpVj', 'vmuellers32@gmail.com', 'iPugmCTXELLiBx', '0', 'awl0kiLHwPTjxiHCoUbU', NULL, NULL, NULL, 'HnTmDNrwwpfSf', NULL, 'Zimbabwe', '$2y$10$O7Nl51T0HyfGjxLQeTHF6u8l7rYBk781vJeR0HIkls8aUHrdQ1equ', NULL, '2025-05-02 06:20:18', '2025-05-02 06:20:24'),
(407, 'kvGPpuYkXFf', 'terrensbeckq@gmail.com', 'FZutgTYRp', '0', '4hXXryKSWaibtzmavaBR', NULL, NULL, NULL, 'NvWpmCQlDFJ', NULL, 'Zimbabwe', '$2y$10$NzDIwf9ceIZ7s5GuCVLPS.JYw5F32KJ4zbTTo/ckUFeEHkT1FQrAq', NULL, '2025-05-03 03:21:57', '2025-05-03 03:21:58'),
(408, 'RTlThcOMQj', 'zmartinezf39@gmail.com', 'WPyGmbXjUWEpnG', '0', 'RN6XJmWd523JBNsEEtou', NULL, NULL, NULL, 'LuclUCElI', NULL, 'Zimbabwe', '$2y$10$EhqWSVpDpFc5vJF.FQpO/.wJLteeNvWjL9SxI5vgTvhpteJoYpdxO', NULL, '2025-05-03 10:28:58', '2025-05-03 10:29:03'),
(409, 'yItSvLkEqjED', 'alvildavp6@gmail.com', 'tJtgLRXqEwn', '0', 'OY6XLDJLLGNrlHfVRo32', NULL, NULL, NULL, 'RYVzzlfWaR', NULL, 'Zimbabwe', '$2y$10$i21wllOcoXGHx/orpC/YBuU4pHUeGj8aY2bmtxhAk1pY.tyC3Ov62', NULL, '2025-05-03 16:30:19', '2025-05-03 16:30:25'),
(410, 'AWrIPSgbqsKx', 'convedake1978@yahoo.com', 'kpMXKIjw', '0', 'SG98wrpGMuoOwyjvjNp7', NULL, NULL, NULL, 'dbsBFhwLfr', NULL, 'Zimbabwe', '$2y$10$6LADtac3yc2/dKdzuTIJjulewJMgY81LS4kGvzOrIMKA1JLyipLeW', NULL, '2025-05-04 11:41:02', '2025-05-04 11:41:08'),
(411, 'yIFQVVGihOxqQfN', 'itoddqq4@gmail.com', 'uJPYNrlRJdyFpLe', '0', '576Gip0DT38MbITBVvxC', NULL, NULL, NULL, 'rXHBrhPV', NULL, 'Zimbabwe', '$2y$10$Z1WPwEGphGVUn/Me/bTTr.rhNQYWTZkUMTV4uK8DMfwl44YBzVxqq', NULL, '2025-05-04 14:10:22', '2025-05-04 14:10:26'),
(412, 'PEKhxcPkMIpWsk', 'lizandraadkins@gmail.com', 'gVFLqkLYNmiiIz', '0', 'LLNV7Uy5IWGVirJ6SAHR', NULL, NULL, NULL, 'PIbfchlmzMWIn', NULL, 'Zimbabwe', '$2y$10$1RNglJrs0UJ9VEwyfQthUeh0BG293W.xOnrpeJzZGDHW7q6Np02Ei', NULL, '2025-05-04 15:24:39', '2025-05-04 15:24:46'),
(413, 'rtRWUPdgIjqs', 'dhobbsr@gmail.com', 'lFwzXjJwjEm', '0', 'gSMT844ik8NSt6Ol4reK', NULL, NULL, NULL, 'NguGPSAWxx', NULL, 'Zimbabwe', '$2y$10$wrA4X7HXLZaQm5PuohOlQO91fIa5Pdvt426obCnnOIwEOPkAqM9cK', NULL, '2025-05-05 09:53:02', '2025-05-05 09:53:19');
INSERT INTO `users` (`id`, `name`, `email`, `username`, `email_verified`, `email_verify_token`, `phone`, `address`, `state`, `city`, `zipcode`, `country`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(414, 'CAOrBdnaISFH', 'mannrhetta@gmail.com', 'fjjkxMjtPzurAkm', '0', 'qpyNGlETDqARB4hW0DNx', NULL, NULL, NULL, 'xxunJhGHQcvDRRW', NULL, 'Zimbabwe', '$2y$10$6dIPHAT2Yfl4e0Rq755ab.PO.7/SK9qBxBPURmcKuAmcWNvsmBRbW', NULL, '2025-05-07 01:20:09', '2025-05-07 01:20:15'),
(415, 'WLEIARBwiF', 'daiannbraund@gmail.com', 'dbukccmQAsOOShe', '0', 'yckyG9ma4yCR5YhO4zsU', NULL, NULL, NULL, 'hFNuzBTopov', NULL, 'Zimbabwe', '$2y$10$P7PWRaGOr0Se/45Nk5ZV0.hJumSzGGIxPVZ3NtjPwEGdxG0XfKWS2', NULL, '2025-05-08 03:33:05', '2025-05-08 03:33:08'),
(416, 'ONubCWxoGsD', 'peitonko2002@gmail.com', 'AUuwfAEWwDKB', '0', 'UBXcxJiVFY5NSwz9aBs3', NULL, NULL, NULL, 'fALoYpWOPMsy', NULL, 'Zimbabwe', '$2y$10$iynmWNSc9kWM0W9ax8amd.gpb9fJOM9j4fff63CLG4WTJDHIXY1Oe', NULL, '2025-05-08 05:03:04', '2025-05-08 05:03:13'),
(417, 'SwRegqAha', 'rojasabnerg@gmail.com', 'ykUDWQqyNExxZrL', '0', 'PnH7nQA0W5WmOFC0RVJZ', NULL, NULL, NULL, 'YZvDDRxwHsSMx', NULL, 'Zimbabwe', '$2y$10$zs5JyMFKZq9l8QztLKo7q.m7cg5/GJjHo9K4g86ABQRtbtNon.xGO', NULL, '2025-05-08 17:34:54', '2025-05-08 17:34:57'),
(418, 'ZEXTewXUHLfJ', 'kiddgaretw45@gmail.com', 'fEEYyXGTxxj', '0', '0yB95nH7M8xrMRugtfoH', NULL, NULL, NULL, 'KvpbYzDcnchFANy', NULL, 'Zimbabwe', '$2y$10$CDXrLhX7KdpGo0EroVb3buXJgxGoG7KFQKeTAVJQhI7aYlgLqgVRK', NULL, '2025-05-09 06:55:03', '2025-05-09 06:55:08'),
(419, 'VYRlLGToMAUY', 'wardpersworvay1985@yahoo.com', 'cvgvdRXk', '0', 'KSs39CPNEbxiu5U4dbiG', NULL, NULL, NULL, 'QvOPqzoMmGTd', NULL, 'Zimbabwe', '$2y$10$fkN0dfKqgJuDBtM3.G0LaeAMbdiT2ahrqP5MlwR8GrgTUKtG774EG', NULL, '2025-05-09 10:14:58', '2025-05-09 10:15:10'),
(420, 'dLtZzfvpbBed', 'andersonashlee1980@yahoo.com', 'bbvrdnxkKRjtgLM', '0', 'U9TJqVJv6rDUZy4KfSmN', NULL, NULL, NULL, 'iiIenoPG', NULL, 'Zimbabwe', '$2y$10$zPjWdgUDkSnR9R4LewRme.W1YR8cIVA76ZjbKSENWfMepNv7sgzzy', NULL, '2025-05-10 06:28:03', '2025-05-10 06:28:07'),
(421, 'gksSXylEViMdmY', 'vaughnwendy819135@yahoo.com', 'POeCfHsPD', '0', '9532ZkjetsI826HTW7v0', NULL, NULL, NULL, 'yhNRevmzbC', NULL, 'Zimbabwe', '$2y$10$M4mMwosP17kxFpCW8GZO.OqYMmb0WM9Ees0gOT7RTSVCcQw84m4Ou', NULL, '2025-05-11 12:44:45', '2025-05-11 12:44:47'),
(422, 'klBnMjjGo', 'torrestee139326@yahoo.com', 'wBTCdFCS', '0', 'u8enLNBNdhioHBstNqDo', NULL, NULL, NULL, 'XeRTKyXwG', NULL, 'Zimbabwe', '$2y$10$eTrMaZonRvpLV96udjmbPOl/XLX5FElvzCadLFN88Q76otEYPT/a2', NULL, '2025-05-12 11:14:40', '2025-05-12 11:14:42'),
(423, 'jGhOqnBnNL', 'filippariceqk@gmail.com', 'MZfYwWCoaHJy', '0', 'aZqDai7PngLqeyRP6CJW', NULL, NULL, NULL, 'VPNTbnLzIdYzvrE', NULL, 'Zimbabwe', '$2y$10$7BYLfQYbZP1HUhorE8ugBO4ooyInas8mNkSbttGITa38w5enRu/pq', NULL, '2025-05-12 16:19:18', '2025-05-12 16:19:20'),
(424, 'VNSVBHZBwLK', 'jacquescorey318590@yahoo.com', 'EqsSwdIzxh', '0', 'qzlh5oZ8Q3fLmJPaCumR', NULL, NULL, NULL, 'UFRspFWEXGd', NULL, 'Zimbabwe', '$2y$10$MBjMlod5UW2wFRyuO52Lku5UZ.D6QvfAqlkT.Ko.jo3g9avNVzpSG', NULL, '2025-05-14 22:04:46', '2025-05-14 22:04:50'),
(425, 'zmOEtQGoZB', 'konnorhso1996@gmail.com', 'BiXgDuyiWa', '0', 'oHkP4NeSV7MCqHcSeNEg', NULL, NULL, NULL, 'uCTYYXvYovDjQMY', NULL, 'Zimbabwe', '$2y$10$b8YtU.Z2SHLh/TRzLR.Z6eubfYH3m.gh1KCBxzmoDEtZKcLTNwjNm', NULL, '2025-05-14 22:47:46', '2025-05-14 22:47:51'),
(426, 'qOWXIsWzY', 'candiceedwards1998@yahoo.com', 'SpZjdKMRqi', '0', 'pgw9ms3C3yNtcuMQlnk4', NULL, NULL, NULL, 'lXFURPVa', NULL, 'Zimbabwe', '$2y$10$mR8d49BSpp3G6ty/44ZEtuGy9hCKk.VBTPkuE/PiQ/MrtXspm6QqS', NULL, '2025-05-15 15:58:10', '2025-05-15 15:58:14'),
(427, 'twROMXaEJTlff', 'edwarreimonyk73@gmail.com', 'vgtGRjQSJhHxQQ', '0', 'SwSvzCjNUdTxi6ulo7Fv', NULL, NULL, NULL, 'KtgyAnuZDqN', NULL, 'Zimbabwe', '$2y$10$xvkhDt8qHfygtDICdBfboOhahUPNrGWHOkVE2fIrUlvfQCXCAYn9G', NULL, '2025-05-15 17:17:58', '2025-05-15 17:18:04'),
(428, 'apmnHosm', 'davidspitz403381@yahoo.com', 'tmLpIoeCVHQzaxr', '0', 'eOPF6xaD4LLsw871VvSO', NULL, NULL, NULL, 'nNbplddUAKhJowr', NULL, 'Zimbabwe', '$2y$10$trbMLUKCmAMBkgG8ZLj0qeHIBr37SdoR5nznKJGZPB2F8hXctwghq', NULL, '2025-05-16 08:47:46', '2025-05-16 08:47:50'),
(429, 'xpCRvuXICG', 'middlonsg@gmail.com', 'pYpItzqZgPbwYH', '0', 'B8waZXeez46SYWGg880G', NULL, NULL, NULL, 'WlRsfNFDY', NULL, 'Zimbabwe', '$2y$10$olJUrs6IJRiimMH52R4UyeTYhaH8YATFZqu5KBsB3/mCqgKF65q9y', NULL, '2025-05-18 03:33:23', '2025-05-18 03:33:27'),
(430, 'OUdkfydXaHyzF', 'leniml1996@gmail.com', 'vBcBxEWMxghxMyH', '0', 'H9acLd67WQWnXdDyycVj', NULL, NULL, NULL, 'ZdiWwCgzZojYUf', NULL, 'Zimbabwe', '$2y$10$EoO1FXvaAL8r39SMgAe5cOmsf.8AunQQ.qh81QKxa/KQc7jKvB.FC', NULL, '2025-05-19 22:12:57', '2025-05-19 22:13:11'),
(431, 'DuImtZpRLX', 'bishopprydensgu49@gmail.com', 'upThwsXxy', '0', 'dBWhTmVb2Qt7FSRHJUuZ', NULL, NULL, NULL, 'SyfZDPPGjhIhyk', NULL, 'Zimbabwe', '$2y$10$JhFjpgHhTA9U0L6VDwwfbO.RVRDMl.ABVihJKJ7SodE/19drCwgqa', NULL, '2025-05-20 12:13:26', '2025-05-20 12:13:31'),
(432, 'oyvNLpqOicgFL', 'royentsh@gmail.com', 'SABzejorxCHwH', '0', 'mG348Ko5WgJH0NHgfjRh', NULL, NULL, NULL, 'hGsZTFXIyy', NULL, 'Zimbabwe', '$2y$10$Pzyb4ySEC4D4cw7/Q/5.cuN2FHVWBguZjMQJvh/SoiEVrk5n2xyyy', NULL, '2025-05-21 12:38:22', '2025-05-21 12:38:25'),
(433, 'ArjunGroof', 'jiheyayu183@gmail.com', 'ArjunGroof', '0', 'isZvdpl9uKRU4ANCCE8x', NULL, NULL, NULL, 'Porto-Novo', NULL, 'Costa Rica', '$2y$10$mm4yH8/qvWLFYD.aRfNkqOXS3bHb7AmOMNQJOw/YBaX8xNytWKHpe', NULL, '2025-05-21 16:55:41', '2025-05-21 16:55:44'),
(434, 'PsBsDtrvF', 'leonardgarciasg1994@gmail.com', 'obxfwySfxYyeUyl', '0', 'Qt5Op8KUrXTpdC4YjNYi', NULL, NULL, NULL, 'NjafJxBb', NULL, 'Zimbabwe', '$2y$10$25uViy3GSl/e99z7yGbESOtfzcWDu5//icUFn1BX70.ROiKaDkqTi', NULL, '2025-05-22 13:05:20', '2025-05-22 13:05:24'),
(435, 'RdgqhIFAUrKDpTU', 'shedomom50@gmail.com', 'tqPtabbipLt', '0', 'DcMAJWnomstKGgHCdqaN', NULL, NULL, NULL, 'DfcREEmNVpwOGnj', NULL, 'Zimbabwe', '$2y$10$Px80Zr8/xybEADmvKu0yV.NBaDJgZC4FOpdgH7LVCzBUr/2OTiF4u', NULL, '2025-05-23 08:59:06', '2025-05-23 08:59:12'),
(436, 'tYwVffFuUDzxwZ', 'sidneikrueger35@gmail.com', 'mPCnpHFJnoeRd', '0', 'R6Y10aKLlpkoD3iPAAxR', NULL, NULL, NULL, 'DBLWfNppvz', NULL, 'Zimbabwe', '$2y$10$gaFhUsps6hPFsd.kzleZV.DqxsvmcWGSp4SsyQt/san3lLtjvWGoO', NULL, '2025-05-23 09:41:29', '2025-05-23 09:41:32'),
(437, 'lHfnIgQU', 'bazildak16@gmail.com', 'jjTYjmQWCPJ', '0', '0jYIgq62krx60bYrE3Zc', NULL, NULL, NULL, 'aGBEOjzu', NULL, 'Zimbabwe', '$2y$10$/cB3eST./M8Tdgx11b47aeuPS3S.AKhcWnnPTHW0fm4lCK9ScV.ra', NULL, '2025-05-23 13:49:14', '2025-05-23 13:49:19'),
(438, 'HbqHCZUBeAXIS', 'mayestea84@gmail.com', 'ZqWRAuhVRz', '0', 'Xt5I7X8zbdhXHSST4t9O', NULL, NULL, NULL, 'AWSVLBwC', NULL, 'Zimbabwe', '$2y$10$ZzGOEoVRBU8wPaL9XeWK6OyfGWRj8KS0lrWE.k35xOJHH8i05GEse', NULL, '2025-05-23 19:02:58', '2025-05-23 19:03:00'),
(439, 'hFAtNmXCpiEwGb', 'kingsleih17@gmail.com', 'bINtmNGJsUxq', '0', 'sFxFYJ8wuRFd2gWlHLrZ', NULL, NULL, NULL, 'KcjaAZpsIqG', NULL, 'Zimbabwe', '$2y$10$6aNCA/g3ZZWFoYIsMBXzTeQvjkqqMCOMvk04j5p9TgFkuJWjWFX6e', NULL, '2025-05-25 16:22:01', '2025-05-25 16:22:03'),
(440, 'XxZVVqxtWLkwg', 'sanfordbraedenaz43@gmail.com', 'yGQoChxxT', '0', '3NaAWeTvpxzS31QdxYFh', NULL, NULL, NULL, 'oqlsOmTfesa', NULL, 'Zimbabwe', '$2y$10$7GM.wmyo01GJ00DVvFWkTOVZqscliqFU37WzGfwHgW.DiXqDTUJNG', NULL, '2025-05-26 08:32:32', '2025-05-26 08:32:35'),
(441, 'SEKbySoMnNbes', 'cmolkom80@gmail.com', 'okaDYwLAn', '0', 'sGRZXWDH4eJGV9VXB3TI', NULL, NULL, NULL, 'pIWCKbIbpYTPPc', NULL, 'Zimbabwe', '$2y$10$D3yneaFdtZ..b9fbCjhwteGoFGvg1XFr5TRT2KlAkzotOEUYfO4eu', NULL, '2025-05-26 13:39:09', '2025-05-26 13:39:14'),
(442, 'yIKMFGjfNHwyCev', 'murdikxx1986@gmail.com', 'JPkjjknUuXeF', '0', '2gTmhdVxaMzL4t44EBZq', NULL, NULL, NULL, 'KdRjFEEYHngHraf', NULL, 'Zimbabwe', '$2y$10$aTbn2nCeujEKbKXvy0EPAe.Glbml27tQedlx3OMLTPUOyFDqzW3QG', NULL, '2025-05-28 02:11:09', '2025-05-28 02:11:13'),
(443, 'asfasf', 'yucaerin@hotmail.com', 'asfasf', '0', '05Fcmj9HOEcYtWTXXxua', NULL, NULL, NULL, 'asfasf', NULL, 'Algeria', '$2y$10$1lNVOTUX9ND1e0aPdVWc0eF6s8RHvOYSJPGOuc4CPsi6I6gXI/5ru', NULL, '2025-05-28 14:51:11', '2025-05-28 15:56:02'),
(444, 'DriURgQJCA', 'lbradleyyh97@gmail.com', 'zcTQyCAHSQ', '0', 'XXIyNsUfaZGjWamGgkin', NULL, NULL, NULL, 'yFBEDjXdTq', NULL, 'Zimbabwe', '$2y$10$qSENYfTQ6KYKxAmqTWc7l.ESXK2KA2roNop9wTKNqKA5auEkwFZsS', NULL, '2025-05-28 16:01:33', '2025-05-28 16:01:41'),
(445, 'elGekNNRhz', 'singhbrad1996@yahoo.com', 'NdoYAkAFGJYeEpm', '0', 'YH0FbhtBls7dTIXnCpLc', NULL, NULL, NULL, 'eHRIErgbErilvmP', NULL, 'Zimbabwe', '$2y$10$A/E1sJPVHhmKddjw4j9gZO0H.w0mjTjgFwGWrAFwX31Rahi0O01QC', NULL, '2025-05-29 00:23:54', '2025-05-29 00:23:58'),
(446, 'GZCIGCZJfCWw', 'jennyrojas551415@yahoo.com', 'LMxDivAU', '0', 'ntp3Ii3a6jDxk1P56Zq2', NULL, NULL, NULL, 'IMbRHBrpmCcX', NULL, 'Zimbabwe', '$2y$10$woFzd6nHFqa7443VwUXIdeLfZimyoLW.AoxumBqtCEctl8pn.Towm', NULL, '2025-05-29 20:15:48', '2025-05-29 20:15:52'),
(447, 'kLkRZxORHfpoI', 'pkenitp@gmail.com', 'bOOxEjMHZHu', '0', 'cgMA5tBWVoeD9hN5qPlk', NULL, NULL, NULL, 'nTOAWVrUxDwIi', NULL, 'Zimbabwe', '$2y$10$h2ocRxE/AyDPPledrjikau.UdDr98Xm.SmE7U47sR89S3ZnLrjLsC', NULL, '2025-05-29 23:07:15', '2025-05-29 23:07:18'),
(448, 'mxOdfrtYOhGLP', 'jeremydecoteau1998@yahoo.com', 'KwhQfOynRwIL', '0', 'seW74qwiWSTHbCe7gZ9J', NULL, NULL, NULL, 'xbRGhrImwYXqK', NULL, 'Zimbabwe', '$2y$10$0sLu4QVQom5HXVcHWWj6GuXQ/QgsdXZTllcFTdDnisDjgb37t7tXK', NULL, '2025-05-30 03:28:36', '2025-05-30 03:28:46'),
(449, 'ITvIUFfx', 'watkinsmatt262255@yahoo.com', 'SMgAswonunyt', '0', 'XpBtdSk9dTCGB2Io0DHE', NULL, NULL, NULL, 'CRbhbwBwiFUFi', NULL, 'Zimbabwe', '$2y$10$mjaroGazcRkMhafgFMg5WOs.59.rsSnKwlf7ZHw/QGpaBdl9j6vMO', NULL, '2025-05-30 04:12:21', '2025-05-30 04:12:23'),
(450, 'bWYHTAmWhNHDs', 'redpathrasheed417598@yahoo.com', 'iLFWJIbcAlppWdk', '0', 'GMkkF5E0VKQb7OV9MKxP', NULL, NULL, NULL, 'KnIvaNKuPSypl', NULL, 'Zimbabwe', '$2y$10$DvFL/ef6Ieb5cIhEjEZPHOjpHJpReRvScSwVRUrR9GUUq7uScFMI.', NULL, '2025-05-30 06:58:04', '2025-05-30 06:58:12'),
(451, 'PDgxBSfWkWSGAK', 'dellcgu2005@gmail.com', 'JeHibHEwGkHZL', '0', '8PkYkXD9VSVjawaTtlOS', NULL, NULL, NULL, 'oLqFdQBlyJoxG', NULL, 'Zimbabwe', '$2y$10$VIagbXPqTZNUaFXTklvOxOD5GFEtNEzO8xHuKdnx/v3yuX/N36.o6', NULL, '2025-05-30 23:02:15', '2025-05-30 23:02:19'),
(452, 'RJnIZItaHHnKcU', 'parkersherlokm45@gmail.com', 'VFWAiQeHCqxsqQ', '0', '81rND401uDW9enBFRBw1', NULL, NULL, NULL, 'gsPyTuJig', NULL, 'Zimbabwe', '$2y$10$Yq7EvLiJ/UidTTQXvBHXVOPP/z2g7Bo.FuetnMx7O3rmICrGsfSi2', NULL, '2025-05-31 19:37:28', '2025-05-31 19:37:32'),
(453, 'VMfedgbLRBOaG', 'milfordhooper32@gmail.com', 'drEGgogajvEUW', '0', 'N3E6pjShK4NZ6fw4PLOF', NULL, NULL, NULL, 'rdOWQAXIcSjtgvH', NULL, 'Zimbabwe', '$2y$10$56nzjhnnQoAkJw6BWQg7/.V.HuYZgaqJVE39gX2DHAQ3vwVXWuTDq', NULL, '2025-06-01 02:19:31', '2025-06-01 02:19:38'),
(454, 'yiOOSxcLgre', 'orbiesz16@gmail.com', 'LfnqThWhzDaUb', '0', 'gfdH6QvS9arZ2WzDpLkq', NULL, NULL, NULL, 'tlmNWDtToRG', NULL, 'Zimbabwe', '$2y$10$/ASNNR8dM1Nn/Yl5mv.JZOUnVWmWLs6F4bhTl3mix4q/6HSdb0ddi', NULL, '2025-06-03 03:43:47', '2025-06-03 03:43:55'),
(455, 'jCLZMNuDezRZKO', 'silvestrgev@gmail.com', 'wxfQhxjwSKiiNlt', '0', 'x7HxuABIEUTUKMrz8A9n', NULL, NULL, NULL, 'whqYXlYUY', NULL, 'Zimbabwe', '$2y$10$9U6WckBssVvh.3ZoGpiBWeAhoS3VH9Flwr7ZzzNbY0253qlX7E/Ly', NULL, '2025-06-03 20:40:33', '2025-06-03 20:40:37'),
(456, 'TdFcUcxKyNEuBO', 'florenciaredd404130@yahoo.com', 'CLuTxECcBogR', '0', 'sN815PSfOQWpOMfJd2r8', NULL, NULL, NULL, 'glEqVjFeJoD', NULL, 'Zimbabwe', '$2y$10$GlPIyJdlUXPIg7T1GWpRA.lhrMWrX3x/JlKtMooKhxG3WI4ddNPFm', NULL, '2025-06-03 22:27:38', '2025-06-03 22:27:42'),
(457, 'XHYEMPBY', 'teirkbriggs17@gmail.com', 'iOQUEhztFzPo', '0', 'oNc0ENCU5qegUY9tRLoI', NULL, NULL, NULL, 'lXQrJSlhCutHq', NULL, 'Zimbabwe', '$2y$10$viKem6N8tMs7L9iWRDbZeenPnp/rovAFqUHnhdeDQBRh479IjgFl.', NULL, '2025-06-04 13:37:39', '2025-06-04 13:37:42'),
(458, 'hFzGfqefiJegdt', 'wilkinsklematisj@gmail.com', 'EQUiFNzmlTEU', '0', 'iO7BYglHV1Smqefiiyac', NULL, NULL, NULL, 'ocuRuaXsZMuYoE', NULL, 'Zimbabwe', '$2y$10$zIWILb.rlONdO/PRIgoG3uittCHYrUV272sf6elAR/F1HPt1rTXfa', NULL, '2025-06-05 06:25:13', '2025-06-05 06:25:41'),
(459, 'hBxjiQVm', 'hammondkleris39@gmail.com', 'ZKOhqIJV', '0', 'lAjQquhEQhXgINbmcjK0', NULL, NULL, NULL, 'KOsjMxRCO', NULL, 'Zimbabwe', '$2y$10$OJGf5LS/kkp1G.1QKX76J.0HhTckq9pFnK/BOZWxsSXE5s1yPEprC', NULL, '2025-06-05 09:43:54', '2025-06-05 09:43:58'),
(460, 'EuLdTjbbX', 'aklikruegmh52@gmail.com', 'ovSBtsWZzkvn', '0', 'JKQyN4H9elSi2X9LkOvW', NULL, NULL, NULL, 'EThzSWLucn', NULL, 'Zimbabwe', '$2y$10$jS5qtfJedlikGqqhos1i7.8kQEacUqNUacR5UKPulJZFgbmvOmKRS', NULL, '2025-06-05 16:14:22', '2025-06-05 16:14:25'),
(461, 'aGtpCOJqbja', 'collinskevin529998@yahoo.com', 'jFXLVGZvg', '0', 'Puh4Tqh0qJmn7QeoRQKa', NULL, NULL, NULL, 'rUnqtlkmlO', NULL, 'Zimbabwe', '$2y$10$5qvr5xbZ9qOwqNHBTOaHVO3PNH/ZE0uMt1.NjCsaH1GXxFnmKaUaC', NULL, '2025-06-07 05:54:31', '2025-06-07 05:54:35'),
(462, 'uIymJdOzvvsAp', 'viktoriyath1990@gmail.com', 'SydtwBEx', '0', '8sIffEdKbtP5zv7awYJF', NULL, NULL, NULL, 'tmDJCConhGRbZS', NULL, 'Zimbabwe', '$2y$10$9HOmpenNd0QJpJzFFZe.q.fCdATxH5CkdA7XWSTMmMJqFhkbU6bh6', NULL, '2025-06-08 00:45:54', '2025-06-08 00:46:02'),
(463, 'GkMSsrKtSimJ', 'marmaduksweeney18@gmail.com', 'BkqTrYeiszFLv', '0', 'zprYlHarFdetc6w53cm2', NULL, NULL, NULL, 'kgdlYQSGchB', NULL, 'Zimbabwe', '$2y$10$Zi2q7zK28EyKZRQ107.fF.MN.xVcRSOLtdQAtgXyGaOr8Cwokk.vu', NULL, '2025-06-08 06:39:16', '2025-06-08 06:39:22'),
(464, 'auJqJiMuT', 'lbutlerht@gmail.com', 'uaZHjhEtVaSP', '0', 'UXCzvRVsZbQrlnvBVbXU', NULL, NULL, NULL, 'jQLWVuDbF', NULL, 'Zimbabwe', '$2y$10$eqnmaDfd1.Q8brkZO18cnOhnrXAXKpaiTsXZ/3oIBPqE.r1LVBNwu', NULL, '2025-06-08 09:01:32', '2025-06-08 09:01:37'),
(465, 'BhzkHyMosRbQRp', 'rachelfahe300781@yahoo.com', 'asWwjiCdmIHaxA', '0', 'ICNubwcq0HACsWkiTYTL', NULL, NULL, NULL, 'ufumZUorVekIG', NULL, 'Zimbabwe', '$2y$10$GtINpf/9nPNwCVEm5vn71OcnrqnD0tL273xSQiqpCgmx7jxS/vk0O', NULL, '2025-06-08 09:44:37', '2025-06-08 09:44:43'),
(466, 'PgvSsRrWA', 'gravessantosh728222@yahoo.com', 'vZDuSpjkkVeKAgc', '0', '652fXVzP1oFGJm8tOQ8N', NULL, NULL, NULL, 'ORHjzzSDiT', NULL, 'Zimbabwe', '$2y$10$G5.lfUlx4T.8xTvy05bzfej0UFNPf3VwKr0k8ggsGLqNlI/PKyZOC', NULL, '2025-06-08 10:06:13', '2025-06-08 10:06:18'),
(467, 'TVmuMUsXSoloZDP', 'brewerbrittonul@gmail.com', 'oPpbblumJ', '0', 'Bq8qJtzzXiEioEKujvax', NULL, NULL, NULL, 'hBWYDkQSSFEH', NULL, 'Zimbabwe', '$2y$10$330jKItlQOUOiPxQuW.LnulGhrIPZupEWLMj5zWCWAtpUmgAM7zYu', NULL, '2025-06-08 12:04:03', '2025-06-08 12:04:07'),
(468, 'gqFUOBuUTAXsm', 'agataamw88@gmail.com', 'uAaSkXtpvLR', '0', 'u60P1Tk7Ub8mB5FKO3pS', NULL, NULL, NULL, 'hfMTdFrpJIAw', NULL, 'Zimbabwe', '$2y$10$W2x/2XpWgdNKlg/b.82OC.lsu70dq0aVSLJ20OJq0lRWsGGyG1S7m', NULL, '2025-06-08 19:44:33', '2025-06-08 19:44:38'),
(469, 'latMzoannfNqETs', 'raymondosmondrx@gmail.com', 'GuVzdUfR', '0', 'JKUq8GW5rol25KyPqsL5', NULL, NULL, NULL, 'nmbhIehQFdq', NULL, 'Zimbabwe', '$2y$10$0BUMXkpmhkzT9vqX1lZzeOIFqpodhIkI4Lt598jtvzYcCtn1hAQxG', NULL, '2025-06-10 01:39:35', '2025-06-10 01:39:40'),
(470, 'ITEGwlyWvpfe', 'perezlisa493633@yahoo.com', 'HQNQmJSEyTLJJlP', '0', 'zlKqNTYh4dDo7BVBOwgn', NULL, NULL, NULL, 'wbfmNnyIOTV', NULL, 'Zimbabwe', '$2y$10$7kZCFxXsefJF2lQi8eftfuCoWbjmPn/wRSO3nD.bLnN8G.RhoM6Zm', NULL, '2025-06-10 21:06:17', '2025-06-10 21:06:22'),
(471, 'RqpEuSbUlECdB', 'odreaashleywb48@gmail.com', 'fCZcREkodwhwwL', '0', 'JzciVPONEm7PEfYQWYuL', NULL, NULL, NULL, 'uqQkbjzLj', NULL, 'Zimbabwe', '$2y$10$pnFlN0m3SK2lipF/dqsNheF8QKjuX12Y49y/sAC1t4il0Ta5NqXQS', NULL, '2025-06-11 23:01:39', '2025-06-11 23:01:42'),
(472, 'hcvfAXrcszASCFS', 'yillardgreenuv@gmail.com', 'crBAvrTrDiSY', '0', 'qlIygCvzXqQQm0TmL9hU', NULL, NULL, NULL, 'rVdXxcHfT', NULL, 'Zimbabwe', '$2y$10$SB77fzA5B4XniCdjnt/iUuFc8DbYbXjgdpdrILZZkCgMHfL9U.WSu', NULL, '2025-06-11 23:14:52', '2025-06-11 23:14:55'),
(473, 'nravHkPN', 'gektore69@gmail.com', 'kBNHgIXG', '0', 'YZk1jDZfvo42d72q8EAd', NULL, NULL, NULL, 'RpCYdQvRWvb', NULL, 'Zimbabwe', '$2y$10$RTT6YiYoZ9lwp3dqWLCYYOTY5JxfugYCkF6CXrrt1131hwK2J95Cu', NULL, '2025-06-12 03:57:56', '2025-06-12 03:58:02'),
(474, 'LAcOMrlvvcAw', 'jessegonzales654411@yahoo.com', 'eYQbOpNRCmdiTGl', '0', 'NbSPPtlWIoBxwegGzFNo', NULL, NULL, NULL, 'CRsBROKQTfrf', NULL, 'Zimbabwe', '$2y$10$2/Ndqf4azE0b5Jbl3NNH0OlAzgybEml.A3E0b4CYsaOsntQ3T9s3.', NULL, '2025-06-12 05:16:13', '2025-06-12 05:16:16'),
(475, 'HkZfImmUyBokZ', 'currykimberlaya1986@gmail.com', 'LchjYYlLEgUQv', '0', '3KxIZdYobqxXTfub46NX', NULL, NULL, NULL, 'ScgEQTHrioNpm', NULL, 'Zimbabwe', '$2y$10$Tt.1y1hIY8rdJZAFbzEa/eNBTAxICTmqeAIJjoUVXaKPBbjZLGbVS', NULL, '2025-06-12 13:55:52', '2025-06-12 13:55:55'),
(476, 'zAfRsngd', 'wilsondeborah168852@yahoo.com', 'MiMdrSAJLFBFZVe', '0', 'ctyf7FDUeVZE9xDJJN3Z', NULL, NULL, NULL, 'VYgUtpepmfCdOS', NULL, 'Zimbabwe', '$2y$10$W5vGktOez0fWrQORYFG0G.Hh6CH/UBu/nGk6O1E3mPc9BoqNx1B0.', NULL, '2025-06-12 18:35:23', '2025-06-12 18:35:26'),
(477, 'UwmePJtrLFtn', 'stephaniemanning608967@yahoo.com', 'acEIPviDcA', '0', '8xheYiHwUy1nQ0o3fvIt', NULL, NULL, NULL, 'wlSlixKkKzhEc', NULL, 'Zimbabwe', '$2y$10$aajxWTVSjiB0VVJKJpx6WuA2FRigzdt0oEPfqxQ65ApwulOk06MBK', NULL, '2025-06-13 05:09:07', '2025-06-13 05:09:11'),
(478, 'NFjdNvGpocaW', 'makelc2000@gmail.com', 'XXPdzgbAdle', '0', 'HoXxQssd9TYkTwbqwdCC', NULL, NULL, NULL, 'RJNLzVnzBVXL', NULL, 'Zimbabwe', '$2y$10$COmQl95QL9IjC/FYhV7IGuN4RwKnFKHpQLCLp2PLcNoQ.IPjsOS0u', NULL, '2025-06-14 14:32:00', '2025-06-14 14:32:03'),
(479, 'ahTEoauGjoz', 'cronneto80@gmail.com', 'KUuielNHTmBZX', '0', 'O5bDkYMGZRWbJOy5iVXu', NULL, NULL, NULL, 'EiQiBqcGOK', NULL, 'Zimbabwe', '$2y$10$pLTHoVLx.ge1WNMBz9HnPucZynqZlwSQ5UGtmIKJ.uD99pQ/aEhZ2', NULL, '2025-06-14 17:50:49', '2025-06-14 17:50:52'),
(480, 'NATREGTEGH3610284NERTHRRTH', 'scxzmzxs@aurevoirmail.com', 'NATREGTEGH3610284NERTHRRTH', '0', 'oHY3UmK3irpk8OxDUOYg', NULL, NULL, NULL, 'Madagascar', NULL, 'Madagascar', '$2y$10$SMo4T4FrtKRpH/ekVuVvG.Et0Y0QEzsglhHw5M3Hpg7JEPwPaTjT6', NULL, '2025-06-15 10:38:46', '2025-06-15 10:38:48'),
(481, 'nfQWsLapwxQrcVw', 'asselainlf1@gmail.com', 'psrErCDxqgrCvbv', '0', 'QoRSybHC2HpqAZ9C4uFL', NULL, NULL, NULL, 'DoVuHhYDJ', NULL, 'Zimbabwe', '$2y$10$6Dat16NJRw0InX6MYx0mHOnBOuf.1q9gATxdMBoI6P8SSRCGHfTY.', NULL, '2025-06-15 12:54:15', '2025-06-15 12:54:21'),
(482, 'TtMHXtMbgdjdi', 'klerlozanu1980@gmail.com', 'wNqrCaaYycvDWEX', '0', 'GkU6sskcR25sO5jKOY35', NULL, NULL, NULL, 'wuJSTowTE', NULL, 'Zimbabwe', '$2y$10$R1fn2eIDwIYeSvnZAuuziewJIJyExEwod5gR4sfFSUKdSWSt11Afe', NULL, '2025-06-16 09:49:17', '2025-06-16 09:49:22'),
(483, '* * * Snag Your Free Gift: http://namebing.in/index.php?9f83ot * * * hs=bdf0a41fb04e9ad1e9d7b756815c89cc* ххх*', 'pazapz@mailbox.in.ua', 'q159r3', '0', 'qAawGEbF1SL2W0qkWlqr', NULL, NULL, NULL, 'cdt155', NULL, 'Zimbabwe', '$2y$10$K8Ars0Tt025q5hdHZ7C5je5FPeQIDGpYjp5yq4WujEkAPS0J/1Mne', NULL, '2025-06-16 12:46:33', '2025-06-16 12:46:34'),
(484, 'QwgNunmz', 'rybinboonec8@gmail.com', 'jEUKMmIuaE', '0', 'mhAMOU3h7DzbHLnF2JTj', NULL, NULL, NULL, 'QGgfVMhchRf', NULL, 'Zimbabwe', '$2y$10$LNl6750ULywEdgtYC8HjE.KIg4AxCpkvoQFrKzeCj1/61sHzv8.xS', NULL, '2025-06-16 20:47:17', '2025-06-16 20:47:21'),
(485, 'GjowkhjjH', 'basterlarsonxq1988@gmail.com', 'WjeCsyLthF', '0', 'LHigdBX3ayHyEbC6AwMw', NULL, NULL, NULL, 'feMWfoCU', NULL, 'Zimbabwe', '$2y$10$QfJTipxtU7yTXISZ8y8YEeLkZ8QYH9iARDUrOkVBrtMhV5gMkvT.a', NULL, '2025-06-17 01:50:32', '2025-06-17 01:50:34'),
(486, 'DfDLQqUSA', 'lekbradyj55@gmail.com', 'JVbZkILqfpvS', '0', 'BJkDbJFJZSHx0ThW4x9B', NULL, NULL, NULL, 'gBppgpHDEuDl', NULL, 'Zimbabwe', '$2y$10$Zcdw0lfBoQKdagFTLKZABezBUkc1OeRTtMiMAgqoVvkY3yrmseola', NULL, '2025-06-17 02:18:40', '2025-06-17 02:18:59'),
(487, 'IEaiQhySiEYuB', 'huangabbigeilv22@gmail.com', 'wjvErHzHPZm', '0', 'aIn5IO0jbTRHw8RsfmXa', NULL, NULL, NULL, 'xTzPfNxCd', NULL, 'Zimbabwe', '$2y$10$Kz2keaqUVXhub7kVumQt..yECJSl7RWn1wsFGAakMwBvminX2AxWC', NULL, '2025-06-17 18:01:04', '2025-06-17 18:01:12'),
(488, 'qSokbVUcF', 'crossdoyson1993@gmail.com', 'RZojMsCqfBCd', '0', 'awX95QLQihAsdHoaMkq5', NULL, NULL, NULL, 'xmppZGODr', NULL, 'Zimbabwe', '$2y$10$HUBf7Vbd6ssd4sUnUTV/5ua4jQJeNrml8i57cKihOXQVj/2hwW8bW', NULL, '2025-06-18 01:48:31', '2025-06-18 01:48:35'),
(489, 'WdSDcWkkVMPI', 'mmanninga24@gmail.com', 'pGXOJViVXZW', '0', 'YU8L0MpjINHWvZPi0T9K', NULL, NULL, NULL, 'zXZFaOVcqQF', NULL, 'Zimbabwe', '$2y$10$DljNb5S97kn95Zv7jQJWX.7vLXmGTvnbUmX51tAY93AP4ne0Gb7Fi', NULL, '2025-06-18 14:19:30', '2025-06-18 14:19:35'),
(490, 'AYjAYDjGKEq', 'karmensq1985@gmail.com', 'MJhtyUopz', '0', 'Ys1VHEXuhLsjGnF6l1XQ', NULL, NULL, NULL, 'eNxDNlmknXahrDE', NULL, 'Zimbabwe', '$2y$10$BQwUCrXFm6alknPRIZLXsuQCIFMyUktyfFwLdUdQncI2qx2mzNibG', NULL, '2025-06-19 21:07:48', '2025-06-19 21:07:51'),
(491, 'SYbehFRiTP', 'hansonmillikn2001@gmail.com', 'ESIhObMx', '0', '6jV8cMhE86y69VAMfPgk', NULL, NULL, NULL, 'hGJxofEZegKVgo', NULL, 'Zimbabwe', '$2y$10$Fu6EDSqda8J7jLcFP2yZbu2McWoc3EL0fbbl9iwJe2EWXsrrWqXAm', NULL, '2025-06-19 22:09:41', '2025-06-19 22:09:45'),
(492, 'DanielUNole', 'po.st.i.ng.meg.a.s.to.p.l.a.y@gmail.com', 'DanielUNole', '0', 'HAmCYLSj66IGktdUZu0n', NULL, NULL, NULL, 'Havana', NULL, 'Cuba', '$2y$10$yI8qWE/X.wdj7zhfahEWOOZvedDOea6ypFxgGBbW37hHfJ5YAyOkW', NULL, '2025-06-21 14:49:52', '2025-06-21 14:49:54'),
(493, 'bhHAFwlIP', 'cantumoliek97@gmail.com', 'hLPKSOTrdKxAp', '0', 'xhyBwVkFvEF3m5HCvB2D', NULL, NULL, NULL, 'ZYNMFDKGNbmWu', NULL, 'Zimbabwe', '$2y$10$4B/Pgzb7MCniy.sS/2ZPKOzhvLHAMdayrNZA0ktca9pJCVIm0suuq', NULL, '2025-06-21 23:44:27', '2025-06-21 23:44:31'),
(494, 'ZCswvGuLd', 'dklevz30@gmail.com', 'DNCKKsjlSOFHD', '0', 'VTH61GGvv2d23tDAKbXS', NULL, NULL, NULL, 'bWkDsOvyeop', NULL, 'Zimbabwe', '$2y$10$hTVG924UNf54aGdvPRxvbO9sJNeG3NUjdA3kMLz49hxpHoi12zUOu', NULL, '2025-06-22 01:54:37', '2025-06-22 01:54:41'),
(495, 'axVoGnnMSHcW', 'romerograndwn@gmail.com', 'qXXUFpqv', '0', 'dh6gewcCuekjUD6iZWEN', NULL, NULL, NULL, 'PhhwbDwlhumIm', NULL, 'Zimbabwe', '$2y$10$QMZcTERERd9FaFN.i7GH4uGDUsJMQWrap3sSF5Gm861q/vimM07te', NULL, '2025-06-22 02:19:26', '2025-06-22 02:19:28'),
(496, 'wJGyqpzxI', 'ervanhooverq@gmail.com', 'aJiZjUNvaTaqn', '0', 'yx3J4okrOGlAhHuwQS4b', NULL, NULL, NULL, 'ouwSsRdCQ', NULL, 'Zimbabwe', '$2y$10$ZRPynvl4nMI6Npi2XNVoT.8/JDw5jDlLjL0mOvkPq4QABBiTyhITu', NULL, '2025-06-22 03:31:45', '2025-06-22 03:31:49'),
(497, 'FtUqMocwV', 'oduncanep@gmail.com', 'nOFSvspN', '0', 'doYQMDy0i2PgiygNoVzl', NULL, NULL, NULL, 'HzpWbMbGmm', NULL, 'Zimbabwe', '$2y$10$tKwRYfTfGRDZnF/h47Y7nexLaVHBSQXu.vWemE5s8MWa0H1.dS3zW', NULL, '2025-06-22 08:12:29', '2025-06-22 08:12:32'),
(498, 'JkdDQyCfvkAQXnF', 'aziyaschmitth1984@gmail.com', 'kaicQeNiOqRFrAF', '0', 'RG6sMBBUvDQJzFjWIBz9', NULL, NULL, NULL, 'VULZGPRXLcX', NULL, 'Zimbabwe', '$2y$10$i9N.qqmj1wM5/V3wPU1jDemQMumPsW7DpLgLDEuLlPFFCKMyELzQy', NULL, '2025-06-22 11:41:46', '2025-06-22 11:41:48'),
(499, 'EmgcBnUV', 'tanimunog55@gmail.com', 'uOhTUGVInV', '0', 'WD5y7ylO9KZeHBvc1Ge7', NULL, NULL, NULL, 'qeMQkKLSxzdK', NULL, 'Zimbabwe', '$2y$10$pvqvdiBXvqjrLmuUOLoElu8t9lc9rGiGugR/ugqrXiMpk5UHkzOwC', NULL, '2025-06-24 01:50:52', '2025-06-24 01:50:54'),
(500, 'KwDVWAhzzHlYHs', 'daughertykonanuq@gmail.com', 'wFNSNvZwXotGU', '0', '8mpvLm9sg3ersi4Tty1q', NULL, NULL, NULL, 'MtICXBQgC', NULL, 'Zimbabwe', '$2y$10$HuobMUgU5KuzylQWb8yZzOciLWzriDFefxzefXRHEkGht9Bgj6x/S', NULL, '2025-06-24 05:27:41', '2025-06-24 05:27:43'),
(501, 'Suraiya Tanisha', 'suraiyatanisha133@gmail.com', 'tannisha998', '0', 'hzSDmd7G5pzAn5n8OVe1', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$yaCaEgvqh.q9smoFJJ5S8OmQlgg6i0ywa6tB86t6YSVg1jB2Rxamu', NULL, '2025-06-25 00:59:10', '2025-06-25 00:59:10'),
(502, 'ZDaOsQxXcVV', 'trentsv31@gmail.com', 'FmKmHsbHOoK', '0', 'Phj7NDGoh8MSZcouo7ye', NULL, NULL, NULL, 'qfUtGLmlpN', NULL, 'Zimbabwe', '$2y$10$vHJR0Ptyx7PwsK7k.joNPucL1FNl2ouXvSAmAjp4BFlDbwHe0E70C', NULL, '2025-06-25 06:51:02', '2025-06-25 06:51:05'),
(503, 'OWCruOVinnUbFf', 'darvinpattonhh17@gmail.com', 'VWUjCKeLaCM', '0', 'UWUjJpeOGhx1H9SwWYaw', NULL, NULL, NULL, 'YihGowFZ', NULL, 'Zimbabwe', '$2y$10$nINqcO1xKtcUlbcWVxyPJ.EgpubgLCFKDoXBwJfJz5n1aiHz6PwLq', NULL, '2025-06-25 20:16:46', '2025-06-25 20:16:48'),
(504, 'zXszDUcBgmMJ', 'tristramcherry18@gmail.com', 'QzTnnvJQOOEB', '0', 'IQDH1Ui0eAR83aQcZVy2', NULL, NULL, NULL, 'TByVSHtPFqKjhCG', NULL, 'Zimbabwe', '$2y$10$k7FDkYQT1DybZN/FtjH1f.o0meLfISJgeDfsd2BzAkBHe.ZkiI4rq', NULL, '2025-06-26 01:20:32', '2025-06-26 01:20:35'),
(505, 'iYiTEWQJdIFNQKh', 'djaspagen2000@gmail.com', 'OVLZWgrJkX', '0', 'hjERgzu9th8qJiRgVvZs', NULL, NULL, NULL, 'vfHFyYSUCGfvaJb', NULL, 'Zimbabwe', '$2y$10$q98W.UuYUOALLsjCDv8.euhUgic5gxUk2WFZt28Hyd6iJZlXYI.MW', NULL, '2025-06-26 15:54:40', '2025-06-26 15:54:44'),
(506, 'Tejasshi', 'tejasshidewan@gmail.com', 'Tejasshi dewan', '0', '8Jz82Q4SoCD2Xz5WTeGw', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$BB0UzIg3i9Tfd9zNC4Oc/O7.Y/M5V1fHf5dxEL1PBrETiWuUeHq3a', NULL, '2025-06-27 00:48:55', '2025-06-27 00:48:55'),
(507, 'JKTLJXkyiOO', 'djessafuentesnh46@gmail.com', 'hWoVZViujEUoFkI', '0', '3wpi3czlj7IzAh3iYrlL', NULL, NULL, NULL, 'FZqXqnaHlCcbAV', NULL, 'Zimbabwe', '$2y$10$UOnhonuw8BEF2r/IWlICY.0zrhXMR2jGXwB2HAtms4wnbht0oalRu', NULL, '2025-06-27 11:38:07', '2025-06-27 11:38:11'),
(508, 'NAERTREGE302436NEYHRTGE', 'vymfwuom@bientotmail.com', 'NAERTREGE302436NEYHRTGE', '0', 'OfDX5J0JWcObQJOadSHp', NULL, NULL, NULL, 'Madagascar', NULL, 'Madagascar', '$2y$10$jjKlAKbs0lTP7FAOyCw13.6J4y3ApBt7n3.IHFqdYdkdOBo5DcYI2', NULL, '2025-06-27 14:49:40', '2025-06-27 14:49:42'),
(509, 'MeylrHezpHfj', 'uzitiloz25@gmail.com', 'KjnVJkuae', '0', 'u8huxe2bZpCHQBPOixBC', NULL, NULL, NULL, 'njLartLwsFk', NULL, 'Zimbabwe', '$2y$10$b39AEMsfwnWHWRuE0VCTWuGSeix.37t0vPsdQ8N6XXDkld1Q5bRtC', NULL, '2025-06-27 18:07:03', '2025-06-27 18:07:05'),
(510, 'xbIQlXdkDpZJn', 'etabafuqaki31@gmail.com', 'TfDTlxQEtXXiZ', '0', 'MB4wivASDvLsnvretmot', NULL, NULL, NULL, 'HtMVvNVA', NULL, 'Zimbabwe', '$2y$10$xT1FTTbf/Ok1UUOk7ovnF.faHLC26JNQ9Wakxzf7iuIH2w0Hl3WoC', NULL, '2025-06-28 00:23:49', '2025-06-28 00:23:57'),
(511, 'WdQgPegETSYnE', 'viwinawojinu76@gmail.com', 'NlRQrJet', '0', 'aTqOU4jaTX25vZb8jAFz', NULL, NULL, NULL, 'TUTwUNYb', NULL, 'Zimbabwe', '$2y$10$Q9/Z3n6F2jVhDjeCZp245O/g8UIPDjkk5ibvBirqgMfs3yiCxF/uS', NULL, '2025-06-28 04:30:26', '2025-06-28 04:30:29'),
(512, 'NATREGTEGH359678NERTYTRY', 'utmpyflm@bonsoirmail.com', 'NATREGTEGH359678NERTYTRY', '0', 'NkGC1uaKJOt3DExUQOqB', NULL, NULL, NULL, 'Madagascar', NULL, 'Madagascar', '$2y$10$Wq7d0xncqmXd6bRA8hXW8OR1J4KWbyYDbSoDRC1yqE2yYclabtzoO', NULL, '2025-06-28 12:41:15', '2025-06-28 12:41:17'),
(513, 'LshXKicgoiDnIPw', 'hcheyanno2001@gmail.com', 'iwXZwUVhtuG', '0', 'L9BPGlkoVteoQYmYHRkH', NULL, NULL, NULL, 'YwcydXZX', NULL, 'Zimbabwe', '$2y$10$YKUxkFjsIJQyYYZa/9Unp.q9TtaHpyqdOSLdXtxmQiCvHfxaHZbN6', NULL, '2025-06-29 03:26:08', '2025-06-29 03:26:12'),
(514, 'XniucbpidX', 'valboniuh11@gmail.com', 'gLfpuYrxhm', '0', 'Ml7ZuXeO6gmAGN1O7KRD', NULL, NULL, NULL, 'lTJEazeyOpUaxQl', NULL, 'Zimbabwe', '$2y$10$vX5lCdf97Civ9q2WNp.TtOFKt9wpCWLaG1jIWgZIpgFHbWo1NZPN2', NULL, '2025-06-30 00:57:57', '2025-06-30 00:58:04'),
(515, 'MTPXWLyWZMY', 'annitcarrol1999@gmail.com', 'uWUVEfgtRdZQL', '0', '796SJkTlTT6uhJrIBXa0', NULL, NULL, NULL, 'elOTLJWTbUnMs', NULL, 'Zimbabwe', '$2y$10$1OrOuPguZuMTo.Txc.ef.OVne5oObYr88vlfUgTr87nBRnvgqyZG.', NULL, '2025-06-30 16:10:39', '2025-06-30 16:10:41'),
(516, 'xrjkqlfyJzge', 'dmarshoh5@gmail.com', 'DtrNbJRHfXRrHJv', '0', 'YsmVfGjMMY0kASCgdh2J', NULL, NULL, NULL, 'SkbEZKze', NULL, 'Zimbabwe', '$2y$10$gR0U3VcTd2A5WiKkvbppk.l7YHzkw/TYlmsWOl5H6V.Zdgl54ycm.', NULL, '2025-07-01 15:02:49', '2025-07-01 15:02:52'),
(517, 'PUIjVAoyHsjvbA', 'ffloresvs1980@gmail.com', 'ykgbozAskZwlM', '0', 'TpGX6V9tz0Ph6ntpivNd', NULL, NULL, NULL, 'mESQzowhaHKWDi', NULL, 'Zimbabwe', '$2y$10$hxl3R/p22BzERR1NTImuh.J2MWCjfsj49T8BYDG.vKXQxN.1rlAuK', NULL, '2025-07-02 17:30:10', '2025-07-02 17:30:18'),
(518, 'SNodzybNmBbXHMW', 'cindysmalls611643@yahoo.com', 'GLQkrZDZZUhRpf', '0', 'nH9ue0vPsidIw6VWYU84', NULL, NULL, NULL, 'mMOsscvRQqzjQ', NULL, 'Zimbabwe', '$2y$10$8RtJvpR5wcc0quTXmSxz4eMOrS7u.NwRUYkf406EbBUOrJwVfU9s.', NULL, '2025-07-02 17:34:11', '2025-07-02 17:34:19'),
(519, 'YRJGUbqnfF', 'lucasmatt1999@yahoo.com', 'aNkfYTXgihiiml', '0', 'FaQKARIDmcLAX2clXbi4', NULL, NULL, NULL, 'uGuHvTOOC', NULL, 'Zimbabwe', '$2y$10$Yqp9onlUs9ii1wEQex7QQOa1ZPNhCd9uyLB/J2oItvJXS/yKar/.K', NULL, '2025-07-02 21:14:45', '2025-07-02 21:14:50'),
(520, 'VojQcKIT', 'ecimahelivas50@gmail.com', 'mDQXwchBRuMD', '0', 'Jenx28JPmDBVnzWiU83l', NULL, NULL, NULL, 'YWgkJpCPt', NULL, 'Zimbabwe', '$2y$10$t7qO3ujyW/GaJvEKdEtgMOBEflEq.Wpdl8VulX71MCdQTKSp6x.DO', NULL, '2025-07-04 14:02:30', '2025-07-04 14:02:33'),
(521, 'EXvGaDeFFWEFXVW', 'igiyuzoma911@gmail.com', 'wCBqEPna', '0', 'clOF60W3HHllXhgsa1pc', NULL, NULL, NULL, 'pIwtdvokfJcb', NULL, 'Zimbabwe', '$2y$10$jxNYhLF3Muf1mqKa3VO5buZ/xPc3ssm7jhucv43fgZUzKYkm6AP9C', NULL, '2025-07-04 20:12:23', '2025-07-04 20:12:30'),
(522, 'RNfGdnmuIzQex', 'elegegexa355@gmail.com', 'djbernLQ', '0', 'mrNH4k6C79BAA7718Q43', NULL, NULL, NULL, 'XIFKMtYuttxw', NULL, 'Zimbabwe', '$2y$10$dKvb5yBbUd3tCt9o5bl9KupnoRzkIc1haUUqa5N6sqwQoZJfg20oe', NULL, '2025-07-05 06:36:53', '2025-07-05 06:36:59'),
(523, 'WfFslgTAia', 'esozayej65@gmail.com', 'keVLBDrKEp', '0', 'Y3wtzK6tx9GsyOpkc4vU', NULL, NULL, NULL, 'CaeSIxoH', NULL, 'Zimbabwe', '$2y$10$YVIHidkMfWjgrVrqFzMCF.95nebdU8NJgZ.bF0cCfTxFD3t8vpaTC', NULL, '2025-07-05 10:23:27', '2025-07-05 10:23:30'),
(524, 'AOjHhCNXaP', 'johnmahoney14357@yahoo.com', 'BNUALpbHB', '0', '8EyHmSGHtyxEq4R9SGlv', NULL, NULL, NULL, 'qABGNwSeuNoM', NULL, 'Zimbabwe', '$2y$10$mCyrBYKsrzcpn5OVmaVAW.5LzMDn6haJkD4RN1fm8VziptNjAJKfC', NULL, '2025-07-05 20:09:07', '2025-07-05 20:09:10'),
(525, 'iwNTTzjDYwb', 'pekapivax60@gmail.com', 'PvAbKFsxf', '0', '2BMzPX836fq3XqfRDnz4', NULL, NULL, NULL, 'qLYLeFXKT', NULL, 'Zimbabwe', '$2y$10$CJPDpKaJwq.UEt0u8zHec.rgiidiqLFNPCOZlKM9vlTdcGn/pF/VS', NULL, '2025-07-05 23:11:06', '2025-07-05 23:11:11'),
(526, 'cwPqsfIajgqRIz', 'selbiv1980@gmail.com', 'FwSchNbiK', '0', 'qrEiM0U8ZgxuCUFpWEPx', NULL, NULL, NULL, 'MhaQwHaXMzrxXDx', NULL, 'Zimbabwe', '$2y$10$kxKae3ZUYb0Pb7IntBrJre5GvdguQJbcTAQYHGreHSRPdVSMl1tEW', NULL, '2025-07-06 10:49:54', '2025-07-06 10:49:59'),
(527, 'bidcGfFZO', 'geiake1999@gmail.com', 'ItUvWTtzKZuXM', '0', 'UDrIbO3dPixvStuGdbJM', NULL, NULL, NULL, 'BUIxoypsBhQWCNf', NULL, 'Zimbabwe', '$2y$10$9d8WwWpL3sl32nYc.f.qv..2ngYiAr8KcZQtvj2NkWlN7VVow/xqy', NULL, '2025-07-06 16:47:02', '2025-07-06 16:47:06'),
(528, 'VxgdHknRONJcc', 'davilaabigeill@gmail.com', 'SYgRMfbOrDY', '0', 'EzfAqSoI1AwN4Ow5uIDp', NULL, NULL, NULL, 'coEqQeYzQ', NULL, 'Zimbabwe', '$2y$10$YDDPQTaMn3gifw8y7PMV6e3uno7S5GK8C1IFWXngAOlTZ068dvnpa', NULL, '2025-07-07 03:18:27', '2025-07-07 03:18:31'),
(529, 'KgzcOBXqKB', 'errollshortno@gmail.com', 'pQfeAWvzyjdQCo', '0', 'P7zzh3u2F3dXZGIHVH7T', NULL, NULL, NULL, 'ZZQSYbUqoSP', NULL, 'Zimbabwe', '$2y$10$hWp7UOpcQ2htdC7T8YsAvug1l9oS19QaqCg2sDV77tQFa1L3hWDti', NULL, '2025-07-07 07:33:24', '2025-07-07 07:33:31'),
(530, 'XyekZqtWqolZ', 'rangelmelloni7@gmail.com', 'CVAGnMrNEciC', '0', 'sydprBtAD9VPxjUyfONJ', NULL, NULL, NULL, 'vgODAlgnADlupn', NULL, 'Zimbabwe', '$2y$10$cEfwzUGOt8vdquwQhErkvODX3Mo3giwYhC0FKB2YHmSpaFRwYcgK6', NULL, '2025-07-08 00:52:25', '2025-07-08 00:52:28'),
(531, 'vlBwGzQdf', 'bradsdaimon34@gmail.com', 'pEIRnfPdZBSeR', '0', 'E1k2NWZy9DsEYjWb6Og5', NULL, NULL, NULL, 'bUFIVnGUQm', NULL, 'Zimbabwe', '$2y$10$8N.eEkZKblLJYSzMZHzfVObQQYKe69FZgZHrVRyZezV2xhc2oBT4.', NULL, '2025-07-08 04:29:09', '2025-07-08 04:29:25'),
(532, 'nzIxilKaX', 'karverkerr1994@gmail.com', 'gmyveoXG', '0', 'bxnBeOISkKeRHyHLzhbK', NULL, NULL, NULL, 'fkpxxmxUll', NULL, 'Zimbabwe', '$2y$10$YmIi0Px4Bfc0PFzOK43OFeGTETRgTjZS10O4iWFZOdU4NIEgtwYfm', NULL, '2025-07-08 07:05:02', '2025-07-08 07:05:09'),
(533, 'LVrqLSSpLPg', 'calriln6@gmail.com', 'vYxHnzfKHkzLnOE', '0', 'YMR2pSgz3d6ihdKCZbKU', NULL, NULL, NULL, 'EsiUsyaRX', NULL, 'Zimbabwe', '$2y$10$kFmKNnun/q7LaUbiRQWW9O5jEmgvrvJFVESxiEdorpS5GJeT2xArq', NULL, '2025-07-08 11:20:09', '2025-07-08 11:20:20'),
(534, 'JLFYHPnqkRy', 'reichelv1987@gmail.com', 'ztGXVGzNNVNuQ', '0', 'vPvH672HIaPGLIxT2TXU', NULL, NULL, NULL, 'fmpTQIlgECw', NULL, 'Zimbabwe', '$2y$10$kp6z6BJgKaDJOMgHmMj4Keasc3yOvQ0aphYIX1P3DtkFuYnqzbLjW', NULL, '2025-07-09 04:03:39', '2025-07-09 04:03:42'),
(535, 'BvDmVIxF', 'tuckerandjelisati9@gmail.com', 'vioTYcHVMIgNFsi', '0', 'Wq5SamCPTAn9nKa6zJeT', NULL, NULL, NULL, 'FejvfhEJol', NULL, 'Zimbabwe', '$2y$10$IBpUljr9SAEhTubebaL.8uQOJ3/y6pDniwnFgw9Xoy9J0Rbe3MB4.', NULL, '2025-07-09 16:49:16', '2025-07-09 16:49:24'),
(536, 'ZsaFTtjOULZ', 'dogimotuz86@gmail.com', 'jHPPFGHXgedMK', '0', 'r30rXqftZqa2FTi3qkHk', NULL, NULL, NULL, 'sNPjQYgdFXeWIm', NULL, 'Zimbabwe', '$2y$10$kRrkY7H6n9.9nyXDpJG4HO1g56N2hYwZbxf6IiF.LXfjYU0MFW8Qa', NULL, '2025-07-09 17:14:50', '2025-07-09 17:14:52'),
(537, 'SzTYclUMPglDER', 'delaneilewis@gmail.com', 'LZgNoVHAc', '0', 'wfmikmwhNdoRva7ichzs', NULL, NULL, NULL, 'FcnNWOjRTJpuLp', NULL, 'Zimbabwe', '$2y$10$98RuapM2thId9GUuOuWdJeQZRXFxRaqGxLPbD0aLHKismeG9oKvEW', NULL, '2025-07-11 02:34:23', '2025-07-11 02:34:28'),
(538, 'gQMgpDCAvq', 'dmonroen28@gmail.com', 'NOCkWNPUuBTju', '0', 'wez1ERdugKZ8zLMHOLGS', NULL, NULL, NULL, 'VssmdlRTpAppH', NULL, 'Zimbabwe', '$2y$10$5bVIVEzE/tysBH6/.G2lF.R0cOd.1znUoCBdIiz.TgKgx9H5HCXd6', NULL, '2025-07-11 07:25:14', '2025-07-11 07:25:29'),
(539, 'xWjYCoCfLqChRG', 'olivasyolanda282900@yahoo.com', 'gMxevuIrAmoRdk', '0', 'jhNJyJxn7jn2pRKSSUZt', NULL, NULL, NULL, 'axygbEasVxNgb', NULL, 'Zimbabwe', '$2y$10$uJ9qjDk92frbVCaECHdK7.6GmK0690VTzzwCp4zD/XeAD9RNb6MT6', NULL, '2025-07-12 04:16:09', '2025-07-12 04:16:14'),
(540, 'DclSsjWLHWnfElP', 'uqeqawuq78@gmail.com', 'VWcUQuorGzyqd', '0', '8jZSzeLck4vAPEN23SWc', NULL, NULL, NULL, 'GaMqbbaoQNIxd', NULL, 'Zimbabwe', '$2y$10$3ofzzqgcjyN8ww1ATBfJXuSdeeYq1EsJOgmZrcwR0tK2jWaPTJunS', NULL, '2025-07-12 04:56:13', '2025-07-12 04:56:16'),
(541, 'raOVdlUVV', 'oberonjordane@gmail.com', 'vjRDyuRcZi', '0', 'Nf6Zy7E2bmNqbP43aw2x', NULL, NULL, NULL, 'rQSZiclGcr', NULL, 'Zimbabwe', '$2y$10$A8EmiQbc2jRJcyM1np1cL.Xz.JBY0i7qgVobV.tV1NuY5KH5ajCd6', NULL, '2025-07-12 13:27:08', '2025-07-12 13:27:13'),
(542, 'YhXqbEVmifD', 'vijaykhan670443@yahoo.com', 'rrDUguAPRohDbS', '0', 'iUgKWrkEYAbxXzjXbsfQ', NULL, NULL, NULL, 'DDlHJHeAUWjUWon', NULL, 'Zimbabwe', '$2y$10$rzMs9bibdkJIuW.txN.N0exgwAN77eUf/LnDv36Zti0L3VyERSv2C', NULL, '2025-07-12 19:50:12', '2025-07-12 19:50:18'),
(543, 'XTOBlVzTaiY', 'andersonjillian804248@yahoo.com', 'uIXIIUnXwpxMCDI', '0', 'jbV9kfWjbQngIjcgIdBB', NULL, NULL, NULL, 'BjxDhEhuOs', NULL, 'Zimbabwe', '$2y$10$BieOqaD88I.qRI/9dRKfxulepztCVUYWX/nfr6G2ZMujDHMv/VHf6', NULL, '2025-07-12 20:33:17', '2025-07-12 20:33:28'),
(544, 'htiWwfSGb', 'santokornbo2@gmail.com', 'VbbGXQdHSKlDe', '0', 'w6mP8JxqOWkZQ5ehGkWN', NULL, NULL, NULL, 'lfLGyAvaBkiPi', NULL, 'Zimbabwe', '$2y$10$frr7wmNEeplfeiTMyZS3wOVgXQWg6jiu.UBCg04BwdpPF5cKkXmtS', NULL, '2025-07-12 23:34:19', '2025-07-12 23:34:26'),
(545, 'jvhPnXIrrdJS', 'carrillocherilinb7@gmail.com', 'fbVHqkJMqSuo', '0', '7wVgUElVwaOy6yDpt5aS', NULL, NULL, NULL, 'DzdXqzZto', NULL, 'Zimbabwe', '$2y$10$dQEBLR8DK7adki1NnEo7TuFdqdDm7dyfkcyjYg4117vVaADpJ6qHS', NULL, '2025-07-14 07:24:03', '2025-07-14 07:24:07'),
(546, 'nerMlyFF', 'bobarnold599610@yahoo.com', 'glGnzWEWnawE', '0', 'bN4CUbj7NHiX2azbpRQo', NULL, NULL, NULL, 'POsIjSdxHfvCjG', NULL, 'Zimbabwe', '$2y$10$eEGxU9a1flULIGe5Cm9MKecfACSs.jsD1w.2QyMAePSCGEJKp36iy', NULL, '2025-07-14 08:07:08', '2025-07-14 08:07:12'),
(547, 'rvojaoMPwuWP', 'kingroslo54@gmail.com', 'oLRVCnxALJGqJ', '0', 'hac6ghNYpufpUJXK61yZ', NULL, NULL, NULL, 'HcRnzRynZtoXl', NULL, 'Zimbabwe', '$2y$10$HRjQF0a95Oe6lrvWYZSra.xjRS7WsGrkwJSdo9TYhQmMSHJA7cm7a', NULL, '2025-07-14 19:15:14', '2025-07-14 19:15:17'),
(548, 'IhbQQcvbHWwNNu', 'glendatw86@gmail.com', 'vFMQKmWL', '0', '6eShdhKo82rQ7Lexy4wG', NULL, NULL, NULL, 'MXyGxCqM', NULL, 'Zimbabwe', '$2y$10$LeMjqDqdptKnHz7ecOE/m.2S5IhIvOKhSAhyhCV1oQtziFIvTTble', NULL, '2025-07-14 22:05:31', '2025-07-14 22:05:38'),
(549, 'ELEcURjlYOGNTu', 'pizuvaba383@gmail.com', 'jsKaTGSCUk', '0', 'S8sm85CyTGAf61HqJYnn', NULL, NULL, NULL, 'FzXNEhcsElmh', NULL, 'Zimbabwe', '$2y$10$lQOB5a909j9OWuYasrZJZegM2iK5O71ehurlVW01KA6jxwGS6aTp.', NULL, '2025-07-15 05:42:54', '2025-07-15 05:42:58'),
(550, 'WSTfxmoERcxed', 'stiviramosv4@gmail.com', 'NISLugJKFr', '0', 'ZTjPewZx3a83Z3WxL6i6', NULL, NULL, NULL, 'NEvvvJIEwvvo', NULL, 'Zimbabwe', '$2y$10$Jn4NghH0njBTPmO7.Yev1.KDXb5phugg8UlEJgER/nft3fCeE8HAC', NULL, '2025-07-15 09:41:00', '2025-07-15 09:41:04'),
(551, 'DiIWjJEXXXfLn', 'owuniroluqub51@gmail.com', 'KIzwNqjnRxMoej', '0', '3n4sPbsReO9Gyn4dHwVW', NULL, NULL, NULL, 'riRFBqDrfxjc', NULL, 'Zimbabwe', '$2y$10$dG3QMkFFKrv1RY0PLeVB/.1PVpEGBF1uD/W1QQBYZnoXdyVv.8Y1O', NULL, '2025-07-15 11:57:38', '2025-07-15 11:57:43'),
(552, 'bIHSgwjELh', 'austingisleins@gmail.com', 'EeKvuaFeHiHEuD', '0', 'dzMHb34guM7JR0qkkK1N', NULL, NULL, NULL, 'fJnQtsEkknhd', NULL, 'Zimbabwe', '$2y$10$b86cv6gS1kJP5XtgVvvMHuRzQbR8t7S4cmuXpSn8O04Bhx1pt6Cr6', NULL, '2025-07-15 17:10:05', '2025-07-15 17:10:07'),
(553, 'CvavlReDW', 'oremimofaja996@gmail.com', 'YdHNyWRtnhN', '0', 'TcBqHE46vHlqPtp0c4nH', NULL, NULL, NULL, 'jGJuNxoJYYq', NULL, 'Zimbabwe', '$2y$10$Whqo2blgKoKeGQ8PvtjbauiRBBt5NioAcdp3cr2PUd.dFXLhXNaCW', NULL, '2025-07-15 22:54:15', '2025-07-15 22:54:17'),
(554, 'DnQBqzmUlGDsq', 'michaelscham198884@yahoo.com', 'OSrNXEHnbjPT', '0', 'lyYqsamafoVccJrdmGFA', NULL, NULL, NULL, 'SAAHFqohxV', NULL, 'Zimbabwe', '$2y$10$eFq566xB9/yf3iaw0MVnRuz62ONS3Mt6aZU5Ds2b3aRxZYQ5KQ9RW', NULL, '2025-07-16 00:08:08', '2025-07-16 00:08:12'),
(555, 'qoglhaEPlMPolCo', 'deforestvincentc@gmail.com', 'lpsqRjVtZy', '0', 'lqXMsuGrKPRiKXCvhmmQ', NULL, NULL, NULL, 'dncjwVBOQNoxfrC', NULL, 'Zimbabwe', '$2y$10$QdgOdWzTz40tEvbGy09jF.vMMit4c5l/7ZG6VFdEdJrtQm3O2tdAy', NULL, '2025-07-16 19:51:11', '2025-07-16 19:51:18'),
(556, 'AbpMxQeYShSFaik', 'markibdu2004@gmail.com', 'VCiAFcEQzWOLEIg', '0', 'lCcLdiV31YQ9vAZvBotZ', NULL, NULL, NULL, 'NUYCCZfavblvp', NULL, 'Zimbabwe', '$2y$10$gEroTnyXl0Io6NvmhhCBVu1VZczEcGL5Co9PhldTVR5uO/X3unT3K', NULL, '2025-07-17 03:56:14', '2025-07-17 03:56:23'),
(557, 'nilXnemhSLzShF', 'djaklincci1988@gmail.com', 'YzPEoGUTfVfe', '0', 'DWK6LKXrcI1IoLVJRHae', NULL, NULL, NULL, 'linfJONdt', NULL, 'Zimbabwe', '$2y$10$8yiag25giksPtns9NK/.N.ReF9s/8Ky6p0qe7aJuVOy4Ylhjmp/HG', NULL, '2025-07-17 16:48:54', '2025-07-17 16:48:56'),
(558, 'dwkgVaEhBr', 'tuwoqufafem244@gmail.com', 'dgSXCmZT', '0', 'RBmfNUUx9AoCcjFFw6mm', NULL, NULL, NULL, 'GvkafLRmPwYHBbZ', NULL, 'Zimbabwe', '$2y$10$V9KEVuNi.bsdY33jTE4eQOWt5gZ5k7vNiKu0CPYfPD.Dx1Lk9qtFS', NULL, '2025-07-18 03:47:35', '2025-07-18 03:47:37'),
(559, 'xXafMyNPWWT', 'hedleisweeneya28@gmail.com', 'HVFUucCUTWKjEpn', '0', 'J30Ho6RXF0P6L3JHcJTp', NULL, NULL, NULL, 'xEdcgQsi', NULL, 'Zimbabwe', '$2y$10$4IR9uasHB8ejY5l7MN1uBujdkFDvVvlJ2cE2fKoxO975ReLQME21e', NULL, '2025-07-18 08:13:14', '2025-07-18 08:13:17'),
(560, 'LwHqLyIWVMhewP', 'rbenjaminl1984@gmail.com', 'MrnYcnOggOFdLvM', '0', 'PtwMh2z11nerNWMKjmVu', NULL, NULL, NULL, 'ryfzhniViUcoFr', NULL, 'Zimbabwe', '$2y$10$ZpPeYQBfU96Kudmk/5YrK.piT4vOof9uTLHlRhbplS0aj5GrTwONO', NULL, '2025-07-18 17:49:55', '2025-07-18 17:50:00'),
(561, 'rVKkIFZDqNE', 'walisrahitch1975@yahoo.com', 'sbWqWVhmmu', '0', 'JnqbwolUNoCm3HRXBvPM', NULL, NULL, NULL, 'KNLUCjCPDLTder', NULL, 'Zimbabwe', '$2y$10$bUOqVjSyCrpra.BtSqU4k.YdbFLJKdaZ28CFxgZ6OtLLGNG9QyMdy', NULL, '2025-07-18 23:01:22', '2025-07-18 23:01:27'),
(562, 'gdNVSIdNZJsnmUi', 'tehufinube01@gmail.com', 'lJgeGLmTb', '0', '9W5uIKMDdkiDdQGxys16', NULL, NULL, NULL, 'cLWZceqRKF', NULL, 'Zimbabwe', '$2y$10$4KzcoW5C6rMM1fOfqNzzjOJmd7c/qQOuJjtHQoSTeFoQEfovvyZsi', NULL, '2025-07-19 09:44:06', '2025-07-19 09:44:11'),
(563, 'FbkoWukFVRbt', 'royselena620247@yahoo.com', 'jOKIraSRb', '0', 'lHUJPuShnVgzLPKT04uI', NULL, NULL, NULL, 'OAlXrwFKG', NULL, 'Zimbabwe', '$2y$10$1WhJyJFol3BeS8Cn9jIMfuOaZdXMgwQIEQhCZYhWGBGpHNuoieLT2', NULL, '2025-07-20 02:28:40', '2025-07-20 02:28:43'),
(564, 'oqTdtAatUJzfaso', 'greerdilbert37@gmail.com', 'iZTHQwGUKaR', '0', 'FbU93SELKNJzxeBqKBUO', NULL, NULL, NULL, 'YtVxwQGGZ', NULL, 'Zimbabwe', '$2y$10$lXh5Mg6WR8tfo8cqPxTWCuHESTIiDD9Pb1P815n9hJme0UGjeZOHK', NULL, '2025-07-20 03:07:26', '2025-07-20 03:07:30'),
(565, 'aTrsSDVYmH', 'jatocanob803@gmail.com', 'FbJEmojrrK', '0', 'lqIdqGEdOjW5uGzxNUyF', NULL, NULL, NULL, 'ZjgyyEQiqaqLx', NULL, 'Zimbabwe', '$2y$10$0WHm2ofE2ZmGIhGV7kk7/eAHXUYXgK8WWTUbMe7N9fyp7SciNa.ne', NULL, '2025-07-21 00:09:12', '2025-07-21 00:09:14'),
(566, 'SHAMEEM HOSSAIN', 'mdshameemhossin1998@gamil.com', 'SHAMEEM HOSSAIN', '0', 'Q7iMAlZpfv9Q0QCXxJ07', NULL, NULL, NULL, 'Kaliganj', NULL, 'Bangladesh', '$2y$10$U55EooVhIoky/XlgrHkbH.kFcB8zJYQAc2AakRJD9hBwXkBJ9qz6C', NULL, '2025-07-21 09:56:02', '2025-07-21 09:56:02'),
(567, 'oVEWoUjhmTTuN', 'dyamenj54@gmail.com', 'ifeeQQmVpf', '0', '9ESaq0MGHEWH5yoUcQCX', NULL, NULL, NULL, 'symnMilHLfoF', NULL, 'Zimbabwe', '$2y$10$4JbTDQn/BdZ8jJ7l0PbaXe.CEUBIY9RvlKDhGhPke9ry.4TQxtKdi', NULL, '2025-07-21 11:42:43', '2025-07-21 11:42:46'),
(568, 'DSnipGgiLkrj', 'alisonfrey903047@yahoo.com', 'xeoyZMIN', '0', 'QlSNiodEmmFcrIVFVSfn', NULL, NULL, NULL, 'DZzTPKbadQnfwVy', NULL, 'Zimbabwe', '$2y$10$.gmA19zOuyOkGmqLaPpGKOWd8HY3c/swxzyacy1K6OfcDyW49U.ba', NULL, '2025-07-22 12:32:25', '2025-07-22 12:32:30'),
(569, 'vxFTBpGAFeEz', 'cuevasdjerardx44@gmail.com', 'tUWxsAdegAzQzs', '0', 'Muwlt4cpqMpLYOFne7Er', NULL, NULL, NULL, 'LKPQIWDbUVq', NULL, 'Zimbabwe', '$2y$10$uLkS7CEZeMTb73fkn1TEaet1X0bCLeKhpzx6pl.gKf6lqEx6YKjoS', NULL, '2025-07-22 22:38:17', '2025-07-22 22:38:24'),
(570, 'BJZOtrBt', 'guerraflayerdw2001@gmail.com', 'krdYLJpgwaTarSx', '0', 'u4BFPmZL5BRHfq45QOWi', NULL, NULL, NULL, 'ekCUJtJUXw', NULL, 'Zimbabwe', '$2y$10$g1oWXjnUsUpWcE0J9353D.j5BHugSAaFenvoWXqjQrpCmDKGonm/O', NULL, '2025-07-23 14:41:51', '2025-07-23 14:41:55'),
(571, 'FzfdOMPjbi', 'stemperansej1@gmail.com', 'UuXnlovnjmhVFa', '0', 'FSW9gnMkb5NSsIvCZQch', NULL, NULL, NULL, 'LlRgZWmPwCOZ', NULL, 'Zimbabwe', '$2y$10$RHMiWuIZn934J2cIggjJOeX.T/NGylSNMZbHNjedezlOE88q.ALfq', NULL, '2025-07-23 18:07:25', '2025-07-23 18:07:28'),
(572, 'MlXjFFtl', 'ujupuqabilor14@gmail.com', 'QSGnZzlxxPZaCCh', '0', 'JqYFxRPpkJaop3R0TR0J', NULL, NULL, NULL, 'fvSPQOCUNPDU', NULL, 'Zimbabwe', '$2y$10$/ebLu5Q/oQADMp8zFZ7jIOQ/pQPBOZRBNFUepHSFhnarEOWDCsi6a', NULL, '2025-07-24 04:45:15', '2025-07-24 04:45:19'),
(573, 'UzWLBxqwe', 'gentryaelfheiruk73@gmail.com', 'lQvXqHRFbHqBsSi', '0', 'DF3OJxWvqizyUMMnxlth', NULL, NULL, NULL, 'ksAAzOEtZ', NULL, 'Zimbabwe', '$2y$10$EP461iym8QN3RbSOhaxmeeCi9bdmRUdYO/CEUxC3eCgzGmP4pL3FK', NULL, '2025-07-24 19:24:24', '2025-07-24 19:24:34'),
(574, 'iMonZeaMVdhFhI', 'eisenbergbrittany703167@yahoo.com', 'LjqDlYLvAZXEkIE', '0', 'dm7OynpyCweDVx079VGd', NULL, NULL, NULL, 'IIoEbWCRHkFd', NULL, 'Zimbabwe', '$2y$10$a9KXc1.Fi3u6fNP4AusPWuH6KLD7pcwjpeKdsA10RiGKK5u9CZGty', NULL, '2025-07-24 19:44:31', '2025-07-24 19:44:34'),
(575, 'WjiQqzKB', 'collinsrobin478308@yahoo.com', 'ZggHIthcNcow', '0', 'WHmMvvg1CEAoQizQXHiI', NULL, NULL, NULL, 'TQSDPSAhyDh', NULL, 'Zimbabwe', '$2y$10$x0ZfkNWDUaPZOGCLefqb9OXnaejeXEimwet1GLGIzKqUPlW/L9CB.', NULL, '2025-07-24 20:28:18', '2025-07-24 20:28:21'),
(576, 'JSmmfQrPSaqAq', 'axoxohuni632@gmail.com', 'cexzaUDiH', '0', 'qE57r5ZgsWe4va3Plfsu', NULL, NULL, NULL, 'mFPmthUlx', NULL, 'Zimbabwe', '$2y$10$ouTt8ZDAYnVc7QYiZcWqIuzPaAZQjLzrjCam10ck2hg/h5YxNocLW', NULL, '2025-07-25 13:11:51', '2025-07-25 13:11:56'),
(577, 'DBjTAwScGjbif', 'larinfmv6@gmail.com', 'HPlweHhkcQFOB', '0', 'TMJtftOwAs9Kl1ECZ7eu', NULL, NULL, NULL, 'YUIKceUrLbr', NULL, 'Zimbabwe', '$2y$10$fqVBXzBmpj1CicLtaK5n/.qC5aZeEGVx9r5bqZYSSZgn0YDBh9/l.', NULL, '2025-07-25 13:48:10', '2025-07-25 13:48:13'),
(578, 'XQnjtyonf', 'tinupila908@gmail.com', 'QuPwBciNshQP', '0', 'z2mD174SmWgB3I3dnEDJ', NULL, NULL, NULL, 'CisEzQqmDKEF', NULL, 'Zimbabwe', '$2y$10$OJRQ1lUIVn27IfvZnAvoS.blMKEU3an7zBDiTEFIw8ERxGrXfTHKG', NULL, '2025-07-25 23:06:24', '2025-07-25 23:06:29'),
(579, 'VipaMtCxJggOaD', 'jihozusom25@gmail.com', 'tpoqsCUGqXdaozp', '0', '8v5xfHDZM0WdTYRgPjFv', NULL, NULL, NULL, 'mTukZQOgvF', NULL, 'Zimbabwe', '$2y$10$5IWmBKxse2B6ID8x0aSdM.vaREj3SqfwKxDG/dKXFDOk/nTk1x8he', NULL, '2025-07-26 06:49:11', '2025-07-26 06:49:16'),
(580, 'lZdxRzCWPqIl', 'luhifexovag21@gmail.com', 'vXIBMzif', '0', 'QEOJLrzpQBZ1tCcbwT6R', NULL, NULL, NULL, 'zGXihicQB', NULL, 'Zimbabwe', '$2y$10$E6vktD4lEwxHDWdjw3iaYu5CH9MyvX9dGBButGUB72.qAlgaCzU1W', NULL, '2025-07-26 11:25:00', '2025-07-26 11:25:03'),
(581, 'NPYULADNaWzPHyi', 'stevesuzanne892195@yahoo.com', 'QhZlzSDJssJEi', '0', 'DC0hH93Lw8wqVDxf1Cn3', NULL, NULL, NULL, 'UfphiDbktlg', NULL, 'Zimbabwe', '$2y$10$/HFwsVDRm5njkdKiPu2Am.AlCLpeeQldut0tOUAR7YPckZplWjYeG', NULL, '2025-07-26 14:47:37', '2025-07-26 14:47:43'),
(582, 'IBxdReNgUdJsgPo', 'eyuyocesin48@gmail.com', 'YLedQQYzEKKRTpn', '0', 'ZvIxCYvXva8s0Scco1zr', NULL, NULL, NULL, 'mKGWNnaqxJ', NULL, 'Zimbabwe', '$2y$10$tDoIpSTSEP1AxDAiNdllCO4HuVYSgqSdUPcx19bawffmdEwZmIpR2', NULL, '2025-07-27 14:02:02', '2025-07-27 14:02:09'),
(583, 'gGNCNOJuhjG', 'byrdchakjv@gmail.com', 'dZosGQPXznEL', '0', 'Bq8CIQYD6JvOK4nrAwnr', NULL, NULL, NULL, 'jynlmtIpmVNDE', NULL, 'Zimbabwe', '$2y$10$4jnlOLhKdno5kJHMrBMIiuTr5pW3zb/zOlQ/V3k7SnmC6./CBk3.y', NULL, '2025-07-27 14:43:53', '2025-07-27 14:44:00'),
(584, 'EkMtVReQ', 'rrothnf99@gmail.com', 'ySKBSjll', '0', 'gxSnfrbRwcHxo3o0wUDL', NULL, NULL, NULL, 'RPStnFccF', NULL, 'Zimbabwe', '$2y$10$K2ikbWzK94rXEOBVXwc7.eykCB4OW27CUV9QnakjVAxIzBBkDPTjq', NULL, '2025-07-27 21:21:52', '2025-07-27 21:21:57'),
(585, 'GxLeMNDeZ', 'elsbetriley@gmail.com', 'GLantWlw', '0', '7u4BmrEVLPU3vlcVK2EK', NULL, NULL, NULL, 'bFcdqqFSzFRvZ', NULL, 'Zimbabwe', '$2y$10$HbIN6Wl0If5X8p2KGeVuvukJnBmvn3UFM3Jsl3wya89aSA30qPqia', NULL, '2025-07-28 14:42:32', '2025-07-28 14:42:34'),
(586, 'LcuDNHnAukPOiJn', 'hernandezangela202688@yahoo.com', 'sTmohwSWE', '0', 'LqcpFt01rJD98WX9LBGS', NULL, NULL, NULL, 'DfPWzKRwA', NULL, 'Zimbabwe', '$2y$10$UYcFjtoDBxD6WBiZ2acWr.yGj1chUFPcm9trhm0hOUgYxk3O3Ejgu', NULL, '2025-07-29 00:19:10', '2025-07-29 00:19:14'),
(587, 'zZvCOLlouTsFdh', 'gloreipg@gmail.com', 'IZXyJqzCgLY', '0', 'KniEti1RQJqJWn06gdIh', NULL, NULL, NULL, 'GLzUEgDsdTJrRo', NULL, 'Zimbabwe', '$2y$10$mfk0prIpCKoLi31gmH6J7OOmQr.WTZIX7bGnuAy6t2IDLtK2nj.ie', NULL, '2025-07-29 13:45:01', '2025-07-29 13:45:06'),
(588, 'mamOUOPdq', 'brandtkoralirm51@gmail.com', 'ABzmWVblzVNkK', '0', '0AI3RrjIPvyQo7NrkIKe', NULL, NULL, NULL, 'QtdlsTTnUtNOM', NULL, 'Zimbabwe', '$2y$10$MJAgklfMDCAMtlZpriFdL.jK6T5yN72zqnQXeRlXcHlma5DrQh7pe', NULL, '2025-07-29 18:04:14', '2025-07-29 18:04:18'),
(589, 'wFUZqvBvNdWnzKe', 'dbuchanankb32@gmail.com', 'IYwRHgRMCxp', '0', 'kBptnrhtYDhlXa90QOF2', NULL, NULL, NULL, 'yAnsbZmMXY', NULL, 'Zimbabwe', '$2y$10$rOFFjd3U8BVgoFZA7IeqNOEWN3aCtkCIIVEJjpBw1X9j/P7/Z21um', NULL, '2025-07-29 20:20:08', '2025-07-29 20:20:13'),
(590, 'AopAkKIOgSm', 'barjenk46@gmail.com', 'IkOmPksCnsFZoRV', '0', 'Oul5CEAdjRObAeHvetkl', NULL, NULL, NULL, 'jjceTmnegXKPeQz', NULL, 'Zimbabwe', '$2y$10$F9BhmyHp1OfxBNBU7jvbbef7gumLvkYah2nN/rmZnRdeK7F9Vu8FW', NULL, '2025-07-30 00:50:28', '2025-07-30 00:50:32'),
(591, 'BjYqwNUgdUMIw', 'jenningsheilis@gmail.com', 'OLiSkjBjOtkuoY', '0', 'SC4VbrQBMSS1uMTS53ef', NULL, NULL, NULL, 'DDwItcdERKcZV', NULL, 'Zimbabwe', '$2y$10$5B/GZ9QCwIWqicJ3k5Eh7OhdjH9SGVZe243QwmBU7.2yI0fuZZG9m', NULL, '2025-07-31 10:50:20', '2025-07-31 10:50:47'),
(592, 'uwlqvQRIpdoWKi', 'etilugopo719@gmail.com', 'MykCHOsqC', '0', 'dQHNWoE4Pht19QUxZOFi', NULL, NULL, NULL, 'teQvcIAapvbLpUF', NULL, 'Zimbabwe', '$2y$10$xO7tXN6YQZ4mkkCe6ZfrbuDNcF7cC3kiwCxbcSPSHL5ReclCgwnqC', NULL, '2025-08-01 19:51:59', '2025-08-01 19:52:03'),
(593, 'NNYzIirYpqA', 'aralfn8@gmail.com', 'jIqNfEMA', '0', 'YHyhwWbMMWBicxrx8JnC', NULL, NULL, NULL, 'GiAwGbsbQs', NULL, 'Zimbabwe', '$2y$10$s3lUCp9DxVAgbxWOdpGlcusRz5dhsCCxZFb0sfg1aOSRJg5oC/nRO', NULL, '2025-08-02 19:29:28', '2025-08-02 19:29:32'),
(594, 'BxxcRnPwLF', 'clemenaidj37@gmail.com', 'rORTomSsGJA', '0', 'qvPRWmLun02c8qHy40lU', NULL, NULL, NULL, 'FjZNnXTkSxxAS', NULL, 'Zimbabwe', '$2y$10$.tdvctUhZisC5ILq9ggNhusoT1ZdpP2ncPP5IRgD8DozHx.jN3mxu', NULL, '2025-08-02 22:30:15', '2025-08-02 22:30:29'),
(595, 'nRJyrhPK', 'merrittchristopher370061@yahoo.com', 'YvAkPJJtZXvce', '0', 'rmFANO9fPAqPcWtq76SG', NULL, NULL, NULL, 'aUPNCAVkEurua', NULL, 'Zimbabwe', '$2y$10$WX8RAb0ce6kU5yePlMg5pOVLhcFD7TsaujdikitC9sk.FpRr7WtQy', NULL, '2025-08-03 09:28:51', '2025-08-03 09:28:56'),
(596, 'baSdPwKAxiHskBT', 'ihozidav950@gmail.com', 'vuRdxhxxrEEDc', '0', 'f8wOXlxcQQAGBkOQbp24', NULL, NULL, NULL, 'oXxqYFpEnl', NULL, 'Zimbabwe', '$2y$10$LsuyLLFG2NqsUXBtIoZujeiFHPG/vXG2.cRSIV33.DkUPgse7ND2e', NULL, '2025-08-03 21:05:46', '2025-08-03 21:05:48'),
(597, 'Mfuehudwj hiwjswdwidjwidji jdiwjswihdfeufhiwj ijdiwjwihdiwkdoq jiwjdwidjwifjei jwdodkwofjiehiehgiejdiw jifjeifjeifwkfijrghis kwoskowfiejifefefefe futuretrackbd.com', 'nomin.momin+286s7@mail.ru', 'Mfuehudwj hiwjswdwidjwidji jdiwjswihdfeufhiwj ijdiwjwihdiwkdoq jiwjdwidjwifjei jwdodkwofjiehiehgiejdiw jifjeifjeifwkfijrghis kwoskowfiejifefefefe futuretrackbd.com', '0', 'ajtt9pcEwzqxqTdLdhJb', NULL, NULL, NULL, 'Mfuehudwj hiwjswdwidjwidji jdiwjswihdfeufhiwj ijdiwjwihdiwkdoq jiwjdwidjwifjei jwdodkwofjiehiehgiejdiw jifjeifjeifwkfijrghis kwoskowfiejifefefefe futuretrackbd.com', NULL, 'Tahiti', '$2y$10$536U03C/JJW/1Gzny2Xm0.cycqtlJ9ZANNDBTrQdlHEsItD4uzgIO', NULL, '2025-08-04 03:56:55', '2025-08-04 03:56:57'),
(598, 'DxCGtbfdn', 'kasoliho927@gmail.com', 'ghKymYYxCgR', '0', 'B78CUTxca8j7KSYnXSIg', NULL, NULL, NULL, 'peqYcXQLZg', NULL, 'Zimbabwe', '$2y$10$5wbsu/OkUa0UtUCTFiBbgeZGG.l0lFNwdscilLjH.WnW2nqmA.6nO', NULL, '2025-08-04 08:43:07', '2025-08-04 08:43:13'),
(599, 'prcTWWOVIfM', 'brownamy540675@yahoo.com', 'arkSHwKA', '0', 'vs7szhSNAQR2l5PHYG6K', NULL, NULL, NULL, 'wXMPetHMIorYicQ', NULL, 'Zimbabwe', '$2y$10$xsKXZPb63hYAH.v0X1ep2uEzIxtFOHFip7WsZJn7hOJS5jLcP.nlC', NULL, '2025-08-05 00:47:56', '2025-08-05 00:48:04'),
(600, 'EYBcLhfseCxLh', 'roskowells@gmail.com', 'ALxILGcuNsKxgeQ', '0', 'bQpzVGmWQkXGs60RBJLF', NULL, NULL, NULL, 'SHFccMRRzuDNP', NULL, 'Zimbabwe', '$2y$10$Ify.Ho30md.CVaMzp7ZnWuhfPsPlEa9um8YfVwNShGgHXZIGrPusK', NULL, '2025-08-05 01:51:16', '2025-08-05 01:51:20'),
(601, 'KwLAlzfW', 'uxasekune80@gmail.com', 'EXmxVuGp', '0', 'cH5RZsvWr0sih3gvEoo7', NULL, NULL, NULL, 'VQkDZpXfUfVZVyA', NULL, 'Zimbabwe', '$2y$10$wVj8qffsSztRuvTivAKg9ek9oG6M3zMjq3MNW8100BNZZ7//JK492', NULL, '2025-08-05 05:14:27', '2025-08-05 05:14:31');
INSERT INTO `users` (`id`, `name`, `email`, `username`, `email_verified`, `email_verify_token`, `phone`, `address`, `state`, `city`, `zipcode`, `country`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(602, 'PlHINscZQskZEvn', 'ocayiyiyu642@gmail.com', 'dnbAKIAZd', '0', 'yfn1IubB5Iw2Pp8soMzq', NULL, NULL, NULL, 'RXmHKTmLZvIZ', NULL, 'Zimbabwe', '$2y$10$GRbhsAo8fXehu249lBnWk.pxkGY4dmOgBsFiEd1h/P2nlREV1QzIu', NULL, '2025-08-05 08:24:30', '2025-08-05 08:24:36'),
(603, 'VtxnjwrJjLKd', 'rogersamy388912@yahoo.com', 'ESSJpqkeapiEwIF', '0', 'VaFRmPkuk3UZw3LK1WQ2', NULL, NULL, NULL, 'KwPOTsouqxjs', NULL, 'Zimbabwe', '$2y$10$zJWGLz0iOrbrNLQh9vUmOOiDQDNaTLEBMaF84c74uLs4eV7HZcBrS', NULL, '2025-08-07 09:32:12', '2025-08-07 09:32:16'),
(604, 'pOZThWyyLclacL', 'powupibefed99@gmail.com', 'kpXpQwGCMLtdu', '0', 'PV1mNq2aYoCbMkHpxYnA', NULL, NULL, NULL, 'DvuSUZawQpavkd', NULL, 'Zimbabwe', '$2y$10$.bS.ddnQ.tYT2BNpYW5CI.xgAPKyn1F/4PvJmhS7a41144vLJNEci', NULL, '2025-08-08 01:20:51', '2025-08-08 01:20:56'),
(605, 'DIYWXibuHERi', 'bowowala104@gmail.com', 'hJQJyQmzeTG', '0', '261NZ6tIVENirgltXaHX', NULL, NULL, NULL, 'jaNbZUkB', NULL, 'Zimbabwe', '$2y$10$pO/Ac4nCz1OZkpP2eZPX2.adjPNM29tbkN6n6VkAGT9lSQRC0B2A2', NULL, '2025-08-08 09:02:59', '2025-08-08 09:03:02'),
(606, 'BQbNoUNtdDf', 'kepegoqak523@gmail.com', 'leBHemVVsoBjbeF', '0', 'iR6Z2APpnZktrg2bXJV2', NULL, NULL, NULL, 'fSZBpDRk', NULL, 'Zimbabwe', '$2y$10$cGqhU4euA/JmfIcsZ/Kl7uVW2nn4s07/gfvWLrcWCIXTHTc8UX6kq', NULL, '2025-08-08 19:40:21', '2025-08-08 19:40:25'),
(607, 'taRrrphDIihg', 'rebeccaramirez880188@yahoo.com', 'vOiYypLXnqSK', '0', 'yA9uGvPcwmqcDPwQ7pdg', NULL, NULL, NULL, 'sAFisKsrhXSdNz', NULL, 'Zimbabwe', '$2y$10$IRX4dEmtL.hBZeySa730n.weZ4ZOeGHWxXRlNhBysntg83kUoK0A6', NULL, '2025-08-09 18:05:31', '2025-08-09 18:05:35'),
(608, 'OqhVGXrO', 'fehexinexadu43@gmail.com', 'tRsCBuLpj', '0', 'etm3E6jfX4wW3y5y3lUA', NULL, NULL, NULL, 'VyEeLvbcAZxZkBs', NULL, 'Zimbabwe', '$2y$10$BrHpMYod8QvWJ3yx17oRxuA1o1aXDDzy7NqaUlgs3FVtLeSVLBFNm', NULL, '2025-08-09 19:46:35', '2025-08-09 19:46:37'),
(609, 'JZqNdEZIin', 'greenbrian168355@yahoo.com', 'EXKxziAKHNEOT', '0', 'FMrOrxlxBRABzsFxki80', NULL, NULL, NULL, 'cQXstxof', NULL, 'Zimbabwe', '$2y$10$ldzqJD1ivy9iyKdDyDZ5IuQThR0r8lRZadgLAAN81JsoGzUHvW0Ti', NULL, '2025-08-09 22:22:40', '2025-08-09 22:22:47'),
(610, 'tLALWcgV', 'ijulayayavak73@gmail.com', 'EXFFnsTEPVUWVk', '0', 'cfpje3bpThiC9bbgZtAQ', NULL, NULL, NULL, 'pkRpXCNzgnAU', NULL, 'Zimbabwe', '$2y$10$9grL9w77mBrR.jUPs8OQ0.CGfq6IzN8J77thE/1/ja0Bw/OxGlcSy', NULL, '2025-08-10 00:06:34', '2025-08-10 00:06:37'),
(611, 'eITEWcCEklVNE', 'michaeldaugherty327975@yahoo.com', 'wCnAfclNCVF', '0', 'Z2TVsA12HElYHFdze485', NULL, NULL, NULL, 'VcfakCUBoyYmaC', NULL, 'Zimbabwe', '$2y$10$63grMPoRbQTUiQpoX0iBLeypyH.I/Hj/SWbaMvA.4Jr9ufzsD5ql.', NULL, '2025-08-10 05:18:03', '2025-08-10 05:18:06'),
(612, 'rUPJUpLSy', 'vovabozilus314@gmail.com', 'dikezohXEwUl', '0', 'DMbVKUoRe3Pd0riNDH6m', NULL, NULL, NULL, 'eRFueyyugwoH', NULL, 'Zimbabwe', '$2y$10$dg5MFZymVwdCVSBtiiqFi.QfW7sj83FCSpxHyPtfyjOCauSJhLYKm', NULL, '2025-08-10 16:03:44', '2025-08-10 16:03:47'),
(613, 'STWleJeZttFVFY', 'quxubefetiz99@gmail.com', 'FekpkgQw', '0', 'BK7pmaILhPXjVuIvp7Vj', NULL, NULL, NULL, 'czEdVzJGxaRMJlT', NULL, 'Zimbabwe', '$2y$10$QGR9D9s3OWQ0HbdBWmepJePacBT.Th/rB1TnTCIdUlXWyp4OU9vfK', NULL, '2025-08-10 17:46:51', '2025-08-10 17:46:57'),
(614, 'ZNJIroCLHYdt', 'shortgregory125722@yahoo.com', 'hQErtUQXuswzr', '0', '8KhDLTOzx17RBMP8dwby', NULL, NULL, NULL, 'viFkNHPLCCWofZd', NULL, 'Zimbabwe', '$2y$10$RcEfhRngaKF.U7FcOTGsY.bnqAAEtvcKCRvtBEfZCinCbvFaobES6', NULL, '2025-08-11 02:04:24', '2025-08-11 02:04:31'),
(615, 'swsFPBiCD', 'jolodeyamo168@gmail.com', 'RroxLlSY', '0', 'ZZwTlhaJreQxU5mpVeAI', NULL, NULL, NULL, 'xDOcxWWrU', NULL, 'Zimbabwe', '$2y$10$lFfw0T7VfaqhiLF11okP4u5HpUfOg8Nn9rSzr7p12gcwJuOyCU3X6', NULL, '2025-08-11 05:50:59', '2025-08-11 05:51:05'),
(616, 'KRhwdEFmvLg', 'ozorinizon73@gmail.com', 'uOzmtGjSSsGAtLZ', '0', 'gNToa2leAXWJ3h8vWWu3', NULL, NULL, NULL, 'nrTRwpnVKtR', NULL, 'Zimbabwe', '$2y$10$SnjIkcIRFSZipgNhZdOYWuOh7pAXmLoeq.mW4qgm6l40rMLTzwBZ6', NULL, '2025-08-12 11:52:08', '2025-08-12 11:52:14'),
(617, 'VlyuJxerpnpXYXr', 'nguyenerin946151@yahoo.com', 'kNrzhSZK', '0', 'iews2MYxQ9A1NQv6fzCe', NULL, NULL, NULL, 'ofuVCsBerIgYrT', NULL, 'Zimbabwe', '$2y$10$fcudTIEgviB/qC8lm5ISheBiEjEskmzXgzKnjzn0pbqSZTsKQDnL.', NULL, '2025-08-13 03:48:57', '2025-08-13 03:49:04'),
(618, 'zzWegIzhhkXE', 'hijineyuwa44@gmail.com', 'YBWoWhgIXU', '0', '4l6tGlAJfb4lOetklaak', NULL, NULL, NULL, 'ilGWGLhFTFUF', NULL, 'Zimbabwe', '$2y$10$2.2A4J0GA..Ed14qCK9.8eEFqjR1j0E.KY2ftYeajK2kukc3q6IPe', NULL, '2025-08-13 23:23:56', '2025-08-13 23:24:03'),
(619, 'tIuYZoflZEtL', 'raxozegosedi26@gmail.com', 'AHgNBvAqCymN', '0', 'yHxIUjG9yrYe0ULAz0Yb', NULL, NULL, NULL, 'fYOCdDYsGjN', NULL, 'Zimbabwe', '$2y$10$ebu4g44PSYLU4.fI5/k6fu11QvoAUGL70cp74s0RBfVUIf0aozumS', NULL, '2025-08-14 04:08:15', '2025-08-14 04:08:20'),
(620, 'PMWHwugbSNW', 'patedulow440@gmail.com', 'UEfVuEskw', '0', 'BNIxiI4SQyUC1xIrR774', NULL, NULL, NULL, 'YDrvLxfhTHGM', NULL, 'Zimbabwe', '$2y$10$xHhu6xEtwngS1UmaO2kjIu1b82TZ5tagTpYGThaN0FZy.tGqhqF/W', NULL, '2025-08-14 17:25:25', '2025-08-14 17:25:29'),
(621, 'fpPgKQiUj', 'etevugej28@gmail.com', 'TgLGzgNyxW', '0', 'PYrcYCNrphpBwzfmQo2b', NULL, NULL, NULL, 'gMjcfeXTrSpMKX', NULL, 'Zimbabwe', '$2y$10$cKQ8vxPYOJ1rQ.yJSJPEVu0sizMcEDI91um14RDZLwuNoqBGQWmUe', NULL, '2025-08-15 04:17:21', '2025-08-15 04:17:36'),
(622, 'GcrDXajnBlm', 'herschcarmen885611@yahoo.com', 'xygVwvooLbHRL', '0', 'FCSR01gHJbrP4sSY6lYS', NULL, NULL, NULL, 'DtnqPueoG', NULL, 'Zimbabwe', '$2y$10$RBlaYULEixbGvQmT6eErCO6ppCvhXFZKOc2uMG97P2sq5iiCXhuz.', NULL, '2025-08-15 10:34:08', '2025-08-15 10:34:11'),
(623, 'EzlnoNGVxmNIS', 'cuzofop300@gmail.com', 'iByGSiYDs', '0', 'CmTi3Jlh0E4Bceat5e0f', NULL, NULL, NULL, 'SQnpNFpR', NULL, 'Zimbabwe', '$2y$10$Wk1GDrSx1oq7bbCBkSOuS.l8zYJgjhgs1ol62VdyIGe7fzsmcfttK', NULL, '2025-08-16 02:49:08', '2025-08-16 02:49:14'),
(624, 'RNTWIpcRNZxgx', 'izayobese434@gmail.com', 'XvIRoyCiweN', '0', 'jqEPmI2qOgyBZkU5vEvK', NULL, NULL, NULL, 'QuzenmwxlAa', NULL, 'Zimbabwe', '$2y$10$4BPL/MTDQD/.q7yJ3Q7fiuogsm6w85JuDmwny9SUc/ko/nLw72w/u', NULL, '2025-08-16 10:14:32', '2025-08-16 10:14:36'),
(625, 'zXZxmmlnaxQsWxj', 'kozemeyiq752@gmail.com', 'FOcSeMDr', '0', '1xjkbu3gChm5prfZrYF1', NULL, NULL, NULL, 'MYzNJPAaZtLNQ', NULL, 'Zimbabwe', '$2y$10$Rx5QdgJB6LV9mR7ODFvz6eKmOXInLo8mZtzROCg4HL1bJisy69zmm', NULL, '2025-08-17 18:42:34', '2025-08-17 18:42:39'),
(626, '* * * Snag Your Free Gift: http://hcmi.com.pk/index.php?job5oc * * * hs=bdf0a41fb04e9ad1e9d7b756815c89cc* ххх*', 'paouqua@mailbox.in.ua', '0n2bxy', '0', 'hxnDm1mvDb2tz5n4KeaO', NULL, NULL, NULL, 'obxri8', NULL, 'Zimbabwe', '$2y$10$v21ooUyakGjfurTjrAmai./IwoEUCH/N5cbc5iiSYInmoodunuJ6S', NULL, '2025-08-17 20:53:58', '2025-08-17 20:53:59'),
(627, 'VOfBELlZRGXvoZ', 'azefisasowo953@gmail.com', 'lQcPJIRftNeV', '0', 'iYyi28gJkaZRHoNrHyOJ', NULL, NULL, NULL, 'jjZuiLkuBjLjOnc', NULL, 'Zimbabwe', '$2y$10$8rJTGuvZb9P9O9AQzcoGCeOY9deqq.z8NNH7iob5tzWdrYJCNZ6eq', NULL, '2025-08-17 23:36:00', '2025-08-17 23:36:04'),
(628, 'TcYduVyN', 'dulefeyakut33@gmail.com', 'qKYhciByK', '0', 'jSUEnRc0XaSCvjiv9xVH', NULL, NULL, NULL, 'fWTXfdxjWxKi', NULL, 'Zimbabwe', '$2y$10$.n03zfh3ZAzMbjjV90UlVO.2RmYECn0o1ryAZh2KVzstBxsWdm5/a', NULL, '2025-08-18 19:36:35', '2025-08-18 19:36:39'),
(629, 'EVcHFUmJGz', 'iwubehexu351@gmail.com', 'rVEJgKChdPRDx', '0', 'd4SChZ8DL5Ohj8myGVxQ', NULL, NULL, NULL, 'SxNROqZFL', NULL, 'Zimbabwe', '$2y$10$ygxMOvwiB6PQrm/mYxawsO27xJ8eMmUDe0PbN2QNRiKZYr4pkIh1.', NULL, '2025-08-18 22:04:06', '2025-08-18 22:04:08'),
(630, 'OfzObILWFrLvn', 'tamarasmith368101@yahoo.com', 'wKvoekLT', '0', '7FTjx0zFEXTaXubBsr2Q', NULL, NULL, NULL, 'iOWVboELcVrNzB', NULL, 'Zimbabwe', '$2y$10$la2wFFvw7J.aQi7GULHRsuo8bvXbpexuIlBacxIzLXkVwv0AklPgK', NULL, '2025-08-19 00:50:33', '2025-08-19 00:50:37'),
(631, 'jCYkWNGEowNdc', 'ferrelljustin1994@yahoo.com', 'cXfhttLXSai', '0', 'LKUEW8RkDa3WJ9iJ4Qpr', NULL, NULL, NULL, 'VquUENygQFR', NULL, 'Zimbabwe', '$2y$10$RtNuTOgC3cC/SXDu6OpC3uyZN/hRqdhDtpR57AqZ8HJUFRd4ggt8G', NULL, '2025-08-20 03:46:14', '2025-08-20 03:46:17'),
(632, 'lVVBkvTql', 'qopolami23@gmail.com', 'dLtbWMeoXnAkwBC', '0', '6qeaFiiDUQKDk1gc4jGP', NULL, NULL, NULL, 'dkRiYqeNpIkag', NULL, 'Zimbabwe', '$2y$10$FpEz9Dtpy0viPxnKKTh1veeab7qiZNXsRGvwws47sANeFLJ75RSGa', NULL, '2025-08-20 13:12:26', '2025-08-20 13:12:31'),
(633, 'VBfQvIplSlaSnfl', 'utahazo381@gmail.com', 'MOhvsvKmf', '0', 'ECGrx59sxkDojP75Z4KV', NULL, NULL, NULL, 'DJShpBHPzOHRU', NULL, 'Zimbabwe', '$2y$10$kMcNHEP1vLMweYZpzEB7IOzacNgBGNNwg/Ho5UvAcZYSbaIwRV7Hu', NULL, '2025-08-21 01:38:47', '2025-08-21 01:38:51'),
(634, 'buGHatwyTm', 'ajokoseq09@gmail.com', 'iiQjxdEf', '0', 'UrXWloW0R22eOo2tV7zI', NULL, NULL, NULL, 'wVltcdjjIaWRn', NULL, 'Zimbabwe', '$2y$10$X7NBWWJtgCHFXk0Vyijp0e2GAn9HmQACwvGxnDY0UEpGsn7PDkk96', NULL, '2025-08-21 03:37:49', '2025-08-21 03:37:54'),
(635, 'ouLnNronCQzLzbi', 'yfitzgeraldez@gmail.com', 'ObwWnuSdTZ', '0', 'yNwJb738lfeKJg5Gr956', NULL, NULL, NULL, 'ZdnaGuxDl', NULL, 'Zimbabwe', '$2y$10$xCJHOfoFt94Pf8/OKPF8tOf5W1fsbl9AYb8yUJ9ieOXYbtqjw7KZu', NULL, '2025-08-21 13:32:22', '2025-08-21 13:32:28'),
(636, 'JVsxpQhWZmscBSr', 'oveqawet24@gmail.com', 'GXXQidPsDJRPn', '0', 'Q5g75T82UvXglhGut2ax', NULL, NULL, NULL, 'ziDaPpuYoIP', NULL, 'Zimbabwe', '$2y$10$63fV0WJOqkFpSK7p0pIOYevBD4pC3o/Jwu6hg99AJI8RsJi8kPAPC', NULL, '2025-08-21 18:11:05', '2025-08-21 18:11:08'),
(637, 'oLsWGFWnqjqin', 'baqoman731@gmail.com', 'pWaRreDG', '0', 'WzdhXu5pF751BPbYNooz', NULL, NULL, NULL, 'mwfcMFkIKdkZHKv', NULL, 'Zimbabwe', '$2y$10$OmzZFY5H2x.ilKMFOt8RLeGcwrn8noidD1iJtlIPw7mhGrlt3VeMW', NULL, '2025-08-21 20:34:51', '2025-08-21 20:34:56'),
(638, 'mdCwRORzpQqun', 'goodwinshonag5@gmail.com', 'wDTvmtDopCrkvu', '0', 'xYl2x23aUoJiWqgwCy0M', NULL, NULL, NULL, 'eHcFLMiigNH', NULL, 'Zimbabwe', '$2y$10$C2ynIXhj8ISPC.7GWShDbOtB.hE82LJI27VHzV/RRdxrAOnVb5Sa6', NULL, '2025-08-22 18:07:54', '2025-08-22 18:07:57'),
(639, 'GLnsxZBkJtNWhYA', 'ufaqebubiwe908@gmail.com', 'PwjdKEkITidfd', '0', 'lXa15dJnJuVrCVThzu1x', NULL, NULL, NULL, 'JZPuQrxw', NULL, 'Zimbabwe', '$2y$10$sBEl7GgqAhM/UQFkdB8ZH.iYf3TxTtHdpeDzwQ4hbjoNaV4/mHgKm', NULL, '2025-08-23 01:19:48', '2025-08-23 01:19:51'),
(640, 'FfqkFhov', 'xozopusapeso59@gmail.com', 'lKuWMPlGbj', '0', 'jhGEHamIofqBtVIqKGbA', NULL, NULL, NULL, 'THFptPYvk', NULL, 'Zimbabwe', '$2y$10$WY0Msg5Q8edq0dqVeFDXUeybq//CdKFchOQDreM/OXVVzf02Crmmu', NULL, '2025-08-23 07:03:17', '2025-08-23 07:03:20'),
(641, 'HElNKhQc', 'umetite988@gmail.com', 'WRYiRoOkRt', '0', 'PutbCpOhezBhJgis3TCC', NULL, NULL, NULL, 'PJdHHvyQQIXtI', NULL, 'Zimbabwe', '$2y$10$5bVKEOKl8J2KPkcGXo2TAu6HLSyKMYqzF39GRCFo3Jig3LZELledm', NULL, '2025-08-25 19:15:34', '2025-08-25 19:15:38'),
(642, 'eVQXdomNvTP', 'hihosiboj56@gmail.com', 'XYXZsPoucaaEal', '0', 'rLpObfebEoTVsWgMmAqk', NULL, NULL, NULL, 'rzzZsYIZ', NULL, 'Zimbabwe', '$2y$10$KFbfIE6noCfVb4P4i2275ON8.6YkVoJ1BeuCPF0qkT9ONxB8G8Wje', NULL, '2025-08-25 20:02:16', '2025-08-25 20:02:20'),
(643, 'BHwNCWXuE', 'karonecihim480@gmail.com', 'DjuXwUZTJo', '0', 'cwvUzyrwiUEQQlmWe2Xt', NULL, NULL, NULL, 'MXguoyQZz', NULL, 'Zimbabwe', '$2y$10$ZsPVhQpBebQOEzWWoCEjeuhxCnJR6Rb1j8Oyl4CNO1GBW5gu3Br1a', NULL, '2025-08-27 01:08:48', '2025-08-27 01:08:55'),
(644, 'TmJmCIqPyBo', 'eputalut45@gmail.com', 'SCBUelDkryBNjg', '0', 'NSpE6orZ7dDbK7rObak2', NULL, NULL, NULL, 'tdoPsQFaA', NULL, 'Zimbabwe', '$2y$10$5n8.wQgXmFhHx8Fd9S2YbuLeTV6.Rtpj.x3McoW3BRLBut9IErzU.', NULL, '2025-08-27 01:23:59', '2025-08-27 01:24:06'),
(645, 'rzEikJgqXXdWCVD', 'avizuvi145@gmail.com', 'tHERwHIzyVUMp', '0', 'lLJW7ZBIigDIs9fvSUwZ', NULL, NULL, NULL, 'xTRcBmumSJBWs', NULL, 'Zimbabwe', '$2y$10$gP27/Q33u4sGeV44h3A8RusHuI/knbxLjta86gp8Pm2.BrXRNSeMW', NULL, '2025-08-27 04:19:45', '2025-08-27 04:19:48'),
(646, 'QFipZPsQLjnelHO', 'juxicovu93@gmail.com', 'HjbUAMkTSyfnKKA', '0', 'UAWJFL6VSTTwvlaMKktM', NULL, NULL, NULL, 'AlwFWMjQK', NULL, 'Zimbabwe', '$2y$10$MYn47MEKh8cdWQ0cQ.aDauFEfBoYAI1KyOXauQaGQv4HUx0rFrv02', NULL, '2025-08-27 05:13:16', '2025-08-27 05:13:20'),
(647, 'fySXahLfdt', 'dorisaguilarns61@gmail.com', 'CphtLXOVhjPKls', '0', 'nwanV6mx7WzVyMafopWc', NULL, NULL, NULL, 'yUsASkcxD', NULL, 'Zimbabwe', '$2y$10$tSsvcpe9CLJKl05cLqyjI.Bs2w7bvAfeIwpub6K4hPKzI.GSh2sAe', NULL, '2025-08-27 18:26:37', '2025-08-27 18:26:39'),
(648, 'sNAFtbCV', 'oqucepoj52@gmail.com', 'VxugcjrcchoCWd', '0', 'WiyyvOhY2lYM6zurFser', NULL, NULL, NULL, 'RwLUzsLpRB', NULL, 'Zimbabwe', '$2y$10$ipqXc/jaqfHNov2zQWzDEOCTT0kLfGrp6pQTEMdBSS7Bu1JQSw6OS', NULL, '2025-08-27 20:50:05', '2025-08-27 20:50:08'),
(649, 'pvKVkAjtzrrqWm', 'bevicimigib336@gmail.com', 'FgQxitXQAKllS', '0', 'c3cbEXxZMsaXvGR5gpws', NULL, NULL, NULL, 'UaMvggPYU', NULL, 'Zimbabwe', '$2y$10$UzbSCQlSwa9s3kaKkDxrnevNifgXEp0EAe11ZU9fWl9u67uDGlNI2', NULL, '2025-08-28 06:44:53', '2025-08-28 06:44:56'),
(650, 'euUGDRYMNnPnv', 'ihumuzucar85@gmail.com', 'RnEEfhejaa', '0', 'nuN6FRPdgOOrddYjH6Ht', NULL, NULL, NULL, 'SUVxtKlOKnAcEVB', NULL, 'Zimbabwe', '$2y$10$fMpluTl2tDcHApx9mv3KaeWE9KE/Y0noczefgQmaQmeLBtLz.hYBu', NULL, '2025-08-28 10:47:53', '2025-08-28 10:47:57'),
(651, 'EExlDTtTvKtX', 'wuweqala519@gmail.com', 'keIRexHPQPDDHIg', '0', 'gDhAf4VbVdyEvfdfj9RG', NULL, NULL, NULL, 'dZfoyUOnLvxyLz', NULL, 'Zimbabwe', '$2y$10$lmxDcoUcWgf3zEg4G0N7P.vqIM3LI3/rs/kQncAgF0G0K9qWEDmpW', NULL, '2025-08-30 10:39:17', '2025-08-30 10:39:20'),
(652, 'IIJnpTxVLW', 'gebediceq684@gmail.com', 'STFcxudKdzW', '0', 'GQXIHaqgXpG2Dj9kKPx0', NULL, NULL, NULL, 'iIBXqOOxS', NULL, 'Zimbabwe', '$2y$10$aTXjheJKWgSDZJzjJ0vYP.opLLODEU1y9ZxNW8ITCKfhuuY9K4ASK', NULL, '2025-08-30 16:39:51', '2025-08-30 16:39:53'),
(653, 'RxvxrWwfPsQ', 'gacuqoy818@gmail.com', 'pNEqkLFia', '0', '5R0qN152jm68Ut7c6ffZ', NULL, NULL, NULL, 'WXhjTKrV', NULL, 'Zimbabwe', '$2y$10$rBiHEtZbCpAqTZ4NuKF2.eyx7R1hBgZRbCFPKamIojofg/x410QKK', NULL, '2025-08-30 20:33:31', '2025-08-30 20:33:35'),
(654, 'PejAoufwYgZi', 'fojegacanam09@gmail.com', 'DSkQHjIEjWnrd', '0', '4jFdWGxT3bFMSzRJ2kdx', NULL, NULL, NULL, 'WVoIODPnql', NULL, 'Zimbabwe', '$2y$10$J49sfPh0P1F0QyNhXQVeK.e9tomP96BUYkThSih1n84n26EXdV8Qe', NULL, '2025-08-31 02:32:22', '2025-08-31 02:32:25'),
(655, 'DJdnZaTxalZVCLO', 'xugoyeqe756@gmail.com', 'gGsDBpuyfYjC', '0', 'ea4SUXM73por7kXjmgQm', NULL, NULL, NULL, 'LcIGpDiJDE', NULL, 'Zimbabwe', '$2y$10$mlIbEfxGDptX6HhC61/x4ea6CaXkdJw62LciLRynaY9HzrHOV7g46', NULL, '2025-08-31 19:57:54', '2025-08-31 19:57:58'),
(656, 'rGWBiazWTOQYcqV', 's8rpit7fj48zg2jyu@yahoo.com', 'CAVuyHYdvNJ', '0', 'CaeNasfB1zG46gcRlAFL', NULL, NULL, NULL, 'eGqQtggdp', NULL, 'Zimbabwe', '$2y$10$EduOw4TcUFOc6OQxuNn3EO2FFEMTHp7epM2V5ID4mEvumudfMDau6', NULL, '2025-09-01 08:21:09', '2025-09-01 08:21:13'),
(657, 'hMzaxskZlOjJfe', 'ihaviye467@gmail.com', 'dtzIcAfksvPiWa', '0', 'fZ1avWBJaUmFUF72Ymks', NULL, NULL, NULL, 'xwrIcONhGkfSgCJ', NULL, 'Zimbabwe', '$2y$10$6RRCjqo38MsjO0V78C02ou0MglUpvc..3/oOLNfD4Wo6rSKQ9sAUO', NULL, '2025-09-01 14:20:05', '2025-09-01 14:20:08'),
(658, 'pAbdpxKgLkEIeOA', 'otxguowqhn@yahoo.com', 'XRZyzWpdtIYaN', '0', 'Uyf2cJZRzD1M8im3vkDD', NULL, NULL, NULL, 'RMxmwynOmqDDF', NULL, 'Zimbabwe', '$2y$10$q7KLaFFDDQdILZCbKd5M4u9pBmFMKwWcTnBZkhSshGiogv3Zznclm', NULL, '2025-09-01 21:08:20', '2025-09-01 21:08:24'),
(659, 'LOvpkCGIMXETEW', 'vezosopixic24@gmail.com', 'HTagVUmhiqgAUt', '0', 'ZikaAGwIBIFSbZcmDoLl', NULL, NULL, NULL, 'ScYsqqCusgw', NULL, 'Zimbabwe', '$2y$10$S9L9lN0THWyITMONlzyYBOgaaWZzkb2sFuWZLpL0knvwIaveBZiJC', NULL, '2025-09-01 21:26:54', '2025-09-01 21:26:56'),
(660, 'vZzfWQcYOWun', 'beqehame914@gmail.com', 'AJVRYPORqdrRpin', '0', 'nwgFnGdK9sjgF6WHMY3s', NULL, NULL, NULL, 'qfqMknMoen', NULL, 'Zimbabwe', '$2y$10$9VxcNeG.BPaY4ZsqcZQbBOQfgHjA53oL6cTHTcfsscYJgbM/ANyny', NULL, '2025-09-02 03:29:25', '2025-09-02 03:29:34'),
(661, 'gyrLoYla', 'rituhiwasoc733@gmail.com', 'JWWuYFkm', '0', '6lYQ0i9rdxkcRYN0hXxn', NULL, NULL, NULL, 'KDymkZjQzojM', NULL, 'Zimbabwe', '$2y$10$q8xZi78huzmSje9KAfN5D.tIU83LcyZrEEC/S4LKCR6XTEstQns9i', NULL, '2025-09-02 05:32:56', '2025-09-02 05:33:03'),
(662, 'XaPIucEUSJe', 'nopohufuxej416@gmail.com', 'QuVwqVFySK', '0', 'KoK5TdibEFTHIiav1L2y', NULL, NULL, NULL, 'GyhsIXxb', NULL, 'Zimbabwe', '$2y$10$Uuw46aCXTGDQXWVWwPB1Aebep1J5jv4F5MPOFPBBvuZRjJ2wQiDxC', NULL, '2025-09-03 00:21:56', '2025-09-03 00:21:59'),
(663, 'SFwRTkbfuGxGw', 'utiseloyitij20@gmail.com', 'VcmWBmShAk', '0', 'm2xzrTitHVL84VKFbMzD', NULL, NULL, NULL, 'owdmFqtTuUG', NULL, 'Zimbabwe', '$2y$10$TA2GTmp3NDf/gSWiwE24vu/CDZKK7W9fP/hUM0if0a9PgGZ/JUGUa', NULL, '2025-09-03 10:38:08', '2025-09-03 10:38:14'),
(664, 'DTrrDQucSNo', 'unubahowij43@gmail.com', 'EhaqGjyLHjjRdTv', '0', 'LZohH3zS473vrfpyf58I', NULL, NULL, NULL, 'hdDLSbbEyXtrVMZ', NULL, 'Zimbabwe', '$2y$10$HGlUCz6GaHUKhvnamxFPquGSaSu5cdEXP5QY9qNQQWeDMMBhwkxMG', NULL, '2025-09-03 10:44:00', '2025-09-03 10:44:06'),
(665, 'AEfXqeJBYgnGSwn', 'hoxuboni83@gmail.com', 'aihvHrEZWmfBW', '0', 'E7ClRPJGlrqmab2MvN3s', NULL, NULL, NULL, 'zFwFtMGxBc', NULL, 'Zimbabwe', '$2y$10$.U4f02MI7.vBP4dsyAl1Fefh6zyjaeUKAZ9O/jo0Lb8kzCTjAiLj2', NULL, '2025-09-03 10:53:48', '2025-09-03 10:53:52'),
(666, 'KutJZiXkzWLWNy', 'regmwwaepwrotof9@yahoo.com', 'iOXrKTbJrADd', '0', 'NSPW56x1J8nWDDHY6Dlm', NULL, NULL, NULL, 'dIfZyZNuaqZTU', NULL, 'Zimbabwe', '$2y$10$XeT3lrMbREpoXXG9SwDII.MhWJFrQMGfY8SbKSK5XRjWaGxiALiWm', NULL, '2025-09-03 19:39:43', '2025-09-03 19:39:52'),
(667, 'vnWqOqBZoFh', 'avuqevone186@gmail.com', 'gZtIGkMhNzQMgx', '0', 'QkkEBeEpPkfi4pINhfCA', NULL, NULL, NULL, 'aeksnovLiuM', NULL, 'Zimbabwe', '$2y$10$eIQcLyuvwbBiI0nmIU9jPuW7qvwsJM42lMbCy1h4rrnvmUC9EkMDW', NULL, '2025-09-04 17:34:09', '2025-09-04 17:34:12'),
(668, 'frsasEZwon', 'oxikuziqu01@gmail.com', 'yURcpiINqTca', '0', '4cji24BNvmSRSsiNCpjW', NULL, NULL, NULL, 'BtMUaaaOVZosIeM', NULL, 'Zimbabwe', '$2y$10$nnQcTBQDvLK6pKh7x88l7OIhNIPN/ahk/7MxYB6fp2U0xWGPZLkM.', NULL, '2025-09-06 18:58:51', '2025-09-06 18:58:58'),
(669, 'DXRSvmAeCWrI', 'efuhedoja636@gmail.com', 'rDZWmadsB', '0', 'dDxMF7b1UiYi8FSO0iZj', NULL, NULL, NULL, 'fDIcKtmP', NULL, 'Zimbabwe', '$2y$10$pR4s//QbAZzmTACblceFxOrbgqfvdVtXF18ucp9SD1YwB9IwX80YW', NULL, '2025-09-07 05:53:17', '2025-09-07 05:53:20'),
(670, 'oaRWqrzCFmazDjh', 'heranot581@gmail.com', 'APiGIpPtKLpEnY', '0', '3TRXRJO5gTvYWksC8HoT', NULL, NULL, NULL, 'hYcOIJjmqeEQF', NULL, 'Zimbabwe', '$2y$10$00Un.YmA6MO6zdMi6NnKHeIMvxyN/LQXK0qxYQnaHyT/hFy2O7NIe', NULL, '2025-09-07 23:47:28', '2025-09-07 23:47:31'),
(671, 'QkEnGjZDqTZjV', 'afomufivik35@gmail.com', 'sbuMxGdwvanSQWN', '0', 'MiZSS9bBJDwlD0lweque', NULL, NULL, NULL, 'WnGjkupxvlnG', NULL, 'Zimbabwe', '$2y$10$oU0j6aBX6q1UbxAn6lUkxeMBntQ3i2g47yKk2kK39kk2S6LSynYFy', NULL, '2025-09-08 02:09:39', '2025-09-08 02:09:51'),
(672, 'ifJotVRaJ', 'zeyapobu228@gmail.com', 'tMQsnYfoVLqE', '0', 'dDmz1201XhXufYFx0ZRk', NULL, NULL, NULL, 'DwgBupyuTscE', NULL, 'Zimbabwe', '$2y$10$7WcAfkBrrgwl1R/hncq7DuwE.BbYDO3hPRGx1MBlPEQVHIwjAqqgy', NULL, '2025-09-08 09:32:20', '2025-09-08 09:32:25'),
(673, 'gMVNAHGK', 'owunuzaxa907@gmail.com', 'MjLxmYEoUikq', '0', '2soaClWWhdtdx5ExTTyR', NULL, NULL, NULL, 'UCGdCqIJbwKIanp', NULL, 'Zimbabwe', '$2y$10$pe4RnBHUFcSqkBx/IQ8BrOGRB9RZqldUoeM3h8phki4C1YcI3elbq', NULL, '2025-09-08 12:19:57', '2025-09-08 12:20:02'),
(674, 'HbNPHxphuFFQkqx', 'bonatoreg91@gmail.com', 'ViiRkmnDzQ', '0', 'skUxiRdtaB05u8QuspBF', NULL, NULL, NULL, 'QOXwhATCzCBKGQR', NULL, 'Zimbabwe', '$2y$10$AbxF7fG5FEjuet.PDpsQrOaSXK79I8d.LWJZZXEVmVWCA41iQp/Di', NULL, '2025-09-08 19:22:57', '2025-09-08 19:23:02'),
(675, 'GYRtguSE', 'gumopahaka16@gmail.com', 'IVAORJxDSzkLu', '0', 'UopmgVE9DF32TlDnTuKu', NULL, NULL, NULL, 'TOcZFzrGHEVy', NULL, 'Zimbabwe', '$2y$10$BJbELNSXcEI3EYXo/ROSG.8PeTTlUUOGsXuozJESllOxoPWG7l14a', NULL, '2025-09-09 13:47:46', '2025-09-09 13:47:50'),
(676, 'PgxkxwjCopIOs', 'thilgesxccygeegena@yahoo.com', 'yOJrQKMbkQqHN', '0', '5jTJq0pOYIOuuZGhcqK3', NULL, NULL, NULL, 'GjMPRXFxzdY', NULL, 'Zimbabwe', '$2y$10$CeJ9hy8JA3I2USWiXv5K1.SJbLal981LCHmbnJcvYc4Kp4xZymWDa', NULL, '2025-09-09 14:40:05', '2025-09-09 14:40:14'),
(677, 'WaDqlHYxVsGLYH', 'jupozizaca868@gmail.com', 'HjsfmJlBuwG', '0', 'riolSmo0ApHkaKmYGtl1', NULL, NULL, NULL, 'yDHwRduSf', NULL, 'Zimbabwe', '$2y$10$1OyHEDBIzwaljk8dlT1v/eoSEapvuZXx.5p.DDDRV/WEfVyD05rse', NULL, '2025-09-09 15:56:28', '2025-09-09 15:56:31'),
(678, 'yTqmKztQDYJ', 'zugoyuqu316@gmail.com', 'OyYKFyioux', '0', '1cz5XYVUAkL72ITE94Ud', NULL, NULL, NULL, 'gdnuPimTlkeHNiT', NULL, 'Zimbabwe', '$2y$10$5d2rK/8J.qZZOk8.LX1mlO/yz6a9Bot0Ul2J7f72FWiu77OeJzFKu', NULL, '2025-09-09 18:18:50', '2025-09-09 18:18:54'),
(679, 'njMDpezaceyQ', 'riwpflm4odgoa@yahoo.com', 'BHcdObViCeUa', '0', 'vz1uEhRf0orJngwRGlNh', NULL, NULL, NULL, 'IYUEdQCavzKtXz', NULL, 'Zimbabwe', '$2y$10$OPxSsDwjs6rVnZDVY8nH.eZF65.Y2ypwzddPFlM0Q4gG2VJ4Ef0ni', NULL, '2025-09-10 18:43:31', '2025-09-10 18:43:36'),
(680, 'OUWLOvgoUOrXk', 'fbrownr1993@gmail.com', 'NrvwCBttqRoF', '0', 'AIRKkIrJ2C3AWxcleGgN', NULL, NULL, NULL, 'lcsnwIgPEtk', NULL, 'Zimbabwe', '$2y$10$iXBDQRpO5XPVZIlTRFkjqeWZGRnUo5WAZ64FRYpTnq5B279Hk7GnG', NULL, '2025-09-11 02:13:00', '2025-09-11 02:13:09'),
(681, 'ZbiBSgzSdgCcIuQ', 'owelasuqide155@gmail.com', 'NeEfNRKWcBA', '0', 'nQEnit6I8Fxzl3imCvfL', NULL, NULL, NULL, 'xTXHcDcZmi', NULL, 'Zimbabwe', '$2y$10$7iaXhSePdjJtGiTJs056zOvbfNwqFYATjBb7ZFCRbKqIGUIWL1/0u', NULL, '2025-09-11 05:48:12', '2025-09-11 05:48:17'),
(682, 'CWoNZaxpYvfaiS', 'dabbaccionoat8x5@yahoo.com', 'ZBlivfjVLdYhb', '0', 'z6bbN3nGGnMaX4gFh9Lv', NULL, NULL, NULL, 'EiIgAsHTHJO', NULL, 'Zimbabwe', '$2y$10$56hUc7tACLdTpfiGnUOy4evuOGytgEwUi5JvTyzGANkAWHuDXbqYe', NULL, '2025-09-11 06:45:35', '2025-09-11 06:45:45'),
(683, 'AIxPFdkriz', 'xcslomfmndbhx@yahoo.com', 'pOYAahAwW', '0', 'mJKd1BnWrA7FReCf1QSJ', NULL, NULL, NULL, 'RDicklPGr', NULL, 'Zimbabwe', '$2y$10$8xYS.g/kOaJP9G4jTPR.X.YEy5UDM/Wbndv1bAY0XT32ZOue6cpsC', NULL, '2025-09-12 01:33:34', '2025-09-12 01:33:39'),
(684, 'oPZwaudmV', 'teyoripi803@gmail.com', 'GNQbMHnM', '0', 'pOW5TH4YNmz3GBBRkNDP', NULL, NULL, NULL, 'aGDeADKPmeXSNj', NULL, 'Zimbabwe', '$2y$10$bNibE74CId4GjHbRz4n3l.qcpwgQD40lT8FThajn6aF2WV5aQ.Vvq', NULL, '2025-09-12 19:33:34', '2025-09-12 19:33:40'),
(685, 'WekdOhFUcZfEKtK', 'gobugosedomo57@gmail.com', 'mUrkhWgO', '0', 'lBwb6YqspL0qeaZfsLmB', NULL, NULL, NULL, 'RrVPvieTru', NULL, 'Zimbabwe', '$2y$10$J5RYzy0oYGCqG74AU1ha.u22btI99UHX.GJ1Ca39M1AJPoHpMNLJG', NULL, '2025-09-13 08:34:43', '2025-09-13 08:34:49'),
(686, 'FQKHFUGcW', 'kojekwhl9blagrove@yahoo.com', 'VlfQuGjb', '0', 'WVXvFsuIttvm2KbxD8aR', NULL, NULL, NULL, 'CVIFnnJN', NULL, 'Zimbabwe', '$2y$10$1QZ4w2qXoF6ldz5pQY/vo.AVcU9ZwAvl9pV3O4VNJ1TePnAE3gCFS', NULL, '2025-09-13 16:50:30', '2025-09-13 16:50:32'),
(687, 'PCyiNmdrdcdoFCz', 'mwcybic6ijmxgr9e2@yahoo.com', 'AHWIcBZfb', '0', 'cxReFbzsjH0QjkviXxmF', NULL, NULL, NULL, 'OCPXPlkSRw', NULL, 'Zimbabwe', '$2y$10$LWtMF2ernSjiaZW2x/x6gOhHMEFrw1hKvisXA4Ghnv0bphiyqPS4i', NULL, '2025-09-14 20:04:07', '2025-09-14 20:04:12'),
(688, 'NAYUYUTY1734355NEYHRTGE', 'dzjihhuf@streetwormail.com', 'NAYUYUTY1734355NEYHRTGE', '0', 'ruoNs8mSyFVee5Bx3OsO', NULL, NULL, NULL, 'Madagascar', NULL, 'Madagascar', '$2y$10$d7itrRW.RRf5qtTiYj4PpOYU3FfZInV7q7ESi0WmPBCc74e26sMvK', NULL, '2025-09-14 22:10:31', '2025-09-14 22:10:33'),
(689, 'KHRWoEAJjmjlF', 'atitaposo89@gmail.com', 'MEjQSrTOy', '0', '7bFZeYp5yuGy6WclwTQe', NULL, NULL, NULL, 'ICUPmjxmtyWh', NULL, 'Zimbabwe', '$2y$10$7Lfcy45A3E.7vNVrGUnIye7c2kJKTWQ/lS/oujMM7D4kEF4W0d4Oy', NULL, '2025-09-15 11:24:06', '2025-09-15 11:24:10'),
(690, 'wIxZXJavVuPaHs', 'woyihoban76@gmail.com', 'OuALvRJlZzv', '0', '5eL2hxPARsKYqyVOyw3i', NULL, NULL, NULL, 'Cmnxmpjvng', NULL, 'Zimbabwe', '$2y$10$rQcylbYV42ik2wpNSSH2uuckiz7S44EyHatelD81bVRg5sMW6LLvu', NULL, '2025-09-16 09:56:44', '2025-09-16 09:56:49'),
(691, 'rLcMvdsR', 'atbrvrym1hfwhhg@yahoo.com', 'vAIKpfnWMpeSmsr', '0', 'TVm6u7sTgwBmSWVzWnmV', NULL, NULL, NULL, 'TVgrPZYAAmkyHk', NULL, 'Zimbabwe', '$2y$10$ke8N/OyELuQb8xklRIxhmu5fF5bzw.JvAivZy94gnr8hSA7ujGPsK', NULL, '2025-09-16 21:46:38', '2025-09-16 21:46:43'),
(692, 'QCOZCzIKQtl', 'lezevoqafa60@gmail.com', 'KGxElyxVKyGC', '0', 'lSwvVbj4Tcm8HaGdQBAo', NULL, NULL, NULL, 'izpgoZLOYWykZ', NULL, 'Zimbabwe', '$2y$10$4n58mMPADKf0L836VRkCUeS03xuQpEGVVAZm68JqOOsVX/9EzvV8y', NULL, '2025-09-18 00:07:57', '2025-09-18 00:08:01'),
(693, 'EQFJyRApmqps', 'irbxetrmtb@yahoo.com', 'xZwazHeZSgMTJQ', '0', 'la0JNLR8c0MmLcINyau1', NULL, NULL, NULL, 'pxKzTidTsJq', NULL, 'Zimbabwe', '$2y$10$XXCTQaJFQNOfXiuFIBt2iuo6.iTneNjQtgvRMa0TsmkYr4LUauhYq', NULL, '2025-09-18 03:27:15', '2025-09-18 03:27:18'),
(694, 'LlASmoJzb', 'ofisapide84@gmail.com', 'nDUvjJgrLfM', '0', '6vM7mPzyrjjUFEre5enK', NULL, NULL, NULL, 'WTHJOlgOXugq', NULL, 'Zimbabwe', '$2y$10$VsvhzM.5IEIefXHs79JFZOItLhBE/yIHIvfSYPTGkgIWSO2AXsAoe', NULL, '2025-09-20 10:51:29', '2025-09-20 10:51:37'),
(695, 'NJrLxajkvbzq', 'keqasoyi60@gmail.com', 'iDqwmbrioy', '0', 'LquJmYny6MF48MYitxQx', NULL, NULL, NULL, 'bYKNBXwVaXCe', NULL, 'Zimbabwe', '$2y$10$eamq93c.11vf1s5C/WNkn.6ZAQ9gxXhaZasoKQDBu24Ku0CeB7iLW', NULL, '2025-09-22 18:19:07', '2025-09-22 18:19:11'),
(696, 'RIPMRMnGDjra', 'deyemec878@gmail.com', 'oSQiTSgOim', '0', 'JURAtI0fPfwZ5lle76xa', NULL, NULL, NULL, 'GjuGYEoAjQRcFg', NULL, 'Zimbabwe', '$2y$10$VnuY2UONV7SLiFrrRTlXt.UwbARcFHqapTgKcQiJ8ClmsL1Wz8SuW', NULL, '2025-09-23 06:06:55', '2025-09-23 06:06:57'),
(697, 'Khandaker Mahyet', 'mahyet0007@gmail.com', 'Mahyet', '0', 'YkGedPSWfceMUr82vr73', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$j7KZOkQLlAZ0hm5QxJ8x4eNIPsuQPtNCKLZVa5eufPX2h8ocWg2oi', NULL, '2025-09-23 08:00:06', '2025-09-23 08:00:06'),
(698, 'wqdJuBWlwrRzADt', 'muhoneb033@gmail.com', 'soBTNpSgFlJYBj', '0', 'Oq9a4ZRIXvsbYfiFTKW4', NULL, NULL, NULL, 'ZtNlEEMsJNw', NULL, 'Zimbabwe', '$2y$10$hSqw1ixKGkfleImKelIpfOyMn.aIexJBaov/.Cxkz/tuRk77yPOOW', NULL, '2025-09-23 12:10:04', '2025-09-23 12:10:07'),
(699, 'WUgpjfzGqd', 'lobotusu80@gmail.com', 'IkSWbDtktaruJ', '0', 'eTcnDXFjsfDWaUTDHUnc', NULL, NULL, NULL, 'vvFwNbTermQJtMD', NULL, 'Zimbabwe', '$2y$10$G4uopGt7ZQf/anbtI/6FJOmtcEMMehamB0sRU0LZ28fZQiLWnoXaO', NULL, '2025-09-23 12:36:27', '2025-09-23 12:36:33'),
(700, 'DtdWKjBA', 'jehocico274@gmail.com', 'gFgqonxQdDocBRd', '0', 'mDDJ8HGthkfxv251CaJ6', NULL, NULL, NULL, 'CIpkTkONXFs', NULL, 'Zimbabwe', '$2y$10$G/W0rRV2zqOO/7eyJ3IR7u0u32W9ORKoruRXxmsRojZXz8bpv.Lh.', NULL, '2025-09-24 01:23:46', '2025-09-24 01:23:50'),
(701, 'Junayed Kabir', 'hanifayesha077@gmail.com', 'mr_khiladi_483', '0', 'OXpcQXzY6B276cft03i7', NULL, NULL, NULL, 'Dhaka South', NULL, 'Bangladesh', '$2y$10$JwYfQ8TCkZ2JPQk5MxQBluk360t5eTs6bLB2KRGIsazFv0owqiHVi', NULL, '2025-09-26 13:34:21', '2025-09-26 13:34:21'),
(702, 'QMbUNxUOx', 'iracoveyaga54@gmail.com', 'XCkQtkwaUc', '0', 'H2TzRX7gf1Wf1n0JXQh9', NULL, NULL, NULL, 'uaxITEHRY', NULL, 'Zimbabwe', '$2y$10$mK.o92VvOoNSfa1vca9nvub/2ZUKXRmMytVlTuJjEMmYFeMvPMbAy', NULL, '2025-09-26 14:04:39', '2025-09-26 14:04:43'),
(703, 'fYdnMyVlmQe', 'izesoxo125@gmail.com', 'RoRqvYWooqCl', '0', '8gvH7BnElvWVYvfCciz3', NULL, NULL, NULL, 'OAWkLfpYcWaKsZ', NULL, 'Zimbabwe', '$2y$10$l5Qp4zc0LbjzbN4neKNkVOTWT4KjgQDYEM3Ev.0WdODba2HVG//.i', NULL, '2025-09-28 12:05:26', '2025-09-28 12:05:42'),
(704, 'ubzkpHppS', 'cbrqysdxiwwyakqh@yahoo.com', 'zqPOnASU', '0', 'btt9uUhY43jKcuGLfqdd', NULL, NULL, NULL, 'kzJQvkmyBSC', NULL, 'Zimbabwe', '$2y$10$.MmvHukb1vjPBJfXD13MoOSpWETiY2/qzxzS.rQvy9ohHMyEhugNi', NULL, '2025-09-28 17:01:36', '2025-09-28 17:01:43'),
(705, 'AELJziOGobvfU', 'mga5b4bvhbvwisu@yahoo.com', 'JmVInhjFaFcJW', '0', 'FnSZgF2zXhgGb11Zj6f1', NULL, NULL, NULL, 'GMHrJnLMt', NULL, 'Zimbabwe', '$2y$10$Z7yWJthakplfopV9qKSCaeNYfYoj.0WrVdNqDLcjpjNp.58MQBUB6', NULL, '2025-09-29 07:13:09', '2025-09-29 07:13:14'),
(706, 'SDswxRck', 'wclbdup2fdt@yahoo.com', 'oWHwVlwFRzvQSLa', '0', 'kkB7x7D4FW0BSGQmww5o', NULL, NULL, NULL, 'NhnRkKEcCqGoh', NULL, 'Zimbabwe', '$2y$10$9quKVsNillIi2puUl6SzI.xAktDqgfsEctOvXXn97wR75ZZPwhkem', NULL, '2025-09-29 10:42:05', '2025-09-29 10:42:11'),
(707, 'TWTQUBcnXgU', 'xgr0gr6mrxajcbc@yahoo.com', 'EBVByOZBwCKMTnE', '0', 'hDCid5m0PEvedc1778AC', NULL, NULL, NULL, 'UzpZwqPcmlbKPbF', NULL, 'Zimbabwe', '$2y$10$b3J/fEx7SQGloQM3Z95qzO8ICT0PZXhekowumiKIJ3D0Qpt2TlL1O', NULL, '2025-09-29 20:59:52', '2025-09-29 20:59:54'),
(708, 'qTGBdabid', 'ibawidixin816@gmail.com', 'MyAuVGudDRrHNa', '0', 'qMpXPUVI2gbkep0xvhlP', NULL, NULL, NULL, 'iTEbjgLBiNnstl', NULL, 'Zimbabwe', '$2y$10$izhv6lfABl5AoD17wf8BFe7A1aGIkCMA/0/e/.owcn9tVxDw1CzG.', NULL, '2025-09-30 06:31:06', '2025-09-30 06:31:12'),
(709, 'Md Emran Hossain', 'mdemranhossain613@gmail.com', 'emran', '0', 'O9lnLjr6GEDDSxhi7p14', NULL, NULL, NULL, 'Sirajganj', NULL, 'Bangladesh', '$2y$10$kQZLs02nwcSMJjgOclBJJOkSatTwRXAzru2hd6uAQGYO69Xf8DmVe', NULL, '2025-10-01 12:13:07', '2025-10-01 12:13:08'),
(710, 'Noyan Ahmed', 'noyanahmed749@gmail.com', 'noyanahmed', '0', 'Gucxgcf2u656aq1xOxY0', NULL, NULL, NULL, 'Narayanganj', NULL, 'Bangladesh', '$2y$10$3DamkNo8i4ODpFDpjeQwJu.3Ibwuf7id17wQlD8aRgHcMuNcFrwDy', NULL, '2025-10-03 02:04:31', '2025-10-03 02:04:31'),
(711, 'Md Emtiaj Ahmed', 'mdemtiajahmed@gmail.com', 'Emtiaj21', '0', '6YKMtmc4Dzz35oECg7rA', NULL, NULL, NULL, 'Bogura', NULL, 'Bangladesh', '$2y$10$9Zftyl1g4inv.O4WmXkESOEW.Hv/4fUhFnOmU8BpyRZPtNn1OEcV2', NULL, '2025-10-05 05:59:23', '2025-10-05 05:59:23'),
(712, 'wpxJmxuEQM', 'eruhakok968@gmail.com', 'bwhmRecbE', '0', 'h7l3hqClai7g8Ej2926P', NULL, NULL, NULL, 'JuzsJWeeexROT', NULL, 'Afganistan', '$2y$10$jylQmlDEUYl7DYCjFwnqOewCiF5apuMKxA0Pf7SU9SFZ/FCdymNnK', NULL, '2025-10-08 08:33:29', '2025-10-08 08:33:30'),
(713, 'eYYwCCMMIdM', 'uhiwifoyec574@gmail.com', 'uPTmyeTdOmkq', '0', 'isWWri6DecNVPEHwojbm', NULL, NULL, NULL, 'UbHQeHRZUUcwjPei', NULL, 'Afganistan', '$2y$10$dUbC4T0ar3GrGF2ASY1AdeyGGSh0J.RR4whBRrrhBKU/h4VR3fYYO', NULL, '2025-10-11 03:49:28', '2025-10-11 03:49:29'),
(714, 'jlVRqEhcTP', 'badidenurici12@gmail.com', 'IProOcRuQCbfUewC', '0', '6ekHsUWiZMcNra9d1pfd', NULL, NULL, NULL, 'qjPntOzJI', NULL, 'Afganistan', '$2y$10$S2HR2Frk7neGBk2fBK61yOfTxgdli9dXXgtcr1RRMTbQYC1CG1cu6', NULL, '2025-10-13 19:01:16', '2025-10-13 19:01:18'),
(715, 'Lopoloifhidwjdwfefee fjedwjdwj ijwhfwdj wfiefwjdwd hwidjwidhwfhwidjiwj hjfhefjhwifhewfiwejj hfiwhfqwjhfqwiefgwiej futuretrackbd.com', 'nomin.momin+351q2@mail.ru', 'Lopoloifhidwjdwfefee fjedwjdwj ijwhfwdj wfiefwjdwd hwidjwidhwfhwidjiwj hjfhefjhwifhewfiwejj hfiwhfqwjhfqwiefgwiej futuretrackbd.com', '0', 'bpkw8g8UZIGfvvLi3lQL', NULL, NULL, NULL, 'Lopoloifhidwjdwfefee fjedwjdwj ijwhfwdj wfiefwjdwd hwidjwidhwfhwidjiwj hjfhefjhwifhewfiwejj hfiwhfqwjhfqwiefgwiej futuretrackbd.com', NULL, 'Bosnia & Herzegovina', '$2y$10$j8jYZVdwUfU7enJGWXCzxOBBgO3.pUUbt5r94hpWwBHQGB6HlruMO', NULL, '2025-10-15 00:18:41', '2025-10-15 00:18:43'),
(716, 'eTkoYBSZzxLy', 'betopeyaqa49@gmail.com', 'mHLwwYSFkqyqJEbW', '0', 'YGD6rTRWKXHTB44xfzHA', NULL, NULL, NULL, 'fvSTbhGT', NULL, 'Afganistan', '$2y$10$tiCtn6P4MWF.QHM8u3C91ut7KLT2Rf6A.ZpWlN/Vp1fDtZHnXTzvO', NULL, '2025-10-15 21:19:00', '2025-10-15 21:19:01'),
(717, 'Ovi', 'oviheda@gamil.com', 'Nm', '0', 'ajdcnpuSXVUvJKIAApmk', NULL, NULL, NULL, 'Chattogram', NULL, 'Bangladesh', '$2y$10$bEG/4JaTnXHJh8R8IlVcauazlTr8KmS/sVNo93jAw9/KKkYrJeFzi', NULL, '2025-10-20 04:08:39', '2025-10-20 04:08:40'),
(718, 'fRBXcpqFXcYjzJHPAlJarw', 'nineposi007@gmail.com', 'ChqfvPexqRLzKEFD', '0', 'OeIezYA3e7rrZuJ3JhAT', NULL, NULL, NULL, 'sezecZzUxXhwaaDHJKFwbo', NULL, 'Afganistan', '$2y$10$K1F9WXUd1zIrN8PFBIx/cevli4u5FjPYV0xgHffGRB9PmDcFzW89O', NULL, '2025-10-22 07:26:06', '2025-10-22 07:26:07'),
(719, 'Sirajul Mostafa Mobin', 'sirajulmostafamobin28@gmail.com', 'Mobin', '0', 'YQuBh6gfQ0tNi4fbvFa7', NULL, NULL, NULL, NULL, NULL, 'China', '$2y$10$KijtGUCYRjY0Df6iEmNOkO1rVacXmDbQWN.UbZC5aTJr7x1WSEtf.', NULL, '2025-10-22 10:26:29', '2025-10-22 10:26:30'),
(720, 'dBYrOtkwSFCvRlzbvnDBg', 'izuwacorovu891@gmail.com', 'dmuNWRPjJgukhdTSIl', '0', 'jeL5Rx04oD0sNKTevIB7', NULL, NULL, NULL, 'NnYIYbyMGSQItDvJaWACyxPB', NULL, 'Afganistan', '$2y$10$iGX5binITw10GzRsPcNUT.injimX.flg2UIOyLD78oD0es6W7g3SC', NULL, '2025-10-23 03:12:09', '2025-10-23 03:12:10'),
(721, 'Rakibul Hasan', 'rakibulhassanrishad86@gmail.com', 'Rakibulhassan', '0', 'ArxWvgCLHV8jT6wwH9MT', NULL, NULL, NULL, 'Rangpur', NULL, 'Bangladesh', '$2y$10$CGrKIyTysrrXzJL0VYV7vuOxhs/EW4uS/PuYZ185y4aV79./z3FeW', NULL, '2025-10-23 03:12:58', '2025-10-23 03:12:59'),
(722, 'slffPgZaKkStRQDSaVRN', 'leamvt2004@gmail.com', 'JbIaqWrJHKaRanczPbngc', '0', '80RCP6ulrIin9xdJjHjg', NULL, NULL, NULL, 'cksjjiFhXHESnDsj', NULL, 'Afganistan', '$2y$10$qpB3K3WY.OSbum/kUHEvRu8rxhxtpxgrFzZB0J6sL3ECP5S3zs/LC', NULL, '2025-10-25 15:58:23', '2025-10-25 15:58:24'),
(723, 'Mushfik Azad', 'mushfikazad2@gmail.com', 'Mushfik', '0', 'pAXhNc6H53H6XHNz8laI', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$xrUKIyIAOibpjqZLt9N91et1nQPR/zlqKuLsRkDfign.Uj8c1X5ga', NULL, '2025-10-31 08:35:00', '2025-10-31 08:35:00'),
(724, 'GYzhrEbendIwzVtA', 'oteluhet195@gmail.com', 'dFZIHvaWnPeQEIpennIJjboe', '0', 'i0TOfPzyAELYWqBokbp1', NULL, NULL, NULL, 'sslXNTHWZjFFiyPbmh', NULL, 'Afganistan', '$2y$10$tLFZ9TtKExQUDVrkJQN4A.olmKBVawj49hclkFkzxrKXUITkMpnL6', NULL, '2025-11-01 04:12:34', '2025-11-01 04:12:35'),
(725, 'Md Abu', 'abusalehshuvo0000@gmail.com', 'Shuvoakon', '0', 'i3uUkAtkes9XiXiYfGRb', NULL, NULL, NULL, 'Barishal', NULL, 'Bangladesh', '$2y$10$8CSNvjTHjju78MppmC3goeVQgxfSb9F4scLpcJ/3H2WKzF5kQi.uO', NULL, '2025-11-10 07:30:24', '2025-11-10 07:30:24'),
(726, 'Md. Sazzad Hossain', 'abir.nadia76@gmail.com', 'Arman', '0', 'uZRemW95aJofx6ehRoo8', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$r..R9KLHNUODoJJB3gyfQuw6nw59/K.WLwXwDGhLUfD5VZ1YgmswW', NULL, '2025-11-17 13:12:48', '2025-11-17 13:12:48'),
(727, 'zBmEPxRLQPtGvRbW', 'hayeqineke453@gmail.com', 'gLuJRvDQLWhgGbYUsO', '0', '1nhImBsuaeOcNnHa6iGK', NULL, NULL, NULL, 'RfbOBwITAMqPCIDyAU', NULL, 'Afganistan', '$2y$10$C8PiQBOnh8M8nrnDO1Si.OAQ5o61f0KQWrG5W6g5vixB3WzXpPXKG', NULL, '2025-11-23 13:31:54', '2025-11-23 13:31:54'),
(728, 'dGUymTDWobzQbGSe', 'ejijawiyoso223@gmail.com', 'EKragFoQvLmJnnfp', '0', 'cUnzYCuzPeOQmyqCrgxC', NULL, NULL, NULL, 'dHQNJeJSjnRPXUDUwfq', NULL, 'Afganistan', '$2y$10$n.EbbQRSi65vaxqDuRBHDOP5jRE1G9vBOxFhQIODGFTAVvYRCAwUi', NULL, '2025-11-30 00:34:54', '2025-11-30 00:34:57'),
(729, 'ZoqkDvHdROxNroxiSlqlp', 'mabelhinton24@gmail.com', 'rCKZMHVBpghvceFK', '0', 'AvSxAKhGGXOhItjDrks0', NULL, NULL, NULL, 'jeOZjCFTauRVgDiw', NULL, 'Afganistan', '$2y$10$PjjX9KwHDDO0Gp.pLc.rA.VpjxU1zKkBLGQ6gD835dIXWAlLZ/V.S', NULL, '2025-12-10 03:21:25', '2025-12-10 03:21:26'),
(730, 'JsbVlKyXaOHeNZIWYWUl', 'inosewuro16@gmail.com', 'rMkGpNaRbJdoLZapPo', '0', '97Z868QtoVyuDqN5sjPs', NULL, NULL, NULL, 'AOEbnOsJbniqhWLLqby', NULL, 'Afganistan', '$2y$10$VIgX.cEhAb9lEqRNkMfQ2eNDZMp8smB6/Oi7fLphEDQKf3I1toNkG', NULL, '2025-12-11 23:47:35', '2025-12-11 23:47:40'),
(731, 'A cho darim to f002 futuretrackbd.com', 'm.i.taxe.bandil.i.s@gmail.com', 'A cho darim to f002 futuretrackbd.com', '0', 'LrZ0Q30gbzE9E512MhZR', NULL, NULL, NULL, 'Beijing', NULL, 'China', '$2y$10$8R5uH8IxHx5o3IuqbL8Fe.dJ1iuytEF8wrpJCkmLdJArk2Yw0OrOG', NULL, '2025-12-17 03:59:35', '2025-12-17 03:59:39'),
(732, 'IPRapwKvuTgwhPwCKjcJ', 'orupafavubej90@gmail.com', 'IbEdzWFvmyqmuXelWASEuM', '0', 'Zhs5Y41hxQ3siSNXMw79', NULL, NULL, NULL, 'TPVXJOtCGuIwgKSwal', NULL, 'Afganistan', '$2y$10$dGwF1HOcRcSzzpGG6t8PW.WB/llJ4g01fh8j4Riwle2BiXZqUdGnK', NULL, '2025-12-19 03:23:52', '2025-12-19 03:24:21'),
(733, 'lhzYqdtHBGgHAoRWjsP', 'biwosoloqi45@gmail.com', 'bVCExseqBSpNSxPYKtesLHL', '0', 'fcPtJozLOfyeAcQLdJpZ', NULL, NULL, NULL, 'UYAYqnyOIukwUoFjKO', NULL, 'Afganistan', '$2y$10$QSLZ6k1jlM7leIVwresNpOolP5MfnXDS4hm/UYZ9aQNvtUeNAC1OS', NULL, '2025-12-20 05:10:51', '2025-12-20 05:10:54'),
(734, 'CXgZeRaSoMLhuhWsm', 'esaluyepac82@gmail.com', 'PCLjpgQrdXHBlPvvKVX', '0', '2WBFIzu1fkQGCc65WDGg', NULL, NULL, NULL, 'QMRJHdWoPNcOPGGaG', NULL, 'Afganistan', '$2y$10$qP5uuCjZZo4v.x7SkIDFbuX7yLNQvczS4BfWEnLc3pH9IieJ2dD4q', NULL, '2025-12-20 18:19:52', '2025-12-20 18:19:53'),
(735, 'ldHGsKYZlpHcPIFERqHwtwbu', 'averecumoza458@gmail.com', 'LDuEVkYGpuAIyHFS', '0', 'DPEAe5LAbYtem9l7Bgnc', NULL, NULL, NULL, 'CPpvYZSKNneTBBJUPDyiYZqT', NULL, 'Afganistan', '$2y$10$QkcqDUv0jACyq9Rr0Mrcs.UrWXrgCQ6y6Hjt6sqE5.IWtq3UMkTwK', NULL, '2025-12-24 19:12:28', '2025-12-24 19:12:29'),
(736, 'HaPNUpDeWWUSDMtF', 'besagaxo22@gmail.com', 'tauyyHDXMhlBiGNz', '0', 'Ef2KAwsXA5Y1UUm5XMVN', NULL, NULL, NULL, 'FQRpdBJxFqcUKBMogYNw', NULL, 'Afganistan', '$2y$10$0kmKyYB9wDheERSLaScPlelFmmisrCk7DplnR2VoMJKwXMNMANRye', NULL, '2025-12-27 18:26:31', '2025-12-27 18:26:33'),
(737, 'nBTOVKrsjdyQaPLhIfONfelv', 'po.f.o.suraf.u.c.u.0.7@gmail.com', 'dDdLGAGhqmHZFOJnefw', '0', 'D4nWhjR6Y4MT1dxOCmdM', NULL, NULL, NULL, 'JPEKRcUYAgODQwkVAXjhKi', NULL, 'Afganistan', '$2y$10$/k4GyrNI9lELhKyohLv7weBLiJ5IaoLsJbqLF8ppifa9bE2G.3yey', NULL, '2026-01-08 14:06:02', '2026-01-08 14:06:05'),
(738, 'TolgaLam', 'tolgacan@em1.thematinggrounds.com', 'TolgaLam', '0', '7Wfm2XB7dZAZjTZXiEng', NULL, NULL, NULL, 'Texas', NULL, 'Australia', '$2y$10$zA4HvunJ9wh/p6Ah1CkY3.Upcya0z8lfsvkAKytREWr.89cW0Whmq', NULL, '2026-01-09 12:04:21', '2026-01-09 12:04:23'),
(739, 'kvnlvKChSQzBeQYGuvqwzGj', 'w.uq.a.ce.w.379@gmail.com', 'MgMiaSMMEveYLjdSXI', '0', 'RaqEd9CIiVyVe2nCroBP', NULL, NULL, NULL, 'bTgHewUdCsgEduHCLPkv', NULL, 'Afganistan', '$2y$10$jueaZySKP7U8.3eAw0/cC.ogu9X3VF4hP1tvEDwKn8Uth7OJqPwBa', NULL, '2026-01-12 05:43:07', '2026-01-12 05:43:09'),
(740, 'VmeUfbAzNyhqdtOUHffapNK', 'va.ho.m.o.w.a.s.av00@gmail.com', 'HGTKgcPTuHghgqcCQJpgx', '0', 'jcPLtbQwCxlEnRa7hHR9', NULL, NULL, NULL, 'MlIdQbxqLuViJNqVscjjM', NULL, 'Afganistan', '$2y$10$CjzAURkO64QUGGHDz582YeR2irl8o5Mwvd.FiA584TYtNcSQxWBc.', NULL, '2026-01-14 23:35:39', '2026-01-14 23:35:40'),
(741, 'qjZekCnvzCWpTXLFOzKJTYD', 'je.c.obi.k.a.j.68@gmail.com', 'vaENBDbBkonNrKHJIgneHT', '0', 'PUDLSQNoyfVpFrvbiT0S', NULL, NULL, NULL, 'AbopZZsIRpNzGDrvazG', NULL, 'Afganistan', '$2y$10$GC/r6KuF04zJJxPXOqPlOOiDGRCCKfWwZr7mlZQIvOvMWxqO2xKb2', NULL, '2026-01-21 11:24:41', '2026-01-21 11:24:42'),
(742, 'Mechay prosika lopas k112 futuretrackbd.com', 'fa.erisarvoodoorn@gmail.com', 'Mechay prosika lopas k112 futuretrackbd.com', '0', 'fNf8bM4Cje76ngVtEBcs', NULL, NULL, NULL, 'Beijing', NULL, 'China', '$2y$10$9wn.vFk/2P8vHEHjvfwFi.AhEDINEkyovP24.tNSEcz07fNBJzUCu', NULL, '2026-01-25 12:50:16', '2026-01-25 12:50:20'),
(743, 'JlNOFZLJKYrwVgyOBHkVggN', 'wi.rov.i.v.uno.22@gmail.com', 'tKhpeRvOgZSpfpfSWfHBxWq', '0', 'TY2m7eFhjFwfbJVB5sB8', NULL, NULL, NULL, 'ENvHLfqBppFbjPiSjitSymmn', NULL, 'Afganistan', '$2y$10$ArZNfyP4SmmZbQR1auKut.Fy5u6Dy//ma9ol5zaub6EfPBfFBACH.', NULL, '2026-01-31 11:45:52', '2026-01-31 11:45:53'),
(744, 'EqmnGtfaassFmBaMRaYOPtMO', 'wa.r.o.s.ug.ik.14@gmail.com', 'bcnqXyEDCyqVDPIKUdzvXXB', '0', 'ARZnvnHtwCMjZTwNLPFG', NULL, NULL, NULL, 'CFDINHnOCFtPeeMSZCVIPOR', NULL, 'Afganistan', '$2y$10$4mtjK1isAHVsz3Pwf6bkyOJSlTTfsWaoonXv1IrOvk59THKxyS/ai', NULL, '2026-02-03 10:05:23', '2026-02-03 10:05:24'),
(745, 'qQOxRRnpNTonlXbszW', 'pi.muc.itel.452@gmail.com', 'UGksPgCLBanJTXlmCeLsHwxY', '0', '2O07OLu1viv3bWQkJZx8', NULL, NULL, NULL, 'hkBOMzLEwaoWnTgDxvbVe', NULL, 'Afganistan', '$2y$10$ZXTRcTFIe4hSWNK0qqdd1.uA0Pp5AGTnbhraLrT09aaMfHip02iuy', NULL, '2026-02-07 06:28:51', '2026-02-07 06:28:53'),
(746, 'kANiqYJwUACqqOwq', 'pim.ucit.el.452@gmail.com', 'GmcgyxmlfQaCakdxWOncp', '0', 'lMspUYrKD30bZxZq2Ib3', NULL, NULL, NULL, 'WXJjTLPvQzWPNhDPFuDhSL', NULL, 'Afganistan', '$2y$10$zHYnzn5LnKEgfiXK.aju0e8gYEpMhB3JRGX7jCjJwHu5OiA4av2Se', NULL, '2026-02-08 02:33:31', '2026-02-08 02:33:32'),
(747, 'Abul Hasam', 'tmsssunamgonjzone@gmail.com', 'abulhasam', '0', 'hLR27XSCebVy2ZiWehoz', NULL, NULL, NULL, 'sunamganj', NULL, 'Bangladesh', '$2y$10$5Gw8mzSXLx6zhg5vTwA3EOWB0S38qtJcy6FAQ0xTpHaO.Pnq4DU6C', NULL, '2026-02-09 01:47:53', '2026-02-09 01:47:54'),
(748, 'cCmxBLUWtbQCuChfwGAerv', 'r.o.k.oz.i.bet.o.d60@gmail.com', 'busLxeRNxYbGcJRQLCQ', '0', 'kx6YACm649B2jybno7r1', NULL, NULL, NULL, 'fCIwWprxySZUmjOnRm', NULL, 'Afganistan', '$2y$10$xQ5.yv3F8J3FFWGK9fONHu8NY4FONVvGZJRSZfYKz17BRh2yLUxzO', NULL, '2026-02-14 00:55:18', '2026-02-14 00:55:19'),
(749, 'tbGRIgpNROhNKLyHjeTgH', 'e.lo.wex.e.s50@gmail.com', 'bwBQmMvkvIiwDnJBCNRzNruE', '0', NULL, NULL, NULL, NULL, 'hRQFGvdOGKdyLYKV', NULL, 'Afganistan', '$2y$10$lhTpdMLCx4FRq543XX6dZ.WchyucbHHg4FQA8wz2/k9W6Yui69ZYC', NULL, '2026-02-20 09:57:36', '2026-02-20 09:57:36'),
(750, 'zYFnEqNfZIPcBHzq', 'e.xic.i.n.a.g.799@gmail.com', 'sbHXofmIdpipTOCzp', '0', 'puhw8zrDdfGa4tGRlhHg', NULL, NULL, NULL, 'SQEAWELuqTnUvAbukDbbImk', NULL, 'Afganistan', '$2y$10$uHAP8vU92FdOmrHxjWH63u4oPEzVA/P.3xDpsnd8cI.xr8JDDkmDW', NULL, '2026-02-21 05:07:24', '2026-02-21 05:07:25'),
(751, 'jJrNISfQUGGVWDsyccaXHy', 'f.a.yasi.h.o.lu.p.a.4.7@gmail.com', 'nwdtFCGPpBXZdSjHBJI', '0', '8qM0jIptvMGuexymGBiM', NULL, NULL, NULL, 'qhfnqrokxDDmTvNymcube', NULL, 'Afganistan', '$2y$10$OnSLZbc4g9FH9gEw8/rMdOcfVupGLT84pc4.LhERFC81Y9yVkauou', NULL, '2026-02-21 08:30:55', '2026-02-21 08:30:58'),
(752, 'gcDbmeTiqIMudyliSbF', 'od.o.p.elo.gusi.n97@gmail.com', 'vHNtxtTKpwvRRwVhn', '0', 'oaIsoqp4Qw3suIcx52ls', NULL, NULL, NULL, 'HsBrLGURdcuGCYMZsgVutsKA', NULL, 'Afganistan', '$2y$10$k2cjOfpkZU0yj79RKCB0Au8mSXWoVFBP4ylZzm2.kjIyb5oSHeSm2', NULL, '2026-02-24 03:13:59', '2026-02-24 03:14:03'),
(753, 'XZEXuegNcWHowOuXOd', 'e.puy.i.da.p.o.k.ak.4.2@gmail.com', 'IhCxYBmajgnDJoGtjIyja', '0', NULL, NULL, NULL, NULL, 'NSqJfnoSAbQssvxvmanpN', NULL, 'Afganistan', '$2y$10$BHcK0UVl1p6WpO63eVopM.liJGG0F38d/NWvetntUJHLYqaDKZpT.', NULL, '2026-02-28 18:25:25', '2026-02-28 18:25:25'),
(754, 'lIBiCPnXfYJqLwoxiwaCr', 'u.w.o.wi.w.ok.e.cu67@gmail.com', 'oBKyrFcGfmSJztxzjYua', '0', 'xeoq3bd9NYqHCzZH2VyC', NULL, NULL, NULL, 'kVZkyWNDtCWoigbof', NULL, 'Afganistan', '$2y$10$T4PJQj8j..0pYmpFM5Rete8j1CNRto.kJ22wkYm4/DHmlMDwLFk1a', NULL, '2026-03-01 09:34:02', '2026-03-01 09:34:05'),
(755, 'JIpKxpXCdGySNtwmcSllwac', 'oc.a.toni.l.ec.i93@gmail.com', 'wygQUYBTIqZiVKFyQWf', '0', 'PaYabgRTdJYWSm9QehJr', NULL, NULL, NULL, 'QrORVeFqRzhxNkgHjw', NULL, 'Afganistan', '$2y$10$VtqfFatEJtD0w.ief.Xeh.Zt2Qqzxlw6Jd18Rkno7mbzOt3jEEs6u', NULL, '2026-03-02 10:56:42', '2026-03-02 10:56:43'),
(756, 'mAUXEeDzvAPkTVDFav', 'a.r.is.u.no.h.up70@gmail.com', 'obHcEAEiMdrZjdVcbMFJOQAR', '0', 'K2patWzn9dBistjYYGO1', NULL, NULL, NULL, 'HzNIwKBHLOpsJXFCOcMP', NULL, 'Afganistan', '$2y$10$fd2pSA6okmc4nlvywY.LC.bCN/ac6enCyj2M9erdKzYaKkyrerCn.', NULL, '2026-03-07 16:16:50', '2026-03-07 16:16:50'),
(757, 'tBQdeesHzhOOGpUKcca', 'g.u.sa.zi.h18.0@gmail.com', 'nvGNWwniMmgkjdpJgIxBUPiU', '0', 'hVpCz6j0WWQPCcsc5hRO', NULL, NULL, NULL, 'hZvADFEjeUjUzypU', NULL, 'Afganistan', '$2y$10$A4lBkaqO3BogmtuW3b4ng.uImsOeXyZhxHxk/HvmWW/E/6Zd9OU6e', NULL, '2026-03-07 23:57:01', '2026-03-07 23:57:02'),
(758, 'yjbCRbTrSRZwQoVxYzN', 'equ.v.a.du.pu.y1.8@gmail.com', 'UybPiZfPkAGBwXnBfDaKC', '0', 'vOydj3hjq84ydf98CEk3', NULL, NULL, NULL, 'kZXbFqpDLprwPFozcWzAsFbI', NULL, 'Afganistan', '$2y$10$.BCpAPZViy0ZmtS4aHaMC.rzbZFXxsro7RGDlqQXmQr2eLxJQMmpO', NULL, '2026-03-11 14:47:54', '2026-03-11 14:47:55'),
(759, 'bPLZePajKxMEPXojTPoWzBP', 'at.atoxaf.a.g.u.2.5.4@gmail.com', 'FxulZSGWmmNEJjHxcG', '0', '7wUwEGjm1xR6TFxClbeh', NULL, NULL, NULL, 'ytOKiwXszmwKCysu', NULL, 'Afganistan', '$2y$10$tjX7whRvjU/KjLmsTuec.uHbQTrhoGyoC2ZADX4XTfV4fsSnugpBi', NULL, '2026-03-13 08:06:05', '2026-03-13 08:06:05'),
(760, 'ciSCuUKTdFZvGbDAA', 'q.eg.ir.an.iy98@gmail.com', 'wXxdomwwRAbLznvfHTbibLES', '0', 'nb0FoWr9Ww28etjPzEmF', NULL, NULL, NULL, 'RIyZqylhTcQnkZnYxgim', NULL, 'Afganistan', '$2y$10$cO7mHbApsz3KAyCV1C6TuerkCL4l22n7eWaSmB4HIa4ic8b2uKRxy', NULL, '2026-03-14 19:14:46', '2026-03-14 19:14:48'),
(761, 'QsiEFkAzVnyXGYslFBJ', 'e.v.ij.imoguw.o.9.13@gmail.com', 'czFJizjPfbgLxtzOdADPz', '0', 'A00G6jzWkdHH62G21ixs', NULL, NULL, NULL, 'eWrLQxJtXiwONlsS', NULL, 'Afganistan', '$2y$10$DeheQKi0VKMpNd2I5bG/N.qtI0Vfeh1ZaYqv6rLTBTUnRgcb/qtr6', NULL, '2026-03-18 09:26:14', '2026-03-18 09:26:15'),
(762, 'HzGUWjXUWuNnNPLyqrlrjDP', 'u.t.o.ne.j.omib68.9@gmail.com', 'ZBhQZbkPjCsicrugXCcOPC', '0', '0PZEkdB9H8xCDviM3IXg', NULL, NULL, NULL, 'CqFUXwpzqSlUKWmRznuTo', NULL, 'Afganistan', '$2y$10$TYPraxen0ZP9pnxOYIqx9eiMaBDDn2Uo2YZVe.e8C4KczYhg782ZC', NULL, '2026-03-18 18:13:05', '2026-03-18 18:13:05'),
(763, 'RThtTYNFiVRpyaHAYm', 'a.v.ego.d.i.gem.a.1.2@gmail.com', 'hHCFuUZzClDEcdFhFxlyNOwi', '0', 'mDTErDB6Sfa2yvfQznmE', NULL, NULL, NULL, 'CuzDgIwDvZhKKGXZAFIe', NULL, 'Afganistan', '$2y$10$ZGRVF3JICYstYUViFcrw/.dwzxW23eo94pZRSAMhGPNI0kTI6yn.a', NULL, '2026-03-19 00:49:37', '2026-03-19 00:49:38'),
(764, 'DavidHoiva', 'yonuyu_fopepo45@hotmail.com', 'DavidHoiva', '0', '3OLMjUoLhTYoKU0MOa9c', NULL, NULL, NULL, 'Naga City', NULL, 'Phillipines', '$2y$10$vGnfjpPX6MdUEIUxBapTkel2h6tj.8VYaHlYd3qLZxL0UBgqLnjDK', NULL, '2026-03-29 03:53:59', '2026-03-29 03:54:03'),
(765, 'yVEhuUJEFpCMftDP', 'q.a.g.or.iqus.7.8@gmail.com', 'YmkhGxeVwFPwmenr', '0', 'nqF7L64QmtjHq1QM4sWR', NULL, NULL, NULL, 'KXLGZFOmEoRjlkebAhrDIgfF', NULL, 'Afganistan', '$2y$10$QBl420M6Ms3GVSS18A9wR.cMk0KybtEui0PkPyLRsn3e4x2IPxbpK', NULL, '2026-04-09 15:59:37', '2026-04-09 15:59:38'),
(766, 'Jannatul Ferdous', 'jannatulratna369@gmail.com', 'jannatulratna369@gmail.com', '0', 'vdHiUjCy5duYvnS3upqD', NULL, NULL, NULL, 'Dhaka', NULL, 'Bangladesh', '$2y$10$KN5XZlcilOCMYKgcqCIzpuelBN3vWRMJZotiNoY8yekjp83eC7xoq', NULL, '2026-04-11 04:16:45', '2026-04-11 04:16:45'),
(767, 'irJNDrXZPTEXLhEUFMCMbRr', 'one.y.at.u.sa.v25@gmail.com', 'MWdneeyARsgvShBaFnnp', '0', 'XqOp2PfzUrSQnJuMxV4O', NULL, NULL, NULL, 'ysdSVCzVPUcOadNjD', NULL, 'Afganistan', '$2y$10$Pcl5O2l//7XszfC0bzne.OnN3XOL49D.9LL83YGVseXdEhvkSvzo.', NULL, '2026-04-15 18:37:51', '2026-04-15 18:37:53');

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

--
-- Table structure for table `widgets`
--

CREATE TABLE `widgets` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `admin_render_function` varchar(191) NOT NULL,
  `frontend_render_function` varchar(191) NOT NULL,
  `widget_name` text DEFAULT NULL,
  `widget_content` longtext NOT NULL,
  `widget_order` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `widgets`
--

INSERT INTO `widgets` (`id`, `admin_render_function`, `frontend_render_function`, `widget_name`, `widget_content`, `widget_order`, `created_at`, `updated_at`) VALUES
(7, 'about_us_widget', 'render_about_us_widget', 'About Us', 'a:8:{s:2:\"id\";s:1:\"7\";s:24:\"frontend_render_function\";s:22:\"render_about_us_widget\";s:21:\"admin_render_function\";s:15:\"about_us_widget\";s:11:\"widget_type\";s:6:\"update\";s:11:\"widget_name\";s:8:\"About Us\";s:12:\"widget_order\";s:1:\"1\";s:9:\"site_logo\";s:3:\"402\";s:14:\"description_en\";s:139:\"In Future Track, we strive to extend global education opportunities, both at the undergraduate and graduate level, to Bangladeshi students.\";}', 1, '2020-06-16 18:16:23', '2023-11-30 06:01:16'),
(11, 'contact_info_widget', 'render_contact_info_widget', 'Contact Info', 'a:10:{s:2:\"id\";s:2:\"11\";s:24:\"frontend_render_function\";s:26:\"render_contact_info_widget\";s:21:\"admin_render_function\";s:19:\"contact_info_widget\";s:11:\"widget_type\";s:6:\"update\";s:11:\"widget_name\";s:12:\"Contact Info\";s:12:\"widget_order\";s:1:\"3\";s:15:\"widget_title_en\";s:10:\"Contact us\";s:11:\"location_en\";s:106:\"Future Track Bangladesh Corporate Office, Hosna Center (2nd Floor), 106 Gulshan Avenue, Gulshan 1212 Dhaka\";s:8:\"phone_en\";s:14:\"+8801792000785\";s:8:\"email_en\";s:22:\"info@futuretrackbd.com\";}', 3, '2020-06-17 15:31:59', '2021-11-08 18:23:06'),
(15, 'recent_post_widget', 'render_recent_post_widget', 'Recent Post', 'a:11:{s:2:\"id\";s:2:\"15\";s:24:\"frontend_render_function\";s:25:\"render_recent_post_widget\";s:21:\"admin_render_function\";s:18:\"recent_post_widget\";s:11:\"widget_type\";s:6:\"update\";s:11:\"widget_name\";s:11:\"Recent Post\";s:12:\"widget_order\";s:1:\"2\";s:15:\"widget_title_en\";s:12:\"Recent Posts\";s:16:\"widget_title_tur\";s:29:\"yakın zamanda Gönderilenler\";s:15:\"widget_title_ar\";s:33:\"المشاركات الاخيرة\";s:15:\"widget_title_sp\";s:18:\"Mensajes recientes\";s:10:\"post_items\";s:1:\"2\";}', 2, '2020-06-17 18:41:04', '2020-07-30 12:18:18'),
(19, 'newsletter_widget', 'render_newsletter_widget', 'Newsletter', 'a:14:{s:2:\"id\";s:2:\"19\";s:24:\"frontend_render_function\";s:24:\"render_newsletter_widget\";s:21:\"admin_render_function\";s:17:\"newsletter_widget\";s:11:\"widget_type\";s:6:\"update\";s:11:\"widget_name\";s:10:\"Newsletter\";s:12:\"widget_order\";s:1:\"4\";s:15:\"widget_title_en\";s:19:\"Subscribe Newletter\";s:14:\"description_en\";s:39:\"subscribe our newsletter to get update.\";s:16:\"widget_title_tur\";s:17:\"Bültene Abone Ol\";s:15:\"description_tur\";s:48:\"güncelleme almak için bültenimize abone olun.\";s:15:\"widget_title_ar\";s:33:\"المشاركات الاخيرة\";s:14:\"description_ar\";s:83:\"اشترك في النشرة الإخبارية للحصول على التحديث.\";s:15:\"widget_title_sp\";s:35:\"Suscribirse al boletín informativo\";s:14:\"description_sp\";s:60:\"Suscríbase a nuestro boletín para recibir actualizaciones.\";}', 4, '2020-06-18 08:35:17', '2020-07-30 12:18:18');

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

--
-- Table structure for table `works`
--

CREATE TABLE `works` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` text NOT NULL,
  `slug` text DEFAULT NULL,
  `categories_id` varchar(191) NOT NULL,
  `description` longtext NOT NULL,
  `excerpt` text DEFAULT NULL,
  `meta_tag` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `duration` varchar(191) DEFAULT NULL,
  `clients` varchar(191) DEFAULT NULL,
  `budget` varchar(191) DEFAULT NULL,
  `gallery` text DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `works_categories`
--

CREATE TABLE `works_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `lang` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `works_categories`
--

INSERT INTO `works_categories` (`id`, `name`, `lang`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Cloud Support', 'en', 'publish', '2020-06-02 13:58:19', '2020-06-02 13:58:19'),
(2, 'Data Center', 'en', 'publish', '2020-06-02 13:58:32', '2020-06-02 13:58:32'),
(3, 'Analytics', 'en', 'publish', '2020-06-02 13:58:44', '2020-06-02 13:58:44'),
(4, 'Cyber Support', 'en', 'publish', '2020-06-02 13:58:57', '2020-06-02 13:58:57');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `admins`
--
ALTER TABLE `admins`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `admins_username_unique` (`username`);

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

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

--
-- Indexes for table `blog_categories`
--
ALTER TABLE `blog_categories`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `blog_categories_name_unique` (`name`);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- Indexes for table `newsletters`
--
ALTER TABLE `newsletters`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `newsletters_email_unique` (`email`);

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

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

--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
  ADD KEY `password_resets_email_index` (`email`);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- Indexes for table `users`
--
ALTER TABLE `users`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `users_username_unique` (`username`);

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

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

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

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `admins`
--
ALTER TABLE `admins`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `admin_roles`
--
ALTER TABLE `admin_roles`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `blogs`
--
ALTER TABLE `blogs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `blog_categories`
--
ALTER TABLE `blog_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `brands`
--
ALTER TABLE `brands`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53;

--
-- AUTO_INCREMENT for table `contact_info_items`
--
ALTER TABLE `contact_info_items`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `counterups`
--
ALTER TABLE `counterups`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30;

--
-- AUTO_INCREMENT for table `donations`
--
ALTER TABLE `donations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `donation_logs`
--
ALTER TABLE `donation_logs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=166;

--
-- AUTO_INCREMENT for table `events`
--
ALTER TABLE `events`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;

--
-- AUTO_INCREMENT for table `events_categories`
--
ALTER TABLE `events_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `event_attendances`
--
ALTER TABLE `event_attendances`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `event_payment_logs`
--
ALTER TABLE `event_payment_logs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `faqs`
--
ALTER TABLE `faqs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `feedback`
--
ALTER TABLE `feedback`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `header_sliders`
--
ALTER TABLE `header_sliders`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `image_galleries`
--
ALTER TABLE `image_galleries`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53;

--
-- AUTO_INCREMENT for table `jobs`
--
ALTER TABLE `jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `jobs_categories`
--
ALTER TABLE `jobs_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `job_applicants`
--
ALTER TABLE `job_applicants`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `key_features`
--
ALTER TABLE `key_features`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;

--
-- AUTO_INCREMENT for table `knowledgebases`
--
ALTER TABLE `knowledgebases`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `knowledgebase_topics`
--
ALTER TABLE `knowledgebase_topics`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `languages`
--
ALTER TABLE `languages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `media_uploads`
--
ALTER TABLE `media_uploads`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=449;

--
-- AUTO_INCREMENT for table `menus`
--
ALTER TABLE `menus`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=55;

--
-- AUTO_INCREMENT for table `newsletters`
--
ALTER TABLE `newsletters`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=742;

--
-- AUTO_INCREMENT for table `orders`
--
ALTER TABLE `orders`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `pages`
--
ALTER TABLE `pages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `payment_logs`
--
ALTER TABLE `payment_logs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `popup_builders`
--
ALTER TABLE `popup_builders`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `price_plans`
--
ALTER TABLE `price_plans`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `price_plan_categories`
--
ALTER TABLE `price_plan_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `product_categories`
--
ALTER TABLE `product_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `product_coupons`
--
ALTER TABLE `product_coupons`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `product_orders`
--
ALTER TABLE `product_orders`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=284;

--
-- AUTO_INCREMENT for table `product_ratings`
--
ALTER TABLE `product_ratings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `product_shippings`
--
ALTER TABLE `product_shippings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `quotes`
--
ALTER TABLE `quotes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `services`
--
ALTER TABLE `services`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=36;

--
-- AUTO_INCREMENT for table `service_categories`
--
ALTER TABLE `service_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;

--
-- AUTO_INCREMENT for table `social_icons`
--
ALTER TABLE `social_icons`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `static_options`
--
ALTER TABLE `static_options`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1195;

--
-- AUTO_INCREMENT for table `team_members`
--
ALTER TABLE `team_members`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=61;

--
-- AUTO_INCREMENT for table `testimonials`
--
ALTER TABLE `testimonials`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=768;

--
-- AUTO_INCREMENT for table `widgets`
--
ALTER TABLE `widgets`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;

--
-- AUTO_INCREMENT for table `works`
--
ALTER TABLE `works`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `works_categories`
--
ALTER TABLE `works_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
COMMIT;

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