-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jun 12, 2026 at 11:11 AM
-- Server version: 10.11.16-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: `mxcarmimeld_mxcar`
--

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

--
-- Table structure for table `activations`
--

CREATE TABLE `activations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `code` varchar(120) NOT NULL,
  `completed` tinyint(1) NOT NULL DEFAULT 0,
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `activations`
--

INSERT INTO `activations` (`id`, `user_id`, `code`, `completed`, `completed_at`, `created_at`, `updated_at`) VALUES
(1, 1, 'LLKBpZuwnG59gChYSZYUp8EMWgivVXMy', 1, '2026-03-06 08:22:11', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(2, 2, 'PDWVlHHKLyJDN4nCNoXIIc9A5TwhwzV4', 1, '2026-06-10 17:55:50', '2026-06-10 17:55:50', '2026-06-10 17:55:50');

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

--
-- Table structure for table `admin_notifications`
--

CREATE TABLE `admin_notifications` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `action_label` varchar(191) DEFAULT NULL,
  `action_url` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `read_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `permission` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `admin_notifications`
--

INSERT INTO `admin_notifications` (`id`, `title`, `action_label`, `action_url`, `description`, `read_at`, `created_at`, `updated_at`, `permission`) VALUES
(1, 'New Booking Received ##1000084', 'View Booking', 'https://mxcar.atharvatek.com/admin/car-rentals/bookings/edit/83', 'customer booked Mercedes-Benz C300 4MATIC 2024', '2026-04-09 14:22:26', '2026-04-09 14:21:53', '2026-04-09 14:22:26', NULL),
(2, 'New Booking Received ##1000085', 'View Booking', 'https://mxcar.atharvatek.com/admin/car-rentals/bookings/edit/84', 'customer booked verna', '2026-04-09 14:52:23', '2026-04-09 14:33:19', '2026-04-09 14:52:23', NULL),
(3, 'Trip Escalated ##1000083', 'View Booking', 'https://mxcar.atharvatek.com/admin/car-rentals/bookings/edit/82', 'Test Vendor escalated booking ##1000083', NULL, '2026-04-09 16:04:01', '2026-04-09 16:04:01', NULL),
(4, 'New Booking Received ##1000092', 'View Booking', 'https://mxcar.atharvatek.com/admin/car-rentals/bookings/edit/91', 'User Demo booked Honda Accord Sport 2.0T 2024', NULL, '2026-04-22 10:50:49', '2026-04-22 10:50:49', NULL),
(5, 'New Booking Received ##1000093', 'View Booking', 'https://mxcar.atharvatek.com/admin/car-rentals/bookings/edit/92', 'User Demo booked Verna', NULL, '2026-04-22 11:22:18', '2026-04-22 11:22:18', NULL),
(6, 'New Booking Received ##1000094', 'View Booking', 'https://mxcar.atharvatek.com/admin/car-rentals/bookings/edit/93', 'User Demo booked Verna', NULL, '2026-04-22 11:27:16', '2026-04-22 11:27:16', NULL),
(7, 'New Booking Received ##1000095', 'View Booking', 'https://mxcar.atharvatek.com/admin/car-rentals/bookings/edit/94', 'User Demo booked Verna', NULL, '2026-04-22 11:33:10', '2026-04-22 11:33:10', NULL),
(9, 'Trip Shorten Request ##1000096', 'Review Request', 'https://mxcar.atharvatek.com/admin/car-rentals/bookings/edit/95', 'customer requested to shorten trip by 9.3868055555556 day(s) until Jun 28, 2026. Refund: $324', NULL, '2026-04-23 09:09:50', '2026-04-23 09:09:50', NULL),
(10, 'New Booking Received ##1000097', 'View Booking', 'http://127.0.0.1:8000/admin/car-rentals/bookings/edit/96', 'User Demo booked Ford Bronco', NULL, '2026-04-30 07:13:27', '2026-04-30 07:13:27', NULL),
(11, 'New Booking Received ##1000098', 'View Booking', 'http://127.0.0.1:8000/admin/car-rentals/bookings/edit/97', 'Elite Auto Group booked Mercedes-Benz C300 4MATIC 2024', NULL, '2026-06-09 05:47:55', '2026-06-09 05:47:55', NULL),
(12, 'New Booking Received ##1000099', 'View Booking', 'http://127.0.0.1:8000/admin/car-rentals/bookings/edit/98', 'Elite Auto Group booked Toyota RAV4 Prime XSE AWD 2024', NULL, '2026-06-09 09:40:22', '2026-06-09 09:40:22', NULL);

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

--
-- Table structure for table `announcements`
--

CREATE TABLE `announcements` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `content` text NOT NULL,
  `has_action` tinyint(1) NOT NULL DEFAULT 0,
  `action_label` varchar(60) DEFAULT NULL,
  `action_url` varchar(400) DEFAULT NULL,
  `action_open_new_tab` tinyint(1) NOT NULL DEFAULT 0,
  `dismissible` tinyint(1) NOT NULL DEFAULT 0,
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `announcements`
--

INSERT INTO `announcements` (`id`, `name`, `content`, `has_action`, `action_label`, `action_url`, `action_open_new_tab`, `dismissible`, `start_date`, `end_date`, `is_active`, `created_at`, `updated_at`) VALUES
(1, 'Announcement 1', 'Drive Your Dream Car Today – Affordable Rentals at Your Fingertips!', 1, 'Book Now', '/', 0, 1, '2026-03-06 15:22:11', NULL, 1, '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(2, 'Announcement 2', 'Hit the Road in Style – Premium Car Rentals for Every Journey!', 1, 'Book Now', '/', 0, 1, '2026-03-06 15:22:11', NULL, 1, '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(3, 'Announcement 3', 'Explore the Open Road – Hassle-Free Car Rentals Just a Click Away!', 1, 'Book Now', '/', 0, 1, '2026-03-06 15:22:11', NULL, 1, '2026-03-06 08:22:11', '2026-03-06 08:22:11');

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

--
-- Table structure for table `announcements_translations`
--

CREATE TABLE `announcements_translations` (
  `lang_code` varchar(191) NOT NULL,
  `announcements_id` bigint(20) UNSIGNED NOT NULL,
  `content` text DEFAULT NULL,
  `action_label` varchar(60) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `audit_histories`
--

CREATE TABLE `audit_histories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `user_type` varchar(191) DEFAULT 'Mxcar\\ACL\\Models\\User',
  `module` varchar(60) NOT NULL,
  `request` longtext DEFAULT NULL,
  `action` varchar(120) NOT NULL,
  `user_agent` text DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `actor_id` bigint(20) UNSIGNED NOT NULL,
  `actor_type` varchar(191) DEFAULT 'Mxcar\\ACL\\Models\\User',
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_name` varchar(191) NOT NULL,
  `type` varchar(20) 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 `audit_histories`
--

INSERT INTO `audit_histories` (`id`, `user_id`, `user_type`, `module`, `request`, `action`, `user_agent`, `ip_address`, `actor_id`, `actor_type`, `reference_id`, `reference_name`, `type`, `created_at`, `updated_at`) VALUES
(842, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '223.181.65.42', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-14 09:12:38', '2026-05-14 09:12:38'),
(843, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '223.181.65.42', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-14 11:54:35', '2026-05-14 11:54:35'),
(844, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '223.181.65.42', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-14 15:20:04', '2026-05-14 15:20:04'),
(845, 0, NULL, 'car', '{\"name\":\"Porsche Taycan Turbo S Cross Turismo 2024\",\"model\":\"Mxcar\\\\CarRentals\\\\Models\\\\Car\",\"slug\":\"porsche-taycan-turbo-s-cross-turismo-2024\",\"slug_id\":\"191\",\"is_slug_editable\":\"1\",\"description\":null,\"content\":\"<p>Introducing the epitome of modern sophistication in the realm of compact SUVs \\u2013 the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.<\\/p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.<\\/p>\",\"images\":[\"customers\\/1\\/23cc1afc-c03c-4f77-868f-f44144d4167c.webp\"],\"country_id\":\"7\",\"state_id\":\"16\",\"city_id\":\"23\",\"address\":\"4162 Peterson Drive Floor 469\",\"currency_id\":\"1\",\"car_purpose\":\"rent\",\"rental_type\":\"per_day\",\"rental_rate\":\"45\",\"tax_id\":null,\"external_booking_url\":null,\"sale_price\":\"0\",\"condition\":\"new\",\"ownership_history\":null,\"warranty_information\":null,\"sale_status\":\"available\",\"make_id\":\"13\",\"vehicle_type_id\":\"5\",\"transmission_id\":null,\"fuel_type_id\":\"1\",\"license_plate\":\"30F-700.88\",\"vin\":\"AGRWGG4T2TLY43UD1\",\"telematics_device_id\":null,\"year\":\"2017\",\"mileage\":\"4105\",\"fuel_rate_per_liter\":\"0\",\"late_fee_per_hour\":\"0\",\"horsepower\":null,\"number_of_seats\":\"5\",\"number_of_doors\":\"4\",\"host_protection_plan_id\":null,\"default_pickup_instructions\":null,\"vr_images\":[null],\"free_delivery_days_threshold\":null,\"max_delivery_distance_miles\":null,\"weekly_discount_type\":\"none\",\"weekly_discount_value\":\"0\",\"monthly_discount_type\":\"none\",\"monthly_discount_value\":\"0\",\"included_distance_per_day\":null,\"included_distance_per_trip\":null,\"extra_distance_unit_price\":\"0\",\"distance_unit\":\"km\",\"distance_overage_billing_mode\":\"end_of_trip\",\"max_discount_cap_percent\":null,\"demand_recommendations_enabled\":\"0\",\"demand_min_price\":null,\"demand_max_price\":null,\"demand_max_daily_change_percent\":null,\"allow_best_discount_only\":\"1\",\"demand_auto_apply_enabled\":\"0\",\"demand_auto_apply_min_confidence\":\"0.7\",\"demand_auto_apply_max_daily_change_percent\":null,\"demand_auto_apply_pause_hours\":null,\"trip_discounts\":[{\"id\":null,\"min_days\":null,\"max_days\":null,\"discount_type\":\"percentage\",\"discount_value\":null,\"priority\":\"0\",\"active\":\"1\",\"description\":null}],\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"status\":\"available\",\"order\":\"0\",\"is_used\":\"1\",\"tags\":null,\"categories\":[\"2\"],\"amenities\":[\"2\",\"6\",\"12\",\"14\",\"15\",\"17\",\"18\",\"19\",\"23\",\"30\",\"35\",\"37\",\"39\",\"45\",\"46\",\"47\"],\"colors\":\"5\"}', 'updated', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 0, NULL, 94, 'Porsche Taycan Turbo S Cross Turismo 2024', 'primary', '2026-05-18 11:21:56', '2026-05-18 11:21:56'),
(846, 0, NULL, 'car', '{\"name\":\"Porsche Taycan Turbo S Cross Turismo 2024\",\"model\":\"Mxcar\\\\CarRentals\\\\Models\\\\Car\",\"slug\":\"porsche-taycan-turbo-s-cross-turismo-2024\",\"slug_id\":\"191\",\"is_slug_editable\":\"1\",\"description\":null,\"content\":\"<p>Introducing the epitome of modern sophistication in the realm of compact SUVs \\u2013 the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.<\\/p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.<\\/p>\",\"images\":[\"customers\\/1\\/23cc1afc-c03c-4f77-868f-f44144d4167c.webp\"],\"country_id\":\"7\",\"state_id\":\"16\",\"city_id\":\"23\",\"address\":\"4162 Peterson Drive Floor 469\",\"currency_id\":\"1\",\"car_purpose\":\"rent\",\"rental_type\":\"per_day\",\"rental_rate\":\"45\",\"tax_id\":null,\"external_booking_url\":null,\"sale_price\":\"0\",\"condition\":\"new\",\"ownership_history\":null,\"warranty_information\":null,\"sale_status\":\"available\",\"make_id\":\"13\",\"vehicle_type_id\":\"5\",\"transmission_id\":null,\"fuel_type_id\":\"1\",\"license_plate\":\"30F-700.88\",\"vin\":\"AGRWGG4T2TLY43UD1\",\"telematics_device_id\":null,\"year\":\"2017\",\"mileage\":\"4105\",\"fuel_rate_per_liter\":\"0\",\"late_fee_per_hour\":\"0\",\"horsepower\":null,\"number_of_seats\":\"5\",\"number_of_doors\":\"4\",\"host_protection_plan_id\":null,\"default_pickup_instructions\":null,\"vr_images\":[null],\"free_delivery_days_threshold\":null,\"max_delivery_distance_miles\":null,\"weekly_discount_type\":\"none\",\"weekly_discount_value\":\"0\",\"monthly_discount_type\":\"none\",\"monthly_discount_value\":\"0\",\"included_distance_per_day\":null,\"included_distance_per_trip\":null,\"extra_distance_unit_price\":\"0\",\"distance_unit\":\"km\",\"distance_overage_billing_mode\":\"end_of_trip\",\"max_discount_cap_percent\":null,\"demand_recommendations_enabled\":\"0\",\"demand_min_price\":null,\"demand_max_price\":null,\"demand_max_daily_change_percent\":null,\"allow_best_discount_only\":\"1\",\"demand_auto_apply_enabled\":\"0\",\"demand_auto_apply_min_confidence\":\"0.7\",\"demand_auto_apply_max_daily_change_percent\":null,\"demand_auto_apply_pause_hours\":null,\"trip_discounts\":[{\"id\":null,\"min_days\":null,\"max_days\":null,\"discount_type\":\"percentage\",\"discount_value\":null,\"priority\":\"0\",\"active\":\"1\",\"description\":null}],\"seo_meta\":{\"seo_title\":null,\"seo_description\":null,\"index\":\"index\"},\"seo_meta_image\":null,\"status\":\"available\",\"order\":\"0\",\"is_used\":\"1\",\"tags\":null,\"categories\":[\"2\"],\"amenities\":[\"2\",\"6\",\"12\",\"14\",\"15\",\"17\",\"18\",\"19\",\"23\",\"30\",\"35\",\"37\",\"39\",\"45\",\"46\",\"47\"],\"colors\":\"5\"}', 'updated', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 0, NULL, 94, 'Porsche Taycan Turbo S Cross Turismo 2024', 'primary', '2026-05-18 11:21:56', '2026-05-18 11:21:56'),
(847, 1, 'Mxcar\\CarRentals\\Models\\Customer', 'from the customer portal', NULL, 'logged out', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\CarRentals\\Models\\Customer', 1, 'Elite Auto Group', 'info', '2026-05-18 11:38:38', '2026-05-18 11:38:38'),
(848, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-18 11:46:03', '2026-05-18 11:46:03'),
(849, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-19 03:44:40', '2026-05-19 03:44:40'),
(850, 1, 'Mxcar\\ACL\\Models\\User', 'of the system', '[]', 'logged out', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-19 03:45:49', '2026-05-19 03:45:49'),
(851, 1, 'Mxcar\\ACL\\Models\\User', 'from the admin panel', NULL, 'logged out', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-19 03:45:49', '2026-05-19 03:45:49'),
(852, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-19 03:46:03', '2026-05-19 03:46:03'),
(853, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-19 04:21:05', '2026-05-19 04:21:05'),
(854, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-19 08:03:43', '2026-05-19 08:03:43'),
(855, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-19 09:34:26', '2026-05-19 09:34:26'),
(856, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-20 06:04:20', '2026-05-20 06:04:20'),
(857, 1, 'Mxcar\\ACL\\Models\\User', 'of the system', '[]', 'logged out', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-20 06:08:43', '2026-05-20 06:08:43'),
(858, 1, 'Mxcar\\ACL\\Models\\User', 'from the admin panel', NULL, 'logged out', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-20 06:08:43', '2026-05-20 06:08:43'),
(859, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-20 06:20:18', '2026-05-20 06:20:18'),
(860, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-21 05:17:43', '2026-05-21 05:17:43'),
(861, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-21 08:05:25', '2026-05-21 08:05:25'),
(862, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-21 12:44:02', '2026-05-21 12:44:02'),
(863, 1, 'Mxcar\\CarRentals\\Models\\Customer', 'from the customer portal', NULL, 'logged out', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\CarRentals\\Models\\Customer', 1, 'Elite Auto Group', 'info', '2026-05-22 09:06:55', '2026-05-22 09:06:55'),
(864, 1, 'Mxcar\\CarRentals\\Models\\Customer', 'from the customer portal', NULL, 'logged out', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\CarRentals\\Models\\Customer', 1, 'Elite Auto Group', 'info', '2026-05-22 09:07:30', '2026-05-22 09:07:30'),
(865, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-05-22 09:12:27', '2026-05-22 09:12:27'),
(866, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-09 04:33:25', '2026-06-09 04:33:25'),
(867, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-09 10:50:28', '2026-06-09 10:50:28'),
(868, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-10 03:43:12', '2026-06-10 03:43:12'),
(869, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-10 03:43:21', '2026-06-10 03:43:21'),
(870, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-10 03:43:21', '2026-06-10 03:43:21'),
(871, 1, 'Mxcar\\ACL\\Models\\User', 'page', '{\"name\":\"Homepage\",\"model\":\"Mxcar\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[hero-banners title=\\\"Your Rental journey, redefined\\\" subtitle=\\\"Discover the perfect car for any occasion. Rent exactly what you want, where you want it, for as long as you need.\\\" quantity=\\\"3\\\" content_1=\\\"High quality at a low cost.\\\" content_2=\\\"Premium services\\\" content_3=\\\"24\\/7 roadside support.\\\" background_image=\\\"hero-banner.jpg\\\"][\\/hero-banners]<\\/shortcode><shortcode>[car-advance-search link_need_help=\\\"\\/faqs\\\" top=\\\"-124\\\" bottom=\\\"0\\\" left=\\\"0\\\" right=\\\"0\\\" url=\\\"\\/cars\\\" background_color=\\\"rgb(255, 255, 255)\\\" tabs=\\\"all,new_car,used_car\\\" default_tab=\\\"all\\\"][\\/car-advance-search]<\\/shortcode><shortcode>[cars style=\\\"style-latest\\\" title=\\\"Most Viewed Rental Vehicles\\\" subtitle=\\\"The world\'s leading car brands\\\" number_rows=\\\"2\\\" limit=\\\"12\\\" button_label=\\\"View More\\\" button_url=\\\"\\/cars\\\" is_for_sale=\\\"0\\\"][\\/cars]<\\/shortcode><shortcode>[cars style=\\\"style-latest\\\" title=\\\"Most Viewed Classified Vehicles\\\" subtitle=\\\"The world\'s leading car brands\\\" number_rows=\\\"2\\\" limit=\\\"12\\\" button_label=\\\"View More\\\" button_url=\\\"\\/car-classified\\\" is_for_sale=\\\"1\\\"][\\/cars]<\\/shortcode><shortcode>[car-services title=\\\"Services\\\" limit=\\\"12\\\" enable_lazy_loading=\\\"no\\\"][\\/car-services]<\\/shortcode><shortcode>[car-types title=\\\"Browse by Type\\\" sub_title=\\\"Find the perfect ride for any occasion\\\" redirect_url=\\\"\\/cars\\\"][\\/car-types]<\\/shortcode><shortcode>[why-us sub_title=\\\"HOW IT WORKS\\\" title=\\\"Presenting Your New Go-To Car {{BR}} Rental Experience\\\" card_image_1=\\\"icons\\/car-location.png\\\" card_title_1=\\\"Choose a Location\\\" card_content_1=\\\"Select the ideal destination to begin your journey with ease\\\" card_image_2=\\\"icons\\/car-selected.png\\\" card_title_2=\\\"Choose Your Vehicle\\\" card_content_2=\\\"Browse our fleet and find the perfect car for your needs\\\" card_image_3=\\\"icons\\/car.png\\\" card_title_3=\\\"Verification\\\" card_content_3=\\\"Review your information and confirm your booking\\\" card_image_4=\\\"icons\\/car-key.png\\\" card_title_4=\\\"Begin Your Journey\\\" card_content_4=\\\"Start your adventure with confidence and ease\\\" quantity=\\\"4\\\"][\\/why-us]<\\/shortcode><shortcode>[cars style=\\\"style-feature\\\" title=\\\"Featured Listings\\\" subtitle=\\\"Find the perfect ride for any occasion\\\" limit=\\\"12\\\" button_label=\\\"View More\\\" button_url=\\\"\\/cars\\\"][\\/cars]<\\/shortcode><shortcode>[featured-block style=\\\"style-1\\\" title=\\\"Get a great deal for your vehicle sell to us now\\\" subtitle=\\\"Trusted Expertise\\\" description=\\\"Get the best value for your vehicle with our transparent and straightforward selling process\\\" button_label=\\\"Get Started Now\\\" button_url=\\\"\\/cars\\\" quantity=\\\"3\\\" content_1=\\\"Experienced Professionals You Can Trust\\\" content_2=\\\"Clear and Transparent Pricing, No Hidden Fees\\\" content_3=\\\"Genuine Spares Parts\\\" image_1=\\\"img-1.png\\\" image_2=\\\"img-2.png\\\" image_3=\\\"img-3.png\\\" image_4=\\\"img-4.png\\\" image_5=\\\"img-5.png\\\" enable_lazy_loading=\\\"no\\\"][\\/featured-block]<\\/shortcode><shortcode>[cars-by-locations title=\\\"Available Car Rentals\\\" main_content=\\\"Choose the location that suits your journey and start exploring today\\\" button_label=\\\"View More\\\" button_url=\\\"\\/cars\\\" city_ids=\\\"4,11,18,19\\\"][\\/cars-by-locations]<\\/shortcode><shortcode>[testimonials title=\\\"What they say about us?\\\" subtitle=\\\"Testimonials\\\" testimonial_ids=\\\"1,2,3,4\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts style=\\\"style-3\\\" title=\\\"Car Reviews\\\" subtitle=\\\"Expert insights and honest evaluations to help you choose the perfect car\\\" category_ids=\\\"1,2,3,4,5,6\\\" limit=\\\"12\\\" button_label=\\\"Keep Reading\\\" link_label=\\\"View More\\\" link_url=\\\"\\/blog\\\"][\\/blog-posts]<\\/shortcode><shortcode>[install-apps style=\\\"style-3\\\" title=\\\"MXCar App Is Available\\\" description=\\\"Install App\\\" android_app_url=\\\"https:\\/\\/play.google.com\\/store\\\" android_app_image=\\\"general\\/googleplay.png\\\" ios_app_url=\\\"https:\\/\\/apps.apple.com\\\" ios_app_image=\\\"general\\/appstore.png\\\" button_url=\\\"\\/\\\" decor_image=\\\"imockup-iphone-14-1.png\\\" background_color=\\\"transparent\\\"][\\/install-apps]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage\",\"image\":null,\"breadcrumb_background_image\":null,\"breadcrumb_simple\":\"0\",\"breadcrumb_text_color\":\"transparent\",\"breadcrumb_background_color\":\"transparent\",\"breadcrumb_display_last_update\":\"0\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'Homepage', 'primary', '2026-06-10 04:31:00', '2026-06-10 04:31:00'),
(872, 1, 'Mxcar\\ACL\\Models\\User', 'page', '{\"name\":\"Homepage\",\"model\":\"Mxcar\\\\Page\\\\Models\\\\Page\",\"slug\":\"http:\\/\\/127.0.0.1:8000\",\"description\":null,\"content\":\"<shortcode>[hero-banners title=\\\"Your Rental Journey, Redefined\\\" subtitle=\\\"Discover the perfect car for any occasion. Rent exactly what you want, where you want it, for as long as you need.\\\" quantity=\\\"3\\\" content_1=\\\"High quality at a low cost.\\\" content_2=\\\"Premium services\\\" content_3=\\\"24\\/7 roadside support.\\\" background_image=\\\"hero-banner.jpg\\\"][\\/hero-banners]<\\/shortcode><shortcode>[car-advance-search link_need_help=\\\"\\/faqs\\\" top=\\\"-124\\\" bottom=\\\"0\\\" left=\\\"0\\\" right=\\\"0\\\" url=\\\"\\/cars\\\" background_color=\\\"rgb(255, 255, 255)\\\" tabs=\\\"all,new_car,used_car\\\" default_tab=\\\"all\\\"][\\/car-advance-search]<\\/shortcode><shortcode>[cars style=\\\"style-latest\\\" title=\\\"Most Viewed Rental Vehicles\\\" subtitle=\\\"The world\'s leading car brands\\\" number_rows=\\\"2\\\" limit=\\\"12\\\" button_label=\\\"View More\\\" button_url=\\\"\\/cars\\\" is_for_sale=\\\"0\\\"][\\/cars]<\\/shortcode><shortcode>[cars style=\\\"style-latest\\\" title=\\\"Most Viewed Classified Vehicles\\\" subtitle=\\\"The world\'s leading car brands\\\" number_rows=\\\"2\\\" limit=\\\"12\\\" button_label=\\\"View More\\\" button_url=\\\"\\/car-classified\\\" is_for_sale=\\\"1\\\"][\\/cars]<\\/shortcode><shortcode>[car-services title=\\\"Services\\\" limit=\\\"12\\\" enable_lazy_loading=\\\"no\\\"][\\/car-services]<\\/shortcode><shortcode>[car-types title=\\\"Browse by Type\\\" sub_title=\\\"Find the perfect ride for any occasion\\\" redirect_url=\\\"\\/cars\\\"][\\/car-types]<\\/shortcode><shortcode>[why-us sub_title=\\\"HOW IT WORKS\\\" title=\\\"Presenting Your New Go-To Car {{BR}} Rental Experience\\\" card_image_1=\\\"icons\\/car-location.png\\\" card_title_1=\\\"Choose a Location\\\" card_content_1=\\\"Select the ideal destination to begin your journey with ease\\\" card_image_2=\\\"icons\\/car-selected.png\\\" card_title_2=\\\"Choose Your Vehicle\\\" card_content_2=\\\"Browse our fleet and find the perfect car for your needs\\\" card_image_3=\\\"icons\\/car.png\\\" card_title_3=\\\"Verification\\\" card_content_3=\\\"Review your information and confirm your booking\\\" card_image_4=\\\"icons\\/car-key.png\\\" card_title_4=\\\"Begin Your Journey\\\" card_content_4=\\\"Start your adventure with confidence and ease\\\" quantity=\\\"4\\\"][\\/why-us]<\\/shortcode><shortcode>[cars style=\\\"style-feature\\\" title=\\\"Featured Listings\\\" subtitle=\\\"Find the perfect ride for any occasion\\\" limit=\\\"12\\\" button_label=\\\"View More\\\" button_url=\\\"\\/cars\\\"][\\/cars]<\\/shortcode><shortcode>[featured-block style=\\\"style-1\\\" title=\\\"Get a great deal for your vehicle sell to us now\\\" subtitle=\\\"Trusted Expertise\\\" description=\\\"Get the best value for your vehicle with our transparent and straightforward selling process\\\" button_label=\\\"Get Started Now\\\" button_url=\\\"\\/cars\\\" quantity=\\\"3\\\" content_1=\\\"Experienced Professionals You Can Trust\\\" content_2=\\\"Clear and Transparent Pricing, No Hidden Fees\\\" content_3=\\\"Genuine Spares Parts\\\" image_1=\\\"img-1.png\\\" image_2=\\\"img-2.png\\\" image_3=\\\"img-3.png\\\" image_4=\\\"img-4.png\\\" image_5=\\\"img-5.png\\\" enable_lazy_loading=\\\"no\\\"][\\/featured-block]<\\/shortcode><shortcode>[cars-by-locations title=\\\"Available Car Rentals\\\" main_content=\\\"Choose the location that suits your journey and start exploring today\\\" button_label=\\\"View More\\\" button_url=\\\"\\/cars\\\" city_ids=\\\"4,11,18,19\\\"][\\/cars-by-locations]<\\/shortcode><shortcode>[testimonials title=\\\"What they say about us?\\\" subtitle=\\\"Testimonials\\\" testimonial_ids=\\\"1,2,3,4\\\"][\\/testimonials]<\\/shortcode><shortcode>[blog-posts style=\\\"style-3\\\" title=\\\"Car Reviews\\\" subtitle=\\\"Expert insights and honest evaluations to help you choose the perfect car\\\" category_ids=\\\"1,2,3,4,5,6\\\" limit=\\\"12\\\" button_label=\\\"Keep Reading\\\" link_label=\\\"View More\\\" link_url=\\\"\\/blog\\\"][\\/blog-posts]<\\/shortcode><shortcode>[install-apps style=\\\"style-3\\\" title=\\\"MXCar App Is Available\\\" description=\\\"Install App\\\" android_app_url=\\\"https:\\/\\/play.google.com\\/store\\\" android_app_image=\\\"general\\/googleplay.png\\\" ios_app_url=\\\"https:\\/\\/apps.apple.com\\\" ios_app_image=\\\"general\\/appstore.png\\\" button_url=\\\"\\/\\\" decor_image=\\\"imockup-iphone-14-1.png\\\" background_color=\\\"transparent\\\"][\\/install-apps]<\\/shortcode>\",\"gallery\":null,\"submitter\":\"apply\",\"status\":\"published\",\"template\":\"homepage\",\"image\":null,\"breadcrumb_background_image\":null,\"breadcrumb_simple\":\"0\",\"breadcrumb_text_color\":\"transparent\",\"breadcrumb_background_color\":\"transparent\",\"breadcrumb_display_last_update\":\"0\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'Homepage', 'primary', '2026-06-10 04:31:34', '2026-06-10 04:31:34'),
(873, 0, NULL, 'customer', '{\"_method\":\"PUT\",\"payout_payment_method\":\"paypal\",\"bank_info\":{\"bank_transfer\":{\"name\":null,\"code\":null,\"full_name\":null,\"number\":null,\"upi_id\":null,\"description\":null},\"paypal\":{\"paypal_id\":\"paypal@gmail.com\"}},\"submitter\":\"save\"}', 'updated', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '127.0.0.1', 0, NULL, 1, 'Elite Auto Group', 'primary', '2026-06-10 05:30:14', '2026-06-10 05:30:14'),
(874, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-10 06:27:44', '2026-06-10 06:27:44'),
(875, 1, 'Mxcar\\CarRentals\\Models\\Customer', 'from the customer portal', NULL, 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '127.0.0.1', 1, 'Mxcar\\CarRentals\\Models\\Customer', 1, 'Elite Auto Group', 'info', '2026-06-10 09:51:23', '2026-06-10 09:51:23'),
(876, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '122.183.32.163', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-10 17:43:00', '2026-06-10 17:43:00'),
(877, 1, 'Mxcar\\ACL\\Models\\User', 'user', '{\"_method\":\"PUT\",\"first_name\":\"System\",\"last_name\":\"Admin\",\"email\":\"mastermcx@miracuves.com\",\"phone_display\":null,\"phone\":null}', 'has updated his profile', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '122.183.32.163', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'primary', '2026-06-10 17:43:21', '2026-06-10 17:43:21'),
(878, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '122.183.32.163', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-10 17:50:41', '2026-06-10 17:50:41'),
(879, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '152.58.152.139', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-10 17:51:26', '2026-06-10 17:51:26'),
(880, 1, 'Mxcar\\ACL\\Models\\User', 'user', '{\"first_name\":\"Admin\",\"last_name\":\"Demo\",\"email\":\"admin@demo.com\",\"phone_display\":null,\"phone\":null,\"submitter\":\"apply\",\"role_id\":\"2\"}', 'created', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '122.183.32.163', 1, 'Mxcar\\ACL\\Models\\User', 2, 'Admin Demo', 'info', '2026-06-10 17:55:50', '2026-06-10 17:55:50'),
(881, 2, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '122.183.32.163', 2, 'Mxcar\\ACL\\Models\\User', 2, 'Admin Demo', 'info', '2026-06-10 17:57:03', '2026-06-10 17:57:03'),
(882, 1, 'Mxcar\\ACL\\Models\\User', 'of the system', '[]', 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '122.183.32.163', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-10 17:58:22', '2026-06-10 17:58:22'),
(883, 1, 'Mxcar\\ACL\\Models\\User', 'from the admin panel', NULL, 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '122.183.32.163', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-10 17:58:22', '2026-06-10 17:58:22'),
(884, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Mobile Safari/537.36', '122.183.32.136', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-10 22:05:17', '2026-06-10 22:05:17'),
(885, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '152.58.131.242', 1, 'Mxcar\\ACL\\Models\\User', 1, 'System Admin', 'info', '2026-06-11 08:23:10', '2026-06-11 08:23:10'),
(886, 1, 'Mxcar\\ACL\\Models\\User', 'user', '{\"_method\":\"PUT\",\"first_name\":\"Master\",\"last_name\":\"Admin\",\"email\":\"mastermcx@miracuves.com\",\"phone_display\":null,\"phone\":null}', 'has updated his profile', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '152.58.131.242', 1, 'Mxcar\\ACL\\Models\\User', 1, 'Master Admin', 'primary', '2026-06-11 08:29:10', '2026-06-11 08:29:10'),
(887, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 1, 'Mxcar\\ACL\\Models\\User', 1, 'Master Admin', 'info', '2026-06-11 09:04:34', '2026-06-11 09:04:34'),
(888, 1, 'Mxcar\\ACL\\Models\\User', 'user', '{\"_method\":\"PUT\",\"old_password\":\"Admin_$321\"}', 'updated profile', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 1, 'Mxcar\\ACL\\Models\\User', 1, 'Master Admin', 'info', '2026-06-11 09:04:58', '2026-06-11 09:04:58'),
(889, 1, 'Mxcar\\ACL\\Models\\User', 'user', '{\"_method\":\"PUT\",\"old_password\":\"Admin_$321\"}', 'changed password', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 1, 'Mxcar\\ACL\\Models\\User', 1, 'Master Admin', 'danger', '2026-06-11 09:04:58', '2026-06-11 09:04:58'),
(890, 1, 'Mxcar\\ACL\\Models\\User', 'user', '{\"_method\":\"PUT\",\"old_password\":\"Admin_$321\"}', 'has updated his profile', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 1, 'Mxcar\\ACL\\Models\\User', 1, 'Master Admin', 'primary', '2026-06-11 09:04:58', '2026-06-11 09:04:58'),
(891, 1, 'Mxcar\\ACL\\Models\\User', 'from the admin panel', NULL, 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 1, 'Mxcar\\ACL\\Models\\User', 1, 'Master Admin', 'info', '2026-06-11 09:04:58', '2026-06-11 09:04:58'),
(892, 1, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 1, 'Mxcar\\ACL\\Models\\User', 1, 'Master Admin', 'info', '2026-06-11 09:05:09', '2026-06-11 09:05:09'),
(893, 1, 'Mxcar\\CarRentals\\Models\\Customer', 'from the customer portal', NULL, 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 1, 'Mxcar\\CarRentals\\Models\\Customer', 1, 'Elite Auto Group', 'info', '2026-06-11 09:05:24', '2026-06-11 09:05:24'),
(894, 36, 'Mxcar\\CarRentals\\Models\\Customer', 'from the customer portal', NULL, 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 36, 'Mxcar\\CarRentals\\Models\\Customer', 36, 'User Demo', 'info', '2026-06-11 09:05:36', '2026-06-11 09:05:36'),
(895, 1, 'Mxcar\\ACL\\Models\\User', 'of the system', '[]', 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 1, 'Mxcar\\ACL\\Models\\User', 1, 'Master Admin', 'info', '2026-06-11 09:05:41', '2026-06-11 09:05:41'),
(896, 1, 'Mxcar\\ACL\\Models\\User', 'from the admin panel', NULL, 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 1, 'Mxcar\\ACL\\Models\\User', 1, 'Master Admin', 'info', '2026-06-11 09:05:41', '2026-06-11 09:05:41'),
(897, 2, 'Mxcar\\ACL\\Models\\User', 'to the system', NULL, 'logged in', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 2, 'Mxcar\\ACL\\Models\\User', 2, 'Admin Demo', 'info', '2026-06-11 09:05:59', '2026-06-11 09:05:59'),
(898, 2, 'Mxcar\\ACL\\Models\\User', 'of the system', '[]', 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 2, 'Mxcar\\ACL\\Models\\User', 2, 'Admin Demo', 'info', '2026-06-11 09:06:12', '2026-06-11 09:06:12'),
(899, 2, 'Mxcar\\ACL\\Models\\User', 'from the admin panel', NULL, 'logged out', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36', '223.181.69.19', 2, 'Mxcar\\ACL\\Models\\User', 2, 'Admin Demo', 'info', '2026-06-11 09:06:12', '2026-06-11 09:06:12');

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

--
-- Table structure for table `cache`
--

CREATE TABLE `cache` (
  `key` varchar(191) NOT NULL,
  `value` mediumtext NOT NULL,
  `expiration` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cache_locks`
--

CREATE TABLE `cache_locks` (
  `key` varchar(191) NOT NULL,
  `owner` varchar(191) NOT NULL,
  `expiration` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `description` varchar(400) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `author_id` bigint(20) UNSIGNED DEFAULT NULL,
  `author_type` varchar(191) NOT NULL DEFAULT 'Mxcar\\ACL\\Models\\User',
  `icon` varchar(60) DEFAULT NULL,
  `order` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `is_featured` tinyint(4) NOT NULL DEFAULT 0,
  `is_default` tinyint(3) UNSIGNED NOT NULL 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 `categories`
--

INSERT INTO `categories` (`id`, `name`, `parent_id`, `description`, `status`, `author_id`, `author_type`, `icon`, `order`, `is_featured`, `is_default`, `created_at`, `updated_at`) VALUES
(1, 'New Cars', 0, 'Explore our collection of articles and insights in this category.', 'published', 1, 'Mxcar\\ACL\\Models\\User', NULL, 0, 0, 0, '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(2, 'Car Rentals', 0, 'Explore our collection of articles and insights in this category.', 'published', 1, 'Mxcar\\ACL\\Models\\User', NULL, 0, 1, 0, '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(3, 'Electric Vehicles', 0, 'Explore our collection of articles and insights in this category.', 'published', 1, 'Mxcar\\ACL\\Models\\User', NULL, 0, 1, 0, '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(4, 'Car Maintenance', 0, 'Explore our collection of articles and insights in this category.', 'published', 1, 'Mxcar\\ACL\\Models\\User', NULL, 0, 1, 0, '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(5, 'Road Trips', 0, 'Explore our collection of articles and insights in this category.', 'published', 1, 'Mxcar\\ACL\\Models\\User', NULL, 0, 1, 0, '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(6, 'Luxury Cars', 0, 'Explore our collection of articles and insights in this category.', 'published', 1, 'Mxcar\\ACL\\Models\\User', NULL, 0, 1, 0, '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(7, 'Family Cars', 0, 'Explore our collection of articles and insights in this category.', 'published', 1, 'Mxcar\\ACL\\Models\\User', NULL, 0, 1, 0, '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(8, 'Off-Road Vehicles', 0, 'Explore our collection of articles and insights in this category.', 'published', 1, 'Mxcar\\ACL\\Models\\User', NULL, 0, 1, 0, '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(9, 'Hybrid Cars', 0, 'Explore our collection of articles and insights in this category.', 'published', 1, 'Mxcar\\ACL\\Models\\User', NULL, 0, 1, 0, '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(10, 'Car Innovations', 0, 'Explore our collection of articles and insights in this category.', 'published', 1, 'Mxcar\\ACL\\Models\\User', NULL, 0, 1, 0, '2026-03-06 08:22:18', '2026-03-06 08:22:18');

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

--
-- Table structure for table `categories_translations`
--

CREATE TABLE `categories_translations` (
  `lang_code` varchar(20) NOT NULL,
  `categories_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `chat_conversations`
--

CREATE TABLE `chat_conversations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `session_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `context_type` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `context_id` bigint(20) UNSIGNED DEFAULT NULL,
  `source` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'platform',
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `chat_conversations`
--

INSERT INTO `chat_conversations` (`id`, `session_id`, `user_id`, `context_type`, `context_id`, `source`, `metadata`, `created_at`, `updated_at`) VALUES
(1, 'chat_69d777688db323.74862272', 36, NULL, NULL, 'platform', NULL, '2026-04-09 15:24:48', '2026-04-09 15:24:48'),
(2, 'chat_69d778e0973c29.53360933', 37, NULL, NULL, 'platform', NULL, '2026-04-09 15:31:04', '2026-04-09 15:31:04'),
(3, 'chat_69d7791b8aaa23.27770141', 37, NULL, NULL, 'platform', NULL, '2026-04-09 15:32:03', '2026-04-09 15:32:03'),
(4, 'chat_69ddbb42038ab4.93662616', NULL, NULL, NULL, 'platform', NULL, '2026-04-14 09:27:54', '2026-04-14 09:27:54'),
(5, 'chat_69e6e963193543.33150177', NULL, NULL, NULL, 'platform', NULL, '2026-04-21 08:35:07', '2026-04-21 08:35:07'),
(6, 'chat_69e6e981bc67e8.51726993', NULL, NULL, NULL, 'platform', NULL, '2026-04-21 08:35:37', '2026-04-21 08:35:37'),
(7, 'chat_69e8588243cd53.34509598', 36, NULL, NULL, 'platform', NULL, '2026-04-22 10:41:30', '2026-04-22 10:41:30'),
(8, 'chat_69f1e704b58c38.37123503', 36, NULL, NULL, 'platform', NULL, '2026-04-29 11:09:56', '2026-04-29 11:09:56'),
(9, 'chat_69f78e9e677777.10720755', NULL, NULL, NULL, 'platform', NULL, '2026-05-03 23:36:22', '2026-05-03 23:36:22');

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

--
-- Table structure for table `chat_messages`
--

CREATE TABLE `chat_messages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `conversation_id` bigint(20) UNSIGNED NOT NULL,
  `role` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `source` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'platform',
  `provider_message_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone_number` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `timestamp_ms` bigint(20) DEFAULT NULL,
  `whatsapp_metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `meta` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `chat_messages`
--

INSERT INTO `chat_messages` (`id`, `conversation_id`, `role`, `content`, `source`, `provider_message_id`, `phone_number`, `timestamp_ms`, `whatsapp_metadata`, `meta`, `created_at`, `updated_at`) VALUES
(1, 1, 'user', 'What vehicles do you have available?', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-09 15:24:48', '2026-04-09 15:24:48'),
(2, 1, 'assistant', 'We currently have the following vehicles available for rental:\n1. Toyota Camry XLE Hybrid 2024\n2. Honda Accord Sport 2.0T 2024\n3. Mercedes-Benz C300 4MATIC 2024\n4. BMW 330i xDrive M Sport 2024\n5. Lexus ES 350 F Sport 2024\n\nWe have a total of 102 vehicles across these categories ready for rental. Let me know if you need more information about any specific vehicle or if you\'d like assistance with choosing the right one for your needs.', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-09 15:24:50', '2026-04-09 15:24:50'),
(3, 2, 'user', 'What vehicles do you have available?', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-09 15:31:04', '2026-04-09 15:31:04'),
(4, 2, 'assistant', 'We currently have the following vehicles available for rental:\n1. Toyota Camry XLE Hybrid 2024\n2. Honda Accord Sport 2.0T 2024\n3. Mercedes-Benz C300 4MATIC 2024\n4. BMW 330i xDrive M Sport 2024\n5. Lexus ES 350 F Sport 2024\n\nWe have a total of 102 vehicles ready for rental across these models. If you need more information about any specific vehicle or would like to make a reservation, feel free to let me know!', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-09 15:31:07', '2026-04-09 15:31:07'),
(5, 2, 'user', 'HI', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-09 15:31:43', '2026-04-09 15:31:43'),
(6, 2, 'assistant', 'Hello! How can I assist you today? Feel free to ask any questions or let me know how I can help you with your car rental needs.', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-09 15:31:44', '2026-04-09 15:31:44'),
(7, 3, 'user', 'What is your cancellation policy?', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-09 15:32:03', '2026-04-09 15:32:03'),
(8, 3, 'assistant', 'Our cancellation policy at MXCar allows for free cancellations up to 24 hours before the scheduled pickup time. If you need to cancel your reservation, please make sure to do so at least 24 hours in advance to avoid any cancellation fees. If you have any specific concerns or need assistance with canceling a booking, feel free to reach out to our 24/7 customer support team at +1 (800) 123-4567 or via email at biz@miracuves.com.', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-09 15:32:05', '2026-04-09 15:32:05'),
(9, 4, 'user', 'What vehicles do you have available?', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-14 09:27:54', '2026-04-14 09:27:54'),
(10, 4, 'assistant', 'We currently have the following vehicles available for rental:\n\n1. Toyota Camry XLE Hybrid 2024\n2. Honda Accord Sport 2.0T 2024\n3. Mercedes-Benz C300 4MATIC 2024\n4. BMW 330i xDrive M Sport 2024\n5. Lexus ES 350 F Sport 2024\n\nWe have a total of 102 vehicles ready for rental across these categories. Let me know if you need more details about any specific vehicle or if you have any preferences in mind.', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-14 09:27:55', '2026-04-14 09:27:55'),
(11, 5, 'user', 'What are your rental prices?', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-21 08:35:07', '2026-04-21 08:35:07'),
(12, 5, 'assistant', 'Our rental prices vary based on the type of vehicle and duration of the rental. Here is an overview of our current pricing:\n\n- Daily rentals: Starting from $31 per day\n- Weekly rentals: Better rates for extended trips\n- Monthly rentals: Best value for long-term needs\n\nPlease note that these prices are subject to change based on availability and demand. For the most accurate and up-to-date pricing for your specific rental needs, please provide me with the details of your desired rental dates and vehicle preference.', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-21 08:35:08', '2026-04-21 08:35:08'),
(13, 6, 'user', 'What is your cancellation policy?', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-21 08:35:37', '2026-04-21 08:35:37'),
(14, 6, 'assistant', 'Our cancellation policy allows for free cancellation up to 24 hours before the scheduled pickup time. If you need to cancel your reservation, please ensure to do so at least 24 hours in advance to avoid any cancellation fees. If you have any further questions or need assistance with a cancellation, feel free to contact us at +1 (800) 123-4567 or email us at biz@miracuves.com.', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-21 08:35:39', '2026-04-21 08:35:39'),
(15, 7, 'user', 'How do I book a car?', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-22 10:41:30', '2026-04-22 10:41:30'),
(16, 7, 'assistant', 'Booking a car with MXCar is quite simple! You can either book directly through our website, mobile app, or by contacting our customer support team via phone or email. Here\'s a step-by-step guide to help you through the process:\n\n1. **Visit MXCar Website/App**: Go to our official website or download the MXCar mobile app from the App Store or Google Play Store.\n\n2. **Enter Rental Information**: Select the location, dates, and times for pick-up and drop-off. Choose the vehicle category that suits your needs.\n\n3. **Choose Extras**: Select any additional extras you may need, such as GPS systems, child safety seats, or additional drivers.\n\n4. **Review Pricing**: Check the pricing details, including the total cost, any insurance options, and any promotions or discounts available.\n\n5. **Provide Personal Information**: Enter your personal details, contact information, and payment information. Rest assured, we have a secure payment gateway to protect your data.\n\n6. **Confirmation**: Once you\'ve reviewed all the details and made the payment, you\'ll receive a booking confirmation via email or on the app.\n\nIf you encounter any issues or have specific requests during the booking process, feel free to reach out to our 24/7 Customer Support team for assistance. We are here to ensure your booking experience is smooth and hassle-free.', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-22 10:41:33', '2026-04-22 10:41:33'),
(17, 7, 'user', 'Hello', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-22 10:41:41', '2026-04-22 10:41:41'),
(18, 7, 'assistant', 'Hello! Welcome to MXCar Customer Service. How can I assist you today?', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-22 10:41:42', '2026-04-22 10:41:42'),
(19, 8, 'user', 'How do I book a car?', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-04-29 11:09:56', '2026-04-29 11:09:56'),
(20, 9, 'user', 'What vehicles do you have available?', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-05-03 23:36:22', '2026-05-03 23:36:22'),
(21, 9, 'assistant', 'Hello! We currently have the following vehicles available for rental:\n\n1. Toyota Camry XLE Hybrid 2024\n2. Honda Accord Sport 2.0T 2024\n3. Mercedes-Benz C300 4MATIC 2024\n4. BMW 330i xDrive M Sport 2024\n5. Lexus ES 350 F Sport 2024\n\nWe have a total of 80 vehicles ready for rental across these models. Let me know if you have any specific preferences or requirements for your rental!', 'platform', NULL, NULL, NULL, NULL, NULL, '2026-05-03 23:36:24', '2026-05-03 23:36:24');

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

--
-- Table structure for table `chat_settings`
--

CREATE TABLE `chat_settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `key` varchar(191) NOT NULL,
  `value` longtext DEFAULT NULL,
  `type` varchar(191) NOT NULL DEFAULT 'text',
  `section` varchar(191) NOT NULL DEFAULT 'general',
  `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 `chat_settings`
--

INSERT INTO `chat_settings` (`id`, `key`, `value`, `type`, `section`, `description`, `created_at`, `updated_at`) VALUES
(1, 'company_name', 'MXCar', 'text', 'company', 'Company name for AI assistant', '2026-04-09 14:13:31', '2026-04-09 14:13:31'),
(2, 'company_description', 'MXCar offers a diverse fleet of vehicles for daily, weekly, and monthly rentals. We pride ourselves on transparent pricing, excellent service, and customer satisfaction.', 'textarea', 'company', 'Company description for AI context', '2026-04-09 14:13:31', '2026-04-09 14:13:31'),
(3, 'support_email', 'biz@miracuves.com', 'email', 'support', 'Support email address', '2026-04-09 14:13:31', '2026-04-09 14:13:31'),
(4, 'support_phone', '+1 (800) 123-4567', 'phone', 'support', 'Support phone number', '2026-04-09 14:13:31', '2026-04-09 14:13:31'),
(5, 'cancellation_policy', 'Free cancellation up to 24 hours before pickup', 'textarea', 'policies', 'Cancellation policy details', '2026-04-09 14:13:31', '2026-04-09 14:13:31'),
(6, 'base_prompt', 'You are MXCar, a premium car rental company assistant. You provide expert customer service for all car rental needs.', 'textarea', 'prompt', 'Base system prompt (use {COMPANY_NAME}, {SUPPORT_EMAIL}, {SUPPORT_PHONE} as placeholders)', '2026-04-09 14:13:31', '2026-04-09 14:27:57'),
(7, 'pricing_info', 'Daily rentals: Most flexible option with daily rates. Weekly rentals: Better rates for extended trips. Monthly rentals: Best value for long-term needs.', 'textarea', 'prompt', 'Pricing information for AI', '2026-04-09 14:13:31', '2026-04-09 14:13:31'),
(8, 'insurance_info', 'Multiple insurance options available. Coverage details provided at booking. Damage protection plans available. Additional drivers can be added.', 'textarea', 'prompt', 'Insurance information for AI', '2026-04-09 14:13:31', '2026-04-09 14:13:31');

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

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

CREATE TABLE `cities` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `slug` varchar(120) DEFAULT NULL,
  `state_id` bigint(20) UNSIGNED DEFAULT NULL,
  `country_id` bigint(20) UNSIGNED DEFAULT NULL,
  `record_id` varchar(40) DEFAULT NULL,
  `order` tinyint(4) NOT NULL DEFAULT 0,
  `image` varchar(191) DEFAULT NULL,
  `is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `zip_code` varchar(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cities`
--

INSERT INTO `cities` (`id`, `name`, `slug`, `state_id`, `country_id`, `record_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`, `zip_code`) VALUES
(1, 'Los Angeles', 'los-angeles', 1, 1, NULL, 1, 'locations/location1.jpg', 1, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(2, 'San Francisco', 'san-francisco', 1, 1, NULL, 2, 'locations/images.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-04-02 08:30:18', NULL),
(3, 'San Diego', 'san-diego', 1, 1, NULL, 3, 'locations/location3.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(4, 'New York City', 'new-york-city', 2, 1, NULL, 4, 'locations/new-york-240x320.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-04-02 08:29:43', NULL),
(5, 'Buffalo', 'buffalo', 2, 1, NULL, 5, 'locations/location5.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(6, 'Miami', 'miami', 3, 1, NULL, 6, 'locations/location6.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(7, 'Orlando', 'orlando', 3, 1, NULL, 7, 'locations/location1.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(8, 'Houston', 'houston', 4, 1, NULL, 8, 'locations/location2.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(9, 'Austin', 'austin', 4, 1, NULL, 9, 'locations/location3.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(10, 'Chicago', 'chicago', 5, 1, NULL, 10, 'locations/location4.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(11, 'London', 'london', 6, 2, NULL, 11, 'locations/london2-240x320.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-04-02 08:29:23', NULL),
(12, 'Manchester', 'manchester', 6, 2, NULL, 12, 'locations/location6.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(13, 'Edinburgh', 'edinburgh', 7, 2, NULL, 13, 'locations/location1.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(14, 'Toronto', 'toronto', 8, 3, NULL, 14, 'locations/location2.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(15, 'Ottawa', 'ottawa', 8, 3, NULL, 15, 'locations/location3.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(16, 'Vancouver', 'vancouver', 9, 3, NULL, 16, 'locations/location4.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(17, 'Munich', 'munich', 10, 4, NULL, 17, 'locations/location5.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(18, 'Berlin', 'berlin', 11, 4, NULL, 18, 'locations/berlin2-240x320.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-04-02 08:30:00', NULL),
(19, 'Paris', 'paris', 12, 5, NULL, 19, 'locations/paris-240x320.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-04-02 08:29:07', NULL),
(20, 'Nice', 'nice', 13, 5, NULL, 20, 'locations/location2.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(21, 'Sydney', 'sydney', 14, 6, NULL, 21, 'locations/location3.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(22, 'Melbourne', 'melbourne', 15, 6, NULL, 22, 'locations/location4.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(23, 'Tokyo', 'tokyo', 16, 7, NULL, 23, 'locations/location5.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(24, 'Osaka', 'osaka', 17, 7, NULL, 24, 'locations/location6.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(25, 'Rome', 'rome', 18, 8, NULL, 25, 'locations/location1.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(26, 'Milan', 'milan', 19, 8, NULL, 26, 'locations/location2.jpg', 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL),
(27, 'Mumbai', 'mumbai-bkc', 20, 9, NULL, 0, 'locations/12930.jpg', 0, 'published', '2026-04-30 18:30:23', '2026-04-30 18:30:23', '400001');

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

--
-- Table structure for table `cities_translations`
--

CREATE TABLE `cities_translations` (
  `lang_code` varchar(20) NOT NULL,
  `cities_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) DEFAULT NULL,
  `slug` varchar(120) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `contacts` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(60) NOT NULL,
  `email` varchar(60) DEFAULT NULL,
  `phone` varchar(60) DEFAULT NULL,
  `address` varchar(120) DEFAULT NULL,
  `subject` varchar(120) DEFAULT NULL,
  `content` longtext NOT NULL,
  `custom_fields` text DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'unread',
  `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 `contact_custom_fields`
--

CREATE TABLE `contact_custom_fields` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(191) NOT NULL,
  `required` tinyint(1) NOT NULL DEFAULT 0,
  `name` varchar(191) NOT NULL,
  `placeholder` varchar(191) DEFAULT NULL,
  `order` int(11) NOT NULL DEFAULT 999,
  `status` varchar(191) NOT NULL DEFAULT 'published',
  `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 `contact_custom_fields_translations`
--

CREATE TABLE `contact_custom_fields_translations` (
  `contact_custom_fields_id` bigint(20) UNSIGNED NOT NULL,
  `lang_code` varchar(191) NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `placeholder` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `contact_custom_field_options`
--

CREATE TABLE `contact_custom_field_options` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `custom_field_id` bigint(20) UNSIGNED NOT NULL,
  `label` varchar(191) DEFAULT NULL,
  `value` varchar(191) NOT NULL,
  `order` int(11) NOT NULL DEFAULT 999,
  `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 `contact_custom_field_options_translations`
--

CREATE TABLE `contact_custom_field_options_translations` (
  `contact_custom_field_options_id` bigint(20) UNSIGNED NOT NULL,
  `lang_code` varchar(191) NOT NULL,
  `label` varchar(191) DEFAULT NULL,
  `value` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `contact_replies`
--

CREATE TABLE `contact_replies` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `message` longtext NOT NULL,
  `contact_id` bigint(20) UNSIGNED NOT 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 `countries`
--

CREATE TABLE `countries` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `nationality` varchar(120) DEFAULT NULL,
  `order` tinyint(4) NOT NULL DEFAULT 0,
  `image` varchar(191) DEFAULT NULL,
  `is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `code` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `countries`
--

INSERT INTO `countries` (`id`, `name`, `nationality`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`, `code`) VALUES
(1, 'United States', 'American', 1, NULL, 1, 'published', '2026-03-06 08:22:27', NULL, 'US'),
(2, 'United Kingdom', 'British', 2, NULL, 0, 'published', '2026-03-06 08:22:27', NULL, 'GB'),
(3, 'Canada', 'Canadian', 3, NULL, 0, 'published', '2026-03-06 08:22:27', NULL, 'CA'),
(4, 'Germany', 'German', 4, NULL, 0, 'published', '2026-03-06 08:22:27', NULL, 'DE'),
(5, 'France', 'French', 5, NULL, 0, 'published', '2026-03-06 08:22:27', NULL, 'FR'),
(6, 'Australia', 'Australian', 6, NULL, 0, 'published', '2026-03-06 08:22:27', NULL, 'AU'),
(7, 'Japan', 'Japanese', 7, NULL, 0, 'published', '2026-03-06 08:22:27', NULL, 'JP'),
(8, 'Italy', 'Italian', 8, NULL, 0, 'published', '2026-03-06 08:22:27', NULL, 'IT'),
(9, 'India', 'Indian', 0, 'locations/12930.jpg', 0, 'published', '2026-04-30 18:25:05', '2026-04-30 18:26:55', 'IN');

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

--
-- Table structure for table `countries_translations`
--

CREATE TABLE `countries_translations` (
  `lang_code` varchar(20) NOT NULL,
  `countries_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) DEFAULT NULL,
  `nationality` varchar(120) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_bookings`
--

CREATE TABLE `cr_bookings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `booking_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `transaction_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_age` int(10) UNSIGNED DEFAULT NULL,
  `customer_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `kyc_verification_id` bigint(20) UNSIGNED DEFAULT NULL,
  `amount` double NOT NULL,
  `delivery_location_id` bigint(20) UNSIGNED DEFAULT NULL,
  `custom_delivery_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `delivery_fee` decimal(15,2) NOT NULL DEFAULT 0.00,
  `guest_protection_plan_id` bigint(20) UNSIGNED DEFAULT NULL,
  `guest_protection_fee` decimal(15,2) NOT NULL DEFAULT 0.00,
  `guest_deductible_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `host_protection_plan_id` bigint(20) UNSIGNED DEFAULT NULL,
  `host_revenue_share_percentage` decimal(5,2) NOT NULL DEFAULT 100.00,
  `host_deductible_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `sub_total` double NOT NULL,
  `coupon_amount` double NOT NULL DEFAULT 0,
  `coupon_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tax_amount` double NOT NULL DEFAULT 0,
  `price_lock_expires_at` datetime DEFAULT NULL,
  `price_snapshot` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `fee_name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `fee_value` decimal(15,2) NOT NULL DEFAULT 0.00,
  `fee_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `deposit_base_amount` decimal(15,2) DEFAULT NULL,
  `deposit_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `deposit_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `deposit_rate` decimal(8,2) NOT NULL DEFAULT 0.00,
  `deposit_risk_multiplier` decimal(8,4) DEFAULT NULL,
  `deposit_risk_level` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `deposit_risk_reasons` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `eligibility_state` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `eligibility_reasons` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `deposit_hold_status` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `deposit_hold_amount` decimal(15,2) DEFAULT NULL,
  `deposit_authorized_at` datetime DEFAULT NULL,
  `deposit_settled_at` datetime DEFAULT NULL,
  `deposit_captured_amount` decimal(15,2) DEFAULT NULL,
  `deposit_released_amount` decimal(15,2) DEFAULT NULL,
  `currency_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `completion_miles` int(10) UNSIGNED DEFAULT NULL,
  `distance_unit` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `start_mileage` int(10) UNSIGNED DEFAULT NULL,
  `start_mileage_snapshot` int(10) UNSIGNED DEFAULT NULL,
  `included_distance_limit` int(10) UNSIGNED DEFAULT NULL,
  `distance_overage_billing_mode` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `extra_distance_unit_price` decimal(15,4) NOT NULL DEFAULT 0.0000,
  `distance_travelled` int(10) UNSIGNED DEFAULT NULL,
  `distance_overage_units` int(10) UNSIGNED DEFAULT NULL,
  `distance_overage_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `completion_gas_level` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `checkin_fuel_level` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `fuel_difference_charge` decimal(10,2) NOT NULL DEFAULT 0.00,
  `actual_return_datetime` timestamp NULL DEFAULT NULL,
  `late_fee_charge` decimal(10,2) NOT NULL DEFAULT 0.00,
  `damage_amount` decimal(10,2) NOT NULL DEFAULT 0.00,
  `damage_status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `damage_dispute_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `damage_settled_at` timestamp NULL DEFAULT NULL,
  `original_end_date` timestamp NULL DEFAULT NULL,
  `modification_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `modification_status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `modification_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `modified_at` timestamp NULL DEFAULT NULL,
  `cancellation_policy` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `refund_amount` decimal(10,2) DEFAULT NULL,
  `cancellation_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cancelled_at` timestamp NULL DEFAULT NULL,
  `cancelled_by` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `completion_damage_images` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `completion_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `key_instructions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `key_instructions_sent_at` timestamp NULL DEFAULT NULL,
  `pickup_photos` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `pickup_photos_uploaded_at` timestamp NULL DEFAULT NULL,
  `after_photos` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `after_photos_uploaded_at` timestamp NULL DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `status` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `checkin_status` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `is_escalated` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `vendor_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `cr_bookings`
--

INSERT INTO `cr_bookings` (`id`, `booking_number`, `transaction_id`, `customer_name`, `customer_email`, `customer_phone`, `customer_age`, `customer_id`, `kyc_verification_id`, `amount`, `delivery_location_id`, `custom_delivery_address`, `delivery_fee`, `guest_protection_plan_id`, `guest_protection_fee`, `guest_deductible_amount`, `host_protection_plan_id`, `host_revenue_share_percentage`, `host_deductible_amount`, `sub_total`, `coupon_amount`, `coupon_code`, `tax_amount`, `price_lock_expires_at`, `price_snapshot`, `fee_name`, `fee_value`, `fee_amount`, `deposit_base_amount`, `deposit_amount`, `deposit_type`, `deposit_rate`, `deposit_risk_multiplier`, `deposit_risk_level`, `deposit_risk_reasons`, `eligibility_state`, `eligibility_reasons`, `deposit_hold_status`, `deposit_hold_amount`, `deposit_authorized_at`, `deposit_settled_at`, `deposit_captured_amount`, `deposit_released_amount`, `currency_id`, `payment_id`, `note`, `completion_miles`, `distance_unit`, `start_mileage`, `start_mileage_snapshot`, `included_distance_limit`, `distance_overage_billing_mode`, `extra_distance_unit_price`, `distance_travelled`, `distance_overage_units`, `distance_overage_amount`, `completion_gas_level`, `checkin_fuel_level`, `fuel_difference_charge`, `actual_return_datetime`, `late_fee_charge`, `damage_amount`, `damage_status`, `damage_dispute_reason`, `damage_settled_at`, `original_end_date`, `modification_type`, `modification_status`, `modification_reason`, `modified_at`, `cancellation_policy`, `refund_amount`, `cancellation_reason`, `cancelled_at`, `cancelled_by`, `completion_damage_images`, `completion_notes`, `key_instructions`, `key_instructions_sent_at`, `pickup_photos`, `pickup_photos_uploaded_at`, `after_photos`, `after_photos_uploaded_at`, `completed_at`, `status`, `checkin_status`, `is_escalated`, `created_at`, `updated_at`, `vendor_id`) VALUES
(1, '#1000002', 'Y4RYPSPYOX7ZR7DV91SYPTLO7NI0EYF4', 'Sarah Davis', 'sarah.davis@example.com', '+16577789305', NULL, '24', NULL, 249, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 249, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-01 08:24:05', '2026-03-06 08:24:05', 5),
(2, '#1000003', 'E076W5ICJ88FDLUOYNN3BJVOX9DWKSRS', 'Michael Brown', 'michael.brown@example.com', '+13650704304', NULL, '23', NULL, 47, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 47, 0, NULL, 4.7, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', 'pending', 0, '2026-02-02 08:24:05', '2026-03-06 08:24:05', 8),
(3, '#1000004', 'BPC7VTCZGOOCBIWYOCHZDBCVALE5ETTE', 'Amanda Taylor', 'amanda.taylor@example.com', '+14335013311', NULL, '28', NULL, 308, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 308, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '3', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', 'pending', 0, '2026-01-06 08:24:05', '2026-03-06 08:24:05', 32),
(4, '#1000005', 'HTOEJGYGNSOLXSXTJZ31MGOJW9WNT7ZP', 'Michael Brown', 'michael.brown@example.com', '+13650704304', NULL, '23', NULL, 186, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 186, 0, NULL, 18.6, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '4', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', 'pending', 0, '2026-01-30 08:24:05', '2026-03-06 08:24:05', 7),
(5, '#1000006', 'DYIBGCDUH2CVXOWG2QMIBDHDHYMZ5AP9', 'Sarah Davis', 'sarah.davis@example.com', '+16577789305', NULL, '24', NULL, 224, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 224, 0, NULL, 22.4, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '5', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', 'pending', 0, '2026-02-02 08:24:05', '2026-03-06 08:24:05', 12),
(6, '#1000007', 'ATBZTU0MYS4V4Z2WVRSQWTJV4ZOWIVIQ', 'David Wilson', 'david.wilson@example.com', '+19415120048', NULL, '25', NULL, 396, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 396, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '6', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-12 08:24:05', '2026-03-06 08:24:05', 12),
(7, '#1000008', 'RIJCNZWCDYENPVRJUIPNHOAPMSJQR6UY', 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', NULL, '29', NULL, 245, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 245, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '7', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-01-24 08:24:05', '2026-03-06 08:24:05', 14),
(8, '#1000009', 'JGHCDWWFTRZK7EQVM17ANJCXIV6THAJ5', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 190, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 190, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '8', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', 'pending', 0, '2026-02-08 08:24:05', '2026-03-06 08:24:05', NULL),
(9, '#1000010', 'DB4XNPVF8NEQ1KDGEADQZ2WBVXE7BTG8', 'Demo Customer', 'customer@mxcar.com', '+12725079138', NULL, '31', NULL, 230, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 230, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '9', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-01-25 08:24:05', '2026-03-06 08:24:05', NULL),
(10, '#1000011', 'FUNYIZOOCYRA0OD3WILX44ZZ6BP2JC4Q', 'Emily Johnson', 'emily.johnson@example.com', '+18408163667', NULL, '22', NULL, 33, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 33, 0, NULL, 3.3, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', 'pending', 0, '2026-01-16 08:24:05', '2026-03-06 08:24:05', NULL),
(11, '#1000012', 'BB1W5UGF9UM0NPX52DGOJHFIE7KEFPWG', 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', NULL, '29', NULL, 204, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 204, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-28 08:24:05', '2026-03-06 08:24:05', 17),
(12, '#1000013', 'YQHMYQLJDBDCLQ6360XZYA9RQF4B58Z5', 'David Wilson', 'david.wilson@example.com', '+19415120048', NULL, '25', NULL, 196, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 196, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-17 08:24:05', '2026-03-06 08:24:05', 5),
(13, '#1000014', 'JP6X4CWSFGC6DM5XHVVWQR9PTPIMDWWR', 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', NULL, '30', NULL, 60, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 60, 0, NULL, 6, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', 'pending', 0, '2026-02-05 08:24:05', '2026-03-06 08:24:05', 9),
(14, '#1000015', '90LML3LYE1XLH6MD2JXXCT22ZSBAKBP9', 'Sarah Davis', 'sarah.davis@example.com', '+16577789305', NULL, '24', NULL, 297, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 297, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-24 08:24:05', '2026-03-06 08:24:05', 10),
(15, '#1000016', 'T8MXNFYHHGGYPVYXG7RYYMYFHVXH7RQE', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 106, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 106, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-07 08:24:06', '2026-03-06 08:24:06', 16),
(16, '#1000017', '9LJBHRKGFX2FACPIXORNUY4T3ANFKNOF', 'David Wilson', 'david.wilson@example.com', '+19415120048', NULL, '25', NULL, 195, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 195, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-26 08:24:06', '2026-03-06 08:24:06', 6),
(17, '#1000018', 'EPQH0BIPAETKUKCH5Q57NVXW6TKMORZ3', 'Emily Johnson', 'emily.johnson@example.com', '+18408163667', NULL, '22', NULL, 364, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 364, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-01-20 08:24:06', '2026-03-06 08:24:06', 7),
(18, '#1000019', 'IZYBYOWWT8F8E5GWOXKFPTRHYXHFWP60', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 400, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 400, 0, NULL, 40, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-01-30 08:24:06', '2026-03-06 08:24:06', NULL),
(19, '#1000020', '7CARYTITZOV3UWMIP791XXWLTB4OBY1H', 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', NULL, '29', NULL, 342, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 342, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-24 08:24:06', '2026-03-06 08:24:06', NULL),
(20, '#1000021', '5UQGNAL4QRGVFIGIU1VAHDSP2LKM07RN', 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', NULL, '27', NULL, 165, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 165, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-01-18 08:24:06', '2026-03-06 08:24:06', NULL),
(21, '#1000022', '0PKG9LD05UANWZAC15TJWKR8PMD25BXC', 'Amanda Taylor', 'amanda.taylor@example.com', '+14335013311', NULL, '28', NULL, 212, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 212, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-01-27 08:24:06', '2026-03-06 08:24:06', 16),
(22, '#1000023', 'GSHWASTBBS67UW7M66EIK5CBJTOUSCOL', 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', NULL, '30', NULL, 270, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 270, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-22 08:24:06', '2026-03-06 08:24:06', 1),
(23, '#1000024', 'R25CMAMYUKFVXRAQ3PBWYY7BRD5NUX2R', 'Demo Customer', 'customer@mxcar.com', '+12725079138', NULL, '31', NULL, 184, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 184, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', 'pending', 0, '2026-02-28 08:24:06', '2026-03-06 08:24:06', 11),
(24, '#1000025', '7GP8IE0DIVQXOIPNVVKZVWYA87Q8K6VM', 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', NULL, '27', NULL, 445, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 445, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-01-23 08:24:06', '2026-03-06 08:24:06', 20),
(25, '#1000026', 'AE7L5FQMZQOAHNZE12F38MFCKQC8MJ35', 'Michael Brown', 'michael.brown@example.com', '+13650704304', NULL, '23', NULL, 90, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 90, 0, NULL, 9, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-01-07 08:24:06', '2026-03-06 08:24:06', 14),
(26, '#1000027', 'APGNUGAL679XUP3NSJVJS2NRSUIPVAJP', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 588, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 588, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-01-07 08:24:06', '2026-03-06 08:24:06', 13),
(27, '#1000028', 'QOH4XUB8PCMHGZ048SF3KSN58B6SO4Z0', 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', NULL, '29', NULL, 144, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 144, 0, NULL, 14.4, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-23 08:24:06', '2026-03-06 08:24:06', 18),
(28, '#1000029', 'VREIAL4LAM9KPVRLH0WBNVNZ7V1BOEPQ', 'Jessica Martinez', 'jessica.martinez@example.com', '+13883162240', NULL, '26', NULL, 276, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 276, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-19 08:24:06', '2026-03-06 08:24:06', NULL),
(29, '#1000030', 'UNEOHK4GUN4B48MXCNIFGP8NZPUQS3MQ', 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', NULL, '29', NULL, 658, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 658, 0, NULL, 65.8, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', 'pending', 0, '2026-03-01 08:24:06', '2026-03-06 08:24:06', NULL),
(30, '#1000031', '5ZETEGAFOPCVYHHGAZA3CPBVPHJYLV4J', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 395, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 395, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', 'pending', 0, '2026-01-16 08:24:06', '2026-03-06 08:24:06', NULL),
(31, '#1000032', 'MI66KTDUUSFKE1TLZWJ5ROMKJVN4TL0T', 'Emily Johnson', 'emily.johnson@example.com', '+18408163667', NULL, '22', NULL, 249, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 249, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-03 08:24:06', '2026-03-06 08:24:06', 10),
(32, '#1000033', '8SASTMVALKBN4SSPKNVRBRG8QC3ORBKM', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 58, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 58, 0, NULL, 5.8, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-03-04 08:24:06', '2026-03-06 08:24:06', 18),
(33, '#1000034', 'ZRGFFMEUFWGSMRWER8WA5RP7WETV5TA0', 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', NULL, '30', NULL, 390, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 390, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '33', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-27 08:24:06', '2026-03-06 08:24:06', 6),
(34, '#1000035', 'MW3WH99PNT8N3DTCWTUAKUASEOE5AOYP', 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', NULL, '30', NULL, 560, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 560, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '34', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-03-03 08:24:06', '2026-03-06 08:24:06', 4),
(35, '#1000036', 'F8FLVRPOTMVKVKGMA8X5ACMNJLWHFNVA', 'David Wilson', 'david.wilson@example.com', '+19415120048', NULL, '25', NULL, 282, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 282, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '35', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-01 08:24:06', '2026-03-06 08:24:06', 14),
(36, '#1000037', 'I6SUCKXOYXHSOBRCL6IS1EAYGPSRUEFN', 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', NULL, '27', NULL, 234, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 234, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '36', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-03-02 08:24:06', '2026-03-06 08:24:06', 2),
(37, '#1000038', '4EOFQTMWIFPOJC5DI9254ITRLFADUAWS', 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', NULL, '30', NULL, 340, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 340, 0, NULL, 34, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '37', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-02-27 08:24:06', '2026-03-06 08:24:06', 11),
(38, '#1000039', 'Y5JS71D7TFPXBNM1EP4ZZWUJUTWNTTMJ', 'Jessica Martinez', 'jessica.martinez@example.com', '+13883162240', NULL, '26', NULL, 470, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 470, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '38', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-03 08:24:06', '2026-03-06 08:24:06', NULL),
(39, '#1000040', 'TBAKWBOHVHUL3QQ0YCIFV2M3TPZ8PXGQ', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 248, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 248, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '39', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-04 08:24:06', '2026-03-06 08:24:06', NULL),
(40, '#1000041', 'X3XSFQQW85BP38KAD5FB8ID8YYC5YMXN', 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', NULL, '27', NULL, 564, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 564, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '40', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-03-01 08:24:06', '2026-03-06 08:24:06', NULL),
(41, '#1000042', 'UQDIOZS6UK0CAAAKPPRTE56AYLN4SX16', 'Demo Customer', 'customer@mxcar.com', '+12725079138', NULL, '31', NULL, 90, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 90, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '41', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-06 08:24:06', '2026-03-06 08:24:06', 14),
(42, '#1000043', 'PXEUI6RPLKGWYPJJLTUW5OTBJYPGRGHB', 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', NULL, '27', NULL, 132, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 132, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '42', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-28 08:24:06', '2026-03-06 08:24:06', 12),
(43, '#1000044', '0PT3MGXKXWMKN7X9O1MYCN6CTFE0DXJX', 'David Wilson', 'david.wilson@example.com', '+19415120048', NULL, '25', NULL, 170, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 170, 0, NULL, 17, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '43', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-03-05 08:24:06', '2026-03-06 08:24:06', 16),
(44, '#1000045', 'BZEKWV6LYCYMSMUCNVZIOZHIZSUX9WGE', 'David Wilson', 'david.wilson@example.com', '+19415120048', NULL, '25', NULL, 132, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 132, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '44', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-02-28 08:24:06', '2026-03-06 08:24:06', 12),
(45, '#1000046', 'EPJLZBRBV0QZSER70QEGT1AWEXJPYGOQ', 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', NULL, '30', NULL, 97, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 97, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '45', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-03 08:24:06', '2026-03-06 08:24:06', 9),
(46, '#1000047', 'JJAJHAWDI3D4JZCUQXJ3YXBQE9KQFFP7', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 258, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 258, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '46', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-03-04 08:24:06', '2026-03-06 08:24:06', 10),
(47, '#1000048', 'HXAOGQOHAVB87BGSVZCS1ODWM3RYZREF', 'Jessica Martinez', 'jessica.martinez@example.com', '+13883162240', NULL, '26', NULL, 445, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 445, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '47', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-04 08:24:06', '2026-03-06 08:24:06', 20),
(48, '#1000049', 'XIZDESZQZZ0PQHT5OSKYQDYFUTUDS2PN', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 240, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 240, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '48', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-03-02 08:24:06', '2026-03-06 08:24:06', NULL),
(49, '#1000050', 'ODUCTLBV7AS45TJCPF2CVEJ1UR3FCAXO', 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', NULL, '29', NULL, 230, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 230, 0, NULL, 23, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'completed', 'pending', 0, '2026-02-27 08:24:06', '2026-03-06 08:24:06', NULL),
(50, '#1000051', '9IIHQIOPSOVTUQQEMENJPIEKVDJNYVAR', 'Sarah Davis', 'sarah.davis@example.com', '+16577789305', NULL, '24', NULL, 114, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 114, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '50', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-06 08:24:07', '2026-03-06 08:24:07', NULL),
(51, '#1000052', 'HRJLXAWATKKBUXKAGKK5DGHGQLJRPFR8', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 240, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 240, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '51', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-25 08:24:07', '2026-03-06 08:24:07', 4),
(52, '#1000053', 'VCRV0LQWPCYHZKSVKTS9T0JHIJDI35LU', 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', NULL, '27', NULL, 255, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 255, 0, NULL, 25.5, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '52', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-07 08:24:07', '2026-03-06 08:24:07', 16),
(53, '#1000054', 'MGZ4X8ZM74REISL9MUCNVPEINJZERFTQ', 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', NULL, '30', NULL, 217, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 217, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '53', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-10 08:24:07', '2026-03-06 08:24:07', 7),
(54, '#1000055', 'C1LICEYUITUOXO5ZUP1GWSX8KUH6OWXX', 'Emily Johnson', 'emily.johnson@example.com', '+18408163667', NULL, '22', NULL, 425, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 425, 0, NULL, 42.5, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '54', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-24 08:24:07', '2026-03-06 08:24:07', 16),
(55, '#1000056', '80X5ESSXQIGGKGJGP3LZ4EDVRFUQSHRA', 'Jessica Martinez', 'jessica.martinez@example.com', '+13883162240', NULL, '26', NULL, 39, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 39, 0, NULL, 3.9, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '55', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-26 08:24:07', '2026-03-06 08:24:07', 14),
(56, '#1000057', 'XILBBWSFEJ7Q3R8M2H4KR6ONFYYDMDIP', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 365, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 365, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '56', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-14 08:24:07', '2026-03-06 08:24:07', 17),
(57, '#1000058', 'H387HWBVIPTSJ9YHHOLQGNFZUWQSGKX6', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 282, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 282, 0, NULL, 28.2, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '57', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-19 08:24:07', '2026-03-06 08:24:07', 8),
(58, '#1000059', '8MIVFQ8USGVWAIZI5CHXIW2MSQNKY02T', 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', NULL, '29', NULL, 94, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 94, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '58', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-26 08:24:07', '2026-03-06 08:24:07', NULL),
(59, '#1000060', 'F95IIZZ6TT9Q6B1QZDZZRKJVGWLLADA6', 'Demo Customer', 'customer@mxcar.com', '+12725079138', NULL, '31', NULL, 230, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 230, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-26 08:24:07', '2026-03-06 08:24:07', NULL),
(60, '#1000061', 'IYHFMTUSTQOJIPNAZGRR47PVHEIYYVG0', 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', NULL, '30', NULL, 152, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 152, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '60', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-25 08:24:07', '2026-03-06 08:24:07', NULL),
(61, '#1000062', 'MGJNVMT95INFFORRITNPMH4NA4DV3JZQ', 'Demo Customer', 'customer@mxcar.com', '+12725079138', NULL, '31', NULL, 594, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 594, 0, NULL, 59.4, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '61', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-09 08:24:07', '2026-03-06 08:24:07', 10),
(62, '#1000063', 'UQKKEC1SID91NFCPO2X4NBLJOXC6SHGU', 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', NULL, '29', NULL, 350, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 350, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-26 08:24:07', '2026-03-06 08:24:07', 19),
(63, '#1000064', 'NFWMZNOHXHPIECUOCH4E0TXLO4UXTAFX', 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', NULL, '30', NULL, 350, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 350, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '63', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-14 08:24:07', '2026-03-06 08:24:07', 19),
(64, '#1000065', '36DUJIEAV680IPZ3QAYYYJKJA8TLOF0K', 'Amanda Taylor', 'amanda.taylor@example.com', '+14335013311', NULL, '28', NULL, 320, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 320, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '64', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-13 08:24:07', '2026-03-06 08:24:07', 4),
(65, '#1000066', 'ICYN78MX7ZIJXNDSUCCHXFWCRVGVZZW0', 'David Wilson', 'david.wilson@example.com', '+19415120048', NULL, '25', NULL, 208, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 208, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '65', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-04-05 08:24:07', '2026-03-06 08:24:07', 11),
(66, '#1000067', '6RI8KZMLJVBP78IELDC7JRHWW57IDAVE', 'Michael Brown', 'michael.brown@example.com', '+13650704304', NULL, '23', NULL, 171, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 171, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '66', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-17 08:24:07', '2026-03-06 08:24:07', 8),
(67, '#1000068', 'TSD8S5HLBPRMWTMJROLHUFWEGFGFJTHL', 'David Wilson', 'david.wilson@example.com', '+19415120048', NULL, '25', NULL, 183, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 183, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '67', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-26 08:24:07', '2026-03-06 08:24:07', 6),
(68, '#1000069', 'IWRO4OBDXF8M1GCHXHIEU9BPXRRTI6OA', 'Michael Brown', 'michael.brown@example.com', '+13650704304', NULL, '23', NULL, 450, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 450, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '68', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-19 08:24:07', '2026-03-06 08:24:07', NULL),
(69, '#1000070', 'LX5K8NZ2N7ZAOPNODGFRW90QERPDIMRS', 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', NULL, '27', NULL, 112, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 112, 0, NULL, 11.2, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '69', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-29 08:24:07', '2026-03-06 08:24:07', NULL),
(70, '#1000071', 'CB0AKMCHXMT4OVXW4YNFSBNXNCDZEUJX', 'David Wilson', 'david.wilson@example.com', '+19415120048', NULL, '25', NULL, 124, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 124, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '70', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-08 08:24:07', '2026-03-06 08:24:07', NULL),
(71, '#1000072', 'CKSYOU9IFWBQ9HJLESCG4XZA3FNRBQGB', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 370, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 370, 0, NULL, 37, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '71', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-23 08:24:07', '2026-03-06 08:24:07', 9),
(72, '#1000073', 'FOM3KJTGEEEUBMXNERKL48YNM5Z2OBNG', 'Michael Brown', 'michael.brown@example.com', '+13650704304', NULL, '23', NULL, 198, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 198, 0, NULL, 19.8, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '72', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-07 08:24:07', '2026-03-06 08:24:07', 12),
(73, '#1000074', 'WBG8CWEDHRXDYLGFKOWVQWCFK6UE650I', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 195, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 195, 0, NULL, 19.5, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '73', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-11 08:24:07', '2026-03-06 08:24:07', 6);
INSERT INTO `cr_bookings` (`id`, `booking_number`, `transaction_id`, `customer_name`, `customer_email`, `customer_phone`, `customer_age`, `customer_id`, `kyc_verification_id`, `amount`, `delivery_location_id`, `custom_delivery_address`, `delivery_fee`, `guest_protection_plan_id`, `guest_protection_fee`, `guest_deductible_amount`, `host_protection_plan_id`, `host_revenue_share_percentage`, `host_deductible_amount`, `sub_total`, `coupon_amount`, `coupon_code`, `tax_amount`, `price_lock_expires_at`, `price_snapshot`, `fee_name`, `fee_value`, `fee_amount`, `deposit_base_amount`, `deposit_amount`, `deposit_type`, `deposit_rate`, `deposit_risk_multiplier`, `deposit_risk_level`, `deposit_risk_reasons`, `eligibility_state`, `eligibility_reasons`, `deposit_hold_status`, `deposit_hold_amount`, `deposit_authorized_at`, `deposit_settled_at`, `deposit_captured_amount`, `deposit_released_amount`, `currency_id`, `payment_id`, `note`, `completion_miles`, `distance_unit`, `start_mileage`, `start_mileage_snapshot`, `included_distance_limit`, `distance_overage_billing_mode`, `extra_distance_unit_price`, `distance_travelled`, `distance_overage_units`, `distance_overage_amount`, `completion_gas_level`, `checkin_fuel_level`, `fuel_difference_charge`, `actual_return_datetime`, `late_fee_charge`, `damage_amount`, `damage_status`, `damage_dispute_reason`, `damage_settled_at`, `original_end_date`, `modification_type`, `modification_status`, `modification_reason`, `modified_at`, `cancellation_policy`, `refund_amount`, `cancellation_reason`, `cancelled_at`, `cancelled_by`, `completion_damage_images`, `completion_notes`, `key_instructions`, `key_instructions_sent_at`, `pickup_photos`, `pickup_photos_uploaded_at`, `after_photos`, `after_photos_uploaded_at`, `completed_at`, `status`, `checkin_status`, `is_escalated`, `created_at`, `updated_at`, `vendor_id`) VALUES
(74, '#1000075', 'RMOVUZOIOJ2FL9IWRRNBR00XPGRDQNZN', 'Amanda Taylor', 'amanda.taylor@example.com', '+14335013311', NULL, '28', NULL, 180, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 180, 0, NULL, 18, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '74', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-19 08:24:07', '2026-03-06 08:24:07', 8),
(75, '#1000076', 'DSYWXSMMZMSXC9C13LWE4GKGXP7WYXKK', 'Demo Customer', 'customer@mxcar.com', '+12725079138', NULL, '31', NULL, 65, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 65, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '75', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-08 08:24:07', '2026-03-06 08:24:07', 6),
(76, '#1000077', 'NOC7DLHW58KLSVJ0PVWIWUIIPS0RISDM', 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', NULL, '27', NULL, 245, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 245, 0, NULL, 24.5, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '76', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-03-25 08:24:07', '2026-03-06 08:24:07', 5),
(77, '#1000078', 'EAARJSNRWIRYYSFKLS7BXQYDWRIB7A56', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 154, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 154, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '77', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-12 08:24:07', '2026-03-06 08:24:07', 32),
(78, '#1000079', 'QU0KVC0GQCOPWRLKIBZY7UG8ISS1WGJT', 'David Wilson', 'david.wilson@example.com', '+19415120048', NULL, '25', NULL, 372, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 372, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '78', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-21 08:24:07', '2026-03-06 08:24:07', NULL),
(79, '#1000080', '1KD9EQWQMTFLEFZHDRDPV3UU0LVPG2XD', 'Emily Johnson', 'emily.johnson@example.com', '+18408163667', NULL, '22', NULL, 276, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 276, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '79', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-16 08:24:07', '2026-03-06 08:24:07', NULL),
(80, '#1000081', '9IWAW1A0AOPKF4DMRD6HA2S9TCOOJFJB', 'John Smith', 'john.smith@example.com', '+16104062225', NULL, '21', NULL, 79, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 79, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '80', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-13 08:24:07', '2026-03-06 08:24:07', NULL),
(81, '#1000082', 'D1EAESQZUQKFTQ6JKBG92H3ACOCANW1K', 'Ribhu Pramanik', 'ribhu02@gmail.com', '8583024644', NULL, '34', NULL, 50, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 50, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '81', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-03-18 04:01:46', '2026-03-18 04:03:52', 34),
(82, '#1000083', 'IUAE29FGUKFJGHWRGFAAK1XLKQWBDYEC', 'User Demo', 'user@demo.com', '+918302786761', NULL, '36', NULL, 50, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 50, 0, NULL, 0, NULL, NULL, NULL, 0.00, 0.00, NULL, 0.00, NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '82', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-30 07:15:21', 'host', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', 'pending', 1, '2026-04-06 04:50:31', '2026-04-30 07:15:21', 34),
(83, '#1000084', 'F6FSO2DDUYVE240XIUMBA7BXJUB6YZAV', 'customer', 'customer@gmail.com', '+919981207899', NULL, '37', NULL, 852, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 710, 0, NULL, 0, NULL, NULL, 'Service fee', 0.00, 0.00, 142.00, 142.00, 'percentage', 20.00, 1.0000, 'standard', '[]', NULL, NULL, 'pending_authorization', 142.00, NULL, NULL, NULL, NULL, '1', '83', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[null]', NULL, '[\"bookings\\/after-photos\\/ext-mercedes-benz10-c300.jpeg\"]', '2026-04-09 14:23:44', NULL, 'completed', 'pending', 0, '2026-04-09 14:21:52', '2026-04-09 14:23:44', 13),
(84, '#1000085', 'TA0DIZJWF1KJGUVLPUBSDCWLCOJ7I3AT', 'customer', 'customer@gmail.com', '+919981207899', NULL, '37', NULL, 2557.2, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 2131, 0, NULL, 0, NULL, NULL, 'Service fee', 0.00, 0.00, 426.20, 426.20, 'percentage', 20.00, 1.0000, 'standard', '[]', NULL, NULL, 'pending_authorization', 426.20, NULL, NULL, NULL, NULL, '1', '84', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', NULL, NULL, NULL, '[null,\"bookings\\/pickup-photos\\/images-5.jpeg\",\"bookings\\/pickup-photos\\/verna2.jpeg\"]', '2026-04-10 12:49:44', '[\"bookings\\/after-photos\\/verna1.jpeg\",\"bookings\\/after-photos\\/verna.jpeg\"]', '2026-04-09 14:38:47', '2026-04-09 14:53:05', 'completed', 'pending', 0, '2026-04-09 14:33:18', '2026-04-10 12:49:44', 35),
(90, '#1000091', 'VGSUR71WGVWFYN0BHGBSNGOWUVYGZMBM', 'User Demo', 'user@demo.com', '+918302786761', NULL, '36', NULL, 138.8, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 99, 0, NULL, 0, NULL, NULL, 'Service fee', 20.00, 20.00, 19.80, 19.80, 'percentage', 20.00, 1.0000, 'high', '[\"Unverified renter profile\",\"Low completed booking history\",\"Escalation or damage history\"]', NULL, NULL, 'captured_directly', 19.80, NULL, NULL, NULL, NULL, '1', '85', NULL, 20, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, 0.00, 'quarter', NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[\"car-rentals\\/completion-images\\/screencapture-mxcar-local-bookings-2026-04-09-09-16-15.png\"]', 'test', NULL, NULL, '[null]', NULL, NULL, NULL, '2026-04-09 16:53:07', 'completed', 'pending', 0, '2026-04-09 16:33:56', '2026-04-09 16:53:07', 10),
(91, '#1000092', '0QQU1MZRSE2CURA8TWLPXYTBM7CGE0B5', 'User Demo', 'user@demo.com', '+918302786761', NULL, '36', 2, 393.2, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 311, 0, NULL, 0, NULL, '{\"rental_days\":1,\"base_rental_amount\":52,\"policy_discount_amount\":0,\"policy_discount_pre_cap_amount\":0,\"policy_discount_capped\":false,\"policy_discount_cap_percent\":null,\"policy_discount_source\":\"\"}', 'Service fee', 20.00, 20.00, 62.20, 62.20, 'percentage', 20.00, 1.0000, 'high', '[\"Low completed booking history\",\"Escalation or damage history\"]', 'manual_review', '[\"high_risk_deposit_profile\"]', 'pending_authorization', 62.20, NULL, NULL, NULL, NULL, '1', '86', NULL, NULL, 'km', 16326, 16326, NULL, 'end_of_trip', 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-04-22 10:50:48', '2026-04-22 10:50:48', 11),
(92, '#1000093', 'TQLTI2L55QKYG61WGG1OQG3NOAMBKTD4', 'User Demo', 'user@demo.com', '+918302786761', NULL, '36', 2, 1623.2, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 1336, 0, NULL, 0, NULL, '{\"rental_days\":4,\"base_rental_amount\":800,\"policy_discount_amount\":0,\"policy_discount_pre_cap_amount\":0,\"policy_discount_capped\":false,\"policy_discount_cap_percent\":null,\"policy_discount_source\":\"\"}', 'Service fee', 20.00, 20.00, 267.20, 267.20, 'percentage', 20.00, 1.0000, 'high', '[\"Low completed booking history\",\"Escalation or damage history\"]', 'manual_review', '[\"high_risk_deposit_profile\"]', 'pending_authorization', 267.20, NULL, NULL, NULL, NULL, '1', '87', NULL, NULL, 'km', NULL, NULL, NULL, 'end_of_trip', 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-04-22 11:22:18', '2026-04-22 11:22:18', 35),
(93, '#1000094', 'A6GXTBHYSLWPKQW2W7W4R4K4TBGX9NVU', 'User Demo', 'user@demo.com', '+918302786761', NULL, '36', 2, 941.6, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 768, 0, NULL, 0, NULL, '{\"rental_days\":3,\"base_rental_amount\":600,\"policy_discount_amount\":0,\"policy_discount_pre_cap_amount\":0,\"policy_discount_capped\":false,\"policy_discount_cap_percent\":null,\"policy_discount_source\":\"\"}', 'Service fee', 20.00, 20.00, 153.60, 153.60, 'percentage', 20.00, 1.0000, 'high', '[\"Low completed booking history\",\"Escalation or damage history\"]', 'manual_review', '[\"high_risk_deposit_profile\"]', 'pending_authorization', 153.60, NULL, NULL, NULL, NULL, '1', '88', NULL, NULL, 'km', NULL, NULL, NULL, 'end_of_trip', 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-04-22 11:27:15', '2026-04-22 11:29:46', 35),
(94, '#1000095', 'BK43OXMBUK7FEOLMESUGGCD7QTJKXVHX', 'User Demo', 'user@demo.com', '+918302786761', NULL, '36', 2, 260, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 200, 0, NULL, 0, NULL, '{\"rental_days\":1,\"base_rental_amount\":200,\"policy_discount_amount\":0,\"policy_discount_pre_cap_amount\":0,\"policy_discount_capped\":false,\"policy_discount_cap_percent\":null,\"policy_discount_source\":\"\"}', 'Service fee', 20.00, 20.00, 40.00, 40.00, 'percentage', 20.00, 1.0000, 'high', '[\"Low completed booking history\",\"Escalation or damage history\"]', 'manual_review', '[\"high_risk_deposit_profile\"]', 'pending_authorization', 40.00, NULL, NULL, NULL, NULL, '1', '89', NULL, NULL, 'km', NULL, NULL, NULL, 'end_of_trip', 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-22 11:34:12', 'host', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', 'pending', 0, '2026-04-22 11:33:09', '2026-04-22 11:34:12', 35),
(95, '#1000096', 'V4IX0H034TCZAYZKWWG9KI3C6ANJTDC5', 'customer', 'customer@gmail.com', '+919981207899', NULL, '37', 3, 1072.4, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 877, 0, NULL, 0, NULL, '{\"rental_days\":15,\"base_rental_amount\":540,\"policy_discount_amount\":0,\"policy_discount_pre_cap_amount\":0,\"policy_discount_capped\":false,\"policy_discount_cap_percent\":null,\"policy_discount_source\":\"\"}', 'Service fee', 20.00, 20.00, 175.40, 175.40, 'percentage', 20.00, 1.0000, 'high', '[\"Low completed booking history\"]', 'manual_review', '[\"high_risk_deposit_profile\"]', 'pending_authorization', 175.40, NULL, NULL, NULL, NULL, '1', '90', NULL, NULL, 'km', 3787, 3787, NULL, 'end_of_trip', 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, '2026-07-07 20:30:00', 'shorten', 'pending', '[Requested End: 2026-06-28 11:13] [Refund: $324] PLS short my trip', '2026-04-23 09:09:50', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[null]', NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-04-22 14:06:51', '2026-04-23 09:10:55', 1),
(96, '#1000097', 'A6AQQY074DRWZULKPRKFLPCJFTFGZPUE', 'User Demo', 'user@demo.com', '+918302786761', NULL, '36', 2, 1148.62, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 783, 0, NULL, 189.02, NULL, '{\"rental_days\":1,\"base_rental_amount\":50,\"policy_discount_amount\":0,\"policy_discount_pre_cap_amount\":0,\"policy_discount_capped\":false,\"policy_discount_cap_percent\":null,\"policy_discount_source\":\"\"}', 'Service fee', 20.00, 20.00, 156.60, 156.60, 'percentage', 20.00, 1.0000, 'high', '[\"Low completed booking history\",\"Escalation or damage history\"]', 'manual_review', '[\"high_risk_deposit_profile\"]', 'pending_authorization', 156.60, NULL, NULL, NULL, NULL, '1', '91', NULL, NULL, 'km', NULL, NULL, NULL, 'end_of_trip', 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-04-30 07:13:22', '2026-04-30 07:15:37', 34),
(97, '#1000098', 'PGULP43WBHI93DND0EKUPRIQAZLA2RSI', 'Elite Auto Group', 'dealer@demo.com', '+17356074636', NULL, '1', 6, 210.26, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 132, 0, NULL, 31.86, NULL, '{\"rental_days\":2,\"base_rental_amount\":132,\"policy_discount_amount\":0,\"policy_discount_pre_cap_amount\":0,\"policy_discount_capped\":false,\"policy_discount_cap_percent\":null,\"policy_discount_source\":\"\"}', 'Service fee', 20.00, 20.00, 26.40, 26.40, 'percentage', 20.00, 1.0000, 'high', '[\"Low completed booking history\"]', 'manual_review', '[\"high_risk_deposit_profile\"]', 'pending_authorization', 26.40, NULL, NULL, NULL, NULL, '1', '92', NULL, NULL, 'km', 19363, 19363, NULL, 'end_of_trip', 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-06-09 05:47:50', '2026-06-09 05:47:50', 13),
(98, '#1000099', 'JLC2TEMSWWGV9QMKQGSJMEQPU9XJRXFT', 'Elite Auto Group', 'dealer@demo.com', '+17356074636', NULL, '1', 6, 123.78, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 72, 0, NULL, 17.38, NULL, '{\"rental_days\":2,\"base_rental_amount\":72,\"policy_discount_amount\":0,\"policy_discount_pre_cap_amount\":0,\"policy_discount_capped\":false,\"policy_discount_cap_percent\":null,\"policy_discount_source\":\"\"}', 'Service fee', 20.00, 20.00, 14.40, 14.40, 'percentage', 20.00, 1.0000, 'high', '[\"Low completed booking history\"]', 'manual_review', '[\"high_risk_deposit_profile\"]', 'pending_authorization', 14.40, NULL, NULL, NULL, NULL, '1', '93', NULL, NULL, 'km', 7129, 7129, NULL, 'end_of_trip', 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-06-09 09:40:22', '2026-06-09 09:40:22', 18),
(99, '#1000100', 'OG7OYU4HUB0SIGF0SJGEQUUQ8AZH31AS', 'User Demo', 'user@demo.com', '+918302786761', NULL, '36', 2, 979.97, NULL, NULL, 0.00, 1, 40.00, 500.00, NULL, 100.00, 0.00, 666, 0, NULL, 160.77, NULL, '{\"rental_days\":2,\"base_rental_amount\":90,\"policy_discount_amount\":0,\"policy_discount_pre_cap_amount\":0,\"policy_discount_capped\":false,\"policy_discount_cap_percent\":null,\"policy_discount_source\":\"\"}', 'Service fee', 20.00, 20.00, 133.20, 133.20, 'percentage', 20.00, 1.0000, 'high', '[\"Low completed booking history\",\"Escalation or damage history\"]', 'manual_review', '[\"high_risk_deposit_profile\"]', 'pending_authorization', 133.20, NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, 'km', 4105, 4105, NULL, 'end_of_trip', 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pending', 'pending', 0, '2026-06-09 11:39:57', '2026-06-09 11:39:57', 1),
(100, '#1000101', 'WS6QEJHTYJEFSZSSYOUF45YFVD5NWWKR', 'User Demo', 'user@demo.com', '+918302786761', NULL, '36', 2, 149.73, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, 100.00, 0.00, 90, 0, NULL, 21.73, NULL, '{\"rental_days\":2,\"base_rental_amount\":90,\"policy_discount_amount\":0,\"policy_discount_pre_cap_amount\":0,\"policy_discount_capped\":false,\"policy_discount_cap_percent\":null,\"policy_discount_source\":\"\"}', 'Service fee', 20.00, 20.00, 18.00, 18.00, 'percentage', 20.00, 1.0000, 'high', '[\"Low completed booking history\",\"Escalation or damage history\"]', 'manual_review', '[\"high_risk_deposit_profile\"]', 'captured_directly', 18.00, NULL, NULL, NULL, NULL, '1', '94', NULL, NULL, 'km', 4105, 4105, NULL, 'end_of_trip', 0.0000, NULL, NULL, 0.00, NULL, NULL, 0.00, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'processing', 'pending', 0, '2026-06-09 11:47:54', '2026-06-09 11:48:35', 1);

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

--
-- Table structure for table `cr_booking_cars`
--

CREATE TABLE `cr_booking_cars` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `booking_id` bigint(20) UNSIGNED NOT NULL,
  `car_id` bigint(20) UNSIGNED NOT NULL,
  `pickup_city_id` bigint(20) UNSIGNED DEFAULT NULL,
  `return_city_id` bigint(20) UNSIGNED DEFAULT NULL,
  `car_image` varchar(191) DEFAULT NULL,
  `car_name` varchar(191) NOT NULL,
  `price` double NOT NULL,
  `currency_id` bigint(20) UNSIGNED NOT NULL,
  `rental_start_date` datetime NOT NULL,
  `rental_end_date` datetime 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 `cr_booking_cars`
--

INSERT INTO `cr_booking_cars` (`id`, `booking_id`, `car_id`, `pickup_city_id`, `return_city_id`, `car_image`, `car_name`, `price`, `currency_id`, `rental_start_date`, `rental_end_date`, `created_at`, `updated_at`) VALUES
(1, 1, 93, NULL, NULL, NULL, 'Lamborghini Urus Performante 2024', 249, 1, '2026-02-01 00:00:00', '2026-02-04 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(2, 2, 36, NULL, NULL, NULL, 'Lamborghini Huracán EVO 2024', 47, 1, '2026-02-02 00:00:00', '2026-02-03 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(3, 3, 11, NULL, NULL, NULL, 'Audi A4 Premium Plus quattro 2024', 308, 1, '2026-01-06 00:00:00', '2026-01-10 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(4, 4, 32, NULL, NULL, NULL, 'Mercedes-Benz G550 4MATIC 2024', 186, 1, '2026-01-30 00:00:00', '2026-02-05 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(5, 5, 86, NULL, NULL, NULL, 'Mercedes-Maybach S 580 4MATIC 2024', 224, 1, '2026-02-02 00:00:00', '2026-02-06 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(6, 6, 60, NULL, NULL, NULL, 'Toyota Corolla Hybrid LE 2024', 396, 1, '2026-02-12 00:00:00', '2026-02-18 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(7, 7, 23, NULL, NULL, NULL, 'Kia Stinger GT2 AWD 2024', 245, 1, '2026-01-24 00:00:00', '2026-01-29 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(8, 8, 71, NULL, NULL, NULL, 'Genesis GV70 2.5T Sport AWD 2024', 190, 1, '2026-02-08 00:00:00', '2026-02-13 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(9, 9, 18, NULL, NULL, NULL, 'Acura MDX Type S Advance 2024', 230, 1, '2026-01-25 00:00:00', '2026-01-30 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(10, 10, 55, NULL, NULL, NULL, 'GMC Sierra 1500 Denali 2024', 33, 1, '2026-01-16 00:00:00', '2026-01-17 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(11, 11, 19, NULL, NULL, NULL, 'Range Rover Evoque P250 S 2024', 204, 1, '2026-02-28 00:00:00', '2026-03-03 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(12, 12, 77, NULL, NULL, NULL, 'Range Rover Sport HSE Dynamic 2024', 196, 1, '2026-02-17 00:00:00', '2026-02-21 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(13, 13, 80, NULL, NULL, NULL, 'Audi RS Q8 quattro 2024', 60, 1, '2026-02-05 00:00:00', '2026-02-06 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(14, 14, 95, NULL, NULL, NULL, 'BMW XM Label Red 2024', 297, 1, '2026-02-24 00:00:00', '2026-02-27 00:00:00', '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(15, 15, 50, NULL, NULL, NULL, 'Chevrolet Camaro SS 1LE 2024', 106, 1, '2026-02-07 00:00:00', '2026-02-09 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(16, 16, 99, NULL, NULL, NULL, 'Nissan GT-R NISMO Special Edition 2024', 195, 1, '2026-02-26 00:00:00', '2026-03-01 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(17, 17, 66, NULL, NULL, NULL, 'Mercedes-Benz E450 4MATIC All-Terrain 2024', 364, 1, '2026-01-20 00:00:00', '2026-01-27 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(18, 18, 46, NULL, NULL, NULL, 'Mazda MX-5 Miata Grand Touring 2024', 400, 1, '2026-01-30 00:00:00', '2026-02-04 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(19, 19, 24, NULL, NULL, NULL, 'Volkswagen Atlas Cross Sport SEL Premium 2024', 342, 1, '2026-02-24 00:00:00', '2026-03-02 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(20, 20, 55, NULL, NULL, NULL, 'GMC Sierra 1500 Denali 2024', 165, 1, '2026-01-18 00:00:00', '2026-01-23 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(21, 21, 50, NULL, NULL, NULL, 'Chevrolet Camaro SS 1LE 2024', 212, 1, '2026-01-27 00:00:00', '2026-01-31 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(22, 22, 94, NULL, NULL, NULL, 'Porsche Taycan Turbo S Cross Turismo 2024', 270, 1, '2026-02-22 00:00:00', '2026-02-28 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(23, 23, 65, NULL, NULL, NULL, 'Koenigsegg Jesko Absolut 2024', 184, 1, '2026-02-28 00:00:00', '2026-03-02 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(24, 24, 14, NULL, NULL, NULL, 'Porsche Macan S 2024', 445, 1, '2026-01-23 00:00:00', '2026-01-28 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(25, 25, 78, NULL, NULL, NULL, 'Mercedes-AMG GLE 63 S 4MATIC+ 2024', 90, 1, '2026-01-07 00:00:00', '2026-01-09 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(26, 26, 8, NULL, NULL, NULL, 'BMW X5 xDrive40i M Sport 2024', 588, 1, '2026-01-07 00:00:00', '2026-01-14 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(27, 27, 6, NULL, NULL, NULL, 'Toyota RAV4 Prime XSE AWD 2024', 144, 1, '2026-02-23 00:00:00', '2026-02-27 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(28, 28, 18, NULL, NULL, NULL, 'Acura MDX Type S Advance 2024', 276, 1, '2026-02-19 00:00:00', '2026-02-25 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(29, 29, 92, NULL, NULL, NULL, 'McLaren GT Luxe 2024', 658, 1, '2026-03-01 00:00:00', '2026-03-08 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(30, 30, 1, NULL, NULL, NULL, 'Toyota Camry XLE Hybrid 2024', 395, 1, '2026-01-16 00:00:00', '2026-01-21 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(31, 31, 88, NULL, NULL, NULL, 'Rolls-Royce Cullinan Black Badge 2024', 249, 1, '2026-03-03 00:00:00', '2026-03-06 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(32, 32, 43, NULL, NULL, NULL, 'Volkswagen Tiguan SEL R-Line 2024', 58, 1, '2026-03-04 00:00:00', '2026-03-05 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(33, 33, 99, NULL, NULL, NULL, 'Nissan GT-R NISMO Special Edition 2024', 390, 1, '2026-02-27 00:00:00', '2026-03-05 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(34, 34, 10, NULL, NULL, NULL, 'Lexus RX 350 F Sport Handling AWD 2024', 560, 1, '2026-03-03 00:00:00', '2026-03-10 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(35, 35, 97, NULL, NULL, NULL, 'Ford GT Heritage Edition 2024', 282, 1, '2026-03-01 00:00:00', '2026-03-04 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(36, 36, 45, NULL, NULL, NULL, 'Honda Pilot TrailSport AWD 2024', 234, 1, '2026-03-02 00:00:00', '2026-03-05 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(37, 37, 85, NULL, NULL, NULL, 'Genesis Electrified GV70 Advanced AWD 2024', 340, 1, '2026-02-27 00:00:00', '2026-03-04 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(38, 38, 92, NULL, NULL, NULL, 'McLaren GT Luxe 2024', 470, 1, '2026-03-03 00:00:00', '2026-03-08 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(39, 39, 56, NULL, NULL, NULL, 'Mitsubishi Outlander SEL S-AWC 2024', 248, 1, '2026-03-04 00:00:00', '2026-03-08 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(40, 40, 30, NULL, NULL, NULL, 'Alfa Romeo Stelvio Veloce AWD 2024', 564, 1, '2026-03-01 00:00:00', '2026-03-07 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(41, 41, 78, NULL, NULL, NULL, 'Mercedes-AMG GLE 63 S 4MATIC+ 2024', 90, 1, '2026-03-06 00:00:00', '2026-03-08 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(42, 42, 60, NULL, NULL, NULL, 'Toyota Corolla Hybrid LE 2024', 132, 1, '2026-02-28 00:00:00', '2026-03-02 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(43, 43, 89, NULL, NULL, NULL, 'Aston Martin DBX707 2024', 170, 1, '2026-03-05 00:00:00', '2026-03-07 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(44, 44, 60, NULL, NULL, NULL, 'Toyota Corolla Hybrid LE 2024', 132, 1, '2026-02-28 00:00:00', '2026-03-02 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(45, 45, 33, NULL, NULL, NULL, 'Ford Mustang GT Premium 2024', 97, 1, '2026-03-03 00:00:00', '2026-03-04 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(46, 46, 76, NULL, NULL, NULL, 'Porsche Cayenne Turbo GT 2024', 258, 1, '2026-03-04 00:00:00', '2026-03-07 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(47, 47, 14, NULL, NULL, NULL, 'Porsche Macan S 2024', 445, 1, '2026-03-04 00:00:00', '2026-03-09 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(48, 48, 46, NULL, NULL, NULL, 'Mazda MX-5 Miata Grand Touring 2024', 240, 1, '2026-03-02 00:00:00', '2026-03-05 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(49, 49, 41, NULL, NULL, NULL, 'Hyundai Tucson Limited AWD 2024', 230, 1, '2026-02-27 00:00:00', '2026-03-04 00:00:00', '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(50, 50, 71, NULL, NULL, NULL, 'Genesis GV70 2.5T Sport AWD 2024', 114, 1, '2026-03-06 00:00:00', '2026-03-09 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(51, 51, 10, NULL, NULL, NULL, 'Lexus RX 350 F Sport Handling AWD 2024', 240, 1, '2026-03-25 00:00:00', '2026-03-28 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(52, 52, 89, NULL, NULL, NULL, 'Aston Martin DBX707 2024', 255, 1, '2026-03-07 00:00:00', '2026-03-10 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(53, 53, 32, NULL, NULL, NULL, 'Mercedes-Benz G550 4MATIC 2024', 217, 1, '2026-03-10 00:00:00', '2026-03-17 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(54, 54, 89, NULL, NULL, NULL, 'Aston Martin DBX707 2024', 425, 1, '2026-03-24 00:00:00', '2026-03-29 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(55, 55, 64, NULL, NULL, NULL, 'Pagani Huayra Roadster BC 2024', 39, 1, '2026-03-26 00:00:00', '2026-03-27 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(56, 56, 79, NULL, NULL, NULL, 'BMW M5 Competition xDrive 2024', 365, 1, '2026-03-14 00:00:00', '2026-03-19 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(57, 57, 36, NULL, NULL, NULL, 'Lamborghini Huracán EVO 2024', 282, 1, '2026-03-19 00:00:00', '2026-03-25 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(58, 58, 92, NULL, NULL, NULL, 'McLaren GT Luxe 2024', 94, 1, '2026-03-26 00:00:00', '2026-03-27 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(59, 59, 18, NULL, NULL, NULL, 'Acura MDX Type S Advance 2024', 230, 1, '2026-03-26 00:00:00', '2026-03-31 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(60, 60, 71, NULL, NULL, NULL, 'Genesis GV70 2.5T Sport AWD 2024', 152, 1, '2026-03-25 00:00:00', '2026-03-29 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(61, 61, 95, NULL, NULL, NULL, 'BMW XM Label Red 2024', 594, 1, '2026-03-09 00:00:00', '2026-03-15 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(62, 62, 25, NULL, NULL, NULL, 'Chevrolet Blazer RS AWD 2024', 350, 1, '2026-03-26 00:00:00', '2026-04-02 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(63, 63, 25, NULL, NULL, NULL, 'Chevrolet Blazer RS AWD 2024', 350, 1, '2026-03-14 00:00:00', '2026-03-21 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(64, 64, 10, NULL, NULL, NULL, 'Lexus RX 350 F Sport Handling AWD 2024', 320, 1, '2026-03-13 00:00:00', '2026-03-17 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(65, 65, 2, NULL, NULL, NULL, 'Honda Accord Sport 2.0T 2024', 208, 1, '2026-04-05 00:00:00', '2026-04-09 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(66, 66, 91, NULL, NULL, NULL, 'Ferrari Roma Spider 2024', 171, 1, '2026-03-17 00:00:00', '2026-03-20 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(67, 67, 48, NULL, NULL, NULL, 'Mini Cooper S Hardtop 2024', 183, 1, '2026-03-26 00:00:00', '2026-03-29 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(68, 68, 13, NULL, NULL, NULL, 'Tesla Model 3 Long Range AWD 2024', 450, 1, '2026-03-19 00:00:00', '2026-03-24 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(69, 69, 82, NULL, NULL, NULL, 'Lucid Air Grand Touring Performance 2024', 112, 1, '2026-03-29 00:00:00', '2026-03-31 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(70, 70, 56, NULL, NULL, NULL, 'Mitsubishi Outlander SEL S-AWC 2024', 124, 1, '2026-03-08 00:00:00', '2026-03-10 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(71, 71, 5, NULL, NULL, NULL, 'Lexus ES 350 F Sport 2024', 370, 1, '2026-03-23 00:00:00', '2026-03-28 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(72, 72, 60, NULL, NULL, NULL, 'Toyota Corolla Hybrid LE 2024', 198, 1, '2026-03-07 00:00:00', '2026-03-10 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(73, 73, 99, NULL, NULL, NULL, 'Nissan GT-R NISMO Special Edition 2024', 195, 1, '2026-03-11 00:00:00', '2026-03-14 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(74, 74, 83, NULL, NULL, NULL, 'Rivian R1S Adventure 2024', 180, 1, '2026-03-19 00:00:00', '2026-03-24 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(75, 75, 99, NULL, NULL, NULL, 'Nissan GT-R NISMO Special Edition 2024', 65, 1, '2026-03-08 00:00:00', '2026-03-09 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(76, 76, 77, NULL, NULL, NULL, 'Range Rover Sport HSE Dynamic 2024', 245, 1, '2026-03-25 00:00:00', '2026-03-30 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(77, 77, 11, NULL, NULL, NULL, 'Audi A4 Premium Plus quattro 2024', 154, 1, '2026-03-12 00:00:00', '2026-03-14 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(78, 78, 56, NULL, NULL, NULL, 'Mitsubishi Outlander SEL S-AWC 2024', 372, 1, '2026-03-21 00:00:00', '2026-03-27 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(79, 79, 18, NULL, NULL, NULL, 'Acura MDX Type S Advance 2024', 276, 1, '2026-03-16 00:00:00', '2026-03-22 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(80, 80, 1, NULL, NULL, NULL, 'Toyota Camry XLE Hybrid 2024', 79, 1, '2026-03-13 00:00:00', '2026-03-14 00:00:00', '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(81, 81, 101, NULL, NULL, 'customers/34/bronco3.jpg', 'Ford Bronco', 50, 1, '2026-03-18 09:00:00', '2026-03-19 09:00:00', '2026-03-18 04:01:46', '2026-03-18 04:01:46'),
(82, 82, 101, NULL, NULL, 'customers/34/bronco3.jpg', 'Ford Bronco', 50, 1, '2026-04-06 09:00:00', '2026-04-07 09:00:00', '2026-04-06 04:50:31', '2026-04-06 04:50:31'),
(83, 83, 3, NULL, NULL, 'cars2/2025-mercedes-benz-c-class-sedan-amg-c-43-fq-oem-2-1600x1067jpg-520x380.jpeg', 'Mercedes-Benz C300 4MATIC 2024', 66, 1, '2026-04-17 09:00:00', '2026-04-18 09:00:00', '2026-04-09 14:21:52', '2026-04-09 14:21:52'),
(84, 84, 102, NULL, NULL, 'customers/35/verna2.jpeg', 'verna', 200, 1, '2026-04-16 09:00:00', '2026-04-17 23:30:00', '2026-04-09 14:33:18', '2026-04-09 14:33:18'),
(85, 85, 102, NULL, NULL, 'customers/35/verna2.jpeg', 'verna', 1000, 1, '2026-04-25 05:00:00', '2026-04-30 20:00:00', '2026-04-09 14:45:22', '2026-04-09 14:45:22'),
(86, 86, 101, NULL, NULL, 'customers/34/bronco3.jpg', 'Ford Bronco', 50, 1, '2026-04-09 09:00:00', '2026-04-10 09:00:00', '2026-04-09 16:08:23', '2026-04-09 16:08:23'),
(87, 87, 89, NULL, NULL, 'cars/3.jpg', 'Aston Martin DBX707 2024', 85, 1, '2026-04-09 09:00:00', '2026-04-10 09:00:00', '2026-04-09 16:10:52', '2026-04-09 16:10:52'),
(88, 88, 90, NULL, NULL, 'cars/55.jpg', 'Maserati Levante Trofeo 2024', 94, 1, '2026-04-09 09:00:00', '2026-04-10 09:00:00', '2026-04-09 16:12:53', '2026-04-09 16:12:53'),
(89, 89, 2, NULL, NULL, 'cars2/2021-honda-accord-sedan-touring-fq-oem-2-1600x1067jpg-520x380.jpeg', 'Honda Accord Sport 2.0T 2024', 52, 1, '2026-04-09 09:00:00', '2026-04-10 09:00:00', '2026-04-09 16:28:17', '2026-04-09 16:28:17'),
(90, 90, 95, NULL, NULL, 'cars/53.jpg', 'BMW XM Label Red 2024', 99, 1, '2026-04-09 09:00:00', '2026-04-10 09:00:00', '2026-04-09 16:33:56', '2026-04-09 16:33:56'),
(91, 91, 2, NULL, NULL, 'cars2/2021-honda-accord-sedan-touring-fq-oem-2-1600x1067jpg-520x380.jpeg', 'Honda Accord Sport 2.0T 2024', 52, 1, '2026-04-22 09:00:00', '2026-04-23 09:00:00', '2026-04-22 10:50:48', '2026-04-22 10:50:48'),
(92, 92, 102, NULL, NULL, 'customers/35/verna2.jpeg', 'Verna', 800, 1, '2026-04-22 09:00:00', '2026-04-26 09:00:00', '2026-04-22 11:22:18', '2026-04-22 11:22:18'),
(93, 93, 102, NULL, NULL, 'customers/35/verna2.jpeg', 'Verna', 600, 1, '2026-04-26 09:00:00', '2026-04-29 09:00:00', '2026-04-22 11:27:15', '2026-04-22 11:27:15'),
(94, 94, 102, NULL, NULL, 'customers/35/verna2.jpeg', 'Verna', 200, 1, '2026-04-30 09:00:00', '2026-04-30 09:00:00', '2026-04-22 11:33:09', '2026-04-22 11:33:09'),
(95, 95, 4, NULL, NULL, 'cars2/2025-bmw-3-series-sedan-330i-fq-oem-3-1600x1067jpg-520x380.jpeg', 'BMW 330i xDrive M Sport 2024', 540, 1, '2026-06-22 09:00:00', '2026-07-07 20:30:00', '2026-04-22 14:06:51', '2026-04-22 14:06:51'),
(96, 96, 101, NULL, NULL, 'customers/34/bronco3.jpg', 'Ford Bronco', 50, 1, '2026-04-30 09:00:00', '2026-05-01 09:00:00', '2026-04-30 07:13:22', '2026-04-30 07:13:22'),
(97, 97, 3, NULL, NULL, 'cars2/2025-mercedes-benz-c-class-sedan-amg-c-43-fq-oem-2-1600x1067jpg-520x380.jpeg', 'Mercedes-Benz C300 4MATIC 2024', 132, 1, '2026-06-23 09:00:00', '2026-06-25 09:00:00', '2026-06-09 05:47:50', '2026-06-09 05:47:50'),
(98, 98, 6, NULL, NULL, 'cars2/2025-toyota-rav4-hybrid-4dr-suv-se-fq-oem-1-815jpg-1920x1080.jpeg', 'Toyota RAV4 Prime XSE AWD 2024', 72, 1, '2026-06-30 09:00:00', '2026-07-02 09:00:00', '2026-06-09 09:40:22', '2026-06-09 09:40:22'),
(99, 99, 94, NULL, NULL, 'customers/1/23cc1afc-c03c-4f77-868f-f44144d4167c.webp', 'Porsche Taycan Turbo S Cross Turismo 2024', 90, 1, '2026-06-09 09:00:00', '2026-06-11 09:00:00', '2026-06-09 11:39:57', '2026-06-09 11:39:57'),
(100, 100, 94, NULL, NULL, 'customers/1/23cc1afc-c03c-4f77-868f-f44144d4167c.webp', 'Porsche Taycan Turbo S Cross Turismo 2024', 90, 1, '2026-06-11 09:00:00', '2026-06-13 09:00:00', '2026-06-09 11:47:54', '2026-06-09 11:47:54');

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

--
-- Table structure for table `cr_booking_claims`
--

CREATE TABLE `cr_booking_claims` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `booking_id` bigint(20) UNSIGNED NOT NULL,
  `assignee_id` bigint(20) UNSIGNED DEFAULT NULL,
  `status` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `category` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'general',
  `claimed_amount` decimal(12,2) DEFAULT NULL,
  `approved_amount` decimal(12,2) DEFAULT NULL,
  `reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `resolution_note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `liability_decision` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `policy_basis` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `evidence_completeness` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'partial',
  `requires_additional_docs` tinyint(1) NOT NULL DEFAULT 0,
  `checklist_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `outcome_action` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'manual_only',
  `settlement_status` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `settlement_reference` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `settlement_error` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `settlement_metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `settlement_attempted_at` datetime DEFAULT NULL,
  `settlement_completed_at` datetime DEFAULT NULL,
  `first_response_due_at` datetime DEFAULT NULL,
  `resolution_due_at` datetime DEFAULT NULL,
  `priority` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'normal',
  `escalated_at` datetime DEFAULT NULL,
  `escalation_note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `evidence` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `evidence_provenance` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `last_notified_at` datetime DEFAULT NULL,
  `resolved_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

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

--
-- Table structure for table `cr_booking_service`
--

CREATE TABLE `cr_booking_service` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `booking_id` bigint(20) UNSIGNED NOT NULL,
  `service_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cr_booking_service`
--

INSERT INTO `cr_booking_service` (`id`, `booking_id`, `service_id`) VALUES
(1, 83, 3),
(2, 83, 5),
(3, 83, 9),
(4, 84, 6),
(5, 84, 10),
(6, 85, 3),
(7, 85, 7),
(8, 85, 9),
(9, 91, 5),
(10, 92, 1),
(11, 93, 9),
(12, 95, 8),
(13, 96, 2),
(14, 99, 1);

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

--
-- Table structure for table `cr_booking_support_actions`
--

CREATE TABLE `cr_booking_support_actions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `booking_id` bigint(20) UNSIGNED NOT NULL,
  `admin_id` bigint(20) UNSIGNED DEFAULT NULL,
  `action` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

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

--
-- Table structure for table `cr_cars`
--

CREATE TABLE `cr_cars` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` text DEFAULT NULL,
  `content` text DEFAULT NULL,
  `images` text DEFAULT NULL,
  `license_plate` varchar(15) DEFAULT NULL,
  `make_id` bigint(20) UNSIGNED DEFAULT NULL,
  `status` varchar(20) NOT NULL DEFAULT 'available',
  `is_delivery_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `free_delivery_days_threshold` int(11) DEFAULT NULL,
  `max_delivery_distance_miles` int(11) DEFAULT NULL,
  `telematics_provider` varchar(191) DEFAULT NULL,
  `telematics_device_id` varchar(191) DEFAULT NULL,
  `geofence_radius_miles` double DEFAULT NULL,
  `views_count` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `host_protection_plan_id` bigint(20) UNSIGNED DEFAULT NULL,
  `year` int(10) UNSIGNED DEFAULT NULL,
  `mileage` int(10) UNSIGNED DEFAULT NULL,
  `fuel_rate_per_liter` decimal(10,2) NOT NULL DEFAULT 0.00,
  `late_fee_per_hour` decimal(10,2) NOT NULL DEFAULT 0.00,
  `horsepower` decimal(8,2) DEFAULT NULL,
  `vehicle_type_id` bigint(20) UNSIGNED DEFAULT NULL,
  `transmission_id` bigint(20) UNSIGNED DEFAULT NULL,
  `fuel_type_id` bigint(20) UNSIGNED DEFAULT NULL,
  `number_of_seats` int(10) UNSIGNED DEFAULT NULL,
  `number_of_doors` int(10) UNSIGNED DEFAULT NULL,
  `rental_rate` double UNSIGNED NOT NULL DEFAULT 0,
  `currency_id` bigint(20) UNSIGNED DEFAULT NULL,
  `currency` varchar(10) DEFAULT NULL,
  `rental_type` varchar(191) NOT NULL DEFAULT 'per_day',
  `rental_available_types` text DEFAULT NULL,
  `insurance_info` text DEFAULT NULL,
  `default_pickup_instructions` text DEFAULT NULL,
  `vin` varchar(191) DEFAULT NULL,
  `location` varchar(191) DEFAULT NULL,
  `country_id` bigint(20) UNSIGNED DEFAULT NULL,
  `state_id` bigint(20) UNSIGNED DEFAULT NULL,
  `city_id` bigint(20) UNSIGNED DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `tax_id` bigint(20) UNSIGNED DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT 0,
  `order` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `is_used` tinyint(1) NOT NULL DEFAULT 0,
  `is_for_sale` tinyint(1) NOT NULL DEFAULT 0,
  `sale_price` decimal(15,2) DEFAULT NULL,
  `condition` varchar(30) DEFAULT NULL,
  `ownership_history` varchar(191) DEFAULT NULL,
  `warranty_information` text DEFAULT NULL,
  `sale_status` varchar(30) NOT NULL DEFAULT 'available',
  `external_booking_url` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `author_id` bigint(20) UNSIGNED DEFAULT NULL,
  `author_type` varchar(191) NOT NULL DEFAULT 'Mxcar\\ACL\\Models\\User',
  `vendor_id` bigint(20) UNSIGNED DEFAULT NULL,
  `moderation_status` varchar(60) NOT NULL DEFAULT 'pending',
  `reject_reason` varchar(400) DEFAULT NULL,
  `vr_images` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cr_cars`
--

INSERT INTO `cr_cars` (`id`, `name`, `description`, `content`, `images`, `license_plate`, `make_id`, `status`, `is_delivery_enabled`, `free_delivery_days_threshold`, `max_delivery_distance_miles`, `telematics_provider`, `telematics_device_id`, `geofence_radius_miles`, `views_count`, `host_protection_plan_id`, `year`, `mileage`, `fuel_rate_per_liter`, `late_fee_per_hour`, `horsepower`, `vehicle_type_id`, `transmission_id`, `fuel_type_id`, `number_of_seats`, `number_of_doors`, `rental_rate`, `currency_id`, `currency`, `rental_type`, `rental_available_types`, `insurance_info`, `default_pickup_instructions`, `vin`, `location`, `country_id`, `state_id`, `city_id`, `address`, `tax_id`, `is_featured`, `order`, `is_used`, `is_for_sale`, `sale_price`, `condition`, `ownership_history`, `warranty_information`, `sale_status`, `external_booking_url`, `created_at`, `updated_at`, `author_id`, `author_type`, `vendor_id`, `moderation_status`, `reject_reason`, `vr_images`) VALUES
(1, 'Toyota Camry XLE Hybrid 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/2021-toyota-camry-sedan-xle-fq-oem-1-815jpg-520x380.jpeg\",\"2\":\"cars\\/79.jpg\",\"3\":\"cars\\/car-interiors-5.jpg\",\"4\":\"cars\\/car-interiors-5.jpg\",\"5\":\"cars\\/car-interiors-5.jpg\",\"6\":\"cars\\/car-interiors-1.jpg\"}', '30A-123.00', 8, 'available', 0, NULL, NULL, NULL, NULL, NULL, 40, NULL, 2022, 3876, 0.00, 0.00, NULL, 5, 2, 2, 5, 5, 79, 1, NULL, 'per_day', NULL, NULL, NULL, 'LG42XT4P3H1TVPDRG', '', 1, 5, 10, '74226 Green Grove', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.kayak.com/cars/toyota-camry-xle-hybrid-2024', '2026-03-06 08:24:02', '2026-06-12 15:46:25', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(2, 'Honda Accord Sport 2.0T 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/unnamed.jpg\",\"2\":\"cars\\/2022-honda-accord-1hgcv2f3xna020531-3.jpg\",\"3\":\"cars\\/img-5972-71-scaled.jpg\"}', '30A-123.11', 12, 'available', 0, NULL, NULL, NULL, NULL, NULL, 28, NULL, 2022, 16326, 0.00, 0.00, NULL, 1, 1, 1, 4, 4, 52, 1, NULL, 'per_day', NULL, NULL, NULL, 'KN7J4V2A55MVWVZY1', '', 3, 8, 15, '59875 Pine Heights', NULL, 0, 0, 0, 1, 2599.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-12 15:46:14', 11, 'Mxcar\\CarRentals\\Models\\Customer', 11, 'approved', NULL, '[]'),
(3, 'Mercedes-Benz C300 4MATIC 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/2025-mercedes-benz-c-class-sedan-amg-c-43-fq-oem-2-1600x1067jpg-520x380.jpeg\",\"2\":\"ext-mercedes-benz1-c300.png\",\"3\":\"ext-mercedes-benz-c300.jpeg\",\"4\":\"ext-mercedes-benz4-c300.jpg\",\"5\":\"ext-mercedes-benz9-c300.jpg\",\"6\":\"ext-mercedes-benz5-c300.jpg\",\"7\":\"ext-mercedes-benz10-c300.jpeg\",\"8\":\"int-mercedes-benz-c200.jpg\",\"9\":\"int-mercedes-benz77-c300.jpg\",\"10\":\"int-mercedes-benz5-c300.jpg\",\"11\":\"int-mercedes-benz4-c300.jpg\",\"12\":\"int-mercedes-benz2-c300.jpeg\",\"13\":\"int-mercedes-benz00-c300.jpg\",\"14\":\"int-mercedes-benz000-c300.jpeg\",\"15\":\"int-mercedes-benz0-c300.jpeg\"}', '29A-123.22', 2, 'available', 0, NULL, NULL, NULL, NULL, NULL, 58, NULL, 2016, 19363, 0.00, 0.00, NULL, 5, NULL, 1, 5, 5, 66, 1, NULL, 'per_day', NULL, NULL, NULL, 'DR3G4VTB9VZ4S7YEV', '', 8, 18, 25, '77740 Bell Avenue # 251', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-12 15:46:19', 13, 'Mxcar\\CarRentals\\Models\\Customer', 13, 'approved', NULL, NULL),
(4, 'BMW 330i xDrive M Sport 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/2025-bmw-3-series-sedan-330i-fq-oem-3-1600x1067jpg-520x380.jpeg\",\"2\":\"cars\\/65.jpg\",\"3\":\"cars\\/car-interiors-6.jpg\",\"4\":\"cars\\/car-interiors-6.jpg\",\"5\":\"cars\\/car-interiors-1.jpg\",\"6\":\"cars\\/car-interiors-4.jpg\"}', '30A-123.33', 13, 'available', 0, NULL, NULL, NULL, NULL, NULL, 19, NULL, 2017, 3787, 0.00, 0.00, NULL, 8, NULL, 3, 5, 2, 36, 1, NULL, 'per_day', NULL, NULL, NULL, 'U2PYNRVZ33C6T1ZUJ', '', 1, 1, 3, '75133 Gomez Trail', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-12 15:46:20', 1, 'Mxcar\\CarRentals\\Models\\Customer', 1, 'approved', NULL, NULL),
(5, 'Lexus ES 350 F Sport 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/maxresdefault-7.jpg\",\"2\":\"cars\\/2024-lexus-is-350-fsport-006-1.webp\",\"3\":\"cars\\/img-6164-1-scaled-1.jpg\"}', '30A-123.44', 1, 'available', 0, NULL, NULL, NULL, NULL, NULL, 21, NULL, 2011, 5325, 0.00, 0.00, NULL, 1, 2, 1, 4, 2, 74, 1, NULL, 'per_day', NULL, NULL, NULL, 'VLYVWK8P1FMVX76BB', '', 1, 2, 4, '30260 Morris Ridge', NULL, 1, 0, 1, 1, 1500.00, 'new', 'First Owner', NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-12 15:46:26', 9, 'Mxcar\\CarRentals\\Models\\Customer', 9, 'approved', NULL, '[]'),
(6, 'Toyota RAV4 Prime XSE AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/2025-toyota-rav4-hybrid-4dr-suv-se-fq-oem-1-815jpg-1920x1080.jpeg\",\"2\":\"cars\\/29.jpg\",\"3\":\"cars\\/car-interiors-2.jpg\",\"4\":\"cars\\/car-interiors-4.jpg\",\"5\":\"cars\\/car-interiors-7.jpg\",\"6\":\"cars\\/car-interiors-8.jpg\"}', '30A-123.55', 7, 'available', 0, NULL, NULL, NULL, NULL, NULL, 19, NULL, 2016, 7129, 0.00, 0.00, NULL, 7, NULL, 1, 8, 4, 36, 1, NULL, 'per_day', NULL, NULL, NULL, '0FL94SP40KL1ZB0M6', '', 1, 3, 7, '48279 King Landing Floor 591', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-10 19:12:28', 18, 'Mxcar\\CarRentals\\Models\\Customer', 18, 'approved', NULL, NULL),
(7, 'Honda CR-V Touring Hybrid AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/cg-2024-honda-cr-v-sport-touring-hybrid-blue-front-quarter-view.jpeg\",\"2\":\"cars\\/2024-cr-v-hybrid-interior.jpg\",\"3\":\"cars\\/maxresdefault-6.jpg\"}', '30A-123.66', 5, 'available', 0, NULL, NULL, NULL, NULL, NULL, 19, NULL, 2013, 8769, 0.00, 0.00, NULL, 4, 2, 1, 5, 4, 63, 1, NULL, 'per_day', NULL, NULL, NULL, 'HY2L1FRU3UJ7LVC0T', '', 3, 8, 15, '60926 Jones Ridge', NULL, 1, 0, 1, 1, 4000.00, 'new', 'Second Owner', NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-10 19:12:25', 10, 'Mxcar\\CarRentals\\Models\\Customer', 10, 'approved', NULL, '[]'),
(8, 'BMW X5 xDrive40i M Sport 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/download-520x380.jpeg\",\"2\":\"cars2\\/download-1-520x380.jpeg\",\"3\":\"cars2\\/bmw-x-series-x5-sp-desktop-520x380.jpg\",\"4\":\"cars2\\/car-interiors-7-520x380-520x380.jpg\",\"5\":\"cars\\/car-interiors-7.jpg\",\"6\":\"cars\\/car-interiors-8.jpg\"}', '30A-123.77', 8, 'available', 0, NULL, NULL, NULL, NULL, NULL, 19, NULL, 2017, 13324, 0.00, 0.00, NULL, 7, NULL, 2, 4, 4, 84, 1, NULL, 'per_day', NULL, NULL, NULL, '289X1W837L49RKDHR', '', 4, 11, 18, '65316 Jones Meadows Floor 854', NULL, 0, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-10 19:12:32', 13, 'Mxcar\\CarRentals\\Models\\Customer', 13, 'approved', NULL, NULL),
(9, 'Mercedes-Benz GLC 300 4MATIC 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/8-520x380-520x380.jpg\",\"2\":\"cars2\\/6-1920x1080-520x380.jpg\",\"3\":\"cars2\\/car-interiors-4-1920x1080-520x380.jpg\",\"4\":\"cars2\\/car-interiors-5-520x380-520x380.jpg\",\"5\":\"cars2\\/car-interiors-6-520x380-520x380.jpg\",\"6\":\"cars\\/car-interiors-2.jpg\"}', '30A-123.88', 9, 'available', 0, NULL, NULL, NULL, NULL, NULL, 18, NULL, 2022, 9724, 0.00, 0.00, NULL, 4, 2, 2, 8, 4, 31, 1, NULL, 'per_day', NULL, NULL, NULL, 'ZU7E4UNE974KH86KY', '', 3, 8, 14, '87013 Lewis Terrace Suite 570', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-12 15:46:20', 6, 'Mxcar\\CarRentals\\Models\\Customer', 6, 'approved', NULL, NULL),
(10, 'Lexus RX 350 F Sport Handling AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/2024-lexus-rx-350h-premium-awd.jpg\",\"2\":\"cars\\/img-6164-1-scaled.jpg\",\"3\":\"cars\\/pnakbzs27fkkjeddnjwttvkuxvkrhewcicxue4jm.png\"}', '29A-123.99', 5, 'available', 0, NULL, NULL, NULL, NULL, NULL, 21, NULL, 2012, 13415, 0.00, 0.00, NULL, 4, 2, 3, 7, 5, 80, 1, NULL, 'per_day', NULL, NULL, NULL, 'AYDUFC4X0TA64328Z', '', 3, 8, 15, '55895 Morales Ridge', NULL, 0, 0, 0, 1, 3000.00, 'new', 'First Owner', NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-12 15:46:12', 4, 'Mxcar\\CarRentals\\Models\\Customer', 4, 'approved', NULL, '[]'),
(11, 'Audi A4 Premium Plus quattro 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/97e0d79ca1-800.jpg\",\"2\":\"cars\\/9948557-3.jpg\",\"3\":\"cars\\/2024-audi-a4-sedan-dashboard.jpg\"}', '30A-456.00', 2, 'available', 0, NULL, NULL, NULL, NULL, NULL, 31, NULL, 2020, 14572, 0.00, 0.00, NULL, 8, 1, 3, 5, 4, 77, 1, NULL, 'per_day', NULL, '', NULL, 'T5YA5NLD5N5A8YTPA', '', 6, 14, 21, '66787 Gomez Park', NULL, 1, 0, 0, 1, 5000.00, 'new', 'First Owner', NULL, 'available', 'https://www.enterprise.com/en/reserve.html?vehicleType=audi-a4-premium-plus-quattro-2024', '2026-03-06 08:24:02', '2026-06-12 15:46:13', 32, 'Mxcar\\CarRentals\\Models\\Customer', 32, 'approved', NULL, '[]'),
(12, 'Mazda CX-5 2.5 Turbo Signature AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-6.jpg\"}', '30A-456.11', 14, 'available', 0, NULL, NULL, NULL, NULL, NULL, 34, NULL, 2015, 7454, 0.00, 0.00, NULL, 5, NULL, 2, 8, 2, 87, 1, NULL, 'per_day', NULL, '', NULL, '5847LTWC5XUCHMVTM', '', 1, 3, 7, '46564 Brooks Highway', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.turo.com/us/en/search?vehicle=mazda-cx-5-2.5-turbo-signature-awd-2024', '2026-03-06 08:24:02', '2026-06-12 15:46:11', 13, 'Mxcar\\CarRentals\\Models\\Customer', 13, 'approved', NULL, NULL),
(13, 'Tesla Model 3 Long Range AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-7.jpg\"}', '30A-456.22', 13, 'available', 0, NULL, NULL, NULL, NULL, NULL, 14, NULL, 2014, 19445, 0.00, 0.00, NULL, 1, NULL, 1, 7, 4, 90, 1, NULL, 'per_day', NULL, '', NULL, 'CPVRAR6446YPFVC7Y', '', 2, 7, 13, '93791 Cedar Highway', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-12 15:46:14', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(14, 'Porsche Macan S 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/image-processing20200211-6895-1sv4pgy.jpg\"}', '30A-456.33', 1, 'available', 0, NULL, NULL, NULL, NULL, NULL, 8, NULL, 2021, 16687, 0.00, 0.00, NULL, 1, 2, 1, 8, 4, 89, 1, NULL, 'per_day', NULL, '', NULL, 'UW5E2N536A18YX9FA', '', 9, 20, 27, '94625 Parker Drive', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.europcar.com/en-us/car-rental/vehicles/porsche-macan-s-2024', '2026-03-06 08:24:02', '2026-06-11 22:16:04', 20, 'Mxcar\\CarRentals\\Models\\Customer', 20, 'approved', NULL, '[]'),
(15, 'Volvo XC60 B6 Ultimate AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/2299781350.jpg\"}', '30A-456.44', 14, 'available', 0, NULL, NULL, NULL, NULL, NULL, 15, NULL, 2010, 15504, 0.00, 0.00, NULL, 1, 1, 1, 4, 4, 31, 1, NULL, 'per_day', NULL, '', NULL, 'FDT5C1FV28W4PGL96', '', 2, 6, 11, '17591 Lewis Highway Unit 735', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-12 15:46:03', 1, 'Mxcar\\CarRentals\\Models\\Customer', 1, 'approved', NULL, NULL),
(16, 'Genesis G70 3.3T Sport Prestige AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-13.jpg\"}', '30A-456.55', 1, 'available', 0, NULL, NULL, NULL, NULL, NULL, 18, NULL, 2024, 13093, 0.00, 0.00, NULL, 6, 1, 2, 4, 4, 59, 1, NULL, 'per_day', NULL, '', NULL, '3VFZ5XSK6M0H1SUBR', '', 1, 2, 5, '54244 Phillips Pass', NULL, 0, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-12 15:46:00', 5, 'Mxcar\\CarRentals\\Models\\Customer', 5, 'approved', NULL, NULL),
(17, 'Subaru Outback Limited XT 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-14.jpg\"}', '30A-456.66', 9, 'available', 0, NULL, NULL, NULL, NULL, NULL, 22, NULL, 2024, 19268, 0.00, 0.00, NULL, 4, NULL, 2, 4, 5, 85, 1, NULL, 'per_day', NULL, '', NULL, 'YSWPY8T31XGYV1T34', '', 2, 6, 12, '19920 Diaz Grove # 887', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:02', '2026-06-12 15:46:22', 20, 'Mxcar\\CarRentals\\Models\\Customer', 20, 'approved', NULL, NULL),
(18, 'Acura MDX Type S Advance 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-8.jpg\"}', '30A-456.77', 6, 'available', 0, NULL, NULL, NULL, NULL, NULL, 9, NULL, 2014, 12583, 0.00, 0.00, NULL, 5, 2, 1, 4, 4, 46, 1, NULL, 'per_day', NULL, '', NULL, 'GT97SZC1386LU8HVB', '', 2, 6, 12, '95086 Mitchell Hills # 824', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.rentalcars.com/en/search-results/acura-mdx-type-s-advance-2024', '2026-03-06 08:24:02', '2026-06-08 11:49:21', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(19, 'Range Rover Evoque P250 S 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/landrover-rangerover-evoque-p250-core-s-2024.jpg\"}', '30A-456.88', 5, 'available', 0, NULL, NULL, NULL, NULL, NULL, 17, NULL, 2012, 14626, 0.00, 0.00, NULL, 2, 2, 1, 5, 4, 68, 1, NULL, 'per_day', NULL, '', NULL, '8BL276JL3SS5S79ZF', '', 2, 6, 12, '75476 Foster Trail', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.europcar.com/en-us/car-rental/vehicles/range-rover-evoque-p250-s-2024', '2026-03-06 08:24:03', '2026-06-12 15:46:17', 17, 'Mxcar\\CarRentals\\Models\\Customer', 17, 'approved', NULL, NULL),
(21, 'Nissan Altima SR VC-Turbo 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-9.jpg\"}', '29A-789.00', 1, 'available', 0, NULL, NULL, NULL, NULL, NULL, 16, NULL, 2019, 5777, 0.00, 0.00, NULL, 3, 2, 1, 4, 4, 39, 1, NULL, 'per_day', NULL, '', NULL, 'XGE4ARMT5HJ5U6WNG', '', 5, 13, 20, '64990 Maple Point', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-12 15:46:18', 5, 'Mxcar\\CarRentals\\Models\\Customer', 5, 'approved', NULL, NULL),
(22, 'Hyundai Sonata N Line 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/652de68e-2024-hyundai-sonata-n-line-sedan-39.webp\",\"2\":\"cars\\/highlights-031-960x510-min.webp\",\"3\":\"cars\\/interior-01-1120x600-min.jpg\"}', '29A-789.11', 13, 'available', 0, NULL, NULL, NULL, NULL, NULL, 19, NULL, 2012, 11114, 0.00, 0.00, NULL, 7, 1, 2, 5, 4, 46, 1, NULL, 'per_day', NULL, '', NULL, 'JVBFE4SM64WPPBA4Z', '', 4, 10, 17, '39881 Thompson Parkway # 546', NULL, 0, 0, 0, 1, 3299.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-12 15:46:19', 19, 'Mxcar\\CarRentals\\Models\\Customer', 19, 'approved', NULL, '[]'),
(24, 'Volkswagen Atlas Cross Sport SEL Premium 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/intro-1690570812.jpg\"}', '29A-789.33', 6, 'available', 0, NULL, NULL, NULL, NULL, NULL, 17, NULL, 2010, 4431, 0.00, 0.00, NULL, 8, 2, 1, 5, 2, 57, 1, NULL, 'per_day', NULL, '', NULL, 'F5TMHP8M8U7V8DK30', '', 1, 5, 10, '36687 Young Heights # 152', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-10 20:31:12', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(28, 'Cadillac XT5 Premium Luxury AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/hq720-1.jpg\"}', '29A-789.77', 9, 'available', 0, NULL, NULL, NULL, NULL, NULL, 17, NULL, 2010, 15036, 0.00, 0.00, NULL, 2, 2, 2, 8, 2, 57, 1, NULL, 'per_day', NULL, '', NULL, '1886W1JW2K08ZPST1', '', 1, 3, 7, '67859 Carter Parkway', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.turo.com/us/en/search?vehicle=cadillac-xt5-premium-luxury-awd-2024', '2026-03-06 08:24:03', '2026-06-07 22:22:47', 13, 'Mxcar\\CarRentals\\Models\\Customer', 13, 'approved', NULL, NULL),
(30, 'Alfa Romeo Stelvio Veloce AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-4.jpg\"}', '29A-789.99', 8, 'available', 0, NULL, NULL, NULL, NULL, NULL, 8, NULL, 2019, 19283, 0.00, 0.00, NULL, 5, 2, 1, 7, 4, 94, 1, NULL, 'per_day', NULL, '', NULL, '96KC59U44WHWVW4TX', '', 1, 2, 5, '48298 Ward Ridge', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-05 19:10:42', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(31, 'McLaren 720S Spider 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/subaru-100882893-m.jpg\"}', '30B-100.00', 9, 'available', 0, NULL, NULL, NULL, NULL, NULL, 13, NULL, 2011, 8800, 0.00, 0.00, NULL, 6, 2, 2, 8, 5, 58, 1, NULL, 'per_day', NULL, '', NULL, 'EKKC142L2W1C36N9N', '', 7, 16, 23, '71250 Washington Circle Unit 155', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.avis.com/en/reserve/vehicles?location=mclaren-720s-spider-2024', '2026-03-06 08:24:03', '2026-06-12 15:46:23', 1, 'Mxcar\\CarRentals\\Models\\Customer', 1, 'approved', NULL, NULL),
(33, 'Ford Mustang GT Premium 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/2024-ford-mustang-gt-premium-hero-2-carpro.jpg\",\"2\":\"cars\\/download.jpg\",\"3\":\"cars\\/hq720-2.jpg\"}', '30B-100.22', 14, 'available', 0, NULL, NULL, NULL, NULL, NULL, 18, NULL, 2020, 7932, 0.00, 0.00, NULL, 7, NULL, 3, 8, 5, 97, 1, NULL, 'per_day', NULL, NULL, NULL, 'FBPJTMZZ8999ZTUV4', '', 2, 6, 12, '71412 First Trail', NULL, 1, 0, 0, 1, 6999.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-11 21:53:38', 9, 'Mxcar\\CarRentals\\Models\\Customer', 9, 'approved', NULL, '[]'),
(34, 'Porsche 911 Carrera S 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/carrera-4s-092fef0de5.jpeg\"}', '30B-100.33', 3, 'available', 0, NULL, NULL, NULL, NULL, NULL, 16, NULL, 2016, 7677, 0.00, 0.00, NULL, 2, 2, 2, 8, 5, 52, 1, NULL, 'per_day', NULL, '', NULL, 'HX2KNPM86HBDYA69H', '', 1, 1, 1, '38719 Campbell Hills Floor 375', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-07 12:06:56', 13, 'Mxcar\\CarRentals\\Models\\Customer', 13, 'approved', NULL, NULL),
(35, 'Audi R8 V10 Performance 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/hq720-1.jpg\",\"2\":\"cars\\/images-1.jpg\",\"3\":\"cars\\/2024-audi-r8-interior.jpg\"}', '30B-100.44', 10, 'available', 0, NULL, NULL, NULL, NULL, NULL, 20, NULL, 2010, 14107, 0.00, 0.00, NULL, 5, 2, 1, 4, 5, 79, 1, NULL, 'per_day', NULL, '', NULL, '55F8NEK94F86SB1RV', '', 3, 9, 16, '84137 Cedar Point', NULL, 1, 0, 1, 1, 7599.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-12 15:46:21', 8, 'Mxcar\\CarRentals\\Models\\Customer', 8, 'approved', NULL, '[]'),
(36, 'Lamborghini Huracán EVO 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/lambohur1.webp\",\"2\":\"cars\\/6ec47ec8a85777240ac02498bcdbb1bc.jpeg\",\"3\":\"cars\\/2024-lamborghini-huracan-tecnica-v10-red-wb-5.jpg\"}', '30B-100.55', 3, 'available', 0, NULL, NULL, NULL, NULL, NULL, 19, NULL, 2017, 4969, 0.00, 0.00, NULL, 4, 2, 2, 7, 2, 47, 1, NULL, 'per_day', NULL, '', NULL, '2LV18KZN1MX4CL131', '', 9, 20, 27, '44776 Harrison Place', NULL, 0, 0, 1, 1, 9999.00, 'new', 'First Owner', NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-12 15:46:29', 8, 'Mxcar\\CarRentals\\Models\\Customer', 8, 'approved', NULL, '[]'),
(37, 'BMW M4 Competition xDrive 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/cobb-i7launch-031122-20876.webp\",\"2\":\"cars\\/2024-m4-interior.jpg\",\"3\":\"cars\\/p90536850-highres-scaled-e1707305913308.jpg\"}', '30B-100.66', 13, 'available', 0, NULL, NULL, NULL, NULL, NULL, 24, NULL, 2021, 5020, 0.00, 0.00, NULL, 5, 1, 3, 5, 2, 69, 1, NULL, 'per_day', NULL, '', NULL, 'B28TT7ED15G319XLL', '', 2, 6, 11, '21261 Lake Walk Unit 128', NULL, 1, 0, 0, 1, 4366.00, 'new', 'First Owner', NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-12 15:45:54', 16, 'Mxcar\\CarRentals\\Models\\Customer', 16, 'approved', NULL, '[]'),
(38, 'Maserati Ghibli Modena 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-5.jpg\"}', '30B-100.77', 1, 'available', 0, NULL, NULL, NULL, NULL, NULL, 8, NULL, 2010, 13443, 0.00, 0.00, NULL, 7, NULL, 1, 7, 2, 62, 1, NULL, 'per_day', NULL, '', NULL, 'AF54T91E7RDCA5GGP', '', 1, 4, 9, '45420 Gomez Boulevard', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-09 00:56:57', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(39, 'Bentley Continental GT V8 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/images.jpg\",\"2\":\"cars\\/maxresdefault-5.jpg\",\"3\":\"cars\\/new-2024-bentley-continental-gt-v8-1710934060.jpg\"}', '30B-100.88', 8, 'available', 0, NULL, NULL, NULL, NULL, NULL, 17, NULL, 2021, 7862, 0.00, 0.00, NULL, 4, 2, 2, 8, 5, 49, 1, NULL, 'per_day', NULL, '', NULL, 'B8JY6DYH17BB15CB9', '', 7, 16, 23, '95766 Edwards Avenue', NULL, 1, 0, 0, 1, 5655.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-12 15:46:23', 3, 'Mxcar\\CarRentals\\Models\\Customer', 3, 'approved', NULL, '[]'),
(40, 'Rolls-Royce Ghost Black Badge 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-10.jpg\"}', '30B-100.99', 3, 'available', 0, NULL, NULL, NULL, NULL, NULL, 8, NULL, 2021, 6406, 0.00, 0.00, NULL, 1, NULL, 1, 5, 5, 88, 1, NULL, 'per_day', NULL, '', NULL, 'DYPGCWP15EGF8TA4H', '', 6, 14, 21, '77109 Butler Walk', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-06 16:36:48', 17, 'Mxcar\\CarRentals\\Models\\Customer', 17, 'approved', NULL, NULL),
(41, 'Hyundai Tucson Limited AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/2024-hyundai-tucson-limited-awd-front-view-26.webp\"}', '29B-200.00', 1, 'available', 0, NULL, NULL, NULL, NULL, NULL, 11, NULL, 2010, 13908, 0.00, 0.00, NULL, 8, 2, 1, 5, 5, 46, 1, NULL, 'per_day', NULL, '', NULL, '9EEMBSBH0SYL90MES', '', 1, 3, 6, '40967 Mitchell Walk', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-11 16:28:23', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(42, 'Kia Sportage SX-Turbo AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/2024-kia-sportage.webp\",\"2\":\"cars\\/2024-kia-sportage-hybrid-6.jpg\",\"3\":\"cars\\/kia-sportage-sx-09.jpg\"}', '29B-200.11', 12, 'available', 0, NULL, NULL, NULL, NULL, NULL, 21, NULL, 2011, 16484, 0.00, 0.00, NULL, 2, 2, 3, 8, 2, 37, 1, NULL, 'per_day', NULL, '', NULL, 'DXAA8S8X53XTEWYFB', '', 2, 7, 13, '71800 Morgan Place Floor 949', NULL, 0, 0, 1, 1, 1500.00, 'new', 'Second Owner', NULL, 'available', 'https://www.expedia.com/carsearch?vehicle=kia-sportage-sx-turbo-awd-2024', '2026-03-06 08:24:03', '2026-06-12 15:46:17', 19, 'Mxcar\\CarRentals\\Models\\Customer', 19, 'approved', NULL, '[]'),
(43, 'Volkswagen Tiguan SEL R-Line 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/download.jpg\"}', '29B-200.22', 4, 'available', 0, NULL, NULL, NULL, NULL, NULL, 17, NULL, 2010, 7303, 0.00, 0.00, NULL, 7, 1, 1, 7, 5, 58, 1, NULL, 'per_day', NULL, '', NULL, 'LD05L4NW78PW2ECGV', '', 3, 8, 15, '26611 Adams Walk', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.hertz.com/rentacar/reservation/vehicles?location=volkswagen-tiguan-sel-r-line-2024', '2026-03-06 08:24:03', '2026-06-07 12:06:50', 18, 'Mxcar\\CarRentals\\Models\\Customer', 18, 'approved', NULL, NULL),
(44, 'Toyota Highlander Platinum AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/01-2024-toyota-highlander-angular-front-jms.webp\"}', '29B-200.33', 8, 'available', 0, NULL, NULL, NULL, NULL, NULL, 9, NULL, 2024, 8830, 0.00, 0.00, NULL, 6, 1, 3, 5, 4, 76, 1, NULL, 'per_day', NULL, '', NULL, 'K5KLEVTD7AZY5WWV2', '', 7, 17, 24, '95202 Price Highway', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.sixt.com/rental-car/usa/vehicle/toyota-highlander-platinum-awd-2024', '2026-03-06 08:24:03', '2026-06-07 12:08:02', 5, 'Mxcar\\CarRentals\\Models\\Customer', 5, 'approved', NULL, NULL),
(45, 'Honda Pilot TrailSport AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-11.jpg\"}', '29B-200.44', 13, 'available', 0, NULL, NULL, NULL, NULL, NULL, 7, NULL, 2023, 14087, 0.00, 0.00, NULL, 2, 2, 3, 8, 5, 78, 1, NULL, 'per_day', NULL, '', NULL, 'YACDPEKD38GC4W6B7', '', 7, 17, 24, '6789 Second Park', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-12 09:06:39', 2, 'Mxcar\\CarRentals\\Models\\Customer', 2, 'approved', NULL, NULL);
INSERT INTO `cr_cars` (`id`, `name`, `description`, `content`, `images`, `license_plate`, `make_id`, `status`, `is_delivery_enabled`, `free_delivery_days_threshold`, `max_delivery_distance_miles`, `telematics_provider`, `telematics_device_id`, `geofence_radius_miles`, `views_count`, `host_protection_plan_id`, `year`, `mileage`, `fuel_rate_per_liter`, `late_fee_per_hour`, `horsepower`, `vehicle_type_id`, `transmission_id`, `fuel_type_id`, `number_of_seats`, `number_of_doors`, `rental_rate`, `currency_id`, `currency`, `rental_type`, `rental_available_types`, `insurance_info`, `default_pickup_instructions`, `vin`, `location`, `country_id`, `state_id`, `city_id`, `address`, `tax_id`, `is_featured`, `order`, `is_used`, `is_for_sale`, `sale_price`, `condition`, `ownership_history`, `warranty_information`, `sale_status`, `external_booking_url`, `created_at`, `updated_at`, `author_id`, `author_type`, `vendor_id`, `moderation_status`, `reject_reason`, `vr_images`) VALUES
(46, 'Mazda MX-5 Miata Grand Touring 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/hq720-2.jpg\"}', '29B-200.55', 2, 'available', 0, NULL, NULL, NULL, NULL, NULL, 5, NULL, 2014, 5668, 0.00, 0.00, NULL, 2, 1, 3, 5, 2, 80, 1, NULL, 'per_day', NULL, '', NULL, 'MF7YU7TM3CDKYUD6F', '', 3, 9, 16, '25562 Thomas Drive Apt 64', NULL, 0, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-05 19:07:36', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(47, 'Nissan Rogue Platinum AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/everything-you-need-to-know-about-the-2024-nissan-rogue-3.webp\",\"2\":\"cars\\/thumbnail-364x204.jpg\",\"3\":\"cars\\/everything-you-need-to-know-about-the-2024-nissan-rogue-9-800x532.webp\"}', '29B-200.66', 11, 'available', 0, NULL, NULL, NULL, NULL, NULL, 18, NULL, 2021, 12430, 0.00, 0.00, NULL, 1, 2, 1, 4, 2, 99, 1, NULL, 'per_day', NULL, '', NULL, '1HVUH9AH35B58KVZ9', '', 9, 20, 27, '4426 Lewis View # 606', NULL, 1, 0, 0, 1, 2000.00, 'new', 'Second Owner', NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-11 12:51:02', 14, 'Mxcar\\CarRentals\\Models\\Customer', 14, 'approved', NULL, '[]'),
(48, 'Mini Cooper S Hardtop 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-12.jpg\"}', '29B-200.77', 12, 'available', 0, NULL, NULL, NULL, NULL, NULL, 10, NULL, 2016, 13747, 0.00, 0.00, NULL, 1, 2, 1, 5, 4, 61, 1, NULL, 'per_day', NULL, '', NULL, 'RX1F7TAR01YBAZ9C8', '', 6, 14, 21, '90396 Harris Gardens', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.sixt.com/rental-car/usa/vehicle/mini-cooper-s-hardtop-2024', '2026-03-06 08:24:03', '2026-06-11 17:07:55', 6, 'Mxcar\\CarRentals\\Models\\Customer', 6, 'approved', NULL, NULL),
(49, 'Dodge Challenger R/T Scat Pack 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/001-2023-dodge-challenger-scat-pack-shakedown-front-three-quarters-in-action.webp\"}', '29B-200.88', 2, 'available', 0, NULL, NULL, NULL, NULL, NULL, 7, NULL, 2012, 8572, 0.00, 0.00, NULL, 8, 1, 2, 4, 5, 44, 1, NULL, 'per_day', NULL, '', NULL, 'G0RUCS0B3X833V15X', '', 3, 8, 14, '48999 Baker Landing', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.hertz.com/rentacar/reservation/vehicles?location=dodge-challenger-r/t-scat-pack-2024', '2026-03-06 08:24:03', '2026-06-07 12:07:26', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(50, 'Chevrolet Camaro SS 1LE 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/camaro-2ss-1le-2024-v0-necq5cub3p9c1.jpg\",\"2\":\"cars\\/2024-chevrolet-camaro-1ss-1le.jpg\",\"3\":\"cars\\/ozark-dealer-won-t-sell-2024-camaro-zl1-collector-edition-for-102000-call-jason-bateman-18.jpg\"}', '29B-200.99', 6, 'available', 0, NULL, NULL, NULL, NULL, NULL, 20, NULL, 2019, 3044, 0.00, 0.00, NULL, 3, 1, 2, 8, 2, 53, 1, NULL, 'per_day', NULL, '', NULL, '1JKKML1F66LXPL9E4', '', 4, 11, 18, '24162 Butler View', NULL, 0, 0, 0, 1, 1799.00, 'new', 'Second Owner', NULL, 'available', NULL, '2026-03-06 08:24:03', '2026-06-11 15:03:35', 16, 'Mxcar\\CarRentals\\Models\\Customer', 16, 'approved', NULL, '[]'),
(51, 'Ferrari F8 Tributo 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/2021-ferrari-f8-tributo-photo-aug-15-2024-2-32-54-am-1-90083.webp\",\"2\":\"cars\\/generation-64a7f689334d4-ferrari-f8-spider-exterior-front.webp\",\"3\":\"cars\\/2024-ferrari-f8-tributo-rear.jpg\"}', '30C-300.00', 12, 'available', 0, NULL, NULL, NULL, NULL, NULL, 21, NULL, 2020, 2363, 0.00, 0.00, NULL, 8, NULL, 1, 4, 5, 34, 1, NULL, 'per_day', NULL, '', NULL, '72SWGN4N02V9BW899', '', 1, 4, 8, '27034 Morris View', NULL, 1, 0, 1, 1, 10000.00, 'new', 'First Owner', NULL, 'available', 'https://www.sixt.com/rental-car/usa/vehicle/ferrari-f8-tributo-2024', '2026-03-06 08:24:03', '2026-06-11 12:59:28', 19, 'Mxcar\\CarRentals\\Models\\Customer', 19, 'approved', NULL, '[]'),
(52, 'Jaguar F-PACE SVR 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/403458-2024-jaguar-f-pace.jpg\",\"2\":\"cars\\/2024-jaguar-f-pace-svr-21.jpg\",\"3\":\"cars\\/89-jaguarfpace-interior.webp\"}', '30C-300.11', 3, 'available', 0, NULL, NULL, NULL, NULL, NULL, 17, NULL, 2010, 17062, 0.00, 0.00, NULL, 7, 2, 2, 4, 5, 61, 1, NULL, 'per_day', NULL, '', NULL, '48WM5AG67XCPZMPEL', '', 8, 19, 26, '33220 Reyes Lane', NULL, 0, 0, 1, 1, 1500.00, 'new', NULL, NULL, 'available', 'https://www.sixt.com/rental-car/usa/vehicle/jaguar-f-pace-svr-2024', '2026-03-06 08:24:04', '2026-06-11 17:19:36', 11, 'Mxcar\\CarRentals\\Models\\Customer', 11, 'approved', NULL, '[]'),
(53, 'Land Rover Defender 110 X 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/ff26c6d5-cae9-4bba-9366-66f35173bd4b.jpg\"}', '30C-300.22', 6, 'available', 0, NULL, NULL, NULL, NULL, NULL, 19, NULL, 2015, 4304, 0.00, 0.00, NULL, 6, NULL, 3, 5, 5, 67, 1, NULL, 'per_day', NULL, '', NULL, 'R9XE7H0524CDNLC8L', '', 4, 11, 18, '35004 Lincoln Place', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-11 00:39:50', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(54, 'Chrysler Pacifica Pinnacle AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/hq720.jpg\"}', '30C-300.33', 12, 'available', 0, NULL, NULL, NULL, NULL, NULL, 13, NULL, 2022, 1668, 0.00, 0.00, NULL, 7, 2, 1, 4, 5, 60, 1, NULL, 'per_day', NULL, '', NULL, '4EV242TZ8D4D57C1M', '', 2, 7, 13, '10806 Campbell Street', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.avis.com/en/reserve/vehicles?location=chrysler-pacifica-pinnacle-awd-2024', '2026-03-06 08:24:04', '2026-06-09 08:15:46', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(55, 'GMC Sierra 1500 Denali 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/2024-gmc-sierra-1500-denali-ultimate-review-truck-luxury.webp\"}', '30C-300.44', 12, 'available', 0, NULL, NULL, NULL, NULL, NULL, 16, NULL, 2010, 15384, 0.00, 0.00, NULL, 5, 2, 2, 4, 2, 33, 1, NULL, 'per_day', NULL, '', NULL, 'MR8LF0NG582D2555F', '', 7, 17, 24, '30082 Murphy Walk', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-11 05:02:05', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(56, 'Mitsubishi Outlander SEL S-AWC 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/2024-mitsubishi-outlander-phev-770x496.jpg\"}', '30C-300.55', 1, 'available', 0, NULL, NULL, NULL, NULL, NULL, 16, NULL, 2014, 11136, 0.00, 0.00, NULL, 5, 2, 3, 5, 5, 62, 1, NULL, 'per_day', NULL, '', NULL, 'JD7X1RTJ378B2WAWP', '', 8, 19, 26, '93778 Parker Ridge', NULL, 0, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.expedia.com/carsearch?vehicle=mitsubishi-outlander-sel-s-awc-2024', '2026-03-06 08:24:04', '2026-06-12 15:46:27', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(58, 'Fiat 500X Sport AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/fiat-500x-sport-2024.jpg\"}', '30C-300.77', 1, 'available', 0, NULL, NULL, NULL, NULL, NULL, 14, NULL, 2010, 3791, 0.00, 0.00, NULL, 3, 1, 3, 8, 2, 66, 1, NULL, 'per_day', NULL, '', NULL, 'KBX3W1JS68W1CE008', '', 3, 9, 16, '90166 Hill Way', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-08 20:41:27', 17, 'Mxcar\\CarRentals\\Models\\Customer', 17, 'approved', NULL, NULL),
(61, 'Aston Martin Vantage F1 Edition 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/dsc-0121.jpg\"}', '30D-400.00', 12, 'available', 0, NULL, NULL, NULL, NULL, NULL, 14, NULL, 2011, 11034, 0.00, 0.00, NULL, 2, 2, 3, 8, 2, 56, 1, NULL, 'per_day', NULL, '', NULL, '7WT75AJ734YAC7J4X', '', 1, 3, 7, '81392 Bell Drive Floor 122', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-10 20:27:06', 6, 'Mxcar\\CarRentals\\Models\\Customer', 6, 'approved', NULL, NULL),
(63, 'McLaren Artura Spider 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-1.jpg\"}', '30D-400.22', 10, 'available', 0, NULL, NULL, NULL, NULL, NULL, 11, NULL, 2014, 6559, 0.00, 0.00, NULL, 1, 2, 2, 7, 4, 42, 1, NULL, 'per_day', NULL, '', NULL, 'W9T1XKFT36GJUPT0J', '', 9, 20, 27, '98845 Foster Pass Unit 542', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.rentalcars.com/en/search-results/mclaren-artura-spider-2024', '2026-03-06 08:24:04', '2026-06-07 12:07:30', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, '[]'),
(68, 'BMW X7 xDrive40i M Sport 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/hq720.jpg\",\"2\":\"cars\\/23060511131dsc-1801.webp\",\"3\":\"cars\\/bmw-x7-dashboard-view-633648.webp\"}', '30E-500.22', 12, 'available', 0, NULL, NULL, NULL, NULL, NULL, 22, NULL, 2010, 17355, 0.00, 0.00, NULL, 3, 1, 2, 7, 4, 35, 1, NULL, 'per_day', NULL, '', NULL, 'VXKBCL8R5K0UKX3AL', '', 4, 11, 18, '20562 Hall Valley', NULL, 0, 0, 0, 1, 2500.00, 'new', 'First Owner', NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-11 12:13:16', 15, 'Mxcar\\CarRentals\\Models\\Customer', 15, 'approved', NULL, '[]'),
(71, 'Genesis GV70 2.5T Sport AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-2.jpg\"}', '30E-500.55', 1, 'available', 0, NULL, NULL, NULL, NULL, NULL, 18, NULL, 2015, 12276, 0.00, 0.00, NULL, 7, 1, 2, 7, 5, 38, 1, NULL, 'per_day', NULL, '', NULL, 'E5M8BX806E95222JN', '', 5, 12, 19, '24673 Jackson Landing', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-12 11:10:57', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(72, 'Acura TLX Type S PMC Edition 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/image-1.webp\"}', '30E-500.66', 13, 'available', 0, NULL, NULL, NULL, NULL, NULL, 10, NULL, 2021, 14524, 0.00, 0.00, NULL, 8, NULL, 1, 8, 2, 90, 1, NULL, 'per_day', NULL, '', NULL, '51MLAL5G42SY100FC', '', 3, 8, 14, '24798 Spruce Court', NULL, 0, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-07 12:07:30', 5, 'Mxcar\\CarRentals\\Models\\Customer', 5, 'approved', NULL, NULL),
(73, 'Infiniti Q50 Red Sport 400 AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/preview-928x522.jpg\"}', '30E-500.77', 14, 'available', 0, NULL, NULL, NULL, NULL, NULL, 11, NULL, 2017, 8724, 0.00, 0.00, NULL, 2, NULL, 3, 5, 5, 99, 1, NULL, 'per_day', NULL, '', NULL, '8YMBED9L3AS6922M1', '', 1, 5, 10, '49780 Hughes Plaza', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-12 12:23:18', 17, 'Mxcar\\CarRentals\\Models\\Customer', 17, 'approved', NULL, NULL),
(74, 'Jaguar XF P300 R-Dynamic S AWD 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-3.jpg\"}', '30E-500.88', 12, 'available', 0, NULL, NULL, NULL, NULL, NULL, 41, NULL, 2022, 17934, 0.00, 0.00, NULL, 6, 2, 1, 4, 4, 72, 1, NULL, 'per_day', NULL, '', NULL, 'N1YF47CD5HZRNDEWY', '', 6, 14, 21, '8558 Lake Way', NULL, 0, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-11 02:41:15', 13, 'Mxcar\\CarRentals\\Models\\Customer', 13, 'approved', NULL, NULL),
(75, 'Alfa Romeo Giulia Quadrifoglio 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/69-alfa-giulia-quadrifoglio-front-cornering.webp\"}', '30E-500.99', 5, 'available', 0, NULL, NULL, NULL, NULL, NULL, 14, NULL, 2010, 13921, 0.00, 0.00, NULL, 4, 2, 1, 8, 2, 68, 1, NULL, 'per_day', NULL, '', NULL, 'V8WCDND23GDXVDEZF', '', 3, 8, 15, '41279 Mitchell Cliffs', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.kayak.com/cars/alfa-romeo-giulia-quadrifoglio-2024', '2026-03-06 08:24:04', '2026-06-09 03:29:16', 17, 'Mxcar\\CarRentals\\Models\\Customer', 17, 'approved', NULL, NULL),
(77, 'Range Rover Sport HSE Dynamic 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/range-rover-sport-suv-car-hire-dundass-01.jpg\"}', '29E-600.11', 4, 'available', 0, NULL, NULL, NULL, NULL, NULL, 11, NULL, 2021, 4943, 0.00, 0.00, NULL, 1, 1, 1, 5, 4, 49, 1, NULL, 'per_day', NULL, '', NULL, '7FWZYW700SA7EKAHN', '', 4, 10, 17, '25161 Carter Road', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', 'https://www.rentalcars.com/en/search-results/range-rover-sport-hse-dynamic-2024', '2026-03-06 08:24:04', '2026-06-07 12:07:32', 5, 'Mxcar\\CarRentals\\Models\\Customer', 5, 'approved', NULL, NULL),
(79, 'BMW M5 Competition xDrive 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/2024-m5-renders-v0-6x6pusm029kb1.webp\"}', '29E-600.33', 6, 'available', 0, NULL, NULL, NULL, NULL, NULL, 13, NULL, 2014, 19670, 0.00, 0.00, NULL, 8, 1, 1, 8, 2, 73, 1, NULL, 'per_day', NULL, '', NULL, 'N5T54G5P1P61EXXY8', '', 3, 8, 15, '19273 Martin Court', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-08 13:30:37', 17, 'Mxcar\\CarRentals\\Models\\Customer', 17, 'approved', NULL, NULL),
(81, 'Tesla Model S Plaid 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/model-s-plaid-2024-v0-8u4pk7gvee3d1.webp\"}', '29E-600.55', 8, 'available', 0, NULL, NULL, NULL, NULL, NULL, 18, NULL, 2012, 13032, 0.00, 0.00, NULL, 3, 2, 2, 8, 5, 50, 1, NULL, 'per_day', NULL, '', NULL, 'X07X8FV58X0692ASG', '', 3, 9, 16, '66518 Taylor View', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-10 09:04:48', 13, 'Mxcar\\CarRentals\\Models\\Customer', 13, 'approved', NULL, NULL),
(82, 'Lucid Air Grand Touring Performance 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/ecae39d6-2024-lucid-air-grand-touring-ev-press-gtlaunch-ext-gt-zenithred-lifestyle1-768x432.webp\"}', '29E-600.66', 2, 'available', 0, NULL, NULL, NULL, NULL, NULL, 10, NULL, 2017, 15469, 0.00, 0.00, NULL, 4, 1, 1, 5, 2, 56, 1, NULL, 'per_day', NULL, '', NULL, 'LTMJYTH12T8M20VD0', '', 1, 3, 6, '94292 Clark Street', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-07 12:07:39', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(83, 'Rivian R1S Adventure 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/kvpxwbwz-cxlh8qzoss-edit.jpg\",\"2\":\"cars\\/9aad0gdl-rl0pofyhfg-edit.jpg\",\"3\":\"cars\\/02-2023-rivian-r1s-adventure-performance-dual-motor-max-interior.webp\"}', '29E-600.77', 4, 'available', 0, NULL, NULL, NULL, NULL, NULL, 19, NULL, 2015, 16431, 0.00, 0.00, NULL, 6, 2, 3, 4, 4, 36, 1, NULL, 'per_day', NULL, '', NULL, '030BX5AV29VSXV7DT', '', 9, 20, 27, '86611 Madison Grove', NULL, 1, 0, 0, 1, 2000.00, 'new', 'Second Owner', NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-11 16:57:57', 8, 'Mxcar\\CarRentals\\Models\\Customer', 8, 'approved', NULL, '[]'),
(86, 'Mercedes-Maybach S 580 4MATIC 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/maxresdefault-2.jpg\",\"2\":\"cars\\/maxresdefault-3.jpg\",\"3\":\"cars\\/maxresdefault-4.jpg\"}', '30F-700.00', 7, 'available', 0, NULL, NULL, NULL, NULL, NULL, 19, NULL, 2015, 9982, 0.00, 0.00, NULL, 6, 1, 1, 5, 2, 56, 1, NULL, 'per_day', NULL, '', NULL, 'TNNWZ8MG8Y6YJHSZP', '', 8, 19, 26, '80870 Hill Park Unit 622', NULL, 0, 0, 0, 1, 15999.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:04', '2026-06-11 09:35:53', 12, 'Mxcar\\CarRentals\\Models\\Customer', 12, 'approved', NULL, '[]'),
(87, 'Bentley Bentayga S V8 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars\\/new-2024-bentley-bentayga-s-v8-1713479414.jpg\",\"2\":\"cars\\/maxresdefault.jpg\",\"3\":\"cars\\/maxresdefault-1.jpg\"}', '30F-700.11', 10, 'available', 0, NULL, NULL, NULL, NULL, NULL, 25, NULL, 2020, 14902, 0.00, 0.00, NULL, 3, 2, 1, 4, 2, 97, 1, NULL, 'per_day', NULL, '', NULL, 'NVX97LVN9Y5KU6WKG', '', 9, 20, 27, '76243 Taylor Highway Suite 965', NULL, 1, 0, 0, 1, 12999.00, 'new', NULL, NULL, 'available', 'https://www.kayak.com/cars/bentley-bentayga-s-v8-2024', '2026-03-06 08:24:04', '2026-06-11 19:15:00', 32, 'Mxcar\\CarRentals\\Models\\Customer', 32, 'approved', NULL, '[]'),
(88, 'Rolls-Royce Cullinan Black Badge 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-15.jpg\"}', '30F-700.22', 4, 'available', 0, NULL, NULL, NULL, NULL, NULL, 7, NULL, 2016, 4932, 0.00, 0.00, NULL, 7, NULL, 3, 8, 5, 83, 1, NULL, 'per_day', NULL, '', NULL, '7VZWSVKA2NE57ZZPF', '', 1, 3, 7, '61787 Morris Park', NULL, 0, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-11 22:12:25', 10, 'Mxcar\\CarRentals\\Models\\Customer', 10, 'approved', NULL, NULL),
(89, 'Aston Martin DBX707 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-16.jpg\"}', '30F-700.33', 3, 'available', 0, NULL, NULL, NULL, NULL, NULL, 10, NULL, 2015, 17774, 0.00, 0.00, NULL, 7, 2, 3, 7, 2, 85, 1, NULL, 'per_day', NULL, '', NULL, 'SJ0RX88968EHL6DYG', '', 1, 2, 4, '66770 Stewart Boulevard Unit 911', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-11 15:23:37', 16, 'Mxcar\\CarRentals\\Models\\Customer', 16, 'approved', NULL, NULL),
(90, 'Maserati Levante Trofeo 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-17.jpg\"}', '30F-700.44', 6, 'available', 0, NULL, NULL, NULL, NULL, NULL, 7, NULL, 2023, 17763, 0.00, 0.00, NULL, 5, NULL, 2, 8, 2, 94, 1, NULL, 'per_day', NULL, '', NULL, 'NCGT5M8W73GG8BNEU', '', 7, 16, 23, '31161 Madison Cliffs', NULL, 0, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-08 15:09:20', 3, 'Mxcar\\CarRentals\\Models\\Customer', 3, 'approved', NULL, NULL),
(91, 'Ferrari Roma Spider 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-18.jpg\"}', '30F-700.55', 1, 'available', 0, NULL, NULL, NULL, NULL, NULL, 7, NULL, 2024, 12215, 0.00, 0.00, NULL, 6, 2, 2, 8, 5, 57, 1, NULL, 'per_day', NULL, '', NULL, 'FC1GVEEM8N4S89W5R', '', 1, 1, 3, '66385 Miller Walk', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-07 12:07:44', 8, 'Mxcar\\CarRentals\\Models\\Customer', 8, 'approved', NULL, NULL),
(92, 'McLaren GT Luxe 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images.jpg\"}', '30F-700.66', 7, 'available', 0, NULL, NULL, NULL, NULL, NULL, 22, NULL, 2022, 5711, 0.00, 0.00, NULL, 4, 2, 3, 4, 5, 94, 1, NULL, 'per_day', NULL, '', NULL, 'MVK7BZ716EZE8HHZH', '', 5, 12, 19, '60422 Cook Boulevard Suite 716', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-11 21:54:07', 1, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(93, 'Lamborghini Urus Performante 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/2024-lamborghini-urus-performante-16-1920x800.jpg\"}', '30F-700.77', 5, 'available', 0, NULL, NULL, NULL, NULL, NULL, 17, NULL, 2012, 9870, 0.00, 0.00, NULL, 4, 1, 3, 4, 4, 83, 1, NULL, 'per_day', NULL, '', NULL, 'XV9MJKN03CA3K8CSV', '', 3, 9, 16, '12277 Parker Lane', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-08 10:09:52', 5, 'Mxcar\\CarRentals\\Models\\Customer', 5, 'approved', NULL, NULL),
(94, 'Porsche Taycan Turbo S Cross Turismo 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '[\"customers\\/1\\/23cc1afc-c03c-4f77-868f-f44144d4167c.webp\"]', '30F-700.88', 13, 'available', 0, NULL, NULL, NULL, NULL, NULL, 23, NULL, 2017, 4105, 0.00, 0.00, NULL, 5, NULL, 1, 5, 4, 45, 1, NULL, 'per_day', NULL, '', NULL, 'AGRWGG4T2TLY43UD1', '', 7, 16, 23, '4162 Peterson Drive Floor 469', NULL, 0, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-09 12:45:07', 1, 'Mxcar\\CarRentals\\Models\\Customer', 1, 'approved', NULL, '[]'),
(95, 'BMW XM Label Red 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-19.jpg\"}', '30F-700.99', 4, 'available', 0, NULL, NULL, NULL, NULL, NULL, 13, NULL, 2022, 5375, 0.00, 0.00, NULL, 3, 1, 1, 5, 5, 99, 1, NULL, 'per_day', NULL, '', NULL, 'WLPCZ3562J4Z6WVDY', '', 6, 14, 21, '31357 Russell Point', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-07 12:07:32', 10, 'Mxcar\\CarRentals\\Models\\Customer', 10, 'approved', NULL, NULL),
(96, 'Chevrolet Corvette Z06 3LZ 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/hq720-3.jpg\"}', '29F-800.00', 4, 'available', 0, NULL, NULL, NULL, NULL, NULL, 15, NULL, 2023, 17261, 0.00, 0.00, NULL, 6, 1, 3, 7, 5, 64, 1, NULL, 'per_day', NULL, '', NULL, 'FKEW03H18SL23XH9N', '', 2, 6, 11, '88016 Morales Parkway', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-11 09:24:02', 32, 'Mxcar\\CarRentals\\Models\\Customer', 32, 'approved', NULL, NULL),
(97, 'Ford GT Heritage Edition 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/images-20.jpg\"}', '29F-800.11', 3, 'available', 0, NULL, NULL, NULL, NULL, NULL, 7, NULL, 2017, 17625, 0.00, 0.00, NULL, 2, 1, 3, 4, 4, 94, 1, NULL, 'per_day', NULL, '', NULL, 'F42695CJ7NKAHVDDR', '', 9, 20, 27, '37238 Ward Heights Floor 851', NULL, 1, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-07 01:35:09', 14, 'Mxcar\\CarRentals\\Models\\Customer', 14, 'approved', NULL, '[]'),
(98, 'Dodge Viper ACR Extreme 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/2026-dodge-viper-acr-looks-like-a-supercar-built-in-a-digital-shed-247187-7.jpg\"}', '29F-800.22', 8, 'available', 0, NULL, NULL, NULL, NULL, NULL, 7, NULL, 2011, 11825, 0.00, 0.00, NULL, 7, 1, 2, 7, 4, 76, 1, NULL, 'per_day', NULL, '', NULL, 'LRMYJW970ZVEHPJZT', '', 1, 1, 2, '58540 White Circle Unit 733', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-07 01:35:36', 8, 'Mxcar\\CarRentals\\Models\\Customer', 8, 'approved', NULL, NULL),
(99, 'Nissan GT-R NISMO Special Edition 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/11127834a-1.webp\"}', '29F-800.33', 1, 'available', 0, NULL, NULL, NULL, NULL, NULL, 16, NULL, 2023, 3185, 0.00, 0.00, NULL, 3, 2, 2, 7, 4, 65, 1, NULL, 'per_day', NULL, '', NULL, 'ZFGYR97H2JZE092L5', '', 1, 1, 1, '80143 Moore Plaza', NULL, 1, 0, 1, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-09 07:24:21', 6, 'Mxcar\\CarRentals\\Models\\Customer', 6, 'approved', NULL, NULL);
INSERT INTO `cr_cars` (`id`, `name`, `description`, `content`, `images`, `license_plate`, `make_id`, `status`, `is_delivery_enabled`, `free_delivery_days_threshold`, `max_delivery_distance_miles`, `telematics_provider`, `telematics_device_id`, `geofence_radius_miles`, `views_count`, `host_protection_plan_id`, `year`, `mileage`, `fuel_rate_per_liter`, `late_fee_per_hour`, `horsepower`, `vehicle_type_id`, `transmission_id`, `fuel_type_id`, `number_of_seats`, `number_of_doors`, `rental_rate`, `currency_id`, `currency`, `rental_type`, `rental_available_types`, `insurance_info`, `default_pickup_instructions`, `vin`, `location`, `country_id`, `state_id`, `city_id`, `address`, `tax_id`, `is_featured`, `order`, `is_used`, `is_for_sale`, `sale_price`, `condition`, `ownership_history`, `warranty_information`, `sale_status`, `external_booking_url`, `created_at`, `updated_at`, `author_id`, `author_type`, `vendor_id`, `moderation_status`, `reject_reason`, `vr_images`) VALUES
(100, 'Toyota Supra 3.0 Premium 2024', NULL, '<p>Introducing the epitome of modern sophistication in the realm of compact SUVs – the Seltos K3. Dressed in a captivating blue hue that exudes elegance and flair, this dynamic vehicle stands as a testament to innovation and style. With its sleek design accentuated by striking dark wheels, the Seltos K3 is not merely a mode of transportation but a statement of refined taste and contemporary living.</p><p>Prepare to embark on a journey where cutting-edge technology meets unparalleled comfort, all wrapped in a package of unparalleled aesthetics. Join us as we delve into the world of the Seltos K3, where every detail is crafted to elevate your driving experience to new heights.</p>', '{\"1\":\"cars2\\/098b0d9566b6c0fd4c663fb97f92c072x.jpg\"}', '29F-800.44', 5, 'available', 0, NULL, NULL, NULL, NULL, NULL, 17, NULL, 2015, 2682, 0.00, 0.00, NULL, 6, NULL, 2, 7, 4, 48, 1, NULL, 'per_day', NULL, '', NULL, 'F318L6GN16ZX83WN0', '', 9, 20, 27, '41725 Reed Park', NULL, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-06 08:24:05', '2026-06-11 07:01:14', 6, 'Mxcar\\CarRentals\\Models\\Customer', 6, 'approved', NULL, '[]'),
(101, 'Ford Bronco', NULL, '<p><span style=\"background-color:rgb(255,255,255);color:rgb(69,69,69);\"><span style=\"-webkit-text-stroke-width:0px;display:inline !important;float:none;font-family:Urbanist;font-size:14px;font-style:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-weight:500;letter-spacing:normal;orphans:2;text-align:start;text-decoration-color:initial;text-decoration-style:initial;text-decoration-thickness:initial;text-indent:0px;text-transform:none;white-space:normal;widows:2;word-spacing:0px;\">The Ford Bronco is a rugged, body-on-frame mid-size SUV (or compact Sport version) designed for off-road performance, featuring removable roofs/doors and 4x4 capability. Reintroduced in 2021, the 6th generation offers 2 or 4-door options, with powerful EcoBoost engines and modern tech, competing against Jeep and Toyota.&nbsp;</span></span></p>', '[\"customers\\/34\\/bronco3.jpg\",\"customers\\/34\\/bronco2.jpg\"]', NULL, 10, 'available', 0, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL, NULL, 0.00, 0.00, NULL, 1, 1, 1, NULL, NULL, 50, 1, NULL, 'per_hour', NULL, NULL, NULL, NULL, NULL, 1, 1, 1, NULL, 2, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-03-18 03:59:22', '2026-06-08 12:39:30', 34, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL),
(102, 'Verna', 'nice car', '<p>nice car</p>', '[\"customers\\/35\\/verna2.jpeg\",\"customers\\/35\\/verna1.jpeg\"]', NULL, NULL, 'available', 1, NULL, 10, NULL, NULL, NULL, 15, 1, NULL, NULL, 0.00, 0.00, NULL, NULL, NULL, NULL, NULL, 5, 200, 1, NULL, 'per_hour', NULL, '5', NULL, NULL, NULL, 1, 1, 1, 'california', 4, 0, 0, 0, 0, 0.00, 'new', NULL, NULL, 'available', NULL, '2026-04-09 14:29:49', '2026-06-07 01:35:28', 35, 'Mxcar\\CarRentals\\Models\\Customer', NULL, 'approved', NULL, NULL);

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

--
-- Table structure for table `cr_cars_amenities`
--

CREATE TABLE `cr_cars_amenities` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `cr_car_id` bigint(20) UNSIGNED NOT NULL,
  `cr_car_amenity_id` bigint(20) 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 `cr_cars_amenities`
--

INSERT INTO `cr_cars_amenities` (`id`, `cr_car_id`, `cr_car_amenity_id`, `created_at`, `updated_at`) VALUES
(1, 1, 13, NULL, NULL),
(2, 1, 23, NULL, NULL),
(3, 1, 45, NULL, NULL),
(4, 1, 46, NULL, NULL),
(5, 1, 47, NULL, NULL),
(6, 1, 2, NULL, NULL),
(7, 1, 4, NULL, NULL),
(8, 1, 8, NULL, NULL),
(9, 1, 19, NULL, NULL),
(10, 1, 7, NULL, NULL),
(11, 1, 11, NULL, NULL),
(12, 1, 15, NULL, NULL),
(13, 1, 16, NULL, NULL),
(14, 1, 18, NULL, NULL),
(15, 1, 28, NULL, NULL),
(16, 1, 29, NULL, NULL),
(17, 1, 32, NULL, NULL),
(18, 1, 34, NULL, NULL),
(19, 1, 5, NULL, NULL),
(20, 1, 27, NULL, NULL),
(21, 2, 14, NULL, NULL),
(22, 2, 22, NULL, NULL),
(23, 2, 23, NULL, NULL),
(24, 2, 46, NULL, NULL),
(25, 2, 47, NULL, NULL),
(26, 2, 1, NULL, NULL),
(27, 2, 8, NULL, NULL),
(28, 2, 7, NULL, NULL),
(29, 2, 10, NULL, NULL),
(30, 2, 12, NULL, NULL),
(31, 2, 18, NULL, NULL),
(32, 2, 32, NULL, NULL),
(33, 2, 34, NULL, NULL),
(34, 2, 37, NULL, NULL),
(35, 2, 41, NULL, NULL),
(36, 3, 14, NULL, NULL),
(37, 3, 23, NULL, NULL),
(38, 3, 46, NULL, NULL),
(39, 3, 1, NULL, NULL),
(40, 3, 4, NULL, NULL),
(41, 3, 8, NULL, NULL),
(42, 3, 19, NULL, NULL),
(43, 3, 12, NULL, NULL),
(44, 3, 15, NULL, NULL),
(45, 3, 16, NULL, NULL),
(46, 3, 17, NULL, NULL),
(47, 3, 18, NULL, NULL),
(48, 3, 29, NULL, NULL),
(49, 3, 34, NULL, NULL),
(50, 3, 35, NULL, NULL),
(51, 3, 25, NULL, NULL),
(52, 4, 13, NULL, NULL),
(53, 4, 14, NULL, NULL),
(54, 4, 22, NULL, NULL),
(55, 4, 45, NULL, NULL),
(56, 4, 46, NULL, NULL),
(57, 4, 1, NULL, NULL),
(58, 4, 15, NULL, NULL),
(59, 4, 16, NULL, NULL),
(60, 4, 37, NULL, NULL),
(61, 4, 41, NULL, NULL),
(62, 4, 42, NULL, NULL),
(63, 4, 43, NULL, NULL),
(64, 5, 13, NULL, NULL),
(65, 5, 14, NULL, NULL),
(66, 5, 22, NULL, NULL),
(67, 5, 46, NULL, NULL),
(68, 5, 1, NULL, NULL),
(69, 5, 2, NULL, NULL),
(70, 5, 6, NULL, NULL),
(71, 5, 8, NULL, NULL),
(72, 5, 10, NULL, NULL),
(73, 5, 11, NULL, NULL),
(74, 5, 16, NULL, NULL),
(75, 5, 17, NULL, NULL),
(76, 5, 18, NULL, NULL),
(77, 5, 29, NULL, NULL),
(78, 5, 32, NULL, NULL),
(79, 5, 3, NULL, NULL),
(80, 5, 20, NULL, NULL),
(81, 5, 33, NULL, NULL),
(82, 5, 39, NULL, NULL),
(83, 5, 40, NULL, NULL),
(84, 6, 14, NULL, NULL),
(85, 6, 23, NULL, NULL),
(86, 6, 45, NULL, NULL),
(87, 6, 46, NULL, NULL),
(88, 6, 1, NULL, NULL),
(89, 6, 11, NULL, NULL),
(90, 6, 15, NULL, NULL),
(91, 7, 14, NULL, NULL),
(92, 7, 45, NULL, NULL),
(93, 7, 46, NULL, NULL),
(94, 7, 47, NULL, NULL),
(95, 7, 4, NULL, NULL),
(96, 7, 8, NULL, NULL),
(97, 7, 19, NULL, NULL),
(98, 7, 12, NULL, NULL),
(99, 7, 15, NULL, NULL),
(100, 7, 16, NULL, NULL),
(101, 7, 18, NULL, NULL),
(102, 7, 30, NULL, NULL),
(103, 7, 32, NULL, NULL),
(104, 7, 3, NULL, NULL),
(105, 7, 33, NULL, NULL),
(106, 8, 13, NULL, NULL),
(107, 8, 14, NULL, NULL),
(108, 8, 45, NULL, NULL),
(109, 8, 46, NULL, NULL),
(110, 8, 47, NULL, NULL),
(111, 8, 3, NULL, NULL),
(112, 8, 5, NULL, NULL),
(113, 8, 9, NULL, NULL),
(114, 8, 20, NULL, NULL),
(115, 8, 25, NULL, NULL),
(116, 8, 33, NULL, NULL),
(117, 8, 11, NULL, NULL),
(118, 8, 12, NULL, NULL),
(119, 8, 16, NULL, NULL),
(120, 8, 18, NULL, NULL),
(121, 8, 30, NULL, NULL),
(122, 8, 32, NULL, NULL),
(123, 8, 34, NULL, NULL),
(124, 8, 35, NULL, NULL),
(125, 8, 39, NULL, NULL),
(126, 8, 40, NULL, NULL),
(127, 8, 42, NULL, NULL),
(128, 8, 43, NULL, NULL),
(129, 8, 41, NULL, NULL),
(130, 9, 13, NULL, NULL),
(131, 9, 22, NULL, NULL),
(132, 9, 46, NULL, NULL),
(133, 9, 47, NULL, NULL),
(134, 9, 1, NULL, NULL),
(135, 9, 6, NULL, NULL),
(136, 9, 12, NULL, NULL),
(137, 10, 13, NULL, NULL),
(138, 10, 14, NULL, NULL),
(139, 10, 46, NULL, NULL),
(140, 10, 5, NULL, NULL),
(141, 10, 9, NULL, NULL),
(142, 10, 20, NULL, NULL),
(143, 10, 25, NULL, NULL),
(144, 10, 33, NULL, NULL),
(145, 10, 7, NULL, NULL),
(146, 10, 11, NULL, NULL),
(147, 10, 15, NULL, NULL),
(148, 10, 16, NULL, NULL),
(149, 10, 17, NULL, NULL),
(150, 10, 18, NULL, NULL),
(151, 10, 28, NULL, NULL),
(152, 10, 29, NULL, NULL),
(153, 10, 30, NULL, NULL),
(154, 10, 39, NULL, NULL),
(155, 10, 42, NULL, NULL),
(156, 10, 37, NULL, NULL),
(157, 10, 38, NULL, NULL),
(158, 10, 43, NULL, NULL),
(159, 11, 13, NULL, NULL),
(160, 11, 23, NULL, NULL),
(161, 11, 45, NULL, NULL),
(162, 11, 2, NULL, NULL),
(163, 11, 4, NULL, NULL),
(164, 11, 6, NULL, NULL),
(165, 11, 8, NULL, NULL),
(166, 11, 19, NULL, NULL),
(167, 11, 10, NULL, NULL),
(168, 11, 12, NULL, NULL),
(169, 11, 15, NULL, NULL),
(170, 11, 16, NULL, NULL),
(171, 11, 29, NULL, NULL),
(172, 11, 30, NULL, NULL),
(173, 11, 31, NULL, NULL),
(174, 11, 32, NULL, NULL),
(175, 11, 5, NULL, NULL),
(176, 11, 38, NULL, NULL),
(177, 11, 40, NULL, NULL),
(178, 11, 41, NULL, NULL),
(179, 12, 13, NULL, NULL),
(180, 12, 14, NULL, NULL),
(181, 12, 45, NULL, NULL),
(182, 12, 46, NULL, NULL),
(183, 12, 3, NULL, NULL),
(184, 12, 5, NULL, NULL),
(185, 12, 20, NULL, NULL),
(186, 12, 21, NULL, NULL),
(187, 12, 25, NULL, NULL),
(188, 12, 7, NULL, NULL),
(189, 12, 10, NULL, NULL),
(190, 12, 11, NULL, NULL),
(191, 12, 12, NULL, NULL),
(192, 12, 16, NULL, NULL),
(193, 12, 18, NULL, NULL),
(194, 12, 29, NULL, NULL),
(195, 12, 30, NULL, NULL),
(196, 12, 34, NULL, NULL),
(197, 12, 38, NULL, NULL),
(198, 12, 40, NULL, NULL),
(199, 13, 14, NULL, NULL),
(200, 13, 22, NULL, NULL),
(201, 13, 23, NULL, NULL),
(202, 13, 45, NULL, NULL),
(203, 13, 46, NULL, NULL),
(204, 13, 21, NULL, NULL),
(205, 13, 25, NULL, NULL),
(206, 13, 27, NULL, NULL),
(207, 13, 33, NULL, NULL),
(208, 13, 7, NULL, NULL),
(209, 13, 10, NULL, NULL),
(210, 13, 15, NULL, NULL),
(211, 13, 16, NULL, NULL),
(212, 13, 18, NULL, NULL),
(213, 13, 30, NULL, NULL),
(214, 13, 34, NULL, NULL),
(215, 13, 35, NULL, NULL),
(216, 13, 37, NULL, NULL),
(217, 13, 38, NULL, NULL),
(218, 13, 39, NULL, NULL),
(219, 13, 40, NULL, NULL),
(220, 14, 13, NULL, NULL),
(221, 14, 45, NULL, NULL),
(222, 14, 46, NULL, NULL),
(223, 14, 3, NULL, NULL),
(224, 14, 5, NULL, NULL),
(225, 14, 9, NULL, NULL),
(226, 14, 20, NULL, NULL),
(227, 14, 21, NULL, NULL),
(228, 14, 33, NULL, NULL),
(229, 14, 7, NULL, NULL),
(230, 14, 10, NULL, NULL),
(231, 14, 12, NULL, NULL),
(232, 14, 15, NULL, NULL),
(233, 14, 16, NULL, NULL),
(234, 14, 18, NULL, NULL),
(235, 14, 28, NULL, NULL),
(236, 14, 29, NULL, NULL),
(237, 14, 31, NULL, NULL),
(238, 14, 35, NULL, NULL),
(239, 14, 39, NULL, NULL),
(240, 14, 41, NULL, NULL),
(241, 14, 38, NULL, NULL),
(242, 15, 13, NULL, NULL),
(243, 15, 14, NULL, NULL),
(244, 15, 22, NULL, NULL),
(245, 15, 45, NULL, NULL),
(246, 15, 2, NULL, NULL),
(247, 15, 12, NULL, NULL),
(248, 15, 17, NULL, NULL),
(249, 16, 13, NULL, NULL),
(250, 16, 14, NULL, NULL),
(251, 16, 23, NULL, NULL),
(252, 16, 45, NULL, NULL),
(253, 16, 46, NULL, NULL),
(254, 16, 1, NULL, NULL),
(255, 16, 8, NULL, NULL),
(256, 16, 7, NULL, NULL),
(257, 16, 12, NULL, NULL),
(258, 16, 15, NULL, NULL),
(259, 16, 18, NULL, NULL),
(260, 16, 34, NULL, NULL),
(261, 16, 41, NULL, NULL),
(262, 16, 42, NULL, NULL),
(263, 17, 14, NULL, NULL),
(264, 17, 22, NULL, NULL),
(265, 17, 46, NULL, NULL),
(266, 17, 47, NULL, NULL),
(267, 17, 3, NULL, NULL),
(268, 17, 5, NULL, NULL),
(269, 17, 20, NULL, NULL),
(270, 17, 21, NULL, NULL),
(271, 17, 25, NULL, NULL),
(272, 17, 11, NULL, NULL),
(273, 17, 12, NULL, NULL),
(274, 17, 15, NULL, NULL),
(275, 17, 17, NULL, NULL),
(276, 17, 18, NULL, NULL),
(277, 17, 28, NULL, NULL),
(278, 17, 29, NULL, NULL),
(279, 17, 30, NULL, NULL),
(280, 17, 32, NULL, NULL),
(281, 17, 35, NULL, NULL),
(282, 17, 38, NULL, NULL),
(283, 17, 43, NULL, NULL),
(284, 18, 14, NULL, NULL),
(285, 18, 23, NULL, NULL),
(286, 18, 46, NULL, NULL),
(287, 18, 47, NULL, NULL),
(288, 18, 1, NULL, NULL),
(289, 18, 4, NULL, NULL),
(290, 18, 10, NULL, NULL),
(291, 18, 15, NULL, NULL),
(292, 18, 34, NULL, NULL),
(293, 19, 13, NULL, NULL),
(294, 19, 23, NULL, NULL),
(295, 19, 47, NULL, NULL),
(296, 19, 1, NULL, NULL),
(297, 19, 2, NULL, NULL),
(298, 19, 4, NULL, NULL),
(299, 19, 7, NULL, NULL),
(300, 19, 12, NULL, NULL),
(301, 19, 16, NULL, NULL),
(302, 19, 28, NULL, NULL),
(303, 19, 32, NULL, NULL),
(304, 19, 34, NULL, NULL),
(305, 19, 35, NULL, NULL),
(306, 19, 25, NULL, NULL),
(307, 19, 27, NULL, NULL),
(308, 19, 33, NULL, NULL),
(309, 20, 13, NULL, NULL),
(310, 20, 22, NULL, NULL),
(311, 20, 45, NULL, NULL),
(312, 20, 47, NULL, NULL),
(313, 20, 3, NULL, NULL),
(314, 20, 5, NULL, NULL),
(315, 20, 9, NULL, NULL),
(316, 20, 20, NULL, NULL),
(317, 20, 27, NULL, NULL),
(318, 20, 33, NULL, NULL),
(319, 20, 7, NULL, NULL),
(320, 20, 10, NULL, NULL),
(321, 20, 11, NULL, NULL),
(322, 20, 12, NULL, NULL),
(323, 20, 15, NULL, NULL),
(324, 20, 18, NULL, NULL),
(325, 20, 28, NULL, NULL),
(326, 20, 29, NULL, NULL),
(327, 20, 32, NULL, NULL),
(328, 20, 38, NULL, NULL),
(329, 20, 42, NULL, NULL),
(330, 21, 13, NULL, NULL),
(331, 21, 14, NULL, NULL),
(332, 21, 22, NULL, NULL),
(333, 21, 45, NULL, NULL),
(334, 21, 46, NULL, NULL),
(335, 21, 6, NULL, NULL),
(336, 21, 8, NULL, NULL),
(337, 21, 18, NULL, NULL),
(338, 22, 22, NULL, NULL),
(339, 22, 23, NULL, NULL),
(340, 22, 46, NULL, NULL),
(341, 22, 47, NULL, NULL),
(342, 22, 4, NULL, NULL),
(343, 22, 8, NULL, NULL),
(344, 22, 10, NULL, NULL),
(345, 22, 12, NULL, NULL),
(346, 22, 15, NULL, NULL),
(347, 22, 17, NULL, NULL),
(348, 22, 32, NULL, NULL),
(349, 23, 13, NULL, NULL),
(350, 23, 14, NULL, NULL),
(351, 23, 22, NULL, NULL),
(352, 23, 23, NULL, NULL),
(353, 23, 6, NULL, NULL),
(354, 23, 8, NULL, NULL),
(355, 23, 19, NULL, NULL),
(356, 23, 7, NULL, NULL),
(357, 23, 10, NULL, NULL),
(358, 23, 17, NULL, NULL),
(359, 23, 18, NULL, NULL),
(360, 23, 30, NULL, NULL),
(361, 23, 32, NULL, NULL),
(362, 23, 35, NULL, NULL),
(363, 23, 38, NULL, NULL),
(364, 23, 43, NULL, NULL),
(365, 24, 13, NULL, NULL),
(366, 24, 22, NULL, NULL),
(367, 24, 45, NULL, NULL),
(368, 24, 47, NULL, NULL),
(369, 24, 6, NULL, NULL),
(370, 24, 19, NULL, NULL),
(371, 24, 7, NULL, NULL),
(372, 24, 10, NULL, NULL),
(373, 24, 18, NULL, NULL),
(374, 24, 28, NULL, NULL),
(375, 24, 34, NULL, NULL),
(376, 24, 35, NULL, NULL),
(377, 24, 37, NULL, NULL),
(378, 24, 43, NULL, NULL),
(379, 25, 23, NULL, NULL),
(380, 25, 45, NULL, NULL),
(381, 25, 46, NULL, NULL),
(382, 25, 47, NULL, NULL),
(383, 25, 2, NULL, NULL),
(384, 25, 4, NULL, NULL),
(385, 25, 10, NULL, NULL),
(386, 25, 11, NULL, NULL),
(387, 25, 12, NULL, NULL),
(388, 25, 29, NULL, NULL),
(389, 25, 30, NULL, NULL),
(390, 25, 38, NULL, NULL),
(391, 25, 39, NULL, NULL),
(392, 25, 41, NULL, NULL),
(393, 25, 42, NULL, NULL),
(394, 26, 13, NULL, NULL),
(395, 26, 22, NULL, NULL),
(396, 26, 23, NULL, NULL),
(397, 26, 45, NULL, NULL),
(398, 26, 46, NULL, NULL),
(399, 26, 3, NULL, NULL),
(400, 26, 9, NULL, NULL),
(401, 26, 21, NULL, NULL),
(402, 26, 25, NULL, NULL),
(403, 26, 27, NULL, NULL),
(404, 26, 33, NULL, NULL),
(405, 26, 7, NULL, NULL),
(406, 26, 10, NULL, NULL),
(407, 26, 11, NULL, NULL),
(408, 26, 15, NULL, NULL),
(409, 26, 16, NULL, NULL),
(410, 26, 18, NULL, NULL),
(411, 26, 28, NULL, NULL),
(412, 26, 31, NULL, NULL),
(413, 26, 32, NULL, NULL),
(414, 26, 34, NULL, NULL),
(415, 26, 35, NULL, NULL),
(416, 26, 39, NULL, NULL),
(417, 26, 40, NULL, NULL),
(418, 26, 42, NULL, NULL),
(419, 26, 43, NULL, NULL),
(420, 27, 13, NULL, NULL),
(421, 27, 22, NULL, NULL),
(422, 27, 47, NULL, NULL),
(423, 27, 2, NULL, NULL),
(424, 27, 6, NULL, NULL),
(425, 27, 8, NULL, NULL),
(426, 27, 19, NULL, NULL),
(427, 27, 12, NULL, NULL),
(428, 27, 17, NULL, NULL),
(429, 27, 30, NULL, NULL),
(430, 27, 32, NULL, NULL),
(431, 27, 34, NULL, NULL),
(432, 28, 13, NULL, NULL),
(433, 28, 23, NULL, NULL),
(434, 28, 47, NULL, NULL),
(435, 28, 1, NULL, NULL),
(436, 28, 4, NULL, NULL),
(437, 28, 8, NULL, NULL),
(438, 28, 19, NULL, NULL),
(439, 28, 11, NULL, NULL),
(440, 28, 15, NULL, NULL),
(441, 28, 16, NULL, NULL),
(442, 28, 17, NULL, NULL),
(443, 28, 29, NULL, NULL),
(444, 28, 35, NULL, NULL),
(445, 28, 37, NULL, NULL),
(446, 28, 39, NULL, NULL),
(447, 28, 40, NULL, NULL),
(448, 28, 42, NULL, NULL),
(449, 29, 13, NULL, NULL),
(450, 29, 14, NULL, NULL),
(451, 29, 45, NULL, NULL),
(452, 29, 46, NULL, NULL),
(453, 29, 47, NULL, NULL),
(454, 29, 2, NULL, NULL),
(455, 29, 6, NULL, NULL),
(456, 29, 8, NULL, NULL),
(457, 29, 16, NULL, NULL),
(458, 29, 17, NULL, NULL),
(459, 29, 31, NULL, NULL),
(460, 30, 22, NULL, NULL),
(461, 30, 46, NULL, NULL),
(462, 30, 47, NULL, NULL),
(463, 30, 5, NULL, NULL),
(464, 30, 9, NULL, NULL),
(465, 30, 20, NULL, NULL),
(466, 30, 21, NULL, NULL),
(467, 30, 33, NULL, NULL),
(468, 30, 10, NULL, NULL),
(469, 30, 12, NULL, NULL),
(470, 30, 15, NULL, NULL),
(471, 30, 16, NULL, NULL),
(472, 30, 17, NULL, NULL),
(473, 30, 18, NULL, NULL),
(474, 30, 29, NULL, NULL),
(475, 30, 34, NULL, NULL),
(476, 30, 35, NULL, NULL),
(477, 30, 39, NULL, NULL),
(478, 30, 43, NULL, NULL),
(479, 31, 13, NULL, NULL),
(480, 31, 14, NULL, NULL),
(481, 31, 22, NULL, NULL),
(482, 31, 45, NULL, NULL),
(483, 31, 8, NULL, NULL),
(484, 31, 19, NULL, NULL),
(485, 31, 10, NULL, NULL),
(486, 31, 15, NULL, NULL),
(487, 31, 17, NULL, NULL),
(488, 31, 18, NULL, NULL),
(489, 31, 30, NULL, NULL),
(490, 31, 35, NULL, NULL),
(491, 32, 14, NULL, NULL),
(492, 32, 22, NULL, NULL),
(493, 32, 23, NULL, NULL),
(494, 32, 46, NULL, NULL),
(495, 32, 6, NULL, NULL),
(496, 32, 19, NULL, NULL),
(497, 32, 10, NULL, NULL),
(498, 33, 13, NULL, NULL),
(499, 33, 14, NULL, NULL),
(500, 33, 22, NULL, NULL),
(501, 33, 9, NULL, NULL),
(502, 33, 21, NULL, NULL),
(503, 33, 25, NULL, NULL),
(504, 33, 27, NULL, NULL),
(505, 33, 7, NULL, NULL),
(506, 33, 10, NULL, NULL),
(507, 33, 11, NULL, NULL),
(508, 33, 16, NULL, NULL),
(509, 33, 17, NULL, NULL),
(510, 33, 18, NULL, NULL),
(511, 33, 28, NULL, NULL),
(512, 33, 29, NULL, NULL),
(513, 33, 30, NULL, NULL),
(514, 33, 31, NULL, NULL),
(515, 33, 35, NULL, NULL),
(516, 33, 40, NULL, NULL),
(517, 33, 41, NULL, NULL),
(518, 33, 38, NULL, NULL),
(519, 33, 39, NULL, NULL),
(520, 33, 42, NULL, NULL),
(521, 34, 13, NULL, NULL),
(522, 34, 14, NULL, NULL),
(523, 34, 45, NULL, NULL),
(524, 34, 46, NULL, NULL),
(525, 34, 47, NULL, NULL),
(526, 34, 4, NULL, NULL),
(527, 34, 6, NULL, NULL),
(528, 34, 12, NULL, NULL),
(529, 34, 18, NULL, NULL),
(530, 34, 31, NULL, NULL),
(531, 34, 32, NULL, NULL),
(532, 34, 34, NULL, NULL),
(533, 34, 37, NULL, NULL),
(534, 34, 43, NULL, NULL),
(535, 35, 14, NULL, NULL),
(536, 35, 23, NULL, NULL),
(537, 35, 45, NULL, NULL),
(538, 35, 47, NULL, NULL),
(539, 35, 2, NULL, NULL),
(540, 35, 8, NULL, NULL),
(541, 35, 19, NULL, NULL),
(542, 35, 11, NULL, NULL),
(543, 35, 12, NULL, NULL),
(544, 35, 17, NULL, NULL),
(545, 35, 18, NULL, NULL),
(546, 35, 28, NULL, NULL),
(547, 35, 29, NULL, NULL),
(548, 35, 27, NULL, NULL),
(549, 35, 33, NULL, NULL),
(550, 36, 14, NULL, NULL),
(551, 36, 22, NULL, NULL),
(552, 36, 23, NULL, NULL),
(553, 36, 45, NULL, NULL),
(554, 36, 46, NULL, NULL),
(555, 36, 4, NULL, NULL),
(556, 36, 6, NULL, NULL),
(557, 36, 12, NULL, NULL),
(558, 36, 15, NULL, NULL),
(559, 36, 31, NULL, NULL),
(560, 36, 32, NULL, NULL),
(561, 36, 34, NULL, NULL),
(562, 37, 13, NULL, NULL),
(563, 37, 23, NULL, NULL),
(564, 37, 46, NULL, NULL),
(565, 37, 47, NULL, NULL),
(566, 37, 1, NULL, NULL),
(567, 37, 4, NULL, NULL),
(568, 37, 8, NULL, NULL),
(569, 37, 19, NULL, NULL),
(570, 37, 7, NULL, NULL),
(571, 37, 11, NULL, NULL),
(572, 37, 12, NULL, NULL),
(573, 37, 15, NULL, NULL),
(574, 37, 16, NULL, NULL),
(575, 37, 28, NULL, NULL),
(576, 37, 29, NULL, NULL),
(577, 37, 32, NULL, NULL),
(578, 37, 3, NULL, NULL),
(579, 37, 5, NULL, NULL),
(580, 37, 27, NULL, NULL),
(581, 38, 13, NULL, NULL),
(582, 38, 22, NULL, NULL),
(583, 38, 23, NULL, NULL),
(584, 38, 45, NULL, NULL),
(585, 38, 47, NULL, NULL),
(586, 38, 4, NULL, NULL),
(587, 38, 6, NULL, NULL),
(588, 38, 19, NULL, NULL),
(589, 38, 7, NULL, NULL),
(590, 38, 10, NULL, NULL),
(591, 38, 15, NULL, NULL),
(592, 38, 16, NULL, NULL),
(593, 38, 28, NULL, NULL),
(594, 38, 29, NULL, NULL),
(595, 38, 30, NULL, NULL),
(596, 38, 31, NULL, NULL),
(597, 38, 27, NULL, NULL),
(598, 39, 13, NULL, NULL),
(599, 39, 23, NULL, NULL),
(600, 39, 46, NULL, NULL),
(601, 39, 47, NULL, NULL),
(602, 39, 1, NULL, NULL),
(603, 39, 4, NULL, NULL),
(604, 39, 6, NULL, NULL),
(605, 39, 10, NULL, NULL),
(606, 39, 11, NULL, NULL),
(607, 39, 12, NULL, NULL),
(608, 39, 17, NULL, NULL),
(609, 39, 29, NULL, NULL),
(610, 39, 40, NULL, NULL),
(611, 39, 41, NULL, NULL),
(612, 39, 43, NULL, NULL),
(613, 40, 14, NULL, NULL),
(614, 40, 22, NULL, NULL),
(615, 40, 23, NULL, NULL),
(616, 40, 46, NULL, NULL),
(617, 40, 47, NULL, NULL),
(618, 40, 5, NULL, NULL),
(619, 40, 25, NULL, NULL),
(620, 40, 27, NULL, NULL),
(621, 40, 33, NULL, NULL),
(622, 40, 10, NULL, NULL),
(623, 40, 11, NULL, NULL),
(624, 40, 12, NULL, NULL),
(625, 40, 16, NULL, NULL),
(626, 40, 17, NULL, NULL),
(627, 40, 18, NULL, NULL),
(628, 40, 28, NULL, NULL),
(629, 40, 29, NULL, NULL),
(630, 40, 31, NULL, NULL),
(631, 40, 32, NULL, NULL),
(632, 40, 35, NULL, NULL),
(633, 40, 39, NULL, NULL),
(634, 40, 40, NULL, NULL),
(635, 40, 43, NULL, NULL),
(636, 41, 13, NULL, NULL),
(637, 41, 14, NULL, NULL),
(638, 41, 46, NULL, NULL),
(639, 41, 47, NULL, NULL),
(640, 41, 2, NULL, NULL),
(641, 41, 19, NULL, NULL),
(642, 41, 16, NULL, NULL),
(643, 41, 18, NULL, NULL),
(644, 41, 30, NULL, NULL),
(645, 42, 13, NULL, NULL),
(646, 42, 23, NULL, NULL),
(647, 42, 45, NULL, NULL),
(648, 42, 46, NULL, NULL),
(649, 42, 47, NULL, NULL),
(650, 42, 4, NULL, NULL),
(651, 42, 6, NULL, NULL),
(652, 42, 15, NULL, NULL),
(653, 42, 39, NULL, NULL),
(654, 42, 40, NULL, NULL),
(655, 43, 13, NULL, NULL),
(656, 43, 14, NULL, NULL),
(657, 43, 22, NULL, NULL),
(658, 43, 46, NULL, NULL),
(659, 43, 1, NULL, NULL),
(660, 43, 4, NULL, NULL),
(661, 43, 19, NULL, NULL),
(662, 43, 10, NULL, NULL),
(663, 43, 12, NULL, NULL),
(664, 43, 15, NULL, NULL),
(665, 43, 17, NULL, NULL),
(666, 43, 30, NULL, NULL),
(667, 43, 34, NULL, NULL),
(668, 44, 22, NULL, NULL),
(669, 44, 23, NULL, NULL),
(670, 44, 45, NULL, NULL),
(671, 44, 46, NULL, NULL),
(672, 44, 47, NULL, NULL),
(673, 44, 2, NULL, NULL),
(674, 44, 6, NULL, NULL),
(675, 44, 8, NULL, NULL),
(676, 44, 19, NULL, NULL),
(677, 44, 7, NULL, NULL),
(678, 44, 10, NULL, NULL),
(679, 44, 12, NULL, NULL),
(680, 44, 18, NULL, NULL),
(681, 44, 28, NULL, NULL),
(682, 44, 29, NULL, NULL),
(683, 44, 30, NULL, NULL),
(684, 44, 34, NULL, NULL),
(685, 44, 3, NULL, NULL),
(686, 44, 20, NULL, NULL),
(687, 44, 21, NULL, NULL),
(688, 44, 40, NULL, NULL),
(689, 44, 41, NULL, NULL),
(690, 45, 13, NULL, NULL),
(691, 45, 23, NULL, NULL),
(692, 45, 45, NULL, NULL),
(693, 45, 46, NULL, NULL),
(694, 45, 2, NULL, NULL),
(695, 45, 4, NULL, NULL),
(696, 45, 6, NULL, NULL),
(697, 45, 8, NULL, NULL),
(698, 45, 19, NULL, NULL),
(699, 45, 12, NULL, NULL),
(700, 45, 17, NULL, NULL),
(701, 45, 18, NULL, NULL),
(702, 45, 30, NULL, NULL),
(703, 45, 34, NULL, NULL),
(704, 45, 3, NULL, NULL),
(705, 45, 20, NULL, NULL),
(706, 45, 38, NULL, NULL),
(707, 45, 40, NULL, NULL),
(708, 45, 42, NULL, NULL),
(709, 46, 14, NULL, NULL),
(710, 46, 22, NULL, NULL),
(711, 46, 23, NULL, NULL),
(712, 46, 45, NULL, NULL),
(713, 46, 46, NULL, NULL),
(714, 46, 5, NULL, NULL),
(715, 46, 9, NULL, NULL),
(716, 46, 21, NULL, NULL),
(717, 46, 33, NULL, NULL),
(718, 46, 7, NULL, NULL),
(719, 46, 11, NULL, NULL),
(720, 46, 12, NULL, NULL),
(721, 46, 15, NULL, NULL),
(722, 46, 16, NULL, NULL),
(723, 46, 18, NULL, NULL),
(724, 46, 28, NULL, NULL),
(725, 46, 31, NULL, NULL),
(726, 46, 32, NULL, NULL),
(727, 46, 34, NULL, NULL),
(728, 46, 35, NULL, NULL),
(729, 46, 37, NULL, NULL),
(730, 46, 40, NULL, NULL),
(731, 46, 42, NULL, NULL),
(732, 46, 43, NULL, NULL),
(733, 47, 14, NULL, NULL),
(734, 47, 22, NULL, NULL),
(735, 47, 23, NULL, NULL),
(736, 47, 45, NULL, NULL),
(737, 47, 47, NULL, NULL),
(738, 47, 3, NULL, NULL),
(739, 47, 9, NULL, NULL),
(740, 47, 20, NULL, NULL),
(741, 47, 25, NULL, NULL),
(742, 47, 27, NULL, NULL),
(743, 47, 33, NULL, NULL),
(744, 47, 7, NULL, NULL),
(745, 47, 12, NULL, NULL),
(746, 47, 15, NULL, NULL),
(747, 47, 17, NULL, NULL),
(748, 47, 28, NULL, NULL),
(749, 47, 30, NULL, NULL),
(750, 47, 35, NULL, NULL),
(751, 47, 39, NULL, NULL),
(752, 47, 43, NULL, NULL),
(753, 47, 38, NULL, NULL),
(754, 47, 40, NULL, NULL),
(755, 48, 13, NULL, NULL),
(756, 48, 23, NULL, NULL),
(757, 48, 46, NULL, NULL),
(758, 48, 47, NULL, NULL),
(759, 48, 4, NULL, NULL),
(760, 48, 6, NULL, NULL),
(761, 48, 8, NULL, NULL),
(762, 48, 19, NULL, NULL),
(763, 48, 7, NULL, NULL),
(764, 48, 16, NULL, NULL),
(765, 48, 18, NULL, NULL),
(766, 48, 28, NULL, NULL),
(767, 48, 32, NULL, NULL),
(768, 48, 21, NULL, NULL),
(769, 48, 25, NULL, NULL),
(770, 49, 14, NULL, NULL),
(771, 49, 23, NULL, NULL),
(772, 49, 45, NULL, NULL),
(773, 49, 1, NULL, NULL),
(774, 49, 4, NULL, NULL),
(775, 49, 6, NULL, NULL),
(776, 49, 8, NULL, NULL),
(777, 49, 17, NULL, NULL),
(778, 49, 18, NULL, NULL),
(779, 49, 30, NULL, NULL),
(780, 50, 14, NULL, NULL),
(781, 50, 22, NULL, NULL),
(782, 50, 23, NULL, NULL),
(783, 50, 1, NULL, NULL),
(784, 50, 6, NULL, NULL),
(785, 50, 8, NULL, NULL),
(786, 50, 7, NULL, NULL),
(787, 50, 11, NULL, NULL),
(788, 50, 12, NULL, NULL),
(789, 50, 18, NULL, NULL),
(790, 50, 29, NULL, NULL),
(791, 50, 31, NULL, NULL),
(792, 50, 35, NULL, NULL),
(793, 51, 13, NULL, NULL),
(794, 51, 22, NULL, NULL),
(795, 51, 23, NULL, NULL),
(796, 51, 45, NULL, NULL),
(797, 51, 46, NULL, NULL),
(798, 51, 1, NULL, NULL),
(799, 51, 8, NULL, NULL),
(800, 51, 10, NULL, NULL),
(801, 51, 12, NULL, NULL),
(802, 52, 13, NULL, NULL),
(803, 52, 22, NULL, NULL),
(804, 52, 23, NULL, NULL),
(805, 52, 47, NULL, NULL),
(806, 52, 2, NULL, NULL),
(807, 52, 4, NULL, NULL),
(808, 52, 6, NULL, NULL),
(809, 52, 8, NULL, NULL),
(810, 52, 19, NULL, NULL),
(811, 52, 10, NULL, NULL),
(812, 52, 16, NULL, NULL),
(813, 52, 18, NULL, NULL),
(814, 52, 34, NULL, NULL),
(815, 52, 35, NULL, NULL),
(816, 52, 9, NULL, NULL),
(817, 53, 14, NULL, NULL),
(818, 53, 23, NULL, NULL),
(819, 53, 45, NULL, NULL),
(820, 53, 46, NULL, NULL),
(821, 53, 47, NULL, NULL),
(822, 53, 1, NULL, NULL),
(823, 53, 4, NULL, NULL),
(824, 53, 6, NULL, NULL),
(825, 53, 8, NULL, NULL),
(826, 53, 19, NULL, NULL),
(827, 53, 7, NULL, NULL),
(828, 53, 10, NULL, NULL),
(829, 53, 12, NULL, NULL),
(830, 53, 15, NULL, NULL),
(831, 53, 29, NULL, NULL),
(832, 53, 32, NULL, NULL),
(833, 53, 25, NULL, NULL),
(834, 54, 13, NULL, NULL),
(835, 54, 22, NULL, NULL),
(836, 54, 23, NULL, NULL),
(837, 54, 45, NULL, NULL),
(838, 54, 46, NULL, NULL),
(839, 54, 1, NULL, NULL),
(840, 54, 2, NULL, NULL),
(841, 54, 4, NULL, NULL),
(842, 54, 6, NULL, NULL),
(843, 54, 8, NULL, NULL),
(844, 54, 7, NULL, NULL),
(845, 54, 10, NULL, NULL),
(846, 54, 11, NULL, NULL),
(847, 54, 17, NULL, NULL),
(848, 54, 29, NULL, NULL),
(849, 54, 30, NULL, NULL),
(850, 54, 31, NULL, NULL),
(851, 54, 32, NULL, NULL),
(852, 54, 3, NULL, NULL),
(853, 54, 9, NULL, NULL),
(854, 54, 21, NULL, NULL),
(855, 55, 13, NULL, NULL),
(856, 55, 14, NULL, NULL),
(857, 55, 46, NULL, NULL),
(858, 55, 47, NULL, NULL),
(859, 55, 1, NULL, NULL),
(860, 55, 4, NULL, NULL),
(861, 55, 10, NULL, NULL),
(862, 55, 15, NULL, NULL),
(863, 56, 14, NULL, NULL),
(864, 56, 45, NULL, NULL),
(865, 56, 46, NULL, NULL),
(866, 56, 2, NULL, NULL),
(867, 56, 4, NULL, NULL),
(868, 56, 6, NULL, NULL),
(869, 56, 19, NULL, NULL),
(870, 56, 7, NULL, NULL),
(871, 56, 15, NULL, NULL),
(872, 56, 16, NULL, NULL),
(873, 56, 18, NULL, NULL),
(874, 56, 28, NULL, NULL),
(875, 56, 30, NULL, NULL),
(876, 56, 32, NULL, NULL),
(877, 56, 3, NULL, NULL),
(878, 56, 5, NULL, NULL),
(879, 56, 27, NULL, NULL),
(880, 57, 13, NULL, NULL),
(881, 57, 22, NULL, NULL),
(882, 57, 46, NULL, NULL),
(883, 57, 47, NULL, NULL),
(884, 57, 6, NULL, NULL),
(885, 57, 8, NULL, NULL),
(886, 57, 19, NULL, NULL),
(887, 57, 16, NULL, NULL),
(888, 57, 17, NULL, NULL),
(889, 57, 18, NULL, NULL),
(890, 57, 30, NULL, NULL),
(891, 57, 31, NULL, NULL),
(892, 57, 21, NULL, NULL),
(893, 57, 38, NULL, NULL),
(894, 57, 39, NULL, NULL),
(895, 57, 42, NULL, NULL),
(896, 58, 14, NULL, NULL),
(897, 58, 23, NULL, NULL),
(898, 58, 45, NULL, NULL),
(899, 58, 46, NULL, NULL),
(900, 58, 47, NULL, NULL),
(901, 58, 1, NULL, NULL),
(902, 58, 2, NULL, NULL),
(903, 58, 6, NULL, NULL),
(904, 58, 8, NULL, NULL),
(905, 58, 19, NULL, NULL),
(906, 58, 11, NULL, NULL),
(907, 58, 12, NULL, NULL),
(908, 58, 15, NULL, NULL),
(909, 58, 18, NULL, NULL),
(910, 58, 29, NULL, NULL),
(911, 58, 35, NULL, NULL),
(912, 58, 27, NULL, NULL),
(913, 58, 38, NULL, NULL),
(914, 58, 40, NULL, NULL),
(915, 59, 14, NULL, NULL),
(916, 59, 23, NULL, NULL),
(917, 59, 45, NULL, NULL),
(918, 59, 47, NULL, NULL),
(919, 59, 1, NULL, NULL),
(920, 59, 4, NULL, NULL),
(921, 59, 7, NULL, NULL),
(922, 59, 11, NULL, NULL),
(923, 59, 16, NULL, NULL),
(924, 59, 18, NULL, NULL),
(925, 59, 30, NULL, NULL),
(926, 59, 31, NULL, NULL),
(927, 60, 13, NULL, NULL),
(928, 60, 14, NULL, NULL),
(929, 60, 22, NULL, NULL),
(930, 60, 45, NULL, NULL),
(931, 60, 46, NULL, NULL),
(932, 60, 6, NULL, NULL),
(933, 60, 8, NULL, NULL),
(934, 60, 19, NULL, NULL),
(935, 60, 10, NULL, NULL),
(936, 60, 11, NULL, NULL),
(937, 60, 15, NULL, NULL),
(938, 60, 16, NULL, NULL),
(939, 60, 18, NULL, NULL),
(940, 60, 30, NULL, NULL),
(941, 60, 32, NULL, NULL),
(942, 60, 21, NULL, NULL),
(943, 61, 13, NULL, NULL),
(944, 61, 23, NULL, NULL),
(945, 61, 45, NULL, NULL),
(946, 61, 46, NULL, NULL),
(947, 61, 47, NULL, NULL),
(948, 61, 6, NULL, NULL),
(949, 61, 8, NULL, NULL),
(950, 61, 12, NULL, NULL),
(951, 61, 15, NULL, NULL),
(952, 61, 17, NULL, NULL),
(953, 61, 28, NULL, NULL),
(954, 62, 13, NULL, NULL),
(955, 62, 22, NULL, NULL),
(956, 62, 23, NULL, NULL),
(957, 62, 45, NULL, NULL),
(958, 62, 46, NULL, NULL),
(959, 62, 3, NULL, NULL),
(960, 62, 5, NULL, NULL),
(961, 62, 20, NULL, NULL),
(962, 62, 25, NULL, NULL),
(963, 62, 27, NULL, NULL),
(964, 62, 11, NULL, NULL),
(965, 62, 12, NULL, NULL),
(966, 62, 16, NULL, NULL),
(967, 62, 17, NULL, NULL),
(968, 62, 18, NULL, NULL),
(969, 62, 28, NULL, NULL),
(970, 62, 30, NULL, NULL),
(971, 62, 34, NULL, NULL),
(972, 62, 35, NULL, NULL),
(973, 62, 39, NULL, NULL),
(974, 62, 40, NULL, NULL),
(975, 62, 41, NULL, NULL),
(976, 62, 43, NULL, NULL),
(977, 62, 42, NULL, NULL),
(978, 63, 13, NULL, NULL),
(979, 63, 14, NULL, NULL),
(980, 63, 45, NULL, NULL),
(981, 63, 46, NULL, NULL),
(982, 63, 47, NULL, NULL),
(983, 63, 1, NULL, NULL),
(984, 63, 4, NULL, NULL),
(985, 63, 6, NULL, NULL),
(986, 63, 19, NULL, NULL),
(987, 63, 12, NULL, NULL),
(988, 63, 17, NULL, NULL),
(989, 63, 18, NULL, NULL),
(990, 63, 28, NULL, NULL),
(991, 63, 29, NULL, NULL),
(992, 63, 30, NULL, NULL),
(993, 64, 13, NULL, NULL),
(994, 64, 14, NULL, NULL),
(995, 64, 45, NULL, NULL),
(996, 64, 46, NULL, NULL),
(997, 64, 47, NULL, NULL),
(998, 64, 8, NULL, NULL),
(999, 64, 10, NULL, NULL),
(1000, 64, 17, NULL, NULL),
(1001, 65, 13, NULL, NULL),
(1002, 65, 14, NULL, NULL),
(1003, 65, 22, NULL, NULL),
(1004, 65, 23, NULL, NULL),
(1005, 65, 47, NULL, NULL),
(1006, 65, 5, NULL, NULL),
(1007, 65, 9, NULL, NULL),
(1008, 65, 21, NULL, NULL),
(1009, 65, 25, NULL, NULL),
(1010, 65, 12, NULL, NULL),
(1011, 65, 15, NULL, NULL),
(1012, 65, 17, NULL, NULL),
(1013, 65, 18, NULL, NULL),
(1014, 65, 29, NULL, NULL),
(1015, 65, 30, NULL, NULL),
(1016, 65, 35, NULL, NULL),
(1017, 65, 38, NULL, NULL),
(1018, 65, 40, NULL, NULL),
(1019, 65, 42, NULL, NULL),
(1020, 66, 13, NULL, NULL),
(1021, 66, 14, NULL, NULL),
(1022, 66, 23, NULL, NULL),
(1023, 66, 45, NULL, NULL),
(1024, 66, 46, NULL, NULL),
(1025, 66, 2, NULL, NULL),
(1026, 66, 6, NULL, NULL),
(1027, 66, 11, NULL, NULL),
(1028, 66, 12, NULL, NULL),
(1029, 66, 15, NULL, NULL),
(1030, 66, 17, NULL, NULL),
(1031, 66, 30, NULL, NULL),
(1032, 66, 31, NULL, NULL),
(1033, 66, 35, NULL, NULL),
(1034, 67, 13, NULL, NULL),
(1035, 67, 23, NULL, NULL),
(1036, 67, 46, NULL, NULL),
(1037, 67, 47, NULL, NULL),
(1038, 67, 2, NULL, NULL),
(1039, 67, 6, NULL, NULL),
(1040, 67, 8, NULL, NULL),
(1041, 67, 19, NULL, NULL),
(1042, 67, 7, NULL, NULL),
(1043, 67, 10, NULL, NULL),
(1044, 67, 12, NULL, NULL),
(1045, 67, 15, NULL, NULL),
(1046, 67, 18, NULL, NULL),
(1047, 67, 29, NULL, NULL),
(1048, 67, 32, NULL, NULL),
(1049, 67, 34, NULL, NULL),
(1050, 67, 20, NULL, NULL),
(1051, 67, 38, NULL, NULL),
(1052, 67, 40, NULL, NULL),
(1053, 67, 42, NULL, NULL),
(1054, 68, 23, NULL, NULL),
(1055, 68, 45, NULL, NULL),
(1056, 68, 47, NULL, NULL),
(1057, 68, 19, NULL, NULL),
(1058, 68, 15, NULL, NULL),
(1059, 68, 40, NULL, NULL),
(1060, 68, 41, NULL, NULL),
(1061, 68, 42, NULL, NULL),
(1062, 69, 13, NULL, NULL),
(1063, 69, 14, NULL, NULL),
(1064, 69, 47, NULL, NULL),
(1065, 69, 9, NULL, NULL),
(1066, 69, 20, NULL, NULL),
(1067, 69, 21, NULL, NULL),
(1068, 69, 27, NULL, NULL),
(1069, 69, 7, NULL, NULL),
(1070, 69, 10, NULL, NULL),
(1071, 69, 15, NULL, NULL),
(1072, 69, 16, NULL, NULL),
(1073, 69, 18, NULL, NULL),
(1074, 69, 31, NULL, NULL),
(1075, 69, 32, NULL, NULL),
(1076, 69, 34, NULL, NULL),
(1077, 69, 39, NULL, NULL),
(1078, 69, 42, NULL, NULL),
(1079, 69, 43, NULL, NULL),
(1080, 70, 14, NULL, NULL),
(1081, 70, 22, NULL, NULL),
(1082, 70, 23, NULL, NULL),
(1083, 70, 45, NULL, NULL),
(1084, 70, 46, NULL, NULL),
(1085, 70, 6, NULL, NULL),
(1086, 70, 19, NULL, NULL),
(1087, 70, 10, NULL, NULL),
(1088, 70, 11, NULL, NULL),
(1089, 70, 12, NULL, NULL),
(1090, 70, 29, NULL, NULL),
(1091, 70, 34, NULL, NULL),
(1092, 71, 13, NULL, NULL),
(1093, 71, 22, NULL, NULL),
(1094, 71, 23, NULL, NULL),
(1095, 71, 46, NULL, NULL),
(1096, 71, 47, NULL, NULL),
(1097, 71, 2, NULL, NULL),
(1098, 71, 6, NULL, NULL),
(1099, 71, 7, NULL, NULL),
(1100, 71, 17, NULL, NULL),
(1101, 71, 37, NULL, NULL),
(1102, 71, 38, NULL, NULL),
(1103, 71, 41, NULL, NULL),
(1104, 72, 13, NULL, NULL),
(1105, 72, 14, NULL, NULL),
(1106, 72, 22, NULL, NULL),
(1107, 72, 23, NULL, NULL),
(1108, 72, 46, NULL, NULL),
(1109, 72, 5, NULL, NULL),
(1110, 72, 21, NULL, NULL),
(1111, 72, 25, NULL, NULL),
(1112, 72, 27, NULL, NULL),
(1113, 72, 7, NULL, NULL),
(1114, 72, 12, NULL, NULL),
(1115, 72, 15, NULL, NULL),
(1116, 72, 16, NULL, NULL),
(1117, 72, 29, NULL, NULL),
(1118, 72, 30, NULL, NULL),
(1119, 72, 34, NULL, NULL),
(1120, 72, 35, NULL, NULL),
(1121, 72, 37, NULL, NULL),
(1122, 72, 40, NULL, NULL),
(1123, 72, 41, NULL, NULL),
(1124, 72, 43, NULL, NULL),
(1125, 73, 22, NULL, NULL),
(1126, 73, 23, NULL, NULL),
(1127, 73, 45, NULL, NULL),
(1128, 73, 46, NULL, NULL),
(1129, 73, 47, NULL, NULL),
(1130, 73, 5, NULL, NULL),
(1131, 73, 9, NULL, NULL),
(1132, 73, 20, NULL, NULL),
(1133, 73, 21, NULL, NULL),
(1134, 73, 7, NULL, NULL),
(1135, 73, 10, NULL, NULL),
(1136, 73, 11, NULL, NULL),
(1137, 73, 12, NULL, NULL),
(1138, 73, 18, NULL, NULL),
(1139, 73, 30, NULL, NULL),
(1140, 73, 34, NULL, NULL),
(1141, 73, 35, NULL, NULL),
(1142, 73, 39, NULL, NULL),
(1143, 73, 43, NULL, NULL),
(1144, 73, 40, NULL, NULL),
(1145, 74, 13, NULL, NULL),
(1146, 74, 14, NULL, NULL),
(1147, 74, 45, NULL, NULL),
(1148, 74, 46, NULL, NULL),
(1149, 74, 1, NULL, NULL),
(1150, 74, 8, NULL, NULL),
(1151, 74, 19, NULL, NULL),
(1152, 74, 7, NULL, NULL),
(1153, 74, 10, NULL, NULL),
(1154, 74, 11, NULL, NULL),
(1155, 74, 12, NULL, NULL),
(1156, 74, 15, NULL, NULL),
(1157, 74, 29, NULL, NULL),
(1158, 74, 31, NULL, NULL),
(1159, 74, 32, NULL, NULL),
(1160, 74, 35, NULL, NULL),
(1161, 74, 25, NULL, NULL),
(1162, 74, 27, NULL, NULL),
(1163, 74, 33, NULL, NULL),
(1164, 75, 14, NULL, NULL),
(1165, 75, 23, NULL, NULL),
(1166, 75, 45, NULL, NULL),
(1167, 75, 1, NULL, NULL),
(1168, 75, 4, NULL, NULL),
(1169, 75, 19, NULL, NULL),
(1170, 75, 7, NULL, NULL),
(1171, 75, 11, NULL, NULL),
(1172, 75, 16, NULL, NULL),
(1173, 75, 18, NULL, NULL),
(1174, 75, 29, NULL, NULL),
(1175, 75, 35, NULL, NULL),
(1176, 75, 20, NULL, NULL),
(1177, 75, 21, NULL, NULL),
(1178, 76, 13, NULL, NULL),
(1179, 76, 14, NULL, NULL),
(1180, 76, 23, NULL, NULL),
(1181, 76, 45, NULL, NULL),
(1182, 76, 47, NULL, NULL),
(1183, 76, 3, NULL, NULL),
(1184, 76, 20, NULL, NULL),
(1185, 76, 21, NULL, NULL),
(1186, 76, 25, NULL, NULL),
(1187, 76, 33, NULL, NULL),
(1188, 76, 10, NULL, NULL),
(1189, 76, 12, NULL, NULL),
(1190, 76, 15, NULL, NULL),
(1191, 76, 16, NULL, NULL),
(1192, 76, 17, NULL, NULL),
(1193, 76, 18, NULL, NULL),
(1194, 76, 29, NULL, NULL),
(1195, 76, 30, NULL, NULL),
(1196, 76, 32, NULL, NULL),
(1197, 76, 34, NULL, NULL),
(1198, 76, 37, NULL, NULL),
(1199, 76, 39, NULL, NULL),
(1200, 76, 40, NULL, NULL),
(1201, 76, 41, NULL, NULL),
(1202, 76, 38, NULL, NULL),
(1203, 77, 14, NULL, NULL),
(1204, 77, 22, NULL, NULL),
(1205, 77, 23, NULL, NULL),
(1206, 77, 45, NULL, NULL),
(1207, 77, 46, NULL, NULL),
(1208, 77, 4, NULL, NULL),
(1209, 77, 19, NULL, NULL),
(1210, 77, 17, NULL, NULL),
(1211, 77, 18, NULL, NULL),
(1212, 77, 29, NULL, NULL),
(1213, 77, 32, NULL, NULL),
(1214, 77, 39, NULL, NULL),
(1215, 77, 42, NULL, NULL),
(1216, 77, 43, NULL, NULL),
(1217, 78, 22, NULL, NULL),
(1218, 78, 23, NULL, NULL),
(1219, 78, 45, NULL, NULL),
(1220, 78, 47, NULL, NULL),
(1221, 78, 1, NULL, NULL),
(1222, 78, 19, NULL, NULL),
(1223, 78, 7, NULL, NULL),
(1224, 78, 11, NULL, NULL),
(1225, 78, 15, NULL, NULL),
(1226, 78, 16, NULL, NULL),
(1227, 78, 34, NULL, NULL),
(1228, 78, 38, NULL, NULL),
(1229, 78, 43, NULL, NULL),
(1230, 79, 13, NULL, NULL),
(1231, 79, 14, NULL, NULL),
(1232, 79, 23, NULL, NULL),
(1233, 79, 45, NULL, NULL),
(1234, 79, 46, NULL, NULL),
(1235, 79, 1, NULL, NULL),
(1236, 79, 4, NULL, NULL),
(1237, 79, 6, NULL, NULL),
(1238, 79, 19, NULL, NULL),
(1239, 79, 11, NULL, NULL),
(1240, 79, 12, NULL, NULL),
(1241, 79, 16, NULL, NULL),
(1242, 79, 17, NULL, NULL),
(1243, 79, 29, NULL, NULL),
(1244, 79, 34, NULL, NULL),
(1245, 79, 9, NULL, NULL),
(1246, 80, 13, NULL, NULL),
(1247, 80, 14, NULL, NULL),
(1248, 80, 47, NULL, NULL),
(1249, 80, 1, NULL, NULL),
(1250, 80, 2, NULL, NULL),
(1251, 80, 4, NULL, NULL),
(1252, 80, 8, NULL, NULL),
(1253, 80, 19, NULL, NULL),
(1254, 80, 11, NULL, NULL),
(1255, 80, 16, NULL, NULL),
(1256, 80, 17, NULL, NULL),
(1257, 80, 28, NULL, NULL),
(1258, 80, 30, NULL, NULL),
(1259, 80, 34, NULL, NULL),
(1260, 80, 35, NULL, NULL),
(1261, 80, 20, NULL, NULL),
(1262, 80, 25, NULL, NULL),
(1263, 80, 27, NULL, NULL),
(1264, 80, 38, NULL, NULL),
(1265, 80, 39, NULL, NULL),
(1266, 80, 42, NULL, NULL),
(1267, 81, 13, NULL, NULL),
(1268, 81, 14, NULL, NULL),
(1269, 81, 22, NULL, NULL),
(1270, 81, 45, NULL, NULL),
(1271, 81, 47, NULL, NULL),
(1272, 81, 8, NULL, NULL),
(1273, 81, 19, NULL, NULL),
(1274, 81, 11, NULL, NULL),
(1275, 81, 16, NULL, NULL),
(1276, 81, 18, NULL, NULL),
(1277, 81, 32, NULL, NULL),
(1278, 82, 13, NULL, NULL),
(1279, 82, 14, NULL, NULL),
(1280, 82, 22, NULL, NULL),
(1281, 82, 45, NULL, NULL),
(1282, 82, 1, NULL, NULL),
(1283, 82, 4, NULL, NULL),
(1284, 82, 8, NULL, NULL),
(1285, 82, 11, NULL, NULL),
(1286, 82, 16, NULL, NULL),
(1287, 82, 17, NULL, NULL),
(1288, 82, 29, NULL, NULL),
(1289, 83, 14, NULL, NULL),
(1290, 83, 23, NULL, NULL),
(1291, 83, 45, NULL, NULL),
(1292, 83, 46, NULL, NULL),
(1293, 83, 2, NULL, NULL),
(1294, 83, 4, NULL, NULL),
(1295, 83, 7, NULL, NULL),
(1296, 84, 22, NULL, NULL),
(1297, 84, 23, NULL, NULL),
(1298, 84, 45, NULL, NULL),
(1299, 84, 46, NULL, NULL),
(1300, 84, 1, NULL, NULL),
(1301, 84, 4, NULL, NULL),
(1302, 84, 6, NULL, NULL),
(1303, 84, 8, NULL, NULL),
(1304, 84, 19, NULL, NULL),
(1305, 84, 10, NULL, NULL),
(1306, 84, 11, NULL, NULL),
(1307, 84, 16, NULL, NULL),
(1308, 84, 30, NULL, NULL),
(1309, 84, 31, NULL, NULL),
(1310, 84, 34, NULL, NULL),
(1311, 84, 35, NULL, NULL),
(1312, 84, 5, NULL, NULL),
(1313, 84, 20, NULL, NULL),
(1314, 84, 25, NULL, NULL),
(1315, 85, 13, NULL, NULL),
(1316, 85, 23, NULL, NULL),
(1317, 85, 45, NULL, NULL),
(1318, 85, 46, NULL, NULL),
(1319, 85, 47, NULL, NULL),
(1320, 85, 1, NULL, NULL),
(1321, 85, 2, NULL, NULL),
(1322, 85, 4, NULL, NULL),
(1323, 85, 6, NULL, NULL),
(1324, 85, 8, NULL, NULL),
(1325, 85, 7, NULL, NULL),
(1326, 85, 10, NULL, NULL),
(1327, 85, 15, NULL, NULL),
(1328, 85, 17, NULL, NULL),
(1329, 85, 28, NULL, NULL),
(1330, 85, 30, NULL, NULL),
(1331, 85, 32, NULL, NULL),
(1332, 85, 34, NULL, NULL),
(1333, 85, 20, NULL, NULL),
(1334, 85, 27, NULL, NULL),
(1335, 86, 13, NULL, NULL),
(1336, 86, 23, NULL, NULL),
(1337, 86, 45, NULL, NULL),
(1338, 86, 47, NULL, NULL),
(1339, 86, 6, NULL, NULL),
(1340, 86, 8, NULL, NULL),
(1341, 86, 19, NULL, NULL),
(1342, 86, 10, NULL, NULL),
(1343, 86, 11, NULL, NULL),
(1344, 86, 12, NULL, NULL),
(1345, 86, 28, NULL, NULL),
(1346, 86, 35, NULL, NULL),
(1347, 87, 13, NULL, NULL),
(1348, 87, 23, NULL, NULL),
(1349, 87, 45, NULL, NULL),
(1350, 87, 47, NULL, NULL),
(1351, 87, 3, NULL, NULL),
(1352, 87, 20, NULL, NULL),
(1353, 87, 21, NULL, NULL),
(1354, 87, 25, NULL, NULL),
(1355, 87, 33, NULL, NULL),
(1356, 87, 10, NULL, NULL),
(1357, 87, 12, NULL, NULL),
(1358, 87, 15, NULL, NULL),
(1359, 87, 16, NULL, NULL),
(1360, 87, 28, NULL, NULL),
(1361, 87, 30, NULL, NULL),
(1362, 87, 32, NULL, NULL),
(1363, 87, 34, NULL, NULL),
(1364, 87, 35, NULL, NULL),
(1365, 87, 38, NULL, NULL),
(1366, 87, 39, NULL, NULL),
(1367, 87, 41, NULL, NULL),
(1368, 87, 43, NULL, NULL),
(1369, 88, 13, NULL, NULL),
(1370, 88, 14, NULL, NULL),
(1371, 88, 45, NULL, NULL),
(1372, 88, 46, NULL, NULL),
(1373, 88, 47, NULL, NULL),
(1374, 88, 9, NULL, NULL),
(1375, 88, 21, NULL, NULL),
(1376, 88, 25, NULL, NULL),
(1377, 88, 33, NULL, NULL),
(1378, 88, 7, NULL, NULL),
(1379, 88, 11, NULL, NULL),
(1380, 88, 12, NULL, NULL),
(1381, 88, 15, NULL, NULL),
(1382, 88, 16, NULL, NULL),
(1383, 88, 28, NULL, NULL),
(1384, 88, 29, NULL, NULL),
(1385, 88, 34, NULL, NULL),
(1386, 88, 41, NULL, NULL),
(1387, 88, 43, NULL, NULL),
(1388, 89, 14, NULL, NULL),
(1389, 89, 46, NULL, NULL),
(1390, 89, 47, NULL, NULL),
(1391, 89, 3, NULL, NULL),
(1392, 89, 20, NULL, NULL),
(1393, 89, 21, NULL, NULL),
(1394, 89, 25, NULL, NULL),
(1395, 89, 33, NULL, NULL),
(1396, 89, 7, NULL, NULL),
(1397, 89, 11, NULL, NULL),
(1398, 89, 15, NULL, NULL),
(1399, 89, 16, NULL, NULL),
(1400, 89, 28, NULL, NULL),
(1401, 89, 34, NULL, NULL),
(1402, 89, 35, NULL, NULL),
(1403, 89, 40, NULL, NULL),
(1404, 89, 42, NULL, NULL),
(1405, 90, 14, NULL, NULL),
(1406, 90, 22, NULL, NULL),
(1407, 90, 23, NULL, NULL),
(1408, 90, 45, NULL, NULL),
(1409, 90, 47, NULL, NULL),
(1410, 90, 9, NULL, NULL),
(1411, 90, 20, NULL, NULL),
(1412, 90, 25, NULL, NULL),
(1413, 90, 27, NULL, NULL),
(1414, 90, 7, NULL, NULL),
(1415, 90, 12, NULL, NULL),
(1416, 90, 15, NULL, NULL),
(1417, 90, 16, NULL, NULL),
(1418, 90, 17, NULL, NULL),
(1419, 90, 32, NULL, NULL),
(1420, 90, 34, NULL, NULL),
(1421, 90, 35, NULL, NULL),
(1422, 90, 38, NULL, NULL),
(1423, 90, 39, NULL, NULL),
(1424, 90, 40, NULL, NULL),
(1425, 91, 14, NULL, NULL),
(1426, 91, 22, NULL, NULL),
(1427, 91, 45, NULL, NULL),
(1428, 91, 47, NULL, NULL),
(1429, 91, 2, NULL, NULL),
(1430, 91, 8, NULL, NULL),
(1431, 91, 19, NULL, NULL),
(1432, 91, 7, NULL, NULL),
(1433, 91, 16, NULL, NULL),
(1434, 91, 18, NULL, NULL),
(1435, 91, 30, NULL, NULL),
(1436, 91, 31, NULL, NULL),
(1437, 91, 34, NULL, NULL),
(1438, 92, 13, NULL, NULL),
(1439, 92, 22, NULL, NULL),
(1440, 92, 45, NULL, NULL),
(1441, 92, 3, NULL, NULL),
(1442, 92, 5, NULL, NULL),
(1443, 92, 25, NULL, NULL),
(1444, 92, 27, NULL, NULL),
(1445, 92, 7, NULL, NULL),
(1446, 92, 10, NULL, NULL),
(1447, 92, 11, NULL, NULL),
(1448, 92, 12, NULL, NULL),
(1449, 92, 16, NULL, NULL),
(1450, 92, 17, NULL, NULL),
(1451, 92, 28, NULL, NULL),
(1452, 92, 29, NULL, NULL),
(1453, 92, 30, NULL, NULL),
(1454, 92, 31, NULL, NULL),
(1455, 92, 35, NULL, NULL),
(1456, 92, 37, NULL, NULL),
(1457, 92, 39, NULL, NULL),
(1458, 92, 38, NULL, NULL),
(1459, 92, 40, NULL, NULL),
(1460, 92, 41, NULL, NULL),
(1461, 93, 13, NULL, NULL),
(1462, 93, 14, NULL, NULL),
(1463, 93, 22, NULL, NULL),
(1464, 93, 3, NULL, NULL),
(1465, 93, 5, NULL, NULL),
(1466, 93, 20, NULL, NULL),
(1467, 93, 25, NULL, NULL),
(1468, 93, 27, NULL, NULL),
(1469, 93, 7, NULL, NULL),
(1470, 93, 11, NULL, NULL),
(1471, 93, 15, NULL, NULL),
(1472, 93, 16, NULL, NULL),
(1473, 93, 29, NULL, NULL),
(1474, 93, 30, NULL, NULL),
(1475, 93, 31, NULL, NULL),
(1476, 93, 32, NULL, NULL),
(1477, 93, 34, NULL, NULL),
(1478, 93, 38, NULL, NULL),
(1479, 93, 41, NULL, NULL),
(1480, 94, 14, NULL, NULL),
(1481, 94, 23, NULL, NULL),
(1482, 94, 45, NULL, NULL),
(1483, 94, 46, NULL, NULL),
(1484, 94, 47, NULL, NULL),
(1485, 94, 2, NULL, NULL),
(1486, 94, 6, NULL, NULL),
(1487, 94, 19, NULL, NULL),
(1488, 94, 12, NULL, NULL),
(1489, 94, 15, NULL, NULL),
(1490, 94, 17, NULL, NULL),
(1491, 94, 18, NULL, NULL),
(1492, 94, 30, NULL, NULL),
(1493, 94, 35, NULL, NULL),
(1494, 94, 37, NULL, NULL),
(1495, 94, 39, NULL, NULL),
(1496, 95, 14, NULL, NULL),
(1497, 95, 23, NULL, NULL),
(1498, 95, 46, NULL, NULL),
(1499, 95, 47, NULL, NULL),
(1500, 95, 3, NULL, NULL),
(1501, 95, 9, NULL, NULL),
(1502, 95, 21, NULL, NULL),
(1503, 95, 25, NULL, NULL),
(1504, 95, 10, NULL, NULL),
(1505, 95, 12, NULL, NULL),
(1506, 95, 15, NULL, NULL),
(1507, 95, 16, NULL, NULL),
(1508, 95, 17, NULL, NULL),
(1509, 95, 18, NULL, NULL),
(1510, 95, 29, NULL, NULL),
(1511, 95, 32, NULL, NULL),
(1512, 95, 35, NULL, NULL),
(1513, 95, 37, NULL, NULL),
(1514, 95, 39, NULL, NULL),
(1515, 95, 40, NULL, NULL),
(1516, 95, 42, NULL, NULL),
(1517, 96, 14, NULL, NULL),
(1518, 96, 22, NULL, NULL),
(1519, 96, 23, NULL, NULL),
(1520, 96, 46, NULL, NULL),
(1521, 96, 47, NULL, NULL),
(1522, 96, 2, NULL, NULL),
(1523, 96, 6, NULL, NULL),
(1524, 96, 8, NULL, NULL),
(1525, 96, 10, NULL, NULL),
(1526, 96, 11, NULL, NULL),
(1527, 96, 15, NULL, NULL),
(1528, 96, 17, NULL, NULL),
(1529, 96, 18, NULL, NULL),
(1530, 96, 28, NULL, NULL),
(1531, 96, 30, NULL, NULL),
(1532, 96, 32, NULL, NULL),
(1533, 96, 27, NULL, NULL),
(1534, 96, 33, NULL, NULL),
(1535, 97, 14, NULL, NULL),
(1536, 97, 22, NULL, NULL),
(1537, 97, 45, NULL, NULL),
(1538, 97, 46, NULL, NULL),
(1539, 97, 47, NULL, NULL),
(1540, 97, 3, NULL, NULL),
(1541, 97, 9, NULL, NULL),
(1542, 97, 21, NULL, NULL),
(1543, 97, 25, NULL, NULL),
(1544, 97, 27, NULL, NULL),
(1545, 97, 7, NULL, NULL),
(1546, 97, 10, NULL, NULL),
(1547, 97, 11, NULL, NULL),
(1548, 97, 16, NULL, NULL),
(1549, 97, 17, NULL, NULL),
(1550, 97, 30, NULL, NULL),
(1551, 97, 32, NULL, NULL),
(1552, 97, 35, NULL, NULL),
(1553, 97, 39, NULL, NULL),
(1554, 97, 40, NULL, NULL),
(1555, 97, 41, NULL, NULL),
(1556, 97, 43, NULL, NULL),
(1557, 97, 37, NULL, NULL),
(1558, 97, 38, NULL, NULL),
(1559, 98, 13, NULL, NULL),
(1560, 98, 14, NULL, NULL),
(1561, 98, 22, NULL, NULL),
(1562, 98, 45, NULL, NULL),
(1563, 98, 46, NULL, NULL),
(1564, 98, 1, NULL, NULL),
(1565, 98, 4, NULL, NULL),
(1566, 98, 19, NULL, NULL),
(1567, 98, 7, NULL, NULL),
(1568, 98, 11, NULL, NULL),
(1569, 98, 15, NULL, NULL),
(1570, 98, 16, NULL, NULL),
(1571, 98, 28, NULL, NULL),
(1572, 98, 30, NULL, NULL),
(1573, 98, 32, NULL, NULL),
(1574, 98, 35, NULL, NULL),
(1575, 98, 5, NULL, NULL),
(1576, 98, 21, NULL, NULL),
(1577, 99, 22, NULL, NULL),
(1578, 99, 23, NULL, NULL),
(1579, 99, 46, NULL, NULL),
(1580, 99, 47, NULL, NULL),
(1581, 99, 1, NULL, NULL),
(1582, 99, 2, NULL, NULL),
(1583, 99, 6, NULL, NULL),
(1584, 99, 8, NULL, NULL),
(1585, 99, 19, NULL, NULL),
(1586, 99, 7, NULL, NULL),
(1587, 99, 15, NULL, NULL),
(1588, 99, 16, NULL, NULL),
(1589, 99, 28, NULL, NULL),
(1590, 99, 29, NULL, NULL),
(1591, 99, 30, NULL, NULL),
(1592, 99, 31, NULL, NULL),
(1593, 99, 20, NULL, NULL),
(1594, 99, 39, NULL, NULL),
(1595, 99, 41, NULL, NULL),
(1596, 100, 13, NULL, NULL),
(1597, 100, 14, NULL, NULL),
(1598, 100, 22, NULL, NULL),
(1599, 100, 46, NULL, NULL),
(1600, 100, 1, NULL, NULL),
(1601, 100, 4, NULL, NULL),
(1602, 100, 6, NULL, NULL),
(1603, 100, 19, NULL, NULL),
(1604, 100, 10, NULL, NULL),
(1605, 100, 12, NULL, NULL),
(1606, 100, 15, NULL, NULL),
(1607, 100, 18, NULL, NULL),
(1608, 100, 31, NULL, NULL),
(1609, 100, 32, NULL, NULL),
(1610, 100, 38, NULL, NULL),
(1611, 100, 40, NULL, NULL),
(1612, 100, 41, NULL, NULL),
(1613, 100, 42, NULL, NULL);

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

--
-- Table structure for table `cr_cars_categories`
--

CREATE TABLE `cr_cars_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `cr_car_category_id` bigint(20) UNSIGNED DEFAULT NULL,
  `cr_car_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cr_cars_categories`
--

INSERT INTO `cr_cars_categories` (`id`, `cr_car_category_id`, `cr_car_id`) VALUES
(1, 1, 14),
(2, 5, 16),
(3, 4, 21),
(4, 5, 38),
(5, 1, 41),
(6, 3, 56),
(7, 5, 58),
(8, 5, 71),
(9, 2, 91),
(10, 5, 99),
(11, 3, 3),
(12, 1, 23),
(13, 3, 46),
(14, 4, 49),
(15, 5, 62),
(16, 4, 82),
(17, 3, 85),
(18, 5, 2),
(19, 4, 34),
(20, 2, 36),
(21, 2, 40),
(22, 5, 47),
(23, 4, 50),
(24, 5, 52),
(25, 3, 78),
(26, 4, 89),
(27, 1, 97),
(28, 4, 26),
(29, 4, 43),
(30, 1, 77),
(31, 1, 83),
(32, 4, 84),
(33, 3, 88),
(34, 2, 95),
(35, 5, 96),
(36, 2, 10),
(37, 5, 11),
(38, 1, 19),
(39, 3, 35),
(40, 5, 75),
(41, 4, 93),
(42, 3, 100),
(43, 1, 5),
(44, 2, 18),
(45, 5, 24),
(46, 4, 53),
(47, 5, 69),
(48, 2, 76),
(49, 5, 79),
(50, 4, 80),
(51, 1, 90),
(52, 3, 6),
(53, 1, 27),
(54, 5, 66),
(55, 2, 86),
(56, 1, 92),
(57, 3, 1),
(58, 4, 7),
(59, 2, 8),
(60, 3, 30),
(61, 4, 39),
(62, 5, 44),
(63, 5, 60),
(64, 1, 64),
(65, 5, 81),
(66, 2, 98),
(67, 3, 9),
(68, 4, 17),
(69, 5, 28),
(70, 3, 31),
(71, 5, 67),
(72, 4, 70),
(73, 5, 20),
(74, 3, 63),
(75, 5, 65),
(76, 1, 87),
(77, 2, 32),
(78, 4, 42),
(79, 4, 48),
(80, 5, 51),
(81, 1, 54),
(82, 1, 55),
(83, 4, 57),
(84, 5, 61),
(85, 4, 68),
(86, 2, 74),
(87, 5, 4),
(88, 5, 13),
(89, 1, 22),
(90, 4, 45),
(91, 5, 72),
(92, 2, 94),
(93, 3, 12),
(94, 3, 15),
(95, 2, 25),
(96, 2, 29),
(97, 2, 33),
(98, 3, 37),
(99, 2, 59),
(100, 4, 73),
(101, 5, 101),
(102, 5, 102),
(103, 5, 103);

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

--
-- Table structure for table `cr_cars_colors`
--

CREATE TABLE `cr_cars_colors` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `cr_car_id` bigint(20) UNSIGNED NOT NULL,
  `cr_car_color_id` bigint(20) 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 `cr_cars_colors`
--

INSERT INTO `cr_cars_colors` (`id`, `cr_car_id`, `cr_car_color_id`, `created_at`, `updated_at`) VALUES
(1, 1, 1, NULL, NULL),
(2, 2, 2, NULL, NULL),
(3, 3, 5, NULL, NULL),
(4, 4, 4, NULL, NULL),
(5, 5, 4, NULL, NULL),
(6, 6, 5, NULL, NULL),
(7, 7, 6, NULL, NULL),
(8, 8, 3, NULL, NULL),
(9, 9, 2, NULL, NULL),
(10, 10, 5, NULL, NULL),
(11, 11, 2, NULL, NULL),
(12, 12, 2, NULL, NULL),
(13, 13, 1, NULL, NULL),
(14, 14, 1, NULL, NULL),
(15, 15, 4, NULL, NULL),
(16, 16, 4, NULL, NULL),
(17, 17, 4, NULL, NULL),
(18, 18, 6, NULL, NULL),
(19, 19, 3, NULL, NULL),
(20, 20, 2, NULL, NULL),
(21, 21, 5, NULL, NULL),
(22, 22, 2, NULL, NULL),
(23, 23, 1, NULL, NULL),
(24, 24, 2, NULL, NULL),
(25, 25, 6, NULL, NULL),
(26, 26, 4, NULL, NULL),
(27, 27, 2, NULL, NULL),
(28, 28, 1, NULL, NULL),
(29, 29, 1, NULL, NULL),
(30, 30, 2, NULL, NULL),
(31, 31, 1, NULL, NULL),
(32, 32, 5, NULL, NULL),
(33, 33, 6, NULL, NULL),
(34, 34, 5, NULL, NULL),
(35, 35, 4, NULL, NULL),
(36, 36, 1, NULL, NULL),
(37, 37, 4, NULL, NULL),
(38, 38, 4, NULL, NULL),
(39, 39, 6, NULL, NULL),
(40, 40, 3, NULL, NULL),
(41, 41, 2, NULL, NULL),
(42, 42, 6, NULL, NULL),
(43, 43, 1, NULL, NULL),
(44, 44, 2, NULL, NULL),
(45, 45, 4, NULL, NULL),
(46, 46, 5, NULL, NULL),
(47, 47, 6, NULL, NULL),
(48, 48, 4, NULL, NULL),
(49, 49, 3, NULL, NULL),
(50, 50, 4, NULL, NULL),
(51, 51, 4, NULL, NULL),
(52, 52, 1, NULL, NULL),
(53, 53, 5, NULL, NULL),
(54, 54, 4, NULL, NULL),
(55, 55, 1, NULL, NULL),
(56, 56, 6, NULL, NULL),
(57, 57, 1, NULL, NULL),
(58, 58, 6, NULL, NULL),
(59, 59, 4, NULL, NULL),
(60, 60, 2, NULL, NULL),
(61, 61, 2, NULL, NULL),
(62, 62, 5, NULL, NULL),
(63, 63, 5, NULL, NULL),
(64, 64, 1, NULL, NULL),
(65, 65, 4, NULL, NULL),
(66, 66, 5, NULL, NULL),
(67, 67, 6, NULL, NULL),
(68, 68, 3, NULL, NULL),
(69, 69, 4, NULL, NULL),
(70, 70, 3, NULL, NULL),
(71, 71, 1, NULL, NULL),
(72, 72, 6, NULL, NULL),
(73, 73, 3, NULL, NULL),
(74, 74, 2, NULL, NULL),
(75, 75, 4, NULL, NULL),
(76, 76, 4, NULL, NULL),
(77, 77, 3, NULL, NULL),
(78, 78, 4, NULL, NULL),
(79, 79, 3, NULL, NULL),
(80, 80, 1, NULL, NULL),
(81, 81, 3, NULL, NULL),
(82, 82, 2, NULL, NULL),
(83, 83, 6, NULL, NULL),
(84, 84, 4, NULL, NULL),
(85, 85, 4, NULL, NULL),
(86, 86, 6, NULL, NULL),
(87, 87, 3, NULL, NULL),
(88, 88, 5, NULL, NULL),
(89, 89, 6, NULL, NULL),
(90, 90, 4, NULL, NULL),
(91, 91, 4, NULL, NULL),
(92, 92, 2, NULL, NULL),
(93, 93, 3, NULL, NULL),
(94, 94, 5, NULL, NULL),
(95, 95, 3, NULL, NULL),
(96, 96, 3, NULL, NULL),
(97, 97, 1, NULL, NULL),
(98, 98, 4, NULL, NULL),
(99, 99, 5, NULL, NULL),
(100, 100, 3, NULL, NULL);

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

--
-- Table structure for table `cr_cars_translations`
--

CREATE TABLE `cr_cars_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_cars_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(191) DEFAULT NULL,
  `content` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_car_amenities`
--

CREATE TABLE `cr_car_amenities` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `category_id` bigint(20) UNSIGNED DEFAULT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'pending',
  `order` tinyint(4) NOT NULL 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 `cr_car_amenities`
--

INSERT INTO `cr_car_amenities` (`id`, `name`, `icon`, `category_id`, `status`, `order`, `created_at`, `updated_at`) VALUES
(1, 'Leather upholstery', 'ti ti-armchair', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(2, 'Heated seats', 'ti ti-flame', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(3, 'Ventilated seats', 'ti ti-air-conditioning', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(4, 'Memory seats', 'ti ti-device-floppy', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(5, 'Massage seats', 'ti ti-massage', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(6, 'Premium sound system', 'ti ti-volume', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(7, 'Wireless charging', 'ti ti-battery-charging', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(8, 'Dual-zone climate control', 'ti ti-air-conditioning', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(9, 'Ambient lighting', 'ti ti-bulb', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(10, 'Touchscreen display', 'ti ti-device-tablet', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(11, 'Apple CarPlay', 'ti ti-brand-apple', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(12, 'Android Auto', 'ti ti-brand-android', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(13, 'Bluetooth connectivity', 'ti ti-bluetooth', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(14, 'USB ports', 'ti ti-usb', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(15, 'Navigation system', 'ti ti-map-pin', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(16, 'Heads-up display', 'ti ti-device-desktop', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(17, 'Digital instrument cluster', 'ti ti-dashboard', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(18, 'Voice control', 'ti ti-microphone', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(19, 'Sunroof/Moonroof', 'ti ti-sun', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(20, 'Panoramic roof', 'ti ti-sun-high', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(21, 'Power tailgate', 'ti ti-door', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(22, 'Keyless entry', 'ti ti-key', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(23, 'Push-button start', 'ti ti-power', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(24, 'Remote start', 'ti ti-remote', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(25, 'Heated mirrors', 'ti ti-flame', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(26, 'Rain-sensing wipers', 'ti ti-droplet', NULL, 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(27, 'Auto-dimming mirrors', 'ti ti-brightness-down', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(28, 'Adaptive cruise control', 'ti ti-steering-wheel', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(29, 'Lane departure warning', 'ti ti-road-sign', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(30, 'Blind spot monitoring', 'ti ti-eye', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(31, 'Parking sensors', 'ti ti-radar', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(32, 'Backup camera', 'ti ti-camera', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(33, '360-degree camera', 'ti ti-360-view', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(34, 'Automatic emergency braking', 'ti ti-shield-check', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(35, 'Cross-traffic alert', 'ti ti-alert-triangle', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(36, 'Driver attention monitoring', 'ti ti-eye-check', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(37, 'All-wheel drive', 'ti ti-car-4wd', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(38, 'Sport mode', 'ti ti-flag', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(39, 'Paddle shifters', 'ti ti-steering-wheel', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(40, 'Adaptive suspension', 'ti ti-adjustments', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(41, 'Electronic stability control', 'ti ti-shield', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(42, 'Traction control', 'ti ti-wheel', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(43, 'Hill start assist', 'ti ti-mountain', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(44, 'Downhill assist control', 'ti ti-trending-down', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(45, 'Air conditioning', 'ti ti-air-conditioning', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(46, 'Power windows', 'ti ti-window', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(47, 'Central locking', 'ti ti-lock', NULL, 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49');

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

--
-- Table structure for table `cr_car_amenities_translations`
--

CREATE TABLE `cr_car_amenities_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_car_amenities_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_car_amenity_categories`
--

CREATE TABLE `cr_car_amenity_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `order` int(11) NOT NULL DEFAULT 0,
  `status` varchar(191) NOT NULL DEFAULT 'published',
  `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 `cr_car_amenity_categories`
--

INSERT INTO `cr_car_amenity_categories` (`id`, `name`, `icon`, `order`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Comfort & Interior', 'ti ti-armchair', 1, 'published', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(2, 'Technology & Infotainment', 'ti ti-device-tablet', 2, 'published', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(3, 'Exterior & Convenience', 'ti ti-sun', 3, 'published', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(4, 'Safety & Driver Assistance', 'ti ti-shield-check', 4, 'published', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(5, 'Performance & Handling', 'ti ti-steering-wheel', 5, 'published', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(6, 'Basic Features', 'ti ti-car', 6, 'published', '2026-03-06 08:22:48', '2026-03-06 08:22:48');

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

--
-- Table structure for table `cr_car_amenity_categories_translations`
--

CREATE TABLE `cr_car_amenity_categories_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_car_amenity_categories_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_car_categories`
--

CREATE TABLE `cr_car_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL DEFAULT '',
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `description` varchar(400) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `icon` varchar(60) DEFAULT NULL,
  `order` tinyint(4) NOT NULL DEFAULT 0,
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `is_default` tinyint(3) UNSIGNED NOT NULL 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 `cr_car_categories`
--

INSERT INTO `cr_car_categories` (`id`, `name`, `parent_id`, `description`, `status`, `icon`, `order`, `is_featured`, `is_default`, `created_at`, `updated_at`) VALUES
(1, 'Sport', 0, 'Sport cars model', 'published', 'ti ti-sport-billard', 1, 0, 0, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(2, 'Maserati', 1, '', 'published', 'ti ti-activity', 3, 0, 0, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(3, 'Ferrari', 1, '', 'published', NULL, 3, 0, 0, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(4, 'Classic', 0, 'Classic cars model', 'published', 'ti ti-alpha', 2, 0, 0, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(5, 'New', 0, 'New cars model', 'published', 'ti ti-new-section', 4, 0, 1, '2026-03-06 08:24:05', '2026-03-06 08:24:05');

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

--
-- Table structure for table `cr_car_categories_translations`
--

CREATE TABLE `cr_car_categories_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_car_categories_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(191) DEFAULT NULL,
  `content` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_car_colors`
--

CREATE TABLE `cr_car_colors` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'pending',
  `order` tinyint(4) NOT NULL 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 `cr_car_colors`
--

INSERT INTO `cr_car_colors` (`id`, `name`, `status`, `order`, `created_at`, `updated_at`) VALUES
(1, 'Red', 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(2, 'White', 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(3, 'Black', 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(4, 'Blue', 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(5, 'Pink', 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(6, 'Brown', 'published', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49');

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

--
-- Table structure for table `cr_car_colors_translations`
--

CREATE TABLE `cr_car_colors_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_car_colors_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_car_dates`
--

CREATE TABLE `cr_car_dates` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `car_id` bigint(20) UNSIGNED NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `value` decimal(15,2) NOT NULL DEFAULT 0.00,
  `value_type` varchar(20) NOT NULL DEFAULT 'fixed',
  `active` tinyint(4) NOT NULL DEFAULT 1,
  `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 `cr_car_delivery_locations`
--

CREATE TABLE `cr_car_delivery_locations` (
  `car_id` bigint(20) UNSIGNED NOT NULL,
  `location_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cr_car_delivery_locations`
--

INSERT INTO `cr_car_delivery_locations` (`car_id`, `location_id`) VALUES
(102, 1);

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

--
-- Table structure for table `cr_car_fuels`
--

CREATE TABLE `cr_car_fuels` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'pending',
  `order` tinyint(4) NOT NULL 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 `cr_car_fuels`
--

INSERT INTO `cr_car_fuels` (`id`, `name`, `icon`, `status`, `order`, `created_at`, `updated_at`) VALUES
(1, 'Gasoline', 'icons/car-diesel.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(2, 'Diesel', 'icons/car-diesel.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(3, 'Electric', 'icons/car-electricity.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48');

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

--
-- Table structure for table `cr_car_fuels_translations`
--

CREATE TABLE `cr_car_fuels_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_car_fuels_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_car_maintenance_histories`
--

CREATE TABLE `cr_car_maintenance_histories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `amount` double NOT NULL DEFAULT 0,
  `currency_id` bigint(20) UNSIGNED NOT NULL,
  `date` datetime DEFAULT NULL,
  `car_id` bigint(20) UNSIGNED NOT 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 `cr_car_maintenance_histories_translations`
--

CREATE TABLE `cr_car_maintenance_histories_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_car_maintenance_histories_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_car_makes`
--

CREATE TABLE `cr_car_makes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `logo` varchar(191) DEFAULT NULL,
  `status` varchar(30) NOT NULL DEFAULT 'published',
  `order` tinyint(4) NOT NULL 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 `cr_car_makes`
--

INSERT INTO `cr_car_makes` (`id`, `name`, `logo`, `status`, `order`, `created_at`, `updated_at`) VALUES
(1, 'Lexus', 'icons/lexus.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(2, 'Mercedes', 'icons/mer.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(3, 'Bugatti', 'icons/bugatti.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(4, 'Jaguar', 'icons/jaguar.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(5, 'Honda', 'icons/honda.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(6, 'Chevrolet', 'icons/chevrolet.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(7, 'Acura', 'icons/acura.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(8, 'BMW', 'icons/bmw.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(9, 'Toyota', 'icons/toyota.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(10, 'Ford', 'icons/ford-i.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(11, 'Nissan', 'icons/nissan-i.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(12, 'Opel', 'icons/opel-i.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(13, 'BMW', 'icons/bmw.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(14, 'Toyota', 'icons/toyota.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48');

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

--
-- Table structure for table `cr_car_makes_translations`
--

CREATE TABLE `cr_car_makes_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_car_makes_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_car_pricing_calendar`
--

CREATE TABLE `cr_car_pricing_calendar` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `car_id` bigint(20) UNSIGNED NOT NULL,
  `date` date NOT NULL,
  `price` decimal(10,2) NOT NULL,
  `price_type` varchar(20) NOT NULL DEFAULT 'daily',
  `min_stay_days` int(11) DEFAULT NULL,
  `max_stay_days` int(11) DEFAULT NULL,
  `is_available` tinyint(1) NOT NULL DEFAULT 1,
  `notes` text DEFAULT NULL,
  `created_by` bigint(20) 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 `cr_car_pricing_calendar`
--

INSERT INTO `cr_car_pricing_calendar` (`id`, `car_id`, `date`, `price`, `price_type`, `min_stay_days`, `max_stay_days`, `is_available`, `notes`, `created_by`, `created_at`, `updated_at`) VALUES
(1, 18, '2026-04-29', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(2, 18, '2026-04-30', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(3, 18, '2026-05-01', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(4, 18, '2026-05-02', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(5, 18, '2026-05-03', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(6, 18, '2026-05-04', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(7, 18, '2026-05-05', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(8, 18, '2026-05-06', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(9, 18, '2026-05-07', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(10, 18, '2026-05-08', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(11, 18, '2026-05-09', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(12, 18, '2026-05-10', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(13, 18, '2026-05-11', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(14, 18, '2026-05-12', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(15, 18, '2026-05-13', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(16, 18, '2026-05-14', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(17, 18, '2026-05-15', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(18, 18, '2026-05-16', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(19, 18, '2026-05-17', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(20, 18, '2026-05-18', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(21, 18, '2026-05-19', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(22, 18, '2026-05-20', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(23, 18, '2026-05-21', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(24, 18, '2026-05-22', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(25, 18, '2026-05-23', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(26, 18, '2026-05-24', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(27, 18, '2026-05-25', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(28, 18, '2026-05-26', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(29, 18, '2026-05-27', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(30, 18, '2026-05-28', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(31, 18, '2026-05-29', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(32, 18, '2026-05-30', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(33, 18, '2026-05-31', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(34, 18, '2026-06-01', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(35, 18, '2026-06-02', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(36, 18, '2026-06-03', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(37, 18, '2026-06-04', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(38, 18, '2026-06-05', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(39, 18, '2026-06-06', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(40, 18, '2026-06-07', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(41, 18, '2026-06-08', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(42, 18, '2026-06-09', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(43, 18, '2026-06-10', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(44, 18, '2026-06-11', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(45, 18, '2026-06-12', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(46, 18, '2026-06-13', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(47, 18, '2026-06-14', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(48, 18, '2026-06-15', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(49, 18, '2026-06-16', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(50, 18, '2026-06-17', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(51, 18, '2026-06-18', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(52, 18, '2026-06-19', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(53, 18, '2026-06-20', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(54, 18, '2026-06-21', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(55, 18, '2026-06-22', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(56, 18, '2026-06-23', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(57, 18, '2026-06-24', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(58, 18, '2026-06-25', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(59, 18, '2026-06-26', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(60, 18, '2026-06-27', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(61, 18, '2026-06-28', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(62, 18, '2026-06-29', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06'),
(63, 18, '2026-06-30', 100.00, 'daily', 2, 4, 1, NULL, 1, '2026-05-20 06:31:06', '2026-05-20 06:31:06');

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

--
-- Table structure for table `cr_car_pricing_policies`
--

CREATE TABLE `cr_car_pricing_policies` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `car_id` bigint(20) UNSIGNED NOT NULL,
  `weekly_discount_type` varchar(20) NOT NULL DEFAULT 'none',
  `weekly_discount_value` decimal(15,2) NOT NULL DEFAULT 0.00,
  `monthly_discount_type` varchar(20) NOT NULL DEFAULT 'none',
  `monthly_discount_value` decimal(15,2) NOT NULL DEFAULT 0.00,
  `included_distance_per_day` int(10) UNSIGNED DEFAULT NULL,
  `included_distance_per_trip` int(10) UNSIGNED DEFAULT NULL,
  `extra_distance_unit_price` decimal(15,4) NOT NULL DEFAULT 0.0000,
  `distance_unit` varchar(20) NOT NULL DEFAULT 'km',
  `distance_overage_billing_mode` varchar(30) NOT NULL DEFAULT 'end_of_trip',
  `allow_best_discount_only` tinyint(1) NOT NULL DEFAULT 1,
  `max_discount_cap_percent` decimal(8,2) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `demand_recommendations_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `demand_min_price` decimal(15,2) DEFAULT NULL,
  `demand_max_price` decimal(15,2) DEFAULT NULL,
  `demand_max_daily_change_percent` decimal(8,2) DEFAULT NULL,
  `demand_auto_apply_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `demand_auto_apply_min_confidence` decimal(4,2) NOT NULL DEFAULT 0.70,
  `demand_auto_apply_max_daily_change_percent` decimal(8,2) DEFAULT NULL,
  `demand_auto_apply_paused_until` timestamp NULL DEFAULT NULL,
  `demand_auto_apply_last_applied_at` timestamp NULL DEFAULT NULL,
  `demand_auto_apply_count` int(11) NOT NULL DEFAULT 0,
  `demand_last_generated_at` timestamp NULL 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 `cr_car_pricing_policies`
--

INSERT INTO `cr_car_pricing_policies` (`id`, `car_id`, `weekly_discount_type`, `weekly_discount_value`, `monthly_discount_type`, `monthly_discount_value`, `included_distance_per_day`, `included_distance_per_trip`, `extra_distance_unit_price`, `distance_unit`, `distance_overage_billing_mode`, `allow_best_discount_only`, `max_discount_cap_percent`, `active`, `demand_recommendations_enabled`, `demand_min_price`, `demand_max_price`, `demand_max_daily_change_percent`, `demand_auto_apply_enabled`, `demand_auto_apply_min_confidence`, `demand_auto_apply_max_daily_change_percent`, `demand_auto_apply_paused_until`, `demand_auto_apply_last_applied_at`, `demand_auto_apply_count`, `demand_last_generated_at`, `created_at`, `updated_at`) VALUES
(1, 102, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-20 15:22:23', '2026-04-20 15:22:23'),
(2, 100, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 1, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, '2026-04-20 16:48:59', '2026-04-20 16:48:40', '2026-04-20 16:48:59'),
(3, 43, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:10:44', '2026-04-22 11:10:44'),
(4, 92, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:12:05', '2026-04-22 11:12:05'),
(5, 94, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:15:09', '2026-04-22 11:15:09'),
(6, 53, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:18:08', '2026-04-22 11:18:08'),
(7, 54, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:19:30', '2026-04-22 11:19:30'),
(8, 55, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:20:53', '2026-04-22 11:20:53'),
(9, 56, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:22:37', '2026-04-22 11:22:37'),
(10, 63, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:23:51', '2026-04-22 11:23:51'),
(11, 71, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:35:25', '2026-04-22 11:35:25'),
(12, 74, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:36:45', '2026-04-22 11:36:45'),
(13, 81, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:37:58', '2026-04-22 11:37:58'),
(14, 82, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:38:50', '2026-04-22 11:38:50'),
(15, 24, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:39:51', '2026-04-22 11:39:51'),
(16, 28, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:41:09', '2026-04-22 11:41:09'),
(17, 30, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:43:04', '2026-04-22 11:43:04'),
(18, 31, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:44:42', '2026-04-22 11:44:42'),
(19, 34, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:46:00', '2026-04-22 11:46:00'),
(20, 38, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:49:09', '2026-04-22 11:49:09'),
(21, 41, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:50:08', '2026-04-22 11:50:08'),
(22, 93, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:50:24', '2026-04-22 11:50:24'),
(23, 46, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:51:44', '2026-04-22 11:51:44'),
(24, 49, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:52:38', '2026-04-22 11:52:38'),
(25, 12, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:53:35', '2026-04-22 11:53:35'),
(26, 99, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:54:14', '2026-04-22 11:54:14'),
(27, 13, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:54:30', '2026-04-22 11:54:30'),
(28, 15, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:55:37', '2026-04-22 11:55:37'),
(29, 18, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:56:48', '2026-04-22 11:56:48'),
(30, 21, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 11:59:22', '2026-04-22 11:59:22'),
(31, 40, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:00:19', '2026-04-22 12:00:19'),
(32, 58, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:01:20', '2026-04-22 12:01:20'),
(33, 44, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:01:45', '2026-04-22 12:01:45'),
(34, 45, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:03:34', '2026-04-22 12:03:34'),
(35, 48, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:05:26', '2026-04-22 12:05:26'),
(36, 61, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:05:57', '2026-04-22 12:05:57'),
(37, 14, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:07:00', '2026-04-22 12:07:00'),
(38, 16, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:07:57', '2026-04-22 12:07:57'),
(39, 72, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:08:02', '2026-04-22 12:08:02'),
(40, 17, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:08:46', '2026-04-22 12:08:46'),
(41, 88, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:09:34', '2026-04-22 12:09:34'),
(42, 89, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:10:39', '2026-04-22 12:10:39'),
(43, 73, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:10:50', '2026-04-22 12:10:50'),
(44, 90, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:11:20', '2026-04-22 12:11:20'),
(45, 91, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:12:34', '2026-04-22 12:12:34'),
(46, 95, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:14:22', '2026-04-22 12:14:22'),
(47, 75, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:14:56', '2026-04-22 12:14:56'),
(48, 96, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:15:28', '2026-04-22 12:15:28'),
(49, 97, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:16:13', '2026-04-22 12:16:13'),
(50, 77, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:17:20', '2026-04-22 12:17:20'),
(51, 98, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:17:23', '2026-04-22 12:17:23'),
(52, 79, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:25:47', '2026-04-22 12:25:47'),
(53, 19, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-22 12:30:14', '2026-04-22 12:30:14'),
(54, 52, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 16:27:26', '2026-04-30 16:27:26'),
(55, 68, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 16:42:25', '2026-04-30 16:42:25'),
(56, 11, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 16:49:33', '2026-04-30 16:49:33'),
(57, 10, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 16:54:48', '2026-04-30 16:54:48'),
(58, 51, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 17:09:27', '2026-04-30 17:09:27'),
(59, 50, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 17:12:28', '2026-04-30 17:12:28'),
(60, 47, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 17:16:31', '2026-04-30 17:16:31'),
(61, 42, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 17:21:14', '2026-04-30 17:21:14'),
(62, 39, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 17:25:37', '2026-04-30 17:25:37'),
(63, 37, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 17:30:35', '2026-04-30 17:30:35'),
(64, 36, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 17:33:29', '2026-04-30 17:33:29'),
(65, 35, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 17:36:20', '2026-04-30 17:36:20'),
(66, 7, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 17:41:09', '2026-04-30 17:41:09'),
(67, 5, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 17:46:19', '2026-04-30 17:46:19'),
(68, 2, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 17:52:03', '2026-04-30 17:52:03'),
(69, 33, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 17:57:31', '2026-04-30 17:57:31'),
(70, 22, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 18:05:46', '2026-04-30 18:05:46'),
(71, 87, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 18:08:52', '2026-04-30 18:08:52'),
(72, 86, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 18:11:12', '2026-04-30 18:11:12'),
(73, 83, 'none', 0.00, 'none', 0.00, NULL, NULL, 0.0000, 'km', 'end_of_trip', 1, NULL, 1, 0, NULL, NULL, NULL, 0, 0.70, NULL, NULL, NULL, 0, NULL, '2026-04-30 18:14:53', '2026-04-30 18:14:53');

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

--
-- Table structure for table `cr_car_reviews`
--

CREATE TABLE `cr_car_reviews` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `content` text NOT NULL,
  `star` double NOT NULL DEFAULT 0,
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `car_id` bigint(20) UNSIGNED NOT NULL,
  `booking_id` bigint(20) UNSIGNED 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 `cr_car_reviews`
--

INSERT INTO `cr_car_reviews` (`id`, `content`, `star`, `customer_id`, `car_id`, `booking_id`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Excellent value for money. The automatic climate control worked perfectly Never had a single mechanical issue Perfect companion for our business travel Will book with them again for sure.', 4, 3, 33, NULL, 'published', '2025-04-06 08:24:05', '2026-03-06 08:24:05'),
(2, 'Outstanding rental experience! Advanced safety features gave us confidence The car was immaculate in every detail and provided effortless acceleration. The team was absolutely wonderful to work with Exceeded all expectations. Will definitely be back!', 5, 24, 36, NULL, 'published', '2025-04-24 08:24:05', '2026-03-06 08:24:05'),
(3, 'Absolutely fantastic! State-of-the-art amenities throughout Absolutely perfect reliability record This rental exceeded every expectation This is how car rentals should be done. Thank you for an amazing experience!', 5, 21, 68, NULL, 'published', '2025-09-28 08:24:05', '2026-03-06 08:24:05'),
(4, 'Outstanding rental experience! The car was immaculate inside and out The car was immaculate in every detail and provided effortless acceleration. The staff went above and beyond to help us Exceeded all expectations. Will definitely be back!', 5, 23, 55, NULL, 'published', '2025-07-02 08:24:05', '2026-03-06 08:24:05'),
(5, 'Standard rental car. No major issues during our rental Minor scuff on the bumper Reasonable option for basic transportation Met basic expectations.', 3, 5, 97, NULL, 'published', '2024-04-18 08:24:05', '2026-03-06 08:24:05'),
(6, 'Perfect car for our conference! The seats were like luxury recliners Exceptional driving dynamics in all conditions Service that sets the gold standard Cannot fault anything about this rental. 10/10 would recommend!', 5, 10, 74, NULL, 'published', '2025-08-21 08:24:05', '2026-03-06 08:24:05'),
(7, 'Mixed feelings about this rental. the car was reliable throughout our trip but the pickup process was slower than expected. Adequate for basic transportation needs Fair value for money.', 3, 1, 17, NULL, 'published', '2025-06-18 08:24:05', '2026-03-06 08:24:05'),
(8, 'Best rental car I\'ve ever had! Luxury-level quality throughout Outstanding professionalism and care Best deal I\'ve found in years Everything was perfect from start to finish. Will definitely use again!', 5, 15, 56, NULL, 'published', '2024-07-17 08:24:05', '2026-03-06 08:24:05'),
(9, 'Outstanding rental experience! Whisper-quiet cabin and smooth ride The car was showroom quality and delivered outstanding fuel economy. The team was absolutely wonderful to work with Exceeded all expectations. Will definitely be back!', 5, 3, 61, NULL, 'published', '2025-11-11 08:24:05', '2026-03-06 08:24:05'),
(10, 'Outstanding rental experience! The most comfortable seats I\'ve experienced The car was absolutely pristine and was remarkably quiet and refined. The team was absolutely wonderful to work with Exceeded all expectations. Will definitely be back!', 5, 5, 43, NULL, 'published', '2024-04-11 08:24:05', '2026-03-06 08:24:05'),
(11, 'Perfect car for our conference! Premium seating that rivals luxury vehicles The performance was absolutely flawless Exceptional attention to customer needs Cannot fault anything about this rental. 10/10 would recommend!', 5, 22, 94, NULL, 'published', '2025-07-28 08:24:05', '2026-03-06 08:24:05'),
(12, 'Had some issues with this rental. The radio kept cutting out that was quite annoying during the drive The price was reasonable but the quality didn\'t match.', 2, 22, 97, NULL, 'published', '2025-09-24 08:24:05', '2026-03-06 08:24:05'),
(13, 'Great rental experience! Great sound system The car was spotless inside and out and was very fuel efficient. Minor scuff on the bumper but overall very satisfied. Would definitely rent again.', 4, 14, 40, NULL, 'published', '2024-05-07 08:24:05', '2026-03-06 08:24:05'),
(14, 'Absolutely fantastic! Every feature worked flawlessly Zero problems - just pure dependability This rental exceeded every expectation This is how car rentals should be done. Thank you for an amazing experience!', 5, 11, 24, NULL, 'published', '2024-08-30 08:24:05', '2026-03-06 08:24:05'),
(15, 'Average rental experience. The car served its purpose adequately The radio presets weren\'t cleared but the fuel efficiency was decent. Nothing special but gets the job done.', 3, 29, 52, NULL, 'published', '2025-10-10 08:24:05', '2026-03-06 08:24:05'),
(16, 'Average rental experience. The car served its purpose adequately Could use a bit more trunk space but the pickup was convenient. Nothing special but gets the job done.', 3, 6, 19, NULL, 'published', '2025-06-18 08:24:05', '2026-03-06 08:24:05'),
(17, 'Very pleased with this rental. Premium feel despite being a rental Quick and easy pickup process Will be my go-to rental company Just a small issue with a small scuff on the rear bumper but nothing major.', 4, 7, 47, NULL, 'published', '2024-03-25 08:24:05', '2026-03-06 08:24:05'),
(18, 'Outstanding rental experience! Incredible fuel efficiency saved us money The car was absolutely pristine and handled like a dream on every road. The staff went above and beyond to help us Exceeded all expectations. Will definitely be back!', 5, 22, 81, NULL, 'published', '2025-11-22 08:24:05', '2026-03-06 08:24:05'),
(19, 'Outstanding rental experience! The most comfortable seats I\'ve experienced The car was showroom quality and provided effortless acceleration. The staff went above and beyond to help us Exceeded all expectations. Will definitely be back!', 5, 7, 73, NULL, 'published', '2024-10-29 08:24:05', '2026-03-06 08:24:05'),
(20, 'Mixed feelings about this rental. the overall condition was satisfactory but the pickup process was slower than expected. Does what it\'s supposed to do Fair value for money.', 3, 32, 52, NULL, 'published', '2025-08-13 08:24:05', '2026-03-06 08:24:05'),
(21, 'Great rental experience! Excellent fuel economy The car was spotless inside and out and had plenty of power when needed. The pickup process took a while but overall very satisfied. Would definitely rent again.', 4, 15, 83, NULL, 'published', '2025-02-01 08:24:05', '2026-03-06 08:24:05'),
(22, 'Very disappointed. The overall build quality was poor The engine was not functioning properly and warning lights were on. Not worth the money at all.', 1, 9, 98, NULL, 'published', '2025-10-02 08:24:05', '2026-03-06 08:24:05'),
(23, 'Decent car for the price. The visibility was good the owner\'s manual being missing but overall acceptable for family road trip. Would consider again if needed.', 3, 32, 35, NULL, 'published', '2024-05-02 08:24:05', '2026-03-06 08:24:05'),
(24, 'Excellent value for money. Excellent safety features gave us confidence Never had a single mechanical issue Perfect companion for our business travel Will book with them again for sure.', 4, 27, 26, NULL, 'published', '2024-12-21 08:24:05', '2026-03-06 08:24:05'),
(25, 'Best rental car I\'ve ever had! Quality that rivals the finest vehicles Outstanding professionalism and care Best deal I\'ve found in years Everything was perfect from start to finish. Will definitely use again!', 5, 29, 99, NULL, 'published', '2024-11-02 08:24:05', '2026-03-06 08:24:05'),
(26, 'Great rental experience! The car was clean and well-maintained The car was very reliable and was very fuel efficient. The pickup process took a while but overall very satisfied. Would definitely rent again.', 4, 9, 24, NULL, 'published', '2025-03-16 08:24:05', '2026-03-06 08:24:05'),
(27, 'Below expectations. The GPS was a bit outdated The car was reasonable considering the age but The pickup/return process. The fuel economy was good but overall not satisfied with the rental.', 2, 2, 99, NULL, 'published', '2025-09-08 08:24:05', '2026-03-06 08:24:05'),
(28, 'Worst rental ever! The steering wheel was shaking violently The car wouldn\'t start and I had to pay for repairs myself. Completely ruined my business trip. Avoid at all costs!', 1, 14, 2, NULL, 'published', '2026-02-27 08:24:05', '2026-03-06 08:24:05'),
(29, 'Decent car for the price. The sound system worked fine the pickup location being slightly hard to find but overall acceptable for wedding. Would consider again if needed.', 3, 26, 47, NULL, 'published', '2025-10-17 08:24:05', '2026-03-06 08:24:05'),
(30, 'Standard rental car. Served our transportation needs The GPS was a bit outdated Reasonable option for basic transportation Met basic expectations.', 3, 5, 84, NULL, 'published', '2024-09-27 08:24:05', '2026-03-06 08:24:05'),
(31, 'Standard rental car. Served our transportation needs Could use a bit more trunk space Meets expectations without exceeding them Met basic expectations.', 3, 7, 67, NULL, 'published', '2025-06-22 08:24:05', '2026-03-06 08:24:05'),
(32, 'Mixed feelings about this rental. the car was reliable throughout our trip but the customer service could be improved. Standard rental experience Fair value for money.', 3, 6, 36, NULL, 'published', '2024-08-04 08:24:05', '2026-03-06 08:24:05'),
(33, 'Really enjoyed driving this car. Seats were supportive and adjustable Reliable performance throughout our trip Made our trip so much more enjoyable Only minor complaint is the return process was slightly confusing. Highly recommend!', 4, 28, 75, NULL, 'published', '2025-07-15 08:24:05', '2026-03-06 08:24:05'),
(34, 'Great rental experience! Great sound system The car was in excellent mechanical condition and performed flawlessly throughout our trip. Minor scuff on the bumper but overall very satisfied. Would definitely rent again.', 4, 28, 41, NULL, 'published', '2025-01-27 08:24:05', '2026-03-06 08:24:05'),
(35, 'Perfect car for our conference! Unparalleled comfort for long-distance driving Incredible power delivery and smooth operation Outstanding professionalism and care Cannot fault anything about this rental. 10/10 would recommend!', 5, 32, 72, NULL, 'published', '2024-03-12 08:24:05', '2026-03-06 08:24:05'),
(36, 'Absolutely fantastic! Every feature worked flawlessly Absolutely perfect reliability record The best rental car experience we\'ve ever had This is how car rentals should be done. Thank you for an amazing experience!', 5, 2, 43, NULL, 'published', '2025-05-24 08:24:05', '2026-03-06 08:24:05'),
(37, 'Really enjoyed driving this car. Incredibly comfortable for long drives Good handling in various driving conditions Perfect for our family vacation Only minor complaint is the pickup location was hard to find. Highly recommend!', 4, 11, 19, NULL, 'published', '2026-01-22 08:24:05', '2026-03-06 08:24:05'),
(38, 'Great rental experience! Smooth and quiet ride The car was spotless inside and out and was very fuel efficient. The pickup process took a while but overall very satisfied. Would definitely rent again.', 4, 19, 36, NULL, 'published', '2025-02-04 08:24:05', '2026-03-06 08:24:05'),
(39, 'Excellent value for money. The keyless entry was very convenient Never had a single mechanical issue Perfect companion for our business travel Will book with them again for sure.', 4, 12, 35, NULL, 'published', '2025-01-13 08:24:05', '2026-03-06 08:24:05'),
(40, 'Best rental car I\'ve ever had! Exceptional craftsmanship and care The customer service was world-class Incredible bang for your buck Everything was perfect from start to finish. Will definitely use again!', 5, 9, 19, NULL, 'published', '2025-06-13 08:24:05', '2026-03-06 08:24:05'),
(41, 'Decent car for the price. The sound system worked fine the radio taking a moment to connect to Bluetooth but overall acceptable for vacation. Would consider again if needed.', 3, 27, 11, NULL, 'published', '2024-08-17 08:24:05', '2026-03-06 08:24:05'),
(42, 'Absolutely fantastic! Advanced capabilities that impressed everyone Reliability that exceeded all expectations A truly exceptional experience from start to finish This is how car rentals should be done. Thank you for an amazing experience!', 5, 6, 96, NULL, 'published', '2024-07-27 08:24:05', '2026-03-06 08:24:05'),
(43, 'Great rental experience! Very comfortable seats The car was spotless inside and out and handled beautifully on both city and highway. Could use a bit more trunk space but overall very satisfied. Would definitely rent again.', 4, 28, 23, NULL, 'published', '2026-01-31 08:24:05', '2026-03-06 08:24:05'),
(44, 'Mixed feelings about this rental. the fuel economy exceeded expectations but the vehicle felt a bit dated. Standard rental experience Fair value for money.', 3, 24, 84, NULL, 'published', '2024-12-11 08:24:05', '2026-03-06 08:24:05'),
(45, 'Mixed feelings about this rental. the car was reliable throughout our trip but the customer service could be improved. Does what it\'s supposed to do Fair value for money.', 3, 8, 37, NULL, 'published', '2025-03-05 08:24:05', '2026-03-06 08:24:05'),
(46, 'Excellent value for money. The automatic climate control worked perfectly No unexpected problems or breakdowns Enhanced our weekend getaway experience Will book with them again for sure.', 4, 21, 97, NULL, 'published', '2024-03-11 08:24:05', '2026-03-06 08:24:05'),
(47, 'Decent car for the price. The visibility was good the owner\'s manual being missing but overall acceptable for vacation. Would consider again if needed.', 3, 11, 40, NULL, 'published', '2024-08-02 08:24:05', '2026-03-06 08:24:05'),
(48, 'Excellent value for money. The automatic climate control worked perfectly Never had a single mechanical issue Reliable transportation for our family trip Will book with them again for sure.', 4, 9, 30, NULL, 'published', '2025-02-20 08:24:05', '2026-03-06 08:24:05'),
(49, 'Decent car for the price. The interior space was adequate one cup holder being a bit loose but overall acceptable for conference. Would consider again if needed.', 3, 21, 23, NULL, 'published', '2025-10-18 08:24:05', '2026-03-06 08:24:05'),
(50, 'Had some issues with this rental. The air conditioning was barely working making the trip uncomfortable in hot weather The price was reasonable but the quality didn\'t match.', 2, 31, 61, NULL, 'published', '2025-06-13 08:24:05', '2026-03-06 08:24:05'),
(51, 'Really enjoyed driving this car. Plenty of legroom for everyone The engine performed well on both city and highway Impressed all our passengers Only minor complaint is the return process was slightly confusing. Highly recommend!', 4, 25, 21, NULL, 'published', '2024-04-16 08:24:05', '2026-03-06 08:24:05'),
(52, 'Outstanding rental experience! Whisper-quiet cabin and smooth ride The car was immaculate in every detail and was remarkably quiet and refined. They made everything so easy and stress-free Exceeded all expectations. Will definitely be back!', 5, 14, 51, NULL, 'published', '2025-10-16 08:24:05', '2026-03-06 08:24:05'),
(53, 'Very pleased with this rental. Premium feel despite being a rental Made the rental process seamless Excellent option for families Just a small issue with the owner\'s manual being missing but nothing major.', 4, 13, 17, NULL, 'published', '2025-07-02 08:24:05', '2026-03-06 08:24:05'),
(54, 'Great rental experience! Excellent fuel economy The car was running smoothly and handled beautifully on both city and highway. Minor scuff on the bumper but overall very satisfied. Would definitely rent again.', 4, 5, 60, NULL, 'published', '2025-02-15 08:24:05', '2026-03-06 08:24:05'),
(55, 'Very disappointed. Several features weren\'t working properly The air conditioning was not functioning properly and it felt unstable at highway speeds. Not worth the money at all.', 1, 6, 42, NULL, 'published', '2025-07-13 08:24:05', '2026-03-06 08:24:05'),
(56, 'Perfect car for our conference! Every passenger commented on the amazing comfort The performance was absolutely flawless The customer service was world-class Cannot fault anything about this rental. 10/10 would recommend!', 5, 10, 6, NULL, 'published', '2024-10-04 08:24:05', '2026-03-06 08:24:05'),
(57, 'Mixed feelings about this rental. the technology features were helpful but some features weren\'t working perfectly. Does what it\'s supposed to do Fair value for money.', 3, 29, 60, NULL, 'published', '2025-04-04 08:24:05', '2026-03-06 08:24:05'),
(58, 'Not great but manageable. The interior was showing its age The car started reliably Would look for other options next time.', 2, 25, 81, NULL, 'published', '2024-05-14 08:24:05', '2026-03-06 08:24:05'),
(59, 'Standard rental car. Reliable for basic driving Could use a bit more trunk space Meets expectations without exceeding them Met basic expectations.', 3, 18, 70, NULL, 'published', '2024-11-26 08:24:05', '2026-03-06 08:24:05'),
(60, 'Mixed feelings about this rental. the technology features were helpful but the customer service could be improved. Reasonable option if you\'re not picky Fair value for money.', 3, 9, 77, NULL, 'published', '2025-07-11 08:24:05', '2026-03-06 08:24:05'),
(61, 'Very pleased with this rental. Premium feel despite being a rental Excellent customer service Perfect for business or leisure travel Just a small issue with the pickup location being slightly hard to find but nothing major.', 4, 18, 69, NULL, 'published', '2025-10-03 08:24:05', '2026-03-06 08:24:05'),
(62, 'Mixed feelings about this rental. the comfort level was quite good but the car showed some wear and tear. Gets you from point A to point B Fair value for money.', 3, 21, 84, NULL, 'published', '2025-06-11 08:24:05', '2026-03-06 08:24:05'),
(63, 'Average rental experience. The vehicle met basic expectations Minor scuff on the bumper but the fuel efficiency was decent. Nothing special but gets the job done.', 3, 21, 97, NULL, 'published', '2025-09-25 08:24:05', '2026-03-06 08:24:05'),
(64, 'Very pleased with this rental. Attention to detail was evident throughout Quick and easy pickup process Excellent option for families Just a small issue with the owner\'s manual being missing but nothing major.', 4, 16, 23, NULL, 'published', '2024-07-26 08:24:05', '2026-03-06 08:24:05'),
(65, 'Outstanding rental experience! The car was immaculate inside and out The car was immaculate in every detail and delivered outstanding fuel economy. They made everything so easy and stress-free Exceeded all expectations. Will definitely be back!', 5, 23, 81, NULL, 'published', '2024-03-11 08:24:05', '2026-03-06 08:24:05'),
(66, 'nice car', 5, 37, 3, 83, 'published', '2026-04-09 14:25:53', '2026-04-09 14:25:53'),
(67, 'Good', 3, 36, 43, NULL, 'published', '2026-04-22 10:52:55', '2026-04-22 10:52:55');

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

--
-- Table structure for table `cr_car_tag`
--

CREATE TABLE `cr_car_tag` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `car_id` bigint(20) UNSIGNED NOT NULL,
  `tag_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_car_transmissions`
--

CREATE TABLE `cr_car_transmissions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'pending',
  `order` tinyint(4) NOT NULL 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 `cr_car_transmissions`
--

INSERT INTO `cr_car_transmissions` (`id`, `name`, `icon`, `status`, `order`, `created_at`, `updated_at`) VALUES
(1, 'Automatic', 'icons/car-transmission-auto.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(2, 'Manual', 'icons/car-transmission-manual.png', 'published', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48');

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

--
-- Table structure for table `cr_car_transmissions_translations`
--

CREATE TABLE `cr_car_transmissions_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_car_transmissions_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_car_trip_discounts`
--

CREATE TABLE `cr_car_trip_discounts` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `car_id` bigint(20) UNSIGNED NOT NULL,
  `car_pricing_policy_id` bigint(20) UNSIGNED NOT NULL,
  `min_days` int(10) UNSIGNED NOT NULL DEFAULT 1,
  `max_days` int(10) UNSIGNED DEFAULT NULL,
  `discount_type` varchar(20) NOT NULL,
  `discount_value` decimal(15,2) NOT NULL DEFAULT 0.00,
  `priority` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `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;

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

--
-- Table structure for table `cr_car_types`
--

CREATE TABLE `cr_car_types` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'pending',
  `order` tinyint(4) NOT NULL 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 `cr_car_types`
--

INSERT INTO `cr_car_types` (`id`, `name`, `image`, `icon`, `status`, `order`, `created_at`, `updated_at`) VALUES
(1, 'SUV', 'car-types/suv.jpg', 'ti ti-car-suv', 'published', 0, '2026-03-06 08:22:48', '2026-03-19 09:12:19'),
(2, 'Hatchback', 'car-types/hatchback.jpg', 'ti ti-car', 'published', 0, '2026-03-06 08:22:48', '2026-03-19 09:12:09'),
(3, 'Sedan', 'car-types/sedan.jpg', 'ti ti-car', 'published', 0, '2026-03-06 08:22:48', '2026-03-19 09:11:55'),
(4, 'Crossover', 'car-types/cressover.jpg', 'ti ti-car-4wd', 'published', 0, '2026-03-06 08:22:48', '2026-03-19 09:11:45'),
(5, 'Minivan', 'car-types/minivan.jpg', 'ti ti-caravan', 'published', 0, '2026-03-06 08:22:48', '2026-03-19 09:11:31'),
(6, 'Coupe', 'car-types/coupe.jpg', 'ti ti-car', 'published', 0, '2026-03-06 08:22:48', '2026-03-19 09:11:17'),
(7, 'Sport Cars', 'car-types/sports-car.jpg', 'ti ti-car-turbine', 'published', 0, '2026-03-06 08:22:48', '2026-03-19 09:11:05'),
(8, 'Pickup Truck', 'car-types/pickup.jpg', 'ti ti-truck', 'published', 0, '2026-03-06 08:22:48', '2026-03-19 09:10:51');

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

--
-- Table structure for table `cr_car_types_translations`
--

CREATE TABLE `cr_car_types_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_car_types_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_car_views`
--

CREATE TABLE `cr_car_views` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `car_id` bigint(20) UNSIGNED NOT NULL,
  `views` int(11) NOT NULL DEFAULT 1,
  `date` date NOT NULL DEFAULT '2026-03-06'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_category_commissions`
--

CREATE TABLE `cr_category_commissions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `car_category_id` bigint(20) UNSIGNED NOT NULL,
  `commission_percentage` decimal(10,2) NOT NULL DEFAULT 0.00,
  `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 `cr_coupons`
--

CREATE TABLE `cr_coupons` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `code` varchar(20) NOT NULL,
  `type` varchar(60) NOT NULL,
  `value` double NOT NULL,
  `is_unlimited_expires` tinyint(4) NOT NULL DEFAULT 0,
  `expires_at` datetime DEFAULT NULL,
  `is_unlimited` tinyint(4) NOT NULL DEFAULT 1,
  `limit` int(11) NOT NULL DEFAULT 0,
  `used` int(11) NOT NULL 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 `cr_coupons`
--

INSERT INTO `cr_coupons` (`id`, `code`, `type`, `value`, `is_unlimited_expires`, `expires_at`, `is_unlimited`, `limit`, `used`, `created_at`, `updated_at`) VALUES
(1, 'RptEDJqgUNE6', 'money', 8, 1, NULL, 1, 0, 76, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(2, 'nQ4JhVRYJsJi', 'money', 5, 0, '2026-04-06 15:22:49', 0, 181, 31, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(3, 'DOu3ZZ8DY2EH', 'money', 8, 0, '2026-05-06 15:22:49', 1, 0, 63, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(4, '59EIwyu0P952', 'percentage', 14.86, 1, NULL, 1, 0, 92, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(5, '82tXdAYLSE4M', 'percentage', 39.02, 1, NULL, 0, 638, 114, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(6, 'jFkxwLXaf7Xg', 'percentage', 36.47, 0, '2026-06-06 15:22:49', 1, 0, 36, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(7, '5UMmOdVQke81', 'money', 4, 0, '2026-07-06 15:22:49', 1, 0, 87, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(8, 'dsRGyiVQcNEB', 'money', 2, 1, NULL, 0, 640, 24, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(9, 'Izz4E48GkMb2', 'money', 4, 1, NULL, 1, 0, 130, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(10, 'yiU6MXTjgNBj', 'money', 0, 1, NULL, 1, 0, 70, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(11, 'INYDmMBxrx9Z', 'money', 1, 1, NULL, 1, 0, 17, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(12, 'MjMYCo6b1an1', 'money', 7, 0, '2026-08-06 15:22:49', 1, 0, 97, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(13, 'z1nRmQe6kMd9', 'percentage', 80.64, 1, NULL, 1, 0, 55, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(14, 'z0vRoBd3l5p2', 'percentage', 30.63, 0, '2026-09-06 15:22:49', 1, 0, 87, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(15, 'n630Opk11nSO', 'percentage', 62.46, 1, NULL, 0, 975, 77, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(16, 'GaXSBRS3xyuo', 'percentage', 90.99, 0, '2026-10-06 15:22:49', 1, 0, 15, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(17, 'hok1gBIMH5HA', 'percentage', 29.67, 1, NULL, 0, 888, 95, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(18, 'deS9bbrYajW0', 'percentage', 48.61, 0, '2026-11-06 15:22:49', 0, 131, 17, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(19, 'WDEp5bJBddJl', 'percentage', 55.11, 1, NULL, 0, 570, 36, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(20, 'N6P4VdLwCD38', 'money', 0, 0, '2026-12-06 15:22:49', 1, 0, 108, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(21, '6zrjCu1xHqWr', 'percentage', 69.57, 1, NULL, 1, 0, 47, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(22, 'R6lxyDL6VZYs', 'money', 6, 1, NULL, 0, 541, 17, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(23, 'd06fEdlGyCmE', 'percentage', 94.03, 0, '2027-01-06 15:22:49', 0, 144, 41, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(24, 'gWOn2FEcucaq', 'percentage', 47.96, 1, NULL, 0, 231, 65, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(25, 'pfGFLcsxQdJe', 'money', 3, 1, NULL, 1, 0, 79, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(26, '5WXQiLM7Dk4u', 'percentage', 83.84, 0, '2027-02-06 15:22:49', 0, 381, 122, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(27, 'o8k0QvAVbkPX', 'money', 0, 1, NULL, 0, 336, 121, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(28, 'BZQfq7OGAinM', 'money', 4, 1, NULL, 0, 513, 23, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(29, '7RedCJUk2Z7H', 'percentage', 59.36, 1, NULL, 1, 0, 94, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(30, 'SRDHAKVC1Tgh', 'money', 3, 1, NULL, 0, 357, 35, '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(31, 'm0a4OuAJ6ssb', 'percentage', 13.89, 1, NULL, 0, 152, 76, '2026-03-06 08:22:49', '2026-03-06 08:22:49');

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

--
-- Table structure for table `cr_currencies`
--

CREATE TABLE `cr_currencies` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(60) NOT NULL,
  `symbol` varchar(10) NOT NULL,
  `is_prefix_symbol` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `decimals` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `order` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `is_default` tinyint(4) NOT NULL DEFAULT 0,
  `exchange_rate` double NOT NULL DEFAULT 1,
  `number_format_style` varchar(20) NOT NULL DEFAULT 'western',
  `space_between_price_and_currency` tinyint(3) UNSIGNED NOT NULL 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 `cr_currencies`
--

INSERT INTO `cr_currencies` (`id`, `title`, `symbol`, `is_prefix_symbol`, `decimals`, `order`, `is_default`, `exchange_rate`, `number_format_style`, `space_between_price_and_currency`, `created_at`, `updated_at`) VALUES
(1, 'USD', '$', 1, 0, 0, 1, 1, 'western', 0, '2026-03-06 08:22:48', '2026-05-21 05:38:37'),
(2, 'EUR', '€', 0, 0, 1, 0, 0.84, 'western', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(3, 'VND', '₫', 0, 0, 2, 0, 23203, 'western', 0, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(4, 'NGN', '₦', 1, 0, 3, 0, 895.52, 'western', 0, '2026-03-06 08:22:48', '2026-05-21 05:19:06'),
(5, 'INR', '₹', 1, 0, 4, 0, 96.21, 'western', 0, '2026-05-21 05:19:06', '2026-05-21 05:38:37');

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

--
-- Table structure for table `cr_customers`
--

CREATE TABLE `cr_customers` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sessions_invalidated_at` timestamp NULL DEFAULT NULL,
  `avatar` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `whatsapp` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `status` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activated',
  `block_reason` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `confirmed_at` datetime DEFAULT NULL,
  `email_verify_token` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `is_vendor` tinyint(1) NOT NULL DEFAULT 0,
  `is_verified` tinyint(1) NOT NULL DEFAULT 0,
  `kyc_status` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'not_submitted',
  `kyc_level` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `kyc_last_verified_at` datetime DEFAULT NULL,
  `kyc_current_verification_id` bigint(20) UNSIGNED DEFAULT NULL,
  `verified_at` timestamp NULL DEFAULT NULL,
  `verified_by` bigint(20) UNSIGNED DEFAULT NULL,
  `verification_note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `vendor_verified_at` datetime DEFAULT NULL,
  `balance` decimal(15,2) NOT NULL DEFAULT 0.00,
  `bank_info` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `payout_payment_method` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `avg_response_hours` decimal(8,2) NOT NULL DEFAULT 24.00
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `cr_customers`
--

INSERT INTO `cr_customers` (`id`, `name`, `email`, `password`, `sessions_invalidated_at`, `avatar`, `phone`, `whatsapp`, `dob`, `status`, `block_reason`, `remember_token`, `confirmed_at`, `email_verify_token`, `created_at`, `updated_at`, `is_vendor`, `is_verified`, `kyc_status`, `kyc_level`, `kyc_last_verified_at`, `kyc_current_verification_id`, `verified_at`, `verified_by`, `verification_note`, `vendor_verified_at`, `balance`, `bank_info`, `payout_payment_method`, `avg_response_hours`) VALUES
(1, 'Elite Auto Group', 'dealer@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', '2026-06-11 09:05:24', 'customers/1/attachment-142602548.png', '+17356074636', '+17356074636', NULL, 'activated', NULL, '0n1pSN4MulytaoxtTU8aaQykENrr9fgkA7bQxkNoGmenVIL1yXZ6h3OhIXsU', '2026-03-06 15:22:37', NULL, '2026-03-06 08:22:48', '2026-06-11 09:05:24', 1, 1, 'verified', 'driver_verified', '2026-06-09 11:16:52', 6, '2026-06-09 05:46:52', 1, NULL, NULL, 9996.00, '{\"paypal_id\":\"paypal@gmail.com\"}', 'paypal', 24.00),
(2, 'Premier Motors', 'dealer1@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/2/channels4-profile.jpg', '+17694320194', '+17694320194', NULL, 'activated', NULL, 'c5kdvxswKrkICMDauUSKGspayV1PJsKMnt4x0jhZMlPfm2jxDLPEGExVXpRd', '2026-03-06 15:22:37', NULL, '2026-03-06 08:22:48', '2026-05-11 12:59:32', 1, 1, 'not_submitted', NULL, NULL, NULL, '2026-02-04 08:22:37', 1, 'Certified dealer', '2025-09-10 15:22:37', 187.20, NULL, NULL, 24.00),
(3, 'Luxury Car Rentals', 'dealer2@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/3/minimalistic-rental-car-logo-with-car-outline-vector.jpg', '+15103477546', '+15103477546', NULL, 'activated', NULL, 'GM82Hw67Akkr30shKFg8jy6auiEajwGAvMYv15Wfm1kbIuNn4LgunR5BH8Nc', '2026-03-06 15:22:38', NULL, '2026-03-06 08:22:48', '2026-05-11 13:04:24', 1, 1, 'not_submitted', NULL, NULL, NULL, '2025-11-29 08:22:38', 1, 'Verified dealership', '2025-08-10 15:22:38', 0.00, NULL, NULL, 24.00),
(4, 'City Drive Solutions', 'dealer3@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/4/emov8xlc.jpg', '+19622817969', '+19622817969', NULL, 'activated', NULL, '8NmvZIy4jrV6FWq5FDgtHOedSUeG0LFKf2t6LyVow8YuvJ518wpEayRlsgzl', '2026-03-06 15:22:38', NULL, '2026-03-06 08:22:48', '2026-05-11 13:03:44', 1, 1, 'not_submitted', NULL, NULL, NULL, '2026-01-04 08:22:38', 1, 'Trusted automotive partner', '2026-02-03 15:22:38', 448.00, NULL, NULL, 24.00),
(5, 'Express Auto Dealers', 'dealer4@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/5/images-2.jpg', '+19022953281', '+19022953281', NULL, 'activated', NULL, 's2oV7c4h42Ao0U3sNprR4zjTrCnZofPWC1w0svdJlzQUMIqX8CB0VYUCmW1t', '2026-03-06 15:22:38', NULL, '2026-03-06 08:22:48', '2026-05-11 13:06:59', 1, 1, 'not_submitted', NULL, NULL, NULL, '2025-11-12 08:22:38', 1, 'Premium vendor account', '2026-02-03 15:22:38', 356.00, NULL, NULL, 24.00),
(6, 'Summit Car Company', 'dealer5@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/6/images-1.png', '+13056066098', '+13056066098', NULL, 'activated', NULL, 'nFswNmkMNQ43FwOAA9GI5dAUfBtuoDxbIYP9CT3IXdZr9yMyZeAZcnqKblZA', '2026-03-06 15:22:39', NULL, '2026-03-06 08:22:48', '2026-05-11 13:08:52', 1, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 468.00, NULL, NULL, 24.00),
(7, 'Horizon Automotive', 'dealer6@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/7/logo-horizon-01.jpg', '+14143888395', '+14143888395', NULL, 'activated', NULL, 'cYMN0E4ISCONt409mowg4zWZch6CRhg16Na1oz3W6JIYLTeUiVp8clVG1WEU', '2026-03-06 15:22:39', NULL, '2026-03-06 08:22:48', '2026-05-11 13:11:01', 1, 1, 'not_submitted', NULL, NULL, NULL, '2025-11-25 08:22:39', 1, 'Verified dealership', '2025-06-10 15:22:39', 291.20, NULL, NULL, 24.00),
(8, 'Prestige Vehicles', 'dealer7@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/8/prestigemotorsca-logo.jpg', '+17790713850', '+17790713850', NULL, 'activated', NULL, 'b6cPQ83WsrlgydAiTcXr8ZzFgN0N4ZFF882WyUnDyEkwmmD19yB9rfzwKsSb', '2026-03-06 15:22:39', NULL, '2026-03-06 08:22:48', '2026-05-11 13:12:54', 1, 1, 'not_submitted', NULL, NULL, NULL, '2025-12-05 08:22:39', 1, 'Verified dealership', '2025-10-26 15:22:39', 0.00, NULL, NULL, 24.00),
(9, 'Metro Car Center', 'dealer8@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/9/unnamed.png', '+14356065607', '+14356065607', NULL, 'activated', NULL, 'mkqv3bWpUOT3nyl209JqzpNTOsE28hVgiRZh3Rmlqlxoq8J8LqXZFQ8iW3As', '2026-03-06 15:22:39', NULL, '2026-03-06 08:22:48', '2026-05-11 13:14:15', 1, 1, 'not_submitted', NULL, NULL, NULL, '2025-11-16 08:22:39', 1, 'Verified dealership', '2025-03-26 15:22:39', 0.00, NULL, NULL, 24.00),
(10, 'Global Auto Partners', 'dealer9@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/10/images-2.png', '+14744923869', '+14744923869', NULL, 'activated', NULL, '4BF8L6JpYhTro7Ao5Bj5GAwI8MqQPZSTFMgQIhv1lpR0W5EtsBIDoBEuK3Zc', '2026-03-06 15:22:40', NULL, '2026-03-06 08:22:48', '2026-05-11 13:17:26', 1, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 582.80, NULL, NULL, 24.00),
(11, 'Royal Motors Group', 'dealer10@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/11/images-3.jpg', '+14709060548', '+14709060548', NULL, 'activated', NULL, 'YO2AAYlsHD210RB1xdwRN3aMjMxmYQfnPPZms45n7qVgfOEB5rsyu6xAk9j4', '2026-03-06 15:22:40', NULL, '2026-03-06 08:22:48', '2026-05-11 13:18:49', 1, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, 24.00),
(12, 'Diamond Car Dealers', 'dealer11@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/12/attachment-85657378.png', '+15247453179', '+15247453179', NULL, 'activated', NULL, 'wLQEfU7FlrOsbmuOetcczt3PK6L7FaaKC5A8DqoePngMTuKQZz6FznSZuY48', '2026-03-06 15:22:40', NULL, '2026-03-06 08:22:48', '2026-05-11 13:19:46', 1, 1, 'not_submitted', NULL, NULL, NULL, '2025-10-22 08:22:40', 1, 'Premium vendor account', '2025-06-26 15:22:40', 422.40, NULL, NULL, 24.00),
(13, 'Pacific Auto Sales', 'dealer12@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/13/images-4.jpg', '+18851778470', '+18851778470', NULL, 'activated', NULL, 'JTzoS9W8rqZjtaYCS1dKktTEWUBmWjzQQeEu2wzWzlO0ox2WPlmYzCpSlYZ0', '2026-03-06 15:22:41', NULL, '2026-03-06 08:22:48', '2026-05-11 13:24:36', 1, 1, 'not_submitted', NULL, NULL, NULL, '2026-02-13 08:22:41', 1, 'Authorized car dealer', '2026-02-08 15:22:41', 1322.40, NULL, NULL, 24.00),
(14, 'Mountain View Motors', 'dealer13@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/14/488f3a62031f3a7aeb4f07777dd1fd01.jpg', '+18233719242', '+18233719242', NULL, 'activated', NULL, 'Fzrd11m849TlI961n9hiIbKtz0jHYWnCI6hcFEoFGOXo3ypSlQx8syv9Pjov', '2026-03-06 15:22:41', NULL, '2026-03-06 08:22:48', '2026-05-11 13:33:01', 1, 1, 'not_submitted', NULL, NULL, NULL, '2025-11-20 08:22:41', 1, 'Premium vendor account', '2025-03-13 15:22:41', 260.80, NULL, NULL, 24.00),
(15, 'Coastal Car Company', 'dealer14@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/15/images-5.jpg', '+19580162218', '+19580162218', NULL, 'activated', NULL, 'BQgJ8FgFe5OEhSNRmhEVmJRiTsgyulG9Bf6iOqcxnC4dSozfdcS69G7qBVl4', '2026-03-06 15:22:41', NULL, '2026-03-06 08:22:48', '2026-05-11 13:33:52', 1, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, 24.00),
(16, 'Central Auto Hub', 'dealer15@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/16/432085-14455703-2670575-a39f71ad-image.jpg', '+17389590806', '+17389590806', NULL, 'activated', NULL, 'LAYcXAmADkpQl4tTP9n4cWHFIulHy9d1HaHVrG5Kh9YQKsVQCCAA3xIzeEdS', '2026-03-06 15:22:42', NULL, '2026-03-06 08:22:48', '2026-05-11 13:35:10', 1, 1, 'not_submitted', NULL, NULL, NULL, '2026-02-02 08:22:42', 1, 'Trusted automotive partner', '2025-12-20 15:22:42', 376.80, NULL, NULL, 24.00),
(17, 'Victory Automotive', 'dealer16@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/17/348s.png', '+12777584777', '+12777584777', NULL, 'activated', NULL, 'NThNWNlVB09BxtWdbdsVLJiJ2EfzC9WEY8UbfRLMMTE7H3T3dygOsNsYpTQj', '2026-03-06 15:22:42', NULL, '2026-03-06 08:22:48', '2026-05-11 13:36:07', 1, 1, 'not_submitted', NULL, NULL, NULL, '2025-12-04 08:22:42', 1, 'Verified dealership', '2025-12-09 15:22:42', 163.20, NULL, NULL, 24.00),
(18, 'Alliance Car Group', 'dealer17@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/18/alliance-d-o-o-logo.jpg', '+16732283751', '+16732283751', NULL, 'activated', NULL, 'H0fz2FibF63ihw988DrV0muwIrzwWOHnHS4fYIwH6m5g29qzwOIzo5Ye4bUA', '2026-03-06 15:22:42', NULL, '2026-03-06 08:22:48', '2026-05-11 13:37:16', 1, 1, 'not_submitted', NULL, NULL, NULL, '2025-12-03 08:22:42', 1, 'Certified dealer', '2026-02-07 15:22:42', 145.44, NULL, NULL, 24.00),
(19, 'Phoenix Motors', 'dealer18@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/19/images-6.jpg', '+19544279193', '+19544279193', NULL, 'activated', NULL, 'klsdGEEKK8PdoUPOnEVR2THlBdg8VaNIBzZKRi20Sr8ze7P8wzUR1yhl9qAY', '2026-03-06 15:22:43', NULL, '2026-03-06 08:22:48', '2026-05-11 13:38:00', 1, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, 24.00),
(20, 'Sterling Auto Sales', 'dealer19@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/20/sterling-automotive-group-logo.jpg', '+19350128317', '+19350128317', NULL, 'activated', NULL, 'gaKUvoaM4GlNvZGZUSvw4R5LRElK2046Arjw3JBc0V4VreTOW0bgDTqQ7l5l', '2026-03-06 15:22:43', NULL, '2026-03-06 08:22:48', '2026-05-11 13:38:40', 1, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 356.00, NULL, NULL, 24.00),
(21, 'John Smith', 'john.smith@example.com', '$2y$12$N0WuXu0MUE94AJCx64r2NO3ZWKyAiyveNc0soarmZslmcg0Wyi.Zu', NULL, 'customers/1.jpg', '+16104062225', '+16104062225', NULL, 'activated', NULL, NULL, '2026-03-06 15:22:43', NULL, '2026-03-06 08:22:48', '2026-03-06 08:22:48', 0, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, 24.00),
(22, 'Emily Johnson', 'emily.johnson@example.com', '$2y$12$7/RK8.4.z2eEX4T2pdxvD.rxcM4wxeBjwDisIj9QKUBsuGy.FABaW', NULL, 'customers/2.jpg', '+18408163667', '+18408163667', NULL, 'activated', NULL, NULL, '2026-03-06 15:22:44', NULL, '2026-03-06 08:22:48', '2026-03-06 08:22:48', 0, 1, 'not_submitted', NULL, NULL, NULL, '2026-01-25 08:22:44', 1, 'Verified through government ID', NULL, 0.00, NULL, NULL, 24.00),
(23, 'Michael Brown', 'michael.brown@example.com', '$2y$12$wImNMZdcnRc3k..f2qNzhuC6JWuWGgFEyPk7be9wFye5Z/c9BMa8a', NULL, 'customers/3.jpg', '+13650704304', '+13650704304', NULL, 'activated', NULL, NULL, '2026-03-06 15:22:44', NULL, '2026-03-06 08:22:48', '2026-03-06 08:22:48', 0, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, 24.00),
(24, 'Sarah Davis', 'sarah.davis@example.com', '$2y$12$qQSXXSpGd.ZRjOlrIZ5/sODsr2nbe24uQKeUgkibKaC.aBnHftXyy', NULL, 'customers/4.jpg', '+16577789305', '+16577789305', NULL, 'activated', NULL, NULL, '2026-03-06 15:22:44', NULL, '2026-03-06 08:22:48', '2026-03-06 08:22:48', 0, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, 24.00),
(25, 'David Wilson', 'david.wilson@example.com', '$2y$12$YbBuunImy/rIQQRMj7Ty0O92DfRRbLwAgrmf.R9phZ9iIMsP8aJX6', NULL, 'customers/5.jpg', '+19415120048', '+19415120048', NULL, 'activated', NULL, NULL, '2026-03-06 15:22:44', NULL, '2026-03-06 08:22:48', '2026-03-06 08:22:48', 0, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, 24.00),
(26, 'Jessica Martinez', 'jessica.martinez@example.com', '$2y$12$7teyhIxBoXictui90W7.N.ETyD.iq/KwAxR9D2kyyj6qB7rF/LNyi', NULL, 'customers/6.jpg', '+13883162240', '+13883162240', NULL, 'activated', NULL, NULL, '2026-03-06 15:22:45', NULL, '2026-03-06 08:22:48', '2026-03-06 08:22:48', 0, 1, 'not_submitted', NULL, NULL, NULL, '2025-11-28 08:22:45', 1, 'Verified customer - regular client', NULL, 0.00, NULL, NULL, 24.00),
(27, 'Christopher Anderson', 'christopher.anderson@example.com', '$2y$12$a7Vu3A9y7rhnmYSxMHIqve60//Fr/MOgkh.MuRIwDd..RIeZOrOba', NULL, 'customers/7.jpg', '+14483605445', '+14483605445', NULL, 'activated', NULL, NULL, '2026-03-06 15:22:45', NULL, '2026-03-06 08:22:48', '2026-03-06 08:22:48', 0, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, 24.00),
(28, 'Amanda Taylor', 'amanda.taylor@example.com', '$2y$12$eRK94RBj4BXstYRWi2v92uS95AJ5kT2o.2cS.lQhMomZJqIY9SMcq', NULL, 'customers/8.jpg', '+14335013311', '+14335013311', NULL, 'activated', NULL, NULL, '2026-03-06 15:22:45', NULL, '2026-03-06 08:22:48', '2026-03-06 08:22:48', 0, 1, 'not_submitted', NULL, NULL, NULL, '2026-02-21 08:22:45', 1, 'Verified customer - regular client', NULL, 0.00, NULL, NULL, 24.00),
(29, 'Daniel Thomas', 'daniel.thomas@example.com', '$2y$12$stvD0.BGay0ZDwGkzPyqbuMaLLY40fhUkBtrEPa3QsxDuo0A6mqTq', NULL, 'customers/9.jpg', '+18976335589', '+18976335589', NULL, 'activated', NULL, NULL, '2026-03-06 15:22:46', NULL, '2026-03-06 08:22:48', '2026-03-06 08:22:48', 0, 1, 'not_submitted', NULL, NULL, NULL, '2025-11-21 08:22:46', 1, 'Identity confirmed', NULL, 0.00, NULL, NULL, 24.00),
(30, 'Ashley Garcia', 'ashley.garcia@example.com', '$2y$12$ecvMBEuFoyXbGuf71HQUIe8cA2PHNfsjcZq5udKWmywoF1MdkW4Aa', NULL, 'customers/10.jpg', '+13102783883', '+13102783883', NULL, 'activated', NULL, NULL, '2026-03-06 15:22:46', NULL, '2026-03-06 08:22:48', '2026-03-06 08:22:48', 0, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, 24.00),
(31, 'Demo Customer', 'customer@mxcar.com', '$2y$12$uy7vh1.gUwY.KmD268O5iuIsUUwulkRIDvAxXDubACxX/Cp1eUCG.', NULL, 'customers/1.jpg', '+12725079138', '+12725079138', NULL, 'activated', NULL, NULL, '2026-03-06 15:22:47', NULL, '2026-03-06 08:22:48', '2026-03-06 08:22:48', 0, 0, 'not_submitted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, 24.00),
(32, 'Fast Car', 'dealer20@demo.com', '$2y$12$iJL4h2e9bpf6f6GkTseRl.u0ZTidEkE6Y9jHpnd.T9wdg3.ljOGfK', NULL, 'customers/32/modern-blue-fast-car-cartoon-logo-free-vector.jpg', '+15952911621', '+15952911621', NULL, 'activated', NULL, 'Yf3pdJu8dZnXAW4G9m7Rqht02bW1HwVnlKzLnsLU6zPg85iCp8TtUEdxbBdo', '2026-03-06 15:22:48', NULL, '2026-03-06 08:22:48', '2026-05-11 15:54:20', 1, 1, 'not_submitted', NULL, NULL, NULL, '2026-01-19 08:22:48', 1, 'Verified vendor account', '2026-02-14 15:22:48', 0.00, NULL, NULL, 24.00),
(36, 'User Demo', 'user@demo.com', '$2y$12$VaNsdNWIuIwwVHYK3QUGg.szrREDt4duih.CAsaNQ8YdyEl30V4ki', '2026-06-11 09:05:36', 'customers\\36/profile-1.jpg', '+918302786761', NULL, '1999-01-17', 'activated', NULL, '23XvXoheI6wN82yvP7sigNk2OQyItxavpCnbvScdxRhFcaIV12Dxou5NTxYg', '2026-04-06 04:49:55', NULL, '2026-04-06 04:49:55', '2026-06-11 09:05:36', 0, 1, 'verified', 'driver_verified', '2026-04-22 10:49:38', 2, '2026-04-22 10:49:38', NULL, NULL, NULL, 0.00, NULL, NULL, 24.00),
(37, 'customer', 'customer@gmail.com', '$2y$12$epBt1NrwE3IhtQhD26YbWOZw4YbZFzr675i3cSAI9Rqg9N9bPHI8a', NULL, NULL, '+919981207899', '', NULL, 'activated', NULL, 'fuL281RDE2zL1fVXXyTkjsDechV8WpmRNbDbymGztvl918dU0qn4Ct0Blebl', '2026-04-09 14:20:10', NULL, '2026-04-09 14:20:10', '2026-04-22 14:06:34', 0, 1, 'verified', 'driver_verified', '2026-04-22 14:06:25', 3, '2026-04-22 14:06:25', 1, NULL, NULL, 0.00, NULL, NULL, 24.00),
(38, 'Test User', 'test@demo.com', '$2y$12$sphsQIrQtsVvsgiHevNh/OPIan6xclsJQXpWREJQ7Y42tpvzHfQua', NULL, NULL, '+918302786768', NULL, NULL, 'activated', NULL, 'nvW8WE9YqK7ZmCTQtdZLA5BKpvxAnAmubWUezMF4WE1v5CkORrXEmdnrYnzV', '2026-04-20 13:53:46', NULL, '2026-04-20 13:53:46', '2026-04-20 13:57:03', 0, 1, 'verified', 'driver_verified', '2026-04-20 13:57:03', 1, '2026-04-20 13:57:03', NULL, NULL, NULL, 0.00, NULL, NULL, 24.00),
(39, 'User Demo 2', 'user2@demo.com', '$2y$12$h4lWl0hpWTAtirFeGiZk1unTQfpfnJPd4fyj0Fic5cgFmQduyq.SO', NULL, NULL, '+919999996666', NULL, NULL, 'activated', NULL, NULL, '2026-04-29 16:51:56', NULL, '2026-04-29 11:21:56', '2026-04-29 11:22:37', 0, 0, 'pending', NULL, NULL, 4, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, 24.00);

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

--
-- Table structure for table `cr_customer_kyc_documents`
--

CREATE TABLE `cr_customer_kyc_documents` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `verification_id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `document_type` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `file_path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `checksum` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `cr_customer_kyc_documents`
--

INSERT INTO `cr_customer_kyc_documents` (`id`, `verification_id`, `customer_id`, `document_type`, `file_path`, `checksum`, `metadata`, `created_at`, `updated_at`) VALUES
(1, 1, 38, 'license_front', 'kyc/38/screencapture-127-0-0-1-8000-2026-04-17-21-52-09.png', '1debdad63f4894849d3d23516ffb34b3bced7a436e7fc1ba7effd628354a864d', '{\"original_name\":\"screencapture-127-0-0-1-8000-2026-04-17-21_52_09.png\",\"mime_type\":\"image\\/png\",\"size\":3313078}', '2026-04-20 13:56:40', '2026-04-20 13:56:40'),
(2, 1, 38, 'license_back', 'kyc/38/screencapture-127-0-0-1-8000-2026-04-17-21-52-09-1.png', '1debdad63f4894849d3d23516ffb34b3bced7a436e7fc1ba7effd628354a864d', '{\"original_name\":\"screencapture-127-0-0-1-8000-2026-04-17-21_52_09.png\",\"mime_type\":\"image\\/png\",\"size\":3313078}', '2026-04-20 13:56:43', '2026-04-20 13:56:43'),
(3, 1, 38, 'selfie', 'kyc/38/screencapture-127-0-0-1-8000-2026-04-17-21-52-09-2.png', '1debdad63f4894849d3d23516ffb34b3bced7a436e7fc1ba7effd628354a864d', '{\"original_name\":\"screencapture-127-0-0-1-8000-2026-04-17-21_52_09.png\",\"mime_type\":\"image\\/png\",\"size\":3313078}', '2026-04-20 13:56:46', '2026-04-20 13:56:46'),
(4, 2, 36, 'license_front', 'kyc/36/dermacian-hms-landing-page.png', 'd690083e01af9a342ab9b5702e59d798192bb06e5b30c5f2059a41576e8436d6', '{\"original_name\":\"Dermacian-HMS-Landing-Page.png\",\"mime_type\":\"image\\/png\",\"size\":4047259}', '2026-04-22 10:49:04', '2026-04-22 10:49:04'),
(5, 2, 36, 'license_back', 'kyc/36/freeboardfx-landing-page.png', '9438c2f1d94137199c7c5159d92c4a6f548cf0b1608408e9a3f6c0ada533827f', '{\"original_name\":\"freeboardfx-Landing-Page.png\",\"mime_type\":\"image\\/png\",\"size\":3141266}', '2026-04-22 10:49:06', '2026-04-22 10:49:06'),
(6, 2, 36, 'selfie', 'kyc/36/mydocpharma-admin-panel.png', '852ce7ebaf62ab0471a6b19869841a1fcc2f4b129d1de7ea5ceaff39811c3eb4', '{\"original_name\":\"MyDocpharma-Admin-Panel.png\",\"mime_type\":\"image\\/png\",\"size\":830550}', '2026-04-22 10:49:08', '2026-04-22 10:49:08'),
(7, 3, 37, 'license_front', 'kyc/37/voiture-logo-png-icone-de-la-papouasie-nouvelle-guinee-voiture-icone-de-voiture-png-et-vecteur-pour-.jpeg', '51562bd8f8cb3ec94203cc020509d5ababac1071b8c718a0c0e1204c7a61718b', '{\"original_name\":\"Voiture Logo PNG , Ic\\u00f4ne De La Papouasie   Nouvelle   Guin\\u00e9e, Voiture, Ic\\u00f4ne De Voiture PNG et vecteur pour t\\u00e9l\\u00e9chargement gratuit.jpeg\",\"mime_type\":\"image\\/jpeg\",\"size\":14301}', '2026-04-22 13:59:45', '2026-04-22 13:59:45'),
(8, 3, 37, 'license_back', 'kyc/37/thar3.jpg', '50ac9e56228bea31559692df6439d973a8595ad60c18ed1951b48bcdefafd814', '{\"original_name\":\"thar3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":259670}', '2026-04-22 13:59:47', '2026-04-22 13:59:47'),
(9, 3, 37, 'selfie', 'kyc/37/thar2.jpg', 'e52a106524cbc5450536ec25c971763290c0b8ba09a38a69e6e25d781ba2fc61', '{\"original_name\":\"thar2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":972265}', '2026-04-22 13:59:48', '2026-04-22 13:59:48'),
(10, 5, 1, 'license_front', 'kyc\\1/photo-1535713875002-d1d0cf377fde.jpg', '725093af02efaae358d3dfbb7feb269a9073ca9d01fdbd86892b5a328529b856', '{\"original_name\":\"photo-1535713875002-d1d0cf377fde.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":1090338}', '2026-06-09 05:42:21', '2026-06-09 05:42:21'),
(11, 5, 1, 'license_back', 'kyc\\1/photo-1535713875002-d1d0cf377fde-1.jpg', '725093af02efaae358d3dfbb7feb269a9073ca9d01fdbd86892b5a328529b856', '{\"original_name\":\"photo-1535713875002-d1d0cf377fde.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":1090338}', '2026-06-09 05:42:25', '2026-06-09 05:42:25'),
(12, 5, 1, 'selfie', 'kyc\\1/photo-1535713875002-d1d0cf377fde-2.jpg', '725093af02efaae358d3dfbb7feb269a9073ca9d01fdbd86892b5a328529b856', '{\"original_name\":\"photo-1535713875002-d1d0cf377fde.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":1090338}', '2026-06-09 05:42:29', '2026-06-09 05:42:29');

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

--
-- Table structure for table `cr_customer_kyc_verifications`
--

CREATE TABLE `cr_customer_kyc_verifications` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `status` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'draft',
  `provider` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'mock',
  `provider_reference` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ocr_confidence_score` decimal(8,4) DEFAULT NULL,
  `face_match_score` decimal(8,4) DEFAULT NULL,
  `risk_score` decimal(8,4) DEFAULT NULL,
  `license_valid` tinyint(1) NOT NULL DEFAULT 0,
  `license_expiry_date` date DEFAULT NULL,
  `license_number` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ocr_payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `provider_payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `decision_reasons` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `rejection_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reviewed_by` bigint(20) UNSIGNED DEFAULT NULL,
  `reviewed_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `cr_customer_kyc_verifications`
--

INSERT INTO `cr_customer_kyc_verifications` (`id`, `customer_id`, `status`, `provider`, `provider_reference`, `ocr_confidence_score`, `face_match_score`, `risk_score`, `license_valid`, `license_expiry_date`, `license_number`, `ocr_payload`, `provider_payload`, `decision_reasons`, `rejection_reason`, `reviewed_by`, `reviewed_at`, `created_at`, `updated_at`) VALUES
(1, 38, 'manual_review', 'stripe', 'vs_1TODAOPJeZhC0PUZCGWwdk01', 1.0000, NULL, NULL, 0, NULL, NULL, '{\"source\":\"stripe\",\"confidence_score\":1,\"extracted_fields\":{\"full_name\":\"Jenny Rosen\",\"issuing_country\":\"US\"}}', '{\"id\":\"vs_1TODAOPJeZhC0PUZCGWwdk01\",\"object\":\"identity.verification_session\",\"client_reference_id\":\"cr_kyc_1\",\"created\":1776673612,\"last_error\":null,\"last_verification_report\":null,\"livemode\":false,\"metadata\":{\"cr_customer_id\":\"38\",\"cr_verification_id\":\"1\"},\"options\":{\"document\":{\"allowed_types\":[\"driving_license\",\"id_card\",\"passport\"],\"require_matching_selfie\":true}},\"redaction\":null,\"related_customer\":null,\"related_customer_account\":null,\"status\":\"requires_input\",\"type\":\"document\",\"url\":\"https:\\/\\/verify.stripe.com\\/start\\/test_YWNjdF8xVEpxRFFQSmVaaEMwUFVaLF9VTXg0RWxCSjN4b2JmZ3ZpblpmcGw4RkVLQU1XbHhk0100JB2axArt\",\"stripe_identity\":true,\"stripe_identity_url\":\"https:\\/\\/verify.stripe.com\\/start\\/test_YWNjdF8xVEpxRFFQSmVaaEMwUFVaLF9VTXg0RWxCSjN4b2JmZ3ZpblpmcGw4RkVLQU1XbHhk0100JB2axArt\",\"last_webhook_at\":\"2026-04-20T13:57:03+05:30\",\"last_webhook_payload\":{\"stripe_identity\":{\"session_id\":\"vs_1TODAOPJeZhC0PUZCGWwdk01\",\"status\":\"verified\",\"report\":{\"document\":{\"status\":\"verified\"},\"selfie\":{\"status\":\"verified\"}}},\"ocr_payload\":{\"source\":\"stripe\",\"confidence_score\":1,\"extracted_fields\":{\"full_name\":\"Jenny Rosen\",\"issuing_country\":\"US\"}},\"event_id\":\"evt_1TODAYPJeZhC0PUZY6471noA\",\"event_created_at\":1776673622,\"event_type\":\"identity.verification_session.verified\"},\"last_event_created_at\":1776673622,\"last_event_id\":\"evt_1TODAYPJeZhC0PUZY6471noA\"}', '[\"stripe_verification_failed\"]', NULL, NULL, '2026-04-20 13:57:03', '2026-04-20 13:56:38', '2026-04-20 13:57:03'),
(2, 36, 'manual_review', 'stripe', 'vs_1TOtBzPJeZhC0PUZKnr5OPj3', 1.0000, NULL, NULL, 0, NULL, NULL, '{\"source\":\"stripe\",\"confidence_score\":1,\"extracted_fields\":{\"full_name\":\"Jenny Rosen\",\"issuing_country\":\"US\"}}', '{\"id\":\"vs_1TOtBzPJeZhC0PUZKnr5OPj3\",\"object\":\"identity.verification_session\",\"client_reference_id\":\"cr_kyc_2\",\"created\":1776835159,\"last_error\":null,\"last_verification_report\":null,\"livemode\":false,\"metadata\":{\"cr_customer_id\":\"36\",\"cr_verification_id\":\"2\"},\"options\":{\"document\":{\"allowed_types\":[\"driving_license\",\"id_card\",\"passport\"],\"require_matching_selfie\":true}},\"redaction\":null,\"related_customer\":null,\"related_customer_account\":null,\"status\":\"requires_input\",\"type\":\"document\",\"url\":\"https:\\/\\/verify.stripe.com\\/start\\/test_YWNjdF8xVEpxRFFQSmVaaEMwUFVaLF9VTmVWalRIMTFLTTk5cWlTUjZkVWtTS3g5QTNqUk1w0100Hw6rCYh6\",\"stripe_identity\":true,\"stripe_identity_url\":\"https:\\/\\/verify.stripe.com\\/start\\/test_YWNjdF8xVEpxRFFQSmVaaEMwUFVaLF9VTmVWalRIMTFLTTk5cWlTUjZkVWtTS3g5QTNqUk1w0100Hw6rCYh6\",\"last_webhook_at\":\"2026-04-22T10:49:38+05:30\",\"last_webhook_payload\":{\"stripe_identity\":{\"session_id\":\"vs_1TOtBzPJeZhC0PUZKnr5OPj3\",\"status\":\"verified\",\"report\":{\"document\":{\"status\":\"verified\"},\"selfie\":{\"status\":\"verified\"}}},\"ocr_payload\":{\"source\":\"stripe\",\"confidence_score\":1,\"extracted_fields\":{\"full_name\":\"Jenny Rosen\",\"issuing_country\":\"US\"}},\"event_id\":\"evt_1TOtCHPJeZhC0PUZ8FJ0fUe2\",\"event_created_at\":1776835177,\"event_type\":\"identity.verification_session.verified\"},\"last_event_created_at\":1776835177,\"last_event_id\":\"evt_1TOtCHPJeZhC0PUZ8FJ0fUe2\"}', '[\"stripe_verification_failed\"]', NULL, NULL, '2026-04-22 10:49:38', '2026-04-22 10:49:00', '2026-04-22 10:49:38'),
(3, 37, 'approved', 'stripe', 'vs_1TOwF5PJeZhC0PUZGR1xCFIW', NULL, NULL, NULL, 0, NULL, NULL, '[]', '{\"id\":\"vs_1TOwF5PJeZhC0PUZGR1xCFIW\",\"object\":\"identity.verification_session\",\"client_reference_id\":\"cr_kyc_3\",\"created\":1776846883,\"last_error\":null,\"last_verification_report\":null,\"livemode\":false,\"metadata\":{\"cr_customer_id\":\"37\",\"cr_verification_id\":\"3\"},\"options\":{\"document\":{\"allowed_types\":[\"driving_license\",\"id_card\",\"passport\"],\"require_matching_selfie\":true}},\"redaction\":null,\"related_customer\":null,\"related_customer_account\":null,\"status\":\"requires_input\",\"type\":\"document\",\"url\":\"https:\\/\\/verify.stripe.com\\/start\\/test_YWNjdF8xVEpxRFFQSmVaaEMwUFVaLF9VTmhlWnZnVlNob1VCSVQ0d3owbGJYeDVEQVBlM2dr0100hfvbPAlS\",\"stripe_identity\":true,\"stripe_identity_url\":\"https:\\/\\/verify.stripe.com\\/start\\/test_YWNjdF8xVEpxRFFQSmVaaEMwUFVaLF9VTmhlWnZnVlNob1VCSVQ0d3owbGJYeDVEQVBlM2dr0100hfvbPAlS\",\"last_webhook_at\":\"2026-04-22T14:04:45+05:30\",\"last_webhook_payload\":{\"stripe_identity\":{\"session_id\":\"vs_1TOwF5PJeZhC0PUZGR1xCFIW\",\"status\":\"requires_input\"},\"reason\":\"Verification failed.\",\"decision_reasons\":[\"stripe_verification_failed\"],\"event_id\":\"evt_1TOwF5PJeZhC0PUZjXF6wA3Y\",\"event_created_at\":1776846883,\"event_type\":\"identity.verification_session.created\"},\"last_event_created_at\":1776846883,\"last_event_id\":\"evt_1TOwF5PJeZhC0PUZjXF6wA3Y\"}', '[\"stripe_verification_failed\"]', NULL, 1, '2026-04-22 14:06:25', '2026-04-22 13:59:45', '2026-04-22 14:06:25'),
(4, 39, 'draft', 'stripe', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-29 11:22:37', '2026-04-29 11:22:37'),
(5, 1, 'pending', 'stripe', 'vs_1TgIQwPJeZhC0PUZMUw7lbQE', NULL, NULL, NULL, 0, NULL, NULL, NULL, '{\"id\":\"vs_1TgIQwPJeZhC0PUZMUw7lbQE\",\"object\":\"identity.verification_session\",\"client_reference_id\":\"cr_kyc_5\",\"created\":1780983762,\"last_error\":null,\"last_verification_report\":null,\"livemode\":false,\"metadata\":{\"cr_customer_id\":\"1\",\"cr_verification_id\":\"5\"},\"options\":{\"document\":{\"allowed_types\":[\"driving_license\",\"id_card\",\"passport\"],\"require_matching_selfie\":true}},\"redaction\":null,\"related_customer\":null,\"related_customer_account\":null,\"status\":\"requires_input\",\"type\":\"document\",\"url\":\"https:\\/\\/verify.stripe.com\\/start\\/test_YWNjdF8xVEpxRFFQSmVaaEMwUFVaLF9VZmRpbFByeU5YM0RUTnNXQmR3SWFEM0VxNE5Vem9X0100PN9iuUP8\",\"stripe_identity\":true,\"stripe_identity_url\":\"https:\\/\\/verify.stripe.com\\/start\\/test_YWNjdF8xVEpxRFFQSmVaaEMwUFVaLF9VZmRpbFByeU5YM0RUTnNXQmR3SWFEM0VxNE5Vem9X0100PN9iuUP8\"}', NULL, NULL, NULL, NULL, '2026-06-09 05:42:17', '2026-06-09 05:42:47'),
(6, 1, 'approved', 'stripe', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, '2026-06-09 11:16:52', '2026-06-09 05:42:59', '2026-06-09 05:46:52');

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

--
-- Table structure for table `cr_customer_password_resets`
--

CREATE TABLE `cr_customer_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;

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

--
-- Table structure for table `cr_customer_revenues`
--

CREATE TABLE `cr_customer_revenues` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `booking_id` bigint(20) UNSIGNED DEFAULT NULL,
  `sub_amount` decimal(15,2) NOT NULL,
  `fee` decimal(15,2) NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `current_balance` decimal(15,2) NOT NULL DEFAULT 0.00,
  `currency` varchar(120) NOT NULL,
  `description` text DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `type` varchar(60) NOT NULL DEFAULT 'add-amount',
  `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 `cr_customer_revenues`
--

INSERT INTO `cr_customer_revenues` (`id`, `customer_id`, `booking_id`, `sub_amount`, `fee`, `amount`, `current_balance`, `currency`, `description`, `user_id`, `type`, `created_at`, `updated_at`) VALUES
(1, 5, 1, 249.00, 49.80, 199.20, 199.20, 'USD', 'Earnings from booking ##1000002 for Lamborghini Urus Performante 2024', NULL, 'booking-completed', '2026-02-01 08:24:05', '2026-02-01 08:24:05'),
(2, 12, 6, 396.00, 79.20, 316.80, 316.80, 'USD', 'Earnings from booking ##1000007 for Toyota Corolla Hybrid LE 2024', NULL, 'booking-completed', '2026-02-12 08:24:05', '2026-02-12 08:24:05'),
(3, 14, 7, 245.00, 49.00, 196.00, 196.00, 'USD', 'Earnings from booking ##1000008 for Kia Stinger GT2 AWD 2024', NULL, 'booking-completed', '2026-01-24 08:24:05', '2026-01-24 08:24:05'),
(4, 17, 11, 204.00, 40.80, 163.20, 163.20, 'USD', 'Earnings from booking ##1000012 for Range Rover Evoque P250 S 2024', NULL, 'booking-completed', '2026-02-28 08:24:05', '2026-02-28 08:24:05'),
(5, 5, 12, 196.00, 39.20, 156.80, 356.00, 'USD', 'Earnings from booking ##1000013 for Range Rover Sport HSE Dynamic 2024', NULL, 'booking-completed', '2026-02-17 08:24:05', '2026-02-17 08:24:05'),
(6, 10, 14, 297.00, 59.40, 237.60, 237.60, 'USD', 'Earnings from booking ##1000015 for BMW XM Label Red 2024', NULL, 'booking-completed', '2026-02-24 08:24:05', '2026-02-24 08:24:05'),
(7, 16, 15, 106.00, 21.20, 84.80, 84.80, 'USD', 'Earnings from booking ##1000016 for Chevrolet Camaro SS 1LE 2024', NULL, 'booking-completed', '2026-02-07 08:24:06', '2026-02-07 08:24:06'),
(8, 6, 16, 195.00, 39.00, 156.00, 156.00, 'USD', 'Earnings from booking ##1000017 for Nissan GT-R NISMO Special Edition 2024', NULL, 'booking-completed', '2026-02-26 08:24:06', '2026-02-26 08:24:06'),
(9, 7, 17, 364.00, 72.80, 291.20, 291.20, 'USD', 'Earnings from booking ##1000018 for Mercedes-Benz E450 4MATIC All-Terrain 2024', NULL, 'booking-completed', '2026-01-20 08:24:06', '2026-01-20 08:24:06'),
(10, 16, 21, 212.00, 42.40, 169.60, 254.40, 'USD', 'Earnings from booking ##1000022 for Chevrolet Camaro SS 1LE 2024', NULL, 'booking-completed', '2026-01-27 08:24:06', '2026-01-27 08:24:06'),
(11, 1, 22, 270.00, 54.00, 216.00, 216.00, 'USD', 'Earnings from booking ##1000023 for Porsche Taycan Turbo S Cross Turismo 2024', NULL, 'booking-completed', '2026-02-22 08:24:06', '2026-02-22 08:24:06'),
(12, 20, 24, 445.00, 89.00, 356.00, 356.00, 'USD', 'Earnings from booking ##1000025 for Porsche Macan S 2024', NULL, 'booking-completed', '2026-01-23 08:24:06', '2026-01-23 08:24:06'),
(13, 14, 25, 81.00, 16.20, 64.80, 260.80, 'USD', 'Earnings from booking ##1000026 for Mercedes-AMG GLE 63 S 4MATIC+ 2024', NULL, 'booking-completed', '2026-01-07 08:24:06', '2026-01-07 08:24:06'),
(14, 13, 26, 588.00, 117.60, 470.40, 470.40, 'USD', 'Earnings from booking ##1000027 for BMW X5 xDrive40i M Sport 2024', NULL, 'booking-completed', '2026-01-07 08:24:06', '2026-01-07 08:24:06'),
(15, 18, 27, 129.60, 25.92, 103.68, 103.68, 'USD', 'Earnings from booking ##1000028 for Toyota RAV4 Prime XSE AWD 2024', NULL, 'booking-completed', '2026-02-23 08:24:06', '2026-02-23 08:24:06'),
(16, 18, 32, 52.20, 10.44, 41.76, 145.44, 'USD', 'Earnings from booking ##1000033 for Volkswagen Tiguan SEL R-Line 2024', NULL, 'booking-completed', '2026-03-04 08:24:06', '2026-03-04 08:24:06'),
(17, 6, 33, 390.00, 78.00, 312.00, 468.00, 'USD', 'Earnings from booking ##1000034 for Nissan GT-R NISMO Special Edition 2024', NULL, 'booking-completed', '2026-02-27 08:24:06', '2026-02-27 08:24:06'),
(18, 4, 34, 560.00, 112.00, 448.00, 448.00, 'USD', 'Earnings from booking ##1000035 for Lexus RX 350 F Sport Handling AWD 2024', NULL, 'booking-completed', '2026-03-03 08:24:06', '2026-03-03 08:24:06'),
(19, 2, 36, 234.00, 46.80, 187.20, 187.20, 'USD', 'Earnings from booking ##1000037 for Honda Pilot TrailSport AWD 2024', NULL, 'booking-completed', '2026-03-02 08:24:06', '2026-03-02 08:24:06'),
(20, 12, 42, 132.00, 26.40, 105.60, 422.40, 'USD', 'Earnings from booking ##1000043 for Toyota Corolla Hybrid LE 2024', NULL, 'booking-completed', '2026-02-28 08:24:06', '2026-02-28 08:24:06'),
(21, 16, 43, 153.00, 30.60, 122.40, 376.80, 'USD', 'Earnings from booking ##1000044 for Aston Martin DBX707 2024', NULL, 'booking-completed', '2026-03-05 08:24:06', '2026-03-05 08:24:06'),
(22, 10, 46, 258.00, 51.60, 206.40, 444.00, 'USD', 'Earnings from booking ##1000047 for Porsche Cayenne Turbo GT 2024', NULL, 'booking-completed', '2026-03-04 08:24:06', '2026-03-04 08:24:06'),
(23, 34, 81, 50.00, 0.00, 50.00, 50.00, 'USD', 'Earnings from booking #1000082 for car \"Ford Bronco\"', NULL, 'booking-completed', '2026-03-18 04:02:14', '2026-03-18 04:02:14'),
(24, 13, 83, 852.00, 0.00, 852.00, 1322.40, 'USD', 'Earnings from booking #1000084 for car \"Mercedes-Benz C300 4MATIC 2024\"', NULL, 'booking-completed', '2026-04-09 14:22:51', '2026-04-09 14:22:51'),
(25, 35, 84, 2557.20, 0.00, 2557.20, 2557.20, 'USD', 'Earnings from booking #1000085 for car \"verna\"', NULL, 'booking-completed', '2026-04-09 14:34:40', '2026-04-09 14:34:40'),
(26, 35, 84, 2557.20, 0.00, 2557.20, 5114.40, 'USD', 'Earnings from booking #1000085 for car \"verna\"', NULL, 'booking-completed', '2026-04-09 14:36:38', '2026-04-09 14:36:38'),
(27, 10, 90, 138.80, 0.00, 138.80, 582.80, 'USD', 'Earnings from booking #1000091 for car \"BMW XM Label Red 2024\"', NULL, 'booking-completed', '2026-04-09 16:52:14', '2026-04-09 16:52:14');

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

--
-- Table structure for table `cr_customer_reviews`
--

CREATE TABLE `cr_customer_reviews` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `vendor_id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `booking_id` bigint(20) UNSIGNED NOT NULL,
  `star` double NOT NULL,
  `content` text DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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 `cr_customer_reviews`
--

INSERT INTO `cr_customer_reviews` (`id`, `vendor_id`, `customer_id`, `booking_id`, `star`, `content`, `status`, `created_at`, `updated_at`) VALUES
(1, 35, 37, 84, 5, 'fghjdfyuiytuihgvbnmbvnmhgfyuiuytghkj', 'published', '2026-04-09 14:37:09', '2026-04-09 14:37:09');

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

--
-- Table structure for table `cr_customer_withdrawals`
--

CREATE TABLE `cr_customer_withdrawals` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `fee` decimal(15,2) NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `current_balance` decimal(15,2) NOT NULL DEFAULT 0.00,
  `currency` varchar(120) NOT NULL,
  `description` text DEFAULT NULL,
  `payment_channel` varchar(60) DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'pending',
  `images` text DEFAULT NULL,
  `bank_info` text DEFAULT NULL,
  `transaction_id` varchar(60) 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 `cr_customer_withdrawals`
--

INSERT INTO `cr_customer_withdrawals` (`id`, `customer_id`, `fee`, `amount`, `current_balance`, `currency`, `description`, `payment_channel`, `user_id`, `status`, `images`, `bank_info`, `transaction_id`, `created_at`, `updated_at`) VALUES
(1, 1, 0.00, 100.00, 216.00, 'USD', 'test', 'paypal', NULL, 'completed', NULL, '{\"paypal_id\":\"paypal@gmail.com\"}', 'sim_6a28f710ac6d8', '2026-06-10 05:30:36', '2026-06-10 05:33:04'),
(2, 1, 0.00, 20.00, 116.00, 'USD', NULL, 'paypal', NULL, 'pending', NULL, '{\"paypal_id\":\"paypal@gmail.com\"}', NULL, '2026-06-10 05:39:39', '2026-06-10 05:39:39');

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

--
-- Table structure for table `cr_delivery_locations`
--

CREATE TABLE `cr_delivery_locations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `vendor_id` bigint(20) UNSIGNED DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `type` varchar(191) NOT NULL DEFAULT 'airport',
  `fee_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `latitude` decimal(10,8) DEFAULT NULL,
  `longitude` decimal(11,8) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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 `cr_delivery_locations`
--

INSERT INTO `cr_delivery_locations` (`id`, `vendor_id`, `name`, `type`, `fee_amount`, `latitude`, `longitude`, `status`, `created_at`, `updated_at`) VALUES
(1, 35, 'Custom Zone', 'custom_zone', 150.00, NULL, NULL, 'published', '2026-04-20 15:21:49', '2026-04-20 15:21:49');

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

--
-- Table structure for table `cr_demand_pricing_recommendations`
--

CREATE TABLE `cr_demand_pricing_recommendations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `car_id` bigint(20) UNSIGNED NOT NULL,
  `recommendation_date` date NOT NULL,
  `recommended_value` decimal(15,2) NOT NULL,
  `value_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'fixed',
  `demand_score` decimal(8,4) NOT NULL DEFAULT 0.0000,
  `confidence_score` decimal(8,4) NOT NULL DEFAULT 0.0000,
  `reason_codes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `applied_by` bigint(20) UNSIGNED DEFAULT NULL,
  `generated_at` timestamp NULL DEFAULT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `adjustment_applied` float DEFAULT NULL COMMENT 'Price adjustment applied by vendor (+/- from recommended)',
  `vendor_adjustment_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Vendor notes explaining their adjustment',
  `vendor_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Vendor notes on acceptance/rejection',
  `rejected_reason` enum('too_high','too_low','inventory_issue','not_applicable','other') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Why vendor rejected (for feedback loop)',
  `local_baseline_price` float DEFAULT NULL COMMENT '7-day average price at recommendation time (for comparison)',
  `estimated_revenue_impact` float DEFAULT NULL COMMENT 'Est. revenue uplift if applied (calculated at generation)',
  `applied_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `cr_demand_pricing_recommendations`
--

INSERT INTO `cr_demand_pricing_recommendations` (`id`, `car_id`, `recommendation_date`, `recommended_value`, `value_type`, `demand_score`, `confidence_score`, `reason_codes`, `status`, `applied_by`, `generated_at`, `expires_at`, `adjustment_applied`, `vendor_adjustment_notes`, `vendor_notes`, `rejected_reason`, `local_baseline_price`, `estimated_revenue_impact`, `applied_at`, `created_at`, `updated_at`) VALUES
(1, 100, '2026-04-20', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:58', '2026-04-20 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:58', '2026-04-20 16:48:58'),
(2, 100, '2026-04-21', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:58', '2026-04-21 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:58', '2026-04-20 16:48:58'),
(3, 100, '2026-04-22', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:58', '2026-04-22 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:58', '2026-04-20 16:48:58'),
(4, 100, '2026-04-23', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:58', '2026-04-23 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:58', '2026-04-20 16:48:58'),
(5, 100, '2026-04-24', 42.45, 'fixed', 0.0800, 0.1000, '[\"weekend_demand\"]', 'pending', NULL, '2026-04-20 16:48:58', '2026-04-24 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:58', '2026-04-20 16:48:58'),
(6, 100, '2026-04-25', 42.45, 'fixed', 0.0800, 0.1000, '[\"weekend_demand\"]', 'pending', NULL, '2026-04-20 16:48:58', '2026-04-25 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:58', '2026-04-20 16:48:58'),
(7, 100, '2026-04-26', 42.45, 'fixed', 0.0800, 0.1000, '[\"weekend_demand\"]', 'pending', NULL, '2026-04-20 16:48:58', '2026-04-26 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:58', '2026-04-20 16:48:58'),
(8, 100, '2026-04-27', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:58', '2026-04-27 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(9, 100, '2026-04-28', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-04-28 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(10, 100, '2026-04-29', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-04-29 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(11, 100, '2026-04-30', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-04-30 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(12, 100, '2026-05-01', 42.45, 'fixed', 0.0800, 0.1000, '[\"weekend_demand\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-01 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(13, 100, '2026-05-02', 42.45, 'fixed', 0.0800, 0.1000, '[\"weekend_demand\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-02 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(14, 100, '2026-05-03', 42.45, 'fixed', 0.0800, 0.1000, '[\"weekend_demand\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-03 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(15, 100, '2026-05-04', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-04 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(16, 100, '2026-05-05', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-05 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(17, 100, '2026-05-06', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-06 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(18, 100, '2026-05-07', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-07 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(19, 100, '2026-05-08', 42.45, 'fixed', 0.0800, 0.1000, '[\"weekend_demand\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-08 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(20, 100, '2026-05-09', 42.45, 'fixed', 0.0800, 0.1000, '[\"weekend_demand\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-09 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(21, 100, '2026-05-10', 42.45, 'fixed', 0.0800, 0.1000, '[\"weekend_demand\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-10 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(22, 100, '2026-05-11', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-11 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(23, 100, '2026-05-12', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-12 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(24, 100, '2026-05-13', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-13 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(25, 100, '2026-05-14', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-14 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(26, 100, '2026-05-15', 42.45, 'fixed', 0.0800, 0.1000, '[\"weekend_demand\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-15 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(27, 100, '2026-05-16', 42.45, 'fixed', 0.0800, 0.1000, '[\"weekend_demand\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-16 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(28, 100, '2026-05-17', 42.45, 'fixed', 0.0800, 0.1000, '[\"weekend_demand\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-17 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(29, 100, '2026-05-18', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-18 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(30, 100, '2026-05-19', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-19 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59'),
(31, 100, '2026-05-20', 40.80, 'fixed', 0.0000, 0.1000, '[\"baseline_signal\"]', 'pending', NULL, '2026-04-20 16:48:59', '2026-05-20 23:59:59', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-20 16:48:59', '2026-04-20 16:48:59');

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

--
-- Table structure for table `cr_guest_protection_plans`
--

CREATE TABLE `cr_guest_protection_plans` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `description` text DEFAULT NULL,
  `daily_fee` decimal(15,2) NOT NULL DEFAULT 0.00,
  `deductible_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `liability_limit` decimal(15,2) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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 `cr_guest_protection_plans`
--

INSERT INTO `cr_guest_protection_plans` (`id`, `name`, `description`, `daily_fee`, `deductible_amount`, `liability_limit`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Basic Guest Plan', 'Covers minimal damage.', 20.00, 500.00, NULL, 'published', '2026-04-22 16:35:08', '2026-04-22 16:35:08'),
(2, 'Mid-Tier Insurance', 'Covers small to medium damage', 50.00, 300.00, NULL, 'published', '2026-04-22 16:35:58', '2026-04-22 16:35:58');

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

--
-- Table structure for table `cr_host_protection_plans`
--

CREATE TABLE `cr_host_protection_plans` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `description` text DEFAULT NULL,
  `revenue_share_percentage` decimal(5,2) NOT NULL,
  `deductible_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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 `cr_host_protection_plans`
--

INSERT INTO `cr_host_protection_plans` (`id`, `name`, `description`, `revenue_share_percentage`, `deductible_amount`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Basic Protection Plan', 'Basic Protection', 60.00, 3000.00, 'published', '2026-04-20 17:12:39', '2026-04-20 17:12:39'),
(2, 'Elite Protection', 'Massive Dame is covered', 85.00, 2000.00, 'published', '2026-04-22 16:37:01', '2026-04-22 16:37:01');

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

--
-- Table structure for table `cr_invoices`
--

CREATE TABLE `cr_invoices` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `customer_name` varchar(191) NOT NULL,
  `customer_email` varchar(191) DEFAULT NULL,
  `customer_phone` varchar(191) DEFAULT NULL,
  `payment_id` bigint(20) UNSIGNED DEFAULT NULL,
  `currency_id` bigint(20) UNSIGNED DEFAULT NULL,
  `reference_type` varchar(191) NOT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `code` varchar(191) NOT NULL,
  `sub_total` double NOT NULL,
  `tax_amount` double NOT NULL DEFAULT 0,
  `discount_amount` double NOT NULL DEFAULT 0,
  `amount` double NOT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'pending',
  `paid_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `vendor_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cr_invoices`
--

INSERT INTO `cr_invoices` (`id`, `customer_id`, `customer_name`, `customer_email`, `customer_phone`, `payment_id`, `currency_id`, `reference_type`, `reference_id`, `code`, `sub_total`, `tax_amount`, `discount_amount`, `amount`, `status`, `paid_at`, `created_at`, `updated_at`, `vendor_id`) VALUES
(1, 24, 'Sarah Davis', 'sarah.davis@example.com', '+16577789305', 1, 1, 'Mxcar\\CarRentals\\Models\\Booking', 1, 'INV-1', 249, 0, 0, 249, 'completed', '2026-03-06 08:24:05', '2026-02-01 08:24:05', '2026-03-06 08:24:05', 5),
(2, 23, 'Michael Brown', 'michael.brown@example.com', '+13650704304', 2, 1, 'Mxcar\\CarRentals\\Models\\Booking', 2, 'INV-2', 47, 4.7, 0, 47, 'pending', NULL, '2026-02-02 08:24:05', '2026-03-06 08:24:05', 8),
(3, 28, 'Amanda Taylor', 'amanda.taylor@example.com', '+14335013311', 3, 1, 'Mxcar\\CarRentals\\Models\\Booking', 3, 'INV-3', 308, 0, 0, 308, 'pending', NULL, '2026-01-06 08:24:05', '2026-03-06 08:24:05', 32),
(4, 23, 'Michael Brown', 'michael.brown@example.com', '+13650704304', 4, 1, 'Mxcar\\CarRentals\\Models\\Booking', 4, 'INV-4', 186, 18.6, 0, 186, 'pending', NULL, '2026-01-30 08:24:05', '2026-03-06 08:24:05', 7),
(5, 24, 'Sarah Davis', 'sarah.davis@example.com', '+16577789305', 5, 1, 'Mxcar\\CarRentals\\Models\\Booking', 5, 'INV-5', 224, 22.4, 0, 224, 'pending', NULL, '2026-02-02 08:24:05', '2026-03-06 08:24:05', 12),
(6, 25, 'David Wilson', 'david.wilson@example.com', '+19415120048', 6, 1, 'Mxcar\\CarRentals\\Models\\Booking', 6, 'INV-6', 396, 0, 0, 396, 'completed', '2026-03-06 08:24:05', '2026-02-12 08:24:05', '2026-03-06 08:24:05', 12),
(7, 29, 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', 7, 1, 'Mxcar\\CarRentals\\Models\\Booking', 7, 'INV-7', 245, 0, 0, 245, 'completed', '2026-03-06 08:24:05', '2026-01-24 08:24:05', '2026-03-06 08:24:05', 14),
(8, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 8, 1, 'Mxcar\\CarRentals\\Models\\Booking', 8, 'INV-8', 190, 0, 0, 190, 'pending', NULL, '2026-02-08 08:24:05', '2026-03-06 08:24:05', NULL),
(9, 31, 'Demo Customer', 'customer@mxcar.com', '+12725079138', 9, 1, 'Mxcar\\CarRentals\\Models\\Booking', 9, 'INV-9', 230, 0, 0, 230, 'completed', '2026-03-06 08:24:05', '2026-01-25 08:24:05', '2026-03-06 08:24:05', NULL),
(10, 22, 'Emily Johnson', 'emily.johnson@example.com', '+18408163667', 10, 1, 'Mxcar\\CarRentals\\Models\\Booking', 10, 'INV-10', 33, 3.3, 0, 33, 'pending', NULL, '2026-01-16 08:24:05', '2026-03-06 08:24:05', NULL),
(11, 29, 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', 11, 1, 'Mxcar\\CarRentals\\Models\\Booking', 11, 'INV-11', 204, 0, 0, 204, 'completed', '2026-03-06 08:24:05', '2026-02-28 08:24:05', '2026-03-06 08:24:05', 17),
(12, 25, 'David Wilson', 'david.wilson@example.com', '+19415120048', 12, 1, 'Mxcar\\CarRentals\\Models\\Booking', 12, 'INV-12', 196, 0, 0, 196, 'completed', '2026-03-06 08:24:05', '2026-02-17 08:24:05', '2026-03-06 08:24:05', 5),
(13, 30, 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', 13, 1, 'Mxcar\\CarRentals\\Models\\Booking', 13, 'INV-13', 60, 6, 0, 60, 'pending', NULL, '2026-02-05 08:24:05', '2026-03-06 08:24:05', 9),
(14, 24, 'Sarah Davis', 'sarah.davis@example.com', '+16577789305', 14, 1, 'Mxcar\\CarRentals\\Models\\Booking', 14, 'INV-14', 297, 0, 0, 297, 'completed', '2026-03-06 08:24:05', '2026-02-24 08:24:05', '2026-03-06 08:24:05', 10),
(15, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 15, 1, 'Mxcar\\CarRentals\\Models\\Booking', 15, 'INV-15', 106, 0, 0, 106, 'completed', '2026-03-06 08:24:06', '2026-02-07 08:24:06', '2026-03-06 08:24:06', 16),
(16, 25, 'David Wilson', 'david.wilson@example.com', '+19415120048', 16, 1, 'Mxcar\\CarRentals\\Models\\Booking', 16, 'INV-16', 195, 0, 0, 195, 'completed', '2026-03-06 08:24:06', '2026-02-26 08:24:06', '2026-03-06 08:24:06', 6),
(17, 22, 'Emily Johnson', 'emily.johnson@example.com', '+18408163667', 17, 1, 'Mxcar\\CarRentals\\Models\\Booking', 17, 'INV-17', 364, 0, 0, 364, 'completed', '2026-03-06 08:24:06', '2026-01-20 08:24:06', '2026-03-06 08:24:06', 7),
(18, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 18, 1, 'Mxcar\\CarRentals\\Models\\Booking', 18, 'INV-18', 400, 40, 0, 400, 'completed', '2026-03-06 08:24:06', '2026-01-30 08:24:06', '2026-03-06 08:24:06', NULL),
(19, 29, 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', 19, 1, 'Mxcar\\CarRentals\\Models\\Booking', 19, 'INV-19', 342, 0, 0, 342, 'completed', '2026-03-06 08:24:06', '2026-02-24 08:24:06', '2026-03-06 08:24:06', NULL),
(20, 27, 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', 20, 1, 'Mxcar\\CarRentals\\Models\\Booking', 20, 'INV-20', 165, 0, 0, 165, 'completed', '2026-03-06 08:24:06', '2026-01-18 08:24:06', '2026-03-06 08:24:06', NULL),
(21, 28, 'Amanda Taylor', 'amanda.taylor@example.com', '+14335013311', 21, 1, 'Mxcar\\CarRentals\\Models\\Booking', 21, 'INV-21', 212, 0, 0, 212, 'completed', '2026-03-06 08:24:06', '2026-01-27 08:24:06', '2026-03-06 08:24:06', 16),
(22, 30, 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', 22, 1, 'Mxcar\\CarRentals\\Models\\Booking', 22, 'INV-22', 270, 0, 0, 270, 'completed', '2026-03-06 08:24:06', '2026-02-22 08:24:06', '2026-03-06 08:24:06', 1),
(23, 31, 'Demo Customer', 'customer@mxcar.com', '+12725079138', 23, 1, 'Mxcar\\CarRentals\\Models\\Booking', 23, 'INV-23', 184, 0, 0, 184, 'pending', NULL, '2026-02-28 08:24:06', '2026-03-06 08:24:06', 11),
(24, 27, 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', 24, 1, 'Mxcar\\CarRentals\\Models\\Booking', 24, 'INV-24', 445, 0, 0, 445, 'completed', '2026-03-06 08:24:06', '2026-01-23 08:24:06', '2026-03-06 08:24:06', 20),
(25, 23, 'Michael Brown', 'michael.brown@example.com', '+13650704304', 25, 1, 'Mxcar\\CarRentals\\Models\\Booking', 25, 'INV-25', 90, 9, 0, 90, 'completed', '2026-03-06 08:24:06', '2026-01-07 08:24:06', '2026-03-06 08:24:06', 14),
(26, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 26, 1, 'Mxcar\\CarRentals\\Models\\Booking', 26, 'INV-26', 588, 0, 0, 588, 'completed', '2026-03-06 08:24:06', '2026-01-07 08:24:06', '2026-03-06 08:24:06', 13),
(27, 29, 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', 27, 1, 'Mxcar\\CarRentals\\Models\\Booking', 27, 'INV-27', 144, 14.4, 0, 144, 'completed', '2026-03-06 08:24:06', '2026-02-23 08:24:06', '2026-03-06 08:24:06', 18),
(28, 26, 'Jessica Martinez', 'jessica.martinez@example.com', '+13883162240', 28, 1, 'Mxcar\\CarRentals\\Models\\Booking', 28, 'INV-28', 276, 0, 0, 276, 'completed', '2026-03-06 08:24:06', '2026-02-19 08:24:06', '2026-03-06 08:24:06', NULL),
(29, 29, 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', 29, 1, 'Mxcar\\CarRentals\\Models\\Booking', 29, 'INV-29', 658, 65.8, 0, 658, 'pending', NULL, '2026-03-01 08:24:06', '2026-03-06 08:24:06', NULL),
(30, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 30, 1, 'Mxcar\\CarRentals\\Models\\Booking', 30, 'INV-30', 395, 0, 0, 395, 'pending', NULL, '2026-01-16 08:24:06', '2026-03-06 08:24:06', NULL),
(31, 22, 'Emily Johnson', 'emily.johnson@example.com', '+18408163667', 31, 1, 'Mxcar\\CarRentals\\Models\\Booking', 31, 'INV-31', 249, 0, 0, 249, 'pending', NULL, '2026-03-03 08:24:06', '2026-03-06 08:24:06', 10),
(32, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 32, 1, 'Mxcar\\CarRentals\\Models\\Booking', 32, 'INV-32', 58, 5.8, 0, 58, 'completed', '2026-03-06 08:24:06', '2026-03-04 08:24:06', '2026-03-06 08:24:06', 18),
(33, 30, 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', 33, 1, 'Mxcar\\CarRentals\\Models\\Booking', 33, 'INV-33', 390, 0, 0, 390, 'completed', '2026-03-06 08:24:06', '2026-02-27 08:24:06', '2026-03-06 08:24:06', 6),
(34, 30, 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', 34, 1, 'Mxcar\\CarRentals\\Models\\Booking', 34, 'INV-34', 560, 0, 0, 560, 'completed', '2026-03-06 08:24:06', '2026-03-03 08:24:06', '2026-03-06 08:24:06', 4),
(35, 25, 'David Wilson', 'david.wilson@example.com', '+19415120048', 35, 1, 'Mxcar\\CarRentals\\Models\\Booking', 35, 'INV-35', 282, 0, 0, 282, 'pending', NULL, '2026-03-01 08:24:06', '2026-03-06 08:24:06', 14),
(36, 27, 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', 36, 1, 'Mxcar\\CarRentals\\Models\\Booking', 36, 'INV-36', 234, 0, 0, 234, 'completed', '2026-03-06 08:24:06', '2026-03-02 08:24:06', '2026-03-06 08:24:06', 2),
(37, 30, 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', 37, 1, 'Mxcar\\CarRentals\\Models\\Booking', 37, 'INV-37', 340, 34, 0, 340, 'pending', NULL, '2026-02-27 08:24:06', '2026-03-06 08:24:06', 11),
(38, 26, 'Jessica Martinez', 'jessica.martinez@example.com', '+13883162240', 38, 1, 'Mxcar\\CarRentals\\Models\\Booking', 38, 'INV-38', 470, 0, 0, 470, 'pending', NULL, '2026-03-03 08:24:06', '2026-03-06 08:24:06', NULL),
(39, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 39, 1, 'Mxcar\\CarRentals\\Models\\Booking', 39, 'INV-39', 248, 0, 0, 248, 'pending', NULL, '2026-03-04 08:24:06', '2026-03-06 08:24:06', NULL),
(40, 27, 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', 40, 1, 'Mxcar\\CarRentals\\Models\\Booking', 40, 'INV-40', 564, 0, 0, 564, 'completed', '2026-03-06 08:24:06', '2026-03-01 08:24:06', '2026-03-06 08:24:06', NULL),
(41, 31, 'Demo Customer', 'customer@mxcar.com', '+12725079138', 41, 1, 'Mxcar\\CarRentals\\Models\\Booking', 41, 'INV-41', 90, 0, 0, 90, 'pending', NULL, '2026-03-06 08:24:06', '2026-03-06 08:24:06', 14),
(42, 27, 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', 42, 1, 'Mxcar\\CarRentals\\Models\\Booking', 42, 'INV-42', 132, 0, 0, 132, 'completed', '2026-03-06 08:24:06', '2026-02-28 08:24:06', '2026-03-06 08:24:06', 12),
(43, 25, 'David Wilson', 'david.wilson@example.com', '+19415120048', 43, 1, 'Mxcar\\CarRentals\\Models\\Booking', 43, 'INV-43', 170, 17, 0, 170, 'completed', '2026-03-06 08:24:06', '2026-03-05 08:24:06', '2026-03-06 08:24:06', 16),
(44, 25, 'David Wilson', 'david.wilson@example.com', '+19415120048', 44, 1, 'Mxcar\\CarRentals\\Models\\Booking', 44, 'INV-44', 132, 0, 0, 132, 'pending', NULL, '2026-02-28 08:24:06', '2026-03-06 08:24:06', 12),
(45, 30, 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', 45, 1, 'Mxcar\\CarRentals\\Models\\Booking', 45, 'INV-45', 97, 0, 0, 97, 'pending', NULL, '2026-03-03 08:24:06', '2026-03-06 08:24:06', 9),
(46, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 46, 1, 'Mxcar\\CarRentals\\Models\\Booking', 46, 'INV-46', 258, 0, 0, 258, 'completed', '2026-03-06 08:24:06', '2026-03-04 08:24:06', '2026-03-06 08:24:06', 10),
(47, 26, 'Jessica Martinez', 'jessica.martinez@example.com', '+13883162240', 47, 1, 'Mxcar\\CarRentals\\Models\\Booking', 47, 'INV-47', 445, 0, 0, 445, 'pending', NULL, '2026-03-04 08:24:06', '2026-03-06 08:24:06', 20),
(48, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 48, 1, 'Mxcar\\CarRentals\\Models\\Booking', 48, 'INV-48', 240, 0, 0, 240, 'completed', '2026-03-06 08:24:06', '2026-03-02 08:24:06', '2026-03-06 08:24:06', NULL),
(49, 29, 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', 49, 1, 'Mxcar\\CarRentals\\Models\\Booking', 49, 'INV-49', 230, 23, 0, 230, 'completed', '2026-03-06 08:24:06', '2026-02-27 08:24:06', '2026-03-06 08:24:06', NULL),
(50, 24, 'Sarah Davis', 'sarah.davis@example.com', '+16577789305', 50, 1, 'Mxcar\\CarRentals\\Models\\Booking', 50, 'INV-50', 114, 0, 0, 114, 'pending', NULL, '2026-03-06 08:24:07', '2026-03-06 08:24:07', NULL),
(51, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 51, 1, 'Mxcar\\CarRentals\\Models\\Booking', 51, 'INV-51', 240, 0, 0, 240, 'pending', NULL, '2026-03-25 08:24:07', '2026-03-06 08:24:07', 4),
(52, 27, 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', 52, 1, 'Mxcar\\CarRentals\\Models\\Booking', 52, 'INV-52', 255, 25.5, 0, 255, 'pending', NULL, '2026-03-07 08:24:07', '2026-03-06 08:24:07', 16),
(53, 30, 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', 53, 1, 'Mxcar\\CarRentals\\Models\\Booking', 53, 'INV-53', 217, 0, 0, 217, 'pending', NULL, '2026-03-10 08:24:07', '2026-03-06 08:24:07', 7),
(54, 22, 'Emily Johnson', 'emily.johnson@example.com', '+18408163667', 54, 1, 'Mxcar\\CarRentals\\Models\\Booking', 54, 'INV-54', 425, 42.5, 0, 425, 'pending', NULL, '2026-03-24 08:24:07', '2026-03-06 08:24:07', 16),
(55, 26, 'Jessica Martinez', 'jessica.martinez@example.com', '+13883162240', 55, 1, 'Mxcar\\CarRentals\\Models\\Booking', 55, 'INV-55', 39, 3.9, 0, 39, 'pending', NULL, '2026-03-26 08:24:07', '2026-03-06 08:24:07', 14),
(56, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 56, 1, 'Mxcar\\CarRentals\\Models\\Booking', 56, 'INV-56', 365, 0, 0, 365, 'pending', NULL, '2026-03-14 08:24:07', '2026-03-06 08:24:07', 17),
(57, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 57, 1, 'Mxcar\\CarRentals\\Models\\Booking', 57, 'INV-57', 282, 28.2, 0, 282, 'pending', NULL, '2026-03-19 08:24:07', '2026-03-06 08:24:07', 8),
(58, 29, 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', 58, 1, 'Mxcar\\CarRentals\\Models\\Booking', 58, 'INV-58', 94, 0, 0, 94, 'pending', NULL, '2026-03-26 08:24:07', '2026-03-06 08:24:07', NULL),
(59, 31, 'Demo Customer', 'customer@mxcar.com', '+12725079138', 59, 1, 'Mxcar\\CarRentals\\Models\\Booking', 59, 'INV-59', 230, 0, 0, 230, 'pending', NULL, '2026-03-26 08:24:07', '2026-03-06 08:24:07', NULL),
(60, 30, 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', 60, 1, 'Mxcar\\CarRentals\\Models\\Booking', 60, 'INV-60', 152, 0, 0, 152, 'pending', NULL, '2026-03-25 08:24:07', '2026-03-06 08:24:07', NULL),
(61, 31, 'Demo Customer', 'customer@mxcar.com', '+12725079138', 61, 1, 'Mxcar\\CarRentals\\Models\\Booking', 61, 'INV-61', 594, 59.4, 0, 594, 'pending', NULL, '2026-03-09 08:24:07', '2026-03-06 08:24:07', 10),
(62, 29, 'Daniel Thomas', 'daniel.thomas@example.com', '+18976335589', 62, 1, 'Mxcar\\CarRentals\\Models\\Booking', 62, 'INV-62', 350, 0, 0, 350, 'pending', NULL, '2026-03-26 08:24:07', '2026-03-06 08:24:07', 19),
(63, 30, 'Ashley Garcia', 'ashley.garcia@example.com', '+13102783883', 63, 1, 'Mxcar\\CarRentals\\Models\\Booking', 63, 'INV-63', 350, 0, 0, 350, 'pending', NULL, '2026-03-14 08:24:07', '2026-03-06 08:24:07', 19),
(64, 28, 'Amanda Taylor', 'amanda.taylor@example.com', '+14335013311', 64, 1, 'Mxcar\\CarRentals\\Models\\Booking', 64, 'INV-64', 320, 0, 0, 320, 'pending', NULL, '2026-03-13 08:24:07', '2026-03-06 08:24:07', 4),
(65, 25, 'David Wilson', 'david.wilson@example.com', '+19415120048', 65, 1, 'Mxcar\\CarRentals\\Models\\Booking', 65, 'INV-65', 208, 0, 0, 208, 'pending', NULL, '2026-04-05 08:24:07', '2026-03-06 08:24:07', 11),
(66, 23, 'Michael Brown', 'michael.brown@example.com', '+13650704304', 66, 1, 'Mxcar\\CarRentals\\Models\\Booking', 66, 'INV-66', 171, 0, 0, 171, 'pending', NULL, '2026-03-17 08:24:07', '2026-03-06 08:24:07', 8),
(67, 25, 'David Wilson', 'david.wilson@example.com', '+19415120048', 67, 1, 'Mxcar\\CarRentals\\Models\\Booking', 67, 'INV-67', 183, 0, 0, 183, 'pending', NULL, '2026-03-26 08:24:07', '2026-03-06 08:24:07', 6),
(68, 23, 'Michael Brown', 'michael.brown@example.com', '+13650704304', 68, 1, 'Mxcar\\CarRentals\\Models\\Booking', 68, 'INV-68', 450, 0, 0, 450, 'pending', NULL, '2026-03-19 08:24:07', '2026-03-06 08:24:07', NULL),
(69, 27, 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', 69, 1, 'Mxcar\\CarRentals\\Models\\Booking', 69, 'INV-69', 112, 11.2, 0, 112, 'pending', NULL, '2026-03-29 08:24:07', '2026-03-06 08:24:07', NULL),
(70, 25, 'David Wilson', 'david.wilson@example.com', '+19415120048', 70, 1, 'Mxcar\\CarRentals\\Models\\Booking', 70, 'INV-70', 124, 0, 0, 124, 'pending', NULL, '2026-03-08 08:24:07', '2026-03-06 08:24:07', NULL),
(71, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 71, 1, 'Mxcar\\CarRentals\\Models\\Booking', 71, 'INV-71', 370, 37, 0, 370, 'pending', NULL, '2026-03-23 08:24:07', '2026-03-06 08:24:07', 9),
(72, 23, 'Michael Brown', 'michael.brown@example.com', '+13650704304', 72, 1, 'Mxcar\\CarRentals\\Models\\Booking', 72, 'INV-72', 198, 19.8, 0, 198, 'pending', NULL, '2026-03-07 08:24:07', '2026-03-06 08:24:07', 12),
(73, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 73, 1, 'Mxcar\\CarRentals\\Models\\Booking', 73, 'INV-73', 195, 19.5, 0, 195, 'pending', NULL, '2026-03-11 08:24:07', '2026-03-06 08:24:07', 6),
(74, 28, 'Amanda Taylor', 'amanda.taylor@example.com', '+14335013311', 74, 1, 'Mxcar\\CarRentals\\Models\\Booking', 74, 'INV-74', 180, 18, 0, 180, 'pending', NULL, '2026-03-19 08:24:07', '2026-03-06 08:24:07', 8),
(75, 31, 'Demo Customer', 'customer@mxcar.com', '+12725079138', 75, 1, 'Mxcar\\CarRentals\\Models\\Booking', 75, 'INV-75', 65, 0, 0, 65, 'pending', NULL, '2026-03-08 08:24:07', '2026-03-06 08:24:07', 6),
(76, 27, 'Christopher Anderson', 'christopher.anderson@example.com', '+14483605445', 76, 1, 'Mxcar\\CarRentals\\Models\\Booking', 76, 'INV-76', 245, 24.5, 0, 245, 'pending', NULL, '2026-03-25 08:24:07', '2026-03-06 08:24:07', 5),
(77, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 77, 1, 'Mxcar\\CarRentals\\Models\\Booking', 77, 'INV-77', 154, 0, 0, 154, 'pending', NULL, '2026-03-12 08:24:07', '2026-03-06 08:24:07', 32),
(78, 25, 'David Wilson', 'david.wilson@example.com', '+19415120048', 78, 1, 'Mxcar\\CarRentals\\Models\\Booking', 78, 'INV-78', 372, 0, 0, 372, 'pending', NULL, '2026-03-21 08:24:07', '2026-03-06 08:24:07', NULL),
(79, 22, 'Emily Johnson', 'emily.johnson@example.com', '+18408163667', 79, 1, 'Mxcar\\CarRentals\\Models\\Booking', 79, 'INV-79', 276, 0, 0, 276, 'pending', NULL, '2026-03-16 08:24:07', '2026-03-06 08:24:07', NULL),
(80, 21, 'John Smith', 'john.smith@example.com', '+16104062225', 80, 1, 'Mxcar\\CarRentals\\Models\\Booking', 80, 'INV-80', 79, 0, 0, 79, 'pending', NULL, '2026-03-13 08:24:07', '2026-03-06 08:24:07', NULL),
(81, 34, 'Ribhu Pramanik', 'ribhu02@gmail.com', NULL, 81, 1, 'Mxcar\\CarRentals\\Models\\Booking', 81, 'INV-81', 50, 0, 0, 50, 'completed', '2026-03-18 04:03:52', '2026-03-18 04:01:46', '2026-03-18 04:03:52', 34),
(82, 36, 'User Demo', 'user@demo.com', '+918302786761', NULL, 1, 'Mxcar\\CarRentals\\Models\\Booking', 82, 'INV-82', 50, 0, 0, 50, 'completed', NULL, '2026-04-06 04:50:31', '2026-04-06 04:50:31', 34),
(83, 37, 'customer', 'customer@gmail.com', '+919981207899', NULL, 1, 'Mxcar\\CarRentals\\Models\\Booking', 83, 'INV-83', 710, 0, 0, 852, 'completed', NULL, '2026-04-09 14:21:52', '2026-04-09 14:21:52', 13),
(84, 37, 'customer', 'customer@gmail.com', '+919981207899', 84, 1, 'Mxcar\\CarRentals\\Models\\Booking', 84, 'INV-84', 2131, 0, 0, 2557.2, 'completed', '2026-04-09 14:35:07', '2026-04-09 14:33:18', '2026-04-09 14:35:07', 35),
(85, 36, 'User Demo', 'user@demo.com', '+918302786761', NULL, 1, 'Mxcar\\CarRentals\\Models\\Booking', 91, 'INV-85', 311, 0, 0, 393.2, 'completed', NULL, '2026-04-22 10:50:48', '2026-04-22 10:50:48', 11),
(86, 36, 'User Demo', 'user@demo.com', '+918302786761', NULL, 1, 'Mxcar\\CarRentals\\Models\\Booking', 92, 'INV-86', 1336, 0, 0, 1623.2, 'completed', NULL, '2026-04-22 11:22:18', '2026-04-22 11:22:18', 35),
(87, 36, 'User Demo', 'user@demo.com', '+918302786761', NULL, 1, 'Mxcar\\CarRentals\\Models\\Booking', 93, 'INV-87', 768, 0, 0, 941.6, 'completed', NULL, '2026-04-22 11:27:15', '2026-04-22 11:27:15', 35),
(88, 36, 'User Demo', 'user@demo.com', '+918302786761', NULL, 1, 'Mxcar\\CarRentals\\Models\\Booking', 94, 'INV-88', 200, 0, 0, 260, 'completed', NULL, '2026-04-22 11:33:09', '2026-04-22 11:33:09', 35),
(89, 37, 'customer', 'customer@gmail.com', '+919981207899', NULL, 1, 'Mxcar\\CarRentals\\Models\\Booking', 95, 'INV-89', 877, 0, 0, 1072.4, 'completed', NULL, '2026-04-22 14:06:51', '2026-04-22 14:06:51', 1),
(90, 36, 'User Demo', 'user@demo.com', '+918302786761', NULL, 1, 'Mxcar\\CarRentals\\Models\\Booking', 96, 'INV-90', 783, 189.02, 0, 1148.62, 'completed', NULL, '2026-04-30 07:13:22', '2026-04-30 07:13:22', 34),
(91, 1, 'Elite Auto Group', 'dealer@demo.com', '+17356074636', NULL, 1, 'Mxcar\\CarRentals\\Models\\Booking', 97, 'INV-91', 132, 31.86, 0, 210.26, 'completed', NULL, '2026-06-09 05:47:50', '2026-06-09 05:47:50', 13),
(92, 1, 'Elite Auto Group', 'dealer@demo.com', '+17356074636', NULL, 1, 'Mxcar\\CarRentals\\Models\\Booking', 98, 'INV-92', 72, 17.38, 0, 123.78, 'completed', NULL, '2026-06-09 09:40:22', '2026-06-09 09:40:22', 18);

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

--
-- Table structure for table `cr_invoice_items`
--

CREATE TABLE `cr_invoice_items` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `invoice_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `qty` int(10) UNSIGNED NOT NULL,
  `sub_total` decimal(15,2) UNSIGNED NOT NULL,
  `tax_amount` decimal(15,2) UNSIGNED NOT NULL DEFAULT 0.00,
  `discount_amount` decimal(15,2) UNSIGNED NOT NULL DEFAULT 0.00,
  `amount` decimal(15,2) UNSIGNED NOT NULL,
  `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 `cr_invoice_items`
--

INSERT INTO `cr_invoice_items` (`id`, `invoice_id`, `name`, `description`, `qty`, `sub_total`, `tax_amount`, `discount_amount`, `amount`, `created_at`, `updated_at`) VALUES
(1, 1, 'Lamborghini Urus Performante 2024', '', 1, 249.00, 0.00, 0.00, 249.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(2, 2, 'Lamborghini Huracán EVO 2024', '', 1, 47.00, 0.00, 0.00, 47.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(3, 3, 'Audi A4 Premium Plus quattro 2024', '', 1, 308.00, 0.00, 0.00, 308.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(4, 4, 'Mercedes-Benz G550 4MATIC 2024', '', 1, 186.00, 0.00, 0.00, 186.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(5, 5, 'Mercedes-Maybach S 580 4MATIC 2024', '', 1, 224.00, 0.00, 0.00, 224.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(6, 6, 'Toyota Corolla Hybrid LE 2024', '', 1, 396.00, 0.00, 0.00, 396.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(7, 7, 'Kia Stinger GT2 AWD 2024', '', 1, 245.00, 0.00, 0.00, 245.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(8, 8, 'Genesis GV70 2.5T Sport AWD 2024', '', 1, 190.00, 0.00, 0.00, 190.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(9, 9, 'Acura MDX Type S Advance 2024', '', 1, 230.00, 0.00, 0.00, 230.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(10, 10, 'GMC Sierra 1500 Denali 2024', '', 1, 33.00, 0.00, 0.00, 33.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(11, 11, 'Range Rover Evoque P250 S 2024', '', 1, 204.00, 0.00, 0.00, 204.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(12, 12, 'Range Rover Sport HSE Dynamic 2024', '', 1, 196.00, 0.00, 0.00, 196.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(13, 13, 'Audi RS Q8 quattro 2024', '', 1, 60.00, 0.00, 0.00, 60.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(14, 14, 'BMW XM Label Red 2024', '', 1, 297.00, 0.00, 0.00, 297.00, '2026-03-06 08:24:05', '2026-03-06 08:24:05'),
(15, 15, 'Chevrolet Camaro SS 1LE 2024', '', 1, 106.00, 0.00, 0.00, 106.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(16, 16, 'Nissan GT-R NISMO Special Edition 2024', '', 1, 195.00, 0.00, 0.00, 195.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(17, 17, 'Mercedes-Benz E450 4MATIC All-Terrain 2024', '', 1, 364.00, 0.00, 0.00, 364.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(18, 18, 'Mazda MX-5 Miata Grand Touring 2024', '', 1, 400.00, 0.00, 0.00, 400.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(19, 19, 'Volkswagen Atlas Cross Sport SEL Premium 2024', '', 1, 342.00, 0.00, 0.00, 342.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(20, 20, 'GMC Sierra 1500 Denali 2024', '', 1, 165.00, 0.00, 0.00, 165.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(21, 21, 'Chevrolet Camaro SS 1LE 2024', '', 1, 212.00, 0.00, 0.00, 212.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(22, 22, 'Porsche Taycan Turbo S Cross Turismo 2024', '', 1, 270.00, 0.00, 0.00, 270.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(23, 23, 'Koenigsegg Jesko Absolut 2024', '', 1, 184.00, 0.00, 0.00, 184.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(24, 24, 'Porsche Macan S 2024', '', 1, 445.00, 0.00, 0.00, 445.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(25, 25, 'Mercedes-AMG GLE 63 S 4MATIC+ 2024', '', 1, 90.00, 0.00, 0.00, 90.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(26, 26, 'BMW X5 xDrive40i M Sport 2024', '', 1, 588.00, 0.00, 0.00, 588.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(27, 27, 'Toyota RAV4 Prime XSE AWD 2024', '', 1, 144.00, 0.00, 0.00, 144.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(28, 28, 'Acura MDX Type S Advance 2024', '', 1, 276.00, 0.00, 0.00, 276.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(29, 29, 'McLaren GT Luxe 2024', '', 1, 658.00, 0.00, 0.00, 658.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(30, 30, 'Toyota Camry XLE Hybrid 2024', '', 1, 395.00, 0.00, 0.00, 395.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(31, 31, 'Rolls-Royce Cullinan Black Badge 2024', '', 1, 249.00, 0.00, 0.00, 249.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(32, 32, 'Volkswagen Tiguan SEL R-Line 2024', '', 1, 58.00, 0.00, 0.00, 58.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(33, 33, 'Nissan GT-R NISMO Special Edition 2024', '', 1, 390.00, 0.00, 0.00, 390.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(34, 34, 'Lexus RX 350 F Sport Handling AWD 2024', '', 1, 560.00, 0.00, 0.00, 560.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(35, 35, 'Ford GT Heritage Edition 2024', '', 1, 282.00, 0.00, 0.00, 282.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(36, 36, 'Honda Pilot TrailSport AWD 2024', '', 1, 234.00, 0.00, 0.00, 234.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(37, 37, 'Genesis Electrified GV70 Advanced AWD 2024', '', 1, 340.00, 0.00, 0.00, 340.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(38, 38, 'McLaren GT Luxe 2024', '', 1, 470.00, 0.00, 0.00, 470.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(39, 39, 'Mitsubishi Outlander SEL S-AWC 2024', '', 1, 248.00, 0.00, 0.00, 248.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(40, 40, 'Alfa Romeo Stelvio Veloce AWD 2024', '', 1, 564.00, 0.00, 0.00, 564.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(41, 41, 'Mercedes-AMG GLE 63 S 4MATIC+ 2024', '', 1, 90.00, 0.00, 0.00, 90.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(42, 42, 'Toyota Corolla Hybrid LE 2024', '', 1, 132.00, 0.00, 0.00, 132.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(43, 43, 'Aston Martin DBX707 2024', '', 1, 170.00, 0.00, 0.00, 170.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(44, 44, 'Toyota Corolla Hybrid LE 2024', '', 1, 132.00, 0.00, 0.00, 132.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(45, 45, 'Ford Mustang GT Premium 2024', '', 1, 97.00, 0.00, 0.00, 97.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(46, 46, 'Porsche Cayenne Turbo GT 2024', '', 1, 258.00, 0.00, 0.00, 258.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(47, 47, 'Porsche Macan S 2024', '', 1, 445.00, 0.00, 0.00, 445.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(48, 48, 'Mazda MX-5 Miata Grand Touring 2024', '', 1, 240.00, 0.00, 0.00, 240.00, '2026-03-06 08:24:06', '2026-03-06 08:24:06'),
(49, 49, 'Hyundai Tucson Limited AWD 2024', '', 1, 230.00, 0.00, 0.00, 230.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(50, 50, 'Genesis GV70 2.5T Sport AWD 2024', '', 1, 114.00, 0.00, 0.00, 114.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(51, 51, 'Lexus RX 350 F Sport Handling AWD 2024', '', 1, 240.00, 0.00, 0.00, 240.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(52, 52, 'Aston Martin DBX707 2024', '', 1, 255.00, 0.00, 0.00, 255.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(53, 53, 'Mercedes-Benz G550 4MATIC 2024', '', 1, 217.00, 0.00, 0.00, 217.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(54, 54, 'Aston Martin DBX707 2024', '', 1, 425.00, 0.00, 0.00, 425.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(55, 55, 'Pagani Huayra Roadster BC 2024', '', 1, 39.00, 0.00, 0.00, 39.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(56, 56, 'BMW M5 Competition xDrive 2024', '', 1, 365.00, 0.00, 0.00, 365.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(57, 57, 'Lamborghini Huracán EVO 2024', '', 1, 282.00, 0.00, 0.00, 282.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(58, 58, 'McLaren GT Luxe 2024', '', 1, 94.00, 0.00, 0.00, 94.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(59, 59, 'Acura MDX Type S Advance 2024', '', 1, 230.00, 0.00, 0.00, 230.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(60, 60, 'Genesis GV70 2.5T Sport AWD 2024', '', 1, 152.00, 0.00, 0.00, 152.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(61, 61, 'BMW XM Label Red 2024', '', 1, 594.00, 0.00, 0.00, 594.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(62, 62, 'Chevrolet Blazer RS AWD 2024', '', 1, 350.00, 0.00, 0.00, 350.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(63, 63, 'Chevrolet Blazer RS AWD 2024', '', 1, 350.00, 0.00, 0.00, 350.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(64, 64, 'Lexus RX 350 F Sport Handling AWD 2024', '', 1, 320.00, 0.00, 0.00, 320.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(65, 65, 'Honda Accord Sport 2.0T 2024', '', 1, 208.00, 0.00, 0.00, 208.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(66, 66, 'Ferrari Roma Spider 2024', '', 1, 171.00, 0.00, 0.00, 171.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(67, 67, 'Mini Cooper S Hardtop 2024', '', 1, 183.00, 0.00, 0.00, 183.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(68, 68, 'Tesla Model 3 Long Range AWD 2024', '', 1, 450.00, 0.00, 0.00, 450.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(69, 69, 'Lucid Air Grand Touring Performance 2024', '', 1, 112.00, 0.00, 0.00, 112.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(70, 70, 'Mitsubishi Outlander SEL S-AWC 2024', '', 1, 124.00, 0.00, 0.00, 124.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(71, 71, 'Lexus ES 350 F Sport 2024', '', 1, 370.00, 0.00, 0.00, 370.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(72, 72, 'Toyota Corolla Hybrid LE 2024', '', 1, 198.00, 0.00, 0.00, 198.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(73, 73, 'Nissan GT-R NISMO Special Edition 2024', '', 1, 195.00, 0.00, 0.00, 195.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(74, 74, 'Rivian R1S Adventure 2024', '', 1, 180.00, 0.00, 0.00, 180.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(75, 75, 'Nissan GT-R NISMO Special Edition 2024', '', 1, 65.00, 0.00, 0.00, 65.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(76, 76, 'Range Rover Sport HSE Dynamic 2024', '', 1, 245.00, 0.00, 0.00, 245.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(77, 77, 'Audi A4 Premium Plus quattro 2024', '', 1, 154.00, 0.00, 0.00, 154.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(78, 78, 'Mitsubishi Outlander SEL S-AWC 2024', '', 1, 372.00, 0.00, 0.00, 372.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(79, 79, 'Acura MDX Type S Advance 2024', '', 1, 276.00, 0.00, 0.00, 276.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(80, 80, 'Toyota Camry XLE Hybrid 2024', '', 1, 79.00, 0.00, 0.00, 79.00, '2026-03-06 08:24:07', '2026-03-06 08:24:07'),
(81, 81, 'Ford Bronco', '', 1, 50.00, 0.00, 0.00, 50.00, '2026-03-18 04:01:46', '2026-03-18 04:01:46'),
(82, 82, 'Ford Bronco', '', 1, 50.00, 0.00, 0.00, 50.00, '2026-04-06 04:50:31', '2026-04-06 04:50:31'),
(83, 83, 'Mercedes-Benz C300 4MATIC 2024', '', 1, 66.00, 0.00, 0.00, 66.00, '2026-04-09 14:21:52', '2026-04-09 14:21:52'),
(84, 83, 'Car Wash &amp; Detailing Package (Services)', '', 1, 217.00, 0.00, 0.00, 217.00, '2026-04-09 14:21:52', '2026-04-09 14:21:52'),
(85, 83, 'Temporary Car Replacement (Services)', '', 1, 259.00, 0.00, 0.00, 259.00, '2026-04-09 14:21:52', '2026-04-09 14:21:52'),
(86, 83, 'Pick-Up &amp; Drop-Off Service (Services)', '', 1, 168.00, 0.00, 0.00, 168.00, '2026-04-09 14:21:52', '2026-04-09 14:21:52'),
(87, 84, 'verna', '', 1, 200.00, 0.00, 0.00, 200.00, '2026-04-09 14:33:18', '2026-04-09 14:33:18'),
(88, 84, 'Tire Replacement &amp; Balancing (Services)', '', 1, 192.00, 0.00, 0.00, 192.00, '2026-04-09 14:33:18', '2026-04-09 14:33:18'),
(89, 84, 'Premium Fuel Service (Services)', '', 1, 959.00, 0.00, 0.00, 959.00, '2026-04-09 14:33:18', '2026-04-09 14:33:18'),
(90, 85, 'Honda Accord Sport 2.0T 2024', '', 1, 52.00, 0.00, 0.00, 52.00, '2026-04-22 10:50:48', '2026-04-22 10:50:48'),
(91, 85, 'Temporary Car Replacement (Services)', '', 1, 259.00, 0.00, 0.00, 259.00, '2026-04-22 10:50:48', '2026-04-22 10:50:48'),
(92, 86, 'Verna', '', 1, 800.00, 0.00, 0.00, 800.00, '2026-04-22 11:22:18', '2026-04-22 11:22:18'),
(93, 86, 'Driver Rental Service (Services)', '', 1, 536.00, 0.00, 0.00, 536.00, '2026-04-22 11:22:18', '2026-04-22 11:22:18'),
(94, 87, 'Verna', '', 1, 600.00, 0.00, 0.00, 600.00, '2026-04-22 11:27:15', '2026-04-22 11:27:15'),
(95, 87, 'Pick-Up &amp; Drop-Off Service (Services)', '', 1, 168.00, 0.00, 0.00, 168.00, '2026-04-22 11:27:15', '2026-04-22 11:27:15'),
(96, 88, 'Verna', '', 1, 200.00, 0.00, 0.00, 200.00, '2026-04-22 11:33:09', '2026-04-22 11:33:09'),
(97, 89, 'BMW 330i xDrive M Sport 2024', '', 1, 540.00, 0.00, 0.00, 540.00, '2026-04-22 14:06:51', '2026-04-22 14:06:51'),
(98, 89, 'Car Insurance Assistance (Services)', '', 1, 337.00, 0.00, 0.00, 337.00, '2026-04-22 14:06:51', '2026-04-22 14:06:51'),
(99, 90, 'Ford Bronco', '', 1, 50.00, 0.00, 0.00, 50.00, '2026-04-30 07:13:22', '2026-04-30 07:13:22'),
(100, 90, 'Get Cars for Business Travel and Work Meetings (Services)', '', 1, 733.00, 0.00, 0.00, 733.00, '2026-04-30 07:13:22', '2026-04-30 07:13:22'),
(101, 91, 'Mercedes-Benz C300 4MATIC 2024', '', 1, 132.00, 0.00, 0.00, 132.00, '2026-06-09 05:47:50', '2026-06-09 05:47:50'),
(102, 92, 'Toyota RAV4 Prime XSE AWD 2024', '', 1, 72.00, 0.00, 0.00, 72.00, '2026-06-09 09:40:22', '2026-06-09 09:40:22');

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

--
-- Table structure for table `cr_messages`
--

CREATE TABLE `cr_messages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `car_id` bigint(20) UNSIGNED DEFAULT NULL,
  `customer_id` bigint(20) UNSIGNED DEFAULT NULL,
  `name` varchar(60) NOT NULL,
  `email` varchar(60) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `phone` varchar(60) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'unread',
  `vendor_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cr_messages`
--

INSERT INTO `cr_messages` (`id`, `car_id`, `customer_id`, `name`, `email`, `content`, `ip_address`, `created_at`, `updated_at`, `phone`, `status`, `vendor_id`) VALUES
(1, NULL, 29, 'John Doe', 'johndoe@example.com', 'I would like to know more about your services.', '192.168.1.1', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '123-456-7890', 'unread', 9),
(2, NULL, 31, 'Jane Smith', 'janesmith@example.com', 'Can you provide a quotation for the project?', '192.168.1.2', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '987-654-3210', 'read', NULL),
(3, NULL, 17, 'Alice Brown', 'alicebrown@example.com', 'I am having an issue with my recent order.', '192.168.1.3', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '555-666-7777', 'unread', NULL),
(4, NULL, 6, 'Bob Green', 'bobgreen@example.com', 'What are your business hours?', '192.168.1.4', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '222-333-4444', 'read', 18),
(5, NULL, 25, 'Charlie White', 'charliewhite@example.com', 'I need assistance with your product.', '192.168.1.5', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '333-444-5555', 'unread', NULL),
(6, NULL, 20, 'Diana Blue', 'dianablue@example.com', 'Do you offer international shipping?', '192.168.1.6', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '444-555-6666', 'read', NULL),
(7, NULL, 8, 'Edward Black', 'edwardblack@example.com', 'Can I schedule an appointment?', '192.168.1.7', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '555-666-7778', 'read', 5),
(8, NULL, 1, 'Fiona Gray', 'fionagray@example.com', 'Your website is not loading for me.', '192.168.1.8', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '666-777-8888', 'read', NULL),
(9, NULL, 26, 'George Violet', 'georgeviolet@example.com', 'I want to change my order details.', '192.168.1.9', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '777-888-9999', 'read', NULL),
(10, NULL, 12, 'Hannah Pink', 'hannahpink@example.com', 'Can you send me a catalog of your products?', '192.168.1.10', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '888-999-0000', 'read', 20),
(11, NULL, 25, 'Ian Orange', 'ianorange@example.com', 'Do you offer discounts for bulk purchases?', '192.168.1.11', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '999-000-1111', 'read', NULL),
(12, NULL, 14, 'Jack Purple', 'jackpurple@example.com', 'I forgot my account password.', '192.168.1.12', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '000-111-2222', 'unread', NULL),
(13, NULL, 15, 'Karen Yellow', 'karenyellow@example.com', 'Can you expedite my order?', '192.168.1.13', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '111-222-3333', 'unread', 20),
(14, NULL, 1, 'Liam Red', 'liamred@example.com', 'Do you have a return policy?', '192.168.1.14', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '222-333-4445', 'read', NULL),
(15, NULL, 17, 'Mia Silver', 'miasilver@example.com', 'Thank you for resolving my issue quickly.', '192.168.1.15', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '333-444-5556', 'unread', NULL),
(16, NULL, 19, 'Noah Gold', 'noahgold@example.com', 'Can I get an invoice for my purchase?', '192.168.1.16', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '444-555-6667', 'read', 10),
(17, NULL, 16, 'Olivia Bronze', 'oliviabronze@example.com', 'I would like to cancel my order.', '192.168.1.17', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '555-666-7779', 'unread', NULL),
(18, NULL, 24, 'Paul Amber', 'paulamber@example.com', 'Your support team is very helpful.', '192.168.1.18', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '666-777-8889', 'read', NULL),
(19, NULL, 30, 'Quinn Platinum', 'quinnplatinum@example.com', 'How do I track my shipment?', '192.168.1.19', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '777-888-9990', 'read', 20),
(20, NULL, 15, 'Ruby Diamond', 'rubydiamond@example.com', 'Great service and prompt delivery!', '192.168.1.20', '2026-03-06 08:24:07', '2026-03-06 08:24:07', '888-999-0001', 'unread', NULL),
(21, 43, NULL, 'Provider', 'provider@demo.com', 'Hello, I am interested in your car rental service.', '122.168.35.156', '2026-04-22 10:35:51', '2026-04-22 10:35:51', '1234567890', 'unread', 18),
(22, 43, NULL, 'User Demo', 'user@demo.com', 'Hello, I am interested in your car rental service.', '152.58.30.89', '2026-04-22 10:51:17', '2026-04-22 10:51:17', '+918302786761', 'unread', 18),
(23, 74, NULL, 'User Demo', 'user@demo.com', 'Hello, I am interested in your car rental service.', '127.0.0.1', '2026-04-23 09:39:03', '2026-04-23 09:39:03', '+918302786761', 'unread', 13);

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

--
-- Table structure for table `cr_services`
--

CREATE TABLE `cr_services` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` text DEFAULT NULL,
  `content` text DEFAULT NULL,
  `price` double UNSIGNED NOT NULL DEFAULT 0,
  `currency_id` bigint(20) UNSIGNED DEFAULT NULL,
  `price_type` varchar(191) NOT NULL DEFAULT 'once',
  `image` varchar(191) DEFAULT NULL,
  `logo` varchar(191) 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 `cr_services`
--

INSERT INTO `cr_services` (`id`, `name`, `description`, `content`, `price`, `currency_id`, `price_type`, `image`, `logo`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Driver Rental Service', 'In addition to our car rental service, we offer professional drivers for hire. Enjoy a stress-free journey with our experienced drivers handling the road.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><shortcode>[content-images quantity=\"2\" image_1=\"news/5.jpg\" image_2=\"news/2.jpg\"][/content-images]</shortcode><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Environmental responsibility is important to us. We use eco-friendly products and properly dispose of all automotive waste according to environmental regulations. We offer competitive pricing without compromising on quality. Our transparent pricing policy means no hidden fees or unexpected charges.\" content_2=\"Environmental responsibility is important to us. We use eco-friendly products and properly dispose of all automotive waste according to environmental regulations. Our state-of-the-art facility is equipped with the latest diagnostic tools and equipment to accurately identify and resolve any issues with your vehicle.\"][/content-columns]</shortcode><shortcode>[content-images quantity=\"2\" image_1=\"news/5.jpg\" image_2=\"news/2.jpg\"][/content-images]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 536, 1, 'once', 'services/citron-with-bg-1-520x380.png', 'icons/lexus.png', 'published', '2026-03-06 08:22:49', '2026-03-20 04:23:32'),
(2, 'Get Cars for Business Travel and Work Meetings', 'Navigate seamlessly between meetings or conferences with a self-drive car that works around your needs.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><shortcode>[content-images quantity=\"2\" image_1=\"news/9.jpg\" image_2=\"news/9.jpg\"][/content-images]</shortcode><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Customer satisfaction is our top priority. We understand that your time is valuable, which is why we offer flexible scheduling and quick turnaround times for all our services. Our convenient location and extended hours make it easy for you to access our services whenever you need them.\" content_2=\"Our convenient location and extended hours make it easy for you to access our services whenever you need them. We believe in building long-term relationships with our customers. That is why we offer loyalty programs and special discounts for returning clients.\"][/content-columns]</shortcode><shortcode>[content-images quantity=\"2\" image_1=\"news/9.jpg\" image_2=\"news/9.jpg\"][/content-images]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 733, 1, 'once', 'img-5.png', 'icons/mer.png', 'published', '2026-03-06 08:22:49', '2026-03-27 08:46:34'),
(3, 'Car Wash & Detailing Package', 'Enhance your car rental or repair experience with our premium car wash and detailing service, leaving your car spotless inside and out.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><shortcode>[content-images quantity=\"2\" image_1=\"news/9.jpg\" image_2=\"news/6.jpg\"][/content-images]</shortcode><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Environmental responsibility is important to us. We use eco-friendly products and properly dispose of all automotive waste according to environmental regulations. Customer satisfaction is our top priority. We understand that your time is valuable, which is why we offer flexible scheduling and quick turnaround times for all our services.\" content_2=\"Our state-of-the-art facility is equipped with the latest diagnostic tools and equipment to accurately identify and resolve any issues with your vehicle. Our team of certified professionals ensures that every service is delivered with the highest standards of quality and care. We use only genuine parts and industry-approved methods to maintain your vehicle.\"][/content-columns]</shortcode><shortcode>[content-images quantity=\"2\" image_1=\"news/9.jpg\" image_2=\"news/6.jpg\"][/content-images]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 217, 1, 'once', 'services/pexels-harrisonhaines-3536293.jpg', 'icons/bugatti.png', 'published', '2026-03-06 08:22:49', '2026-03-27 08:52:09'),
(4, 'Roadside Assistance', 'Our roadside assistance service ensures peace of mind while you rent or drive. Get help with breakdowns, flat tires, or towing when you need it most.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><shortcode>[content-images quantity=\"2\" image_1=\"news/7.jpg\" image_2=\"news/4.jpg\"][/content-images]</shortcode><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Safety is paramount in everything we do. Our technicians follow strict safety protocols to ensure your vehicle meets all safety standards. Safety is paramount in everything we do. Our technicians follow strict safety protocols to ensure your vehicle meets all safety standards.\" content_2=\"We believe in building long-term relationships with our customers. That is why we offer loyalty programs and special discounts for returning clients. Customer satisfaction is our top priority. We understand that your time is valuable, which is why we offer flexible scheduling and quick turnaround times for all our services.\"][/content-columns]</shortcode><shortcode>[content-images quantity=\"2\" image_1=\"news/7.jpg\" image_2=\"news/4.jpg\"][/content-images]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 214, 1, 'once', 'services/how-can-we-use-roadside-assistance-cover-in-car-insurance-520x380.jpg', 'icons/jaguar.png', 'published', '2026-03-06 08:22:49', '2026-03-20 04:24:17'),
(5, 'Temporary Car Replacement', 'If your car is in for repairs or maintenance, we offer a temporary car replacement service so you\'re never without transportation.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><shortcode>[content-images quantity=\"2\" image_1=\"news/9.jpg\" image_2=\"news/3.jpg\"][/content-images]</shortcode><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Our team of certified professionals ensures that every service is delivered with the highest standards of quality and care. We use only genuine parts and industry-approved methods to maintain your vehicle. Environmental responsibility is important to us. We use eco-friendly products and properly dispose of all automotive waste according to environmental regulations.\" content_2=\"Our team of certified professionals ensures that every service is delivered with the highest standards of quality and care. We use only genuine parts and industry-approved methods to maintain your vehicle. We stay up-to-date with the latest automotive technologies and continuously train our staff to handle both classic and modern vehicles.\"][/content-columns]</shortcode><shortcode>[content-images quantity=\"2\" image_1=\"news/9.jpg\" image_2=\"news/3.jpg\"][/content-images]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 259, 1, 'once', 'services/car-replace-520x380.jpg', 'icons/honda.png', 'published', '2026-03-06 08:22:49', '2026-03-20 04:25:08'),
(6, 'Tire Replacement & Balancing', 'We provide tire replacement and wheel balancing services, ensuring your car is safe and smooth on the road, available as an add-on to any maintenance package.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><shortcode>[content-images quantity=\"2\" image_1=\"news/7.jpg\" image_2=\"news/1.jpg\"][/content-images]</shortcode><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Our convenient location and extended hours make it easy for you to access our services whenever you need them. Customer satisfaction is our top priority. We understand that your time is valuable, which is why we offer flexible scheduling and quick turnaround times for all our services.\" content_2=\"We believe in building long-term relationships with our customers. That is why we offer loyalty programs and special discounts for returning clients. Customer satisfaction is our top priority. We understand that your time is valuable, which is why we offer flexible scheduling and quick turnaround times for all our services.\"][/content-columns]</shortcode><shortcode>[content-images quantity=\"2\" image_1=\"news/7.jpg\" image_2=\"news/1.jpg\"][/content-images]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 192, 1, 'once', 'services/tire-replacement-520x380.jpg', 'icons/chevrolet.png', 'published', '2026-03-06 08:22:49', '2026-03-20 04:25:26'),
(7, 'Vehicle Inspection Service', 'For those looking to sell or rent a car, we offer thorough vehicle inspection services to certify your car\'s condition and increase its market value.', '<h6>Determine Your Trip Purpose</h6>\n\n<p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p>\n\n[content-images quantity=\"2\" image_1=\"news/1.jpg\" image_2=\"news/6.jpg\"][/content-images]\n\n<h6>Consider the Number of Passengers and Luggage</h6>\n\n<p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p>\n\n<h6>Think About the Terrain and Weather Conditions</h6>\n\n<p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p>\n\n<h6>Assess Your Budget</h6>\n\n<p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p>\n\n<h6>Check for Special Requirements or Preferences</h6>\n\n[content-columns quantity=\"2\" content_1=\"Our convenient location and extended hours make it easy for you to access our services whenever you need them. With years of experience in the automotive industry, we have built a reputation for reliability and excellence. Our customers trust us to keep their vehicles running smoothly.\" content_2=\"Our state-of-the-art facility is equipped with the latest diagnostic tools and equipment to accurately identify and resolve any issues with your vehicle. Environmental responsibility is important to us. We use eco-friendly products and properly dispose of all automotive waste according to environmental regulations.\"][/content-columns]\n\n[content-images quantity=\"2\" image_1=\"news/1.jpg\" image_2=\"news/6.jpg\"][/content-images]\n\n<h6>Conclusion</h6>\n\n<p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>\n', 765, NULL, 'once', 'news/7.jpg', 'icons/chevrolet.png', 'published', '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(8, 'Car Insurance Assistance', 'Our experts can help you find the right car insurance policy, available as an add-on when purchasing or renting a vehicle from us.', '<h6>Determine Your Trip Purpose</h6>\n\n<p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p>\n\n[content-images quantity=\"2\" image_1=\"news/5.jpg\" image_2=\"news/5.jpg\"][/content-images]\n\n<h6>Consider the Number of Passengers and Luggage</h6>\n\n<p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p>\n\n<h6>Think About the Terrain and Weather Conditions</h6>\n\n<p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p>\n\n<h6>Assess Your Budget</h6>\n\n<p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p>\n\n<h6>Check for Special Requirements or Preferences</h6>\n\n[content-columns quantity=\"2\" content_1=\"Our team of certified professionals ensures that every service is delivered with the highest standards of quality and care. We use only genuine parts and industry-approved methods to maintain your vehicle. Customer satisfaction is our top priority. We understand that your time is valuable, which is why we offer flexible scheduling and quick turnaround times for all our services.\" content_2=\"We believe in building long-term relationships with our customers. That is why we offer loyalty programs and special discounts for returning clients. With years of experience in the automotive industry, we have built a reputation for reliability and excellence. Our customers trust us to keep their vehicles running smoothly.\"][/content-columns]\n\n[content-images quantity=\"2\" image_1=\"news/5.jpg\" image_2=\"news/5.jpg\"][/content-images]\n\n<h6>Conclusion</h6>\n\n<p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>\n', 337, NULL, 'once', 'news/8.jpg', 'icons/chevrolet.png', 'published', '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(9, 'Pick-Up & Drop-Off Service', 'We offer a convenient pick-up and drop-off service when you rent a car, have your car serviced, or use our detailing services.', '<h6>Determine Your Trip Purpose</h6>\n\n<p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p>\n\n[content-images quantity=\"2\" image_1=\"news/1.jpg\" image_2=\"news/1.jpg\"][/content-images]\n\n<h6>Consider the Number of Passengers and Luggage</h6>\n\n<p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p>\n\n<h6>Think About the Terrain and Weather Conditions</h6>\n\n<p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p>\n\n<h6>Assess Your Budget</h6>\n\n<p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p>\n\n<h6>Check for Special Requirements or Preferences</h6>\n\n[content-columns quantity=\"2\" content_1=\"Our team of certified professionals ensures that every service is delivered with the highest standards of quality and care. We use only genuine parts and industry-approved methods to maintain your vehicle. Our convenient location and extended hours make it easy for you to access our services whenever you need them.\" content_2=\"Our convenient location and extended hours make it easy for you to access our services whenever you need them. Our team of certified professionals ensures that every service is delivered with the highest standards of quality and care. We use only genuine parts and industry-approved methods to maintain your vehicle.\"][/content-columns]\n\n[content-images quantity=\"2\" image_1=\"news/1.jpg\" image_2=\"news/1.jpg\"][/content-images]\n\n<h6>Conclusion</h6>\n\n<p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>\n', 168, NULL, 'once', 'news/9.jpg', 'icons/chevrolet.png', 'published', '2026-03-06 08:22:49', '2026-03-06 08:22:49'),
(10, 'Premium Fuel Service', 'Refuel your rental or serviced vehicle with high-quality premium fuel before hitting the road, ensuring optimal performance and mileage.', '<h6>Determine Your Trip Purpose</h6>\n\n<p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p>\n\n[content-images quantity=\"2\" image_1=\"news/1.jpg\" image_2=\"news/9.jpg\"][/content-images]\n\n<h6>Consider the Number of Passengers and Luggage</h6>\n\n<p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p>\n\n<h6>Think About the Terrain and Weather Conditions</h6>\n\n<p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p>\n\n<h6>Assess Your Budget</h6>\n\n<p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p>\n\n<h6>Check for Special Requirements or Preferences</h6>\n\n[content-columns quantity=\"2\" content_1=\"We offer competitive pricing without compromising on quality. Our transparent pricing policy means no hidden fees or unexpected charges. Our convenient location and extended hours make it easy for you to access our services whenever you need them.\" content_2=\"Our state-of-the-art facility is equipped with the latest diagnostic tools and equipment to accurately identify and resolve any issues with your vehicle. We offer competitive pricing without compromising on quality. Our transparent pricing policy means no hidden fees or unexpected charges.\"][/content-columns]\n\n[content-images quantity=\"2\" image_1=\"news/1.jpg\" image_2=\"news/9.jpg\"][/content-images]\n\n<h6>Conclusion</h6>\n\n<p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>\n', 959, NULL, 'once', 'news/10.jpg', 'icons/chevrolet.png', 'published', '2026-03-06 08:22:49', '2026-03-06 08:22:49');

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

--
-- Table structure for table `cr_services_translations`
--

CREATE TABLE `cr_services_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_services_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(191) DEFAULT NULL,
  `content` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_tags`
--

CREATE TABLE `cr_tags` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `description` varchar(400) 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;

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

--
-- Table structure for table `cr_tags_translations`
--

CREATE TABLE `cr_tags_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_tags_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_taxes`
--

CREATE TABLE `cr_taxes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `percentage` decimal(10,2) DEFAULT NULL,
  `status` varchar(30) NOT NULL DEFAULT 'published',
  `priority` smallint(5) UNSIGNED NOT NULL DEFAULT 1,
  `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 `cr_taxes`
--

INSERT INTO `cr_taxes` (`id`, `name`, `percentage`, `status`, `priority`, `created_at`, `updated_at`) VALUES
(1, 'Import Duty', 1.78, 'published', 1, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(2, 'Value Added Tax (VAT)', 0.21, 'published', 2, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(3, 'Currency Conversion', 2.95, 'published', 3, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(4, 'Brokerage', 2.89, 'published', 4, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(5, 'Storage', 1.81, 'published', 5, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(6, 'Administrative', 1.37, 'published', 6, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(7, 'Handling', 2.15, 'published', 7, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(8, 'Insurance', 4.51, 'published', 8, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(9, 'Rural Delivery', 2.19, 'published', 9, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(10, 'Return Shipping', 0.89, 'published', 10, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(11, 'Environmental', 2.53, 'published', 11, '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(12, 'Excise', 0.86, 'published', 12, '2026-03-06 08:22:48', '2026-03-06 08:22:48');

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

--
-- Table structure for table `cr_taxes_translations`
--

CREATE TABLE `cr_taxes_translations` (
  `lang_code` varchar(191) NOT NULL,
  `cr_taxes_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cr_trip_messages`
--

CREATE TABLE `cr_trip_messages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `booking_id` bigint(20) UNSIGNED NOT NULL,
  `sender_type` varchar(191) DEFAULT NULL,
  `sender_id` bigint(20) UNSIGNED DEFAULT NULL,
  `message` text DEFAULT NULL,
  `type` varchar(60) NOT NULL DEFAULT 'user_message',
  `vendor_first_reply_at` timestamp NULL 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 `cr_trip_messages`
--

INSERT INTO `cr_trip_messages` (`id`, `booking_id`, `sender_type`, `sender_id`, `message`, `type`, `vendor_first_reply_at`, `created_at`, `updated_at`) VALUES
(1, 82, 'Mxcar\\CarRentals\\Models\\Customer', 36, 'hii', 'user_message', NULL, '2026-04-09 15:38:18', '2026-04-09 15:38:18'),
(2, 82, 'Mxcar\\CarRentals\\Models\\Customer', 34, 'hello', 'user_message', NULL, '2026-04-09 15:38:28', '2026-04-09 15:38:28'),
(3, 82, 'Mxcar\\CarRentals\\Models\\Customer', 34, 'hii', 'user_message', NULL, '2026-04-09 15:38:32', '2026-04-09 15:38:32'),
(4, 82, 'Mxcar\\CarRentals\\Models\\Customer', 36, 'hi', 'user_message', NULL, '2026-04-09 15:38:47', '2026-04-09 15:38:47'),
(5, 82, 'Mxcar\\CarRentals\\Models\\Customer', 34, 'hii', 'user_message', NULL, '2026-04-09 16:00:43', '2026-04-09 16:00:43'),
(6, 82, 'Mxcar\\CarRentals\\Models\\Customer', 36, 'kya haal haii', 'user_message', NULL, '2026-04-09 16:00:54', '2026-04-09 16:00:54'),
(7, 82, 'Mxcar\\CarRentals\\Models\\Customer', 34, 'hi', 'user_message', NULL, '2026-04-09 16:01:05', '2026-04-09 16:01:05'),
(8, 82, 'Mxcar\\CarRentals\\Models\\Customer', 36, 'hii', 'user_message', NULL, '2026-04-09 16:01:59', '2026-04-09 16:01:59'),
(9, 82, 'Mxcar\\CarRentals\\Models\\Customer', 34, 'heello', 'user_message', NULL, '2026-04-09 16:02:05', '2026-04-09 16:02:05'),
(10, 82, 'Mxcar\\CarRentals\\Models\\Customer', 34, 'Trip escalated to Support Team by Host.', 'escalation', NULL, '2026-04-09 16:04:01', '2026-04-09 16:04:01'),
(11, 90, 'Mxcar\\ACL\\Models\\User', 1, 'hii', 'user_message', NULL, '2026-04-09 16:53:29', '2026-04-09 16:53:29'),
(12, 82, 'Mxcar\\CarRentals\\Models\\Customer', 36, 'Hi', 'user_message', NULL, '2026-04-22 11:17:09', '2026-04-22 11:17:09'),
(13, 97, 'Mxcar\\CarRentals\\Models\\Customer', 1, 'hello can we go?', 'user_message', NULL, '2026-06-10 06:52:43', '2026-06-10 06:52:43');

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

--
-- Table structure for table `cr_vehicle_telematics_logs`
--

CREATE TABLE `cr_vehicle_telematics_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `car_id` bigint(20) UNSIGNED NOT NULL,
  `event_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'periodic_ping',
  `latitude` decimal(10,8) DEFAULT NULL,
  `longitude` decimal(11,8) DEFAULT NULL,
  `speed_mph` double DEFAULT NULL,
  `odometer_miles` double DEFAULT NULL,
  `fuel_percentage` double DEFAULT NULL,
  `raw_payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

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

--
-- Table structure for table `cr_vendor_quality_scores`
--

CREATE TABLE `cr_vendor_quality_scores` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `vendor_id` bigint(20) UNSIGNED NOT NULL,
  `rating_score` decimal(5,2) NOT NULL DEFAULT 0.00,
  `completion_rate` decimal(5,2) NOT NULL DEFAULT 0.00,
  `cancellation_score` decimal(5,2) NOT NULL DEFAULT 0.00,
  `response_score` decimal(5,2) NOT NULL DEFAULT 0.00,
  `acceptance_rate` decimal(5,2) NOT NULL DEFAULT 0.00,
  `total_score` decimal(5,2) NOT NULL DEFAULT 0.00,
  `badge_tier` varchar(30) DEFAULT NULL,
  `badge_override` tinyint(1) NOT NULL DEFAULT 0,
  `override_badge` varchar(30) DEFAULT NULL,
  `total_bookings` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `completed_bookings` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `cancelled_bookings` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `avg_rating` decimal(3,2) NOT NULL DEFAULT 0.00,
  `avg_response_hours` decimal(8,2) NOT NULL DEFAULT 0.00,
  `last_calculated_at` timestamp NULL 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 `cr_vendor_quality_scores`
--

INSERT INTO `cr_vendor_quality_scores` (`id`, `vendor_id`, `rating_score`, `completion_rate`, `cancellation_score`, `response_score`, `acceptance_rate`, `total_score`, `badge_tier`, `badge_override`, `override_badge`, `total_bookings`, `completed_bookings`, `cancelled_bookings`, `avg_rating`, `avg_response_hours`, `last_calculated_at`, `created_at`, `updated_at`) VALUES
(1, 1, 25.00, 50.00, 20.00, 4.00, 100.00, 63.00, 'rising_star', 0, NULL, 2, 1, 0, 4.57, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(2, 2, 0.00, 100.00, 20.00, 4.00, 100.00, 54.00, 'rising_star', 0, NULL, 1, 1, 0, 0.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(3, 3, 0.00, 0.00, 20.00, 4.00, 100.00, 38.00, 'none', 0, NULL, 0, 0, 0, 0.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(4, 4, 0.00, 33.33, 20.00, 4.00, 100.00, 38.00, 'none', 0, NULL, 3, 1, 0, 0.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(5, 5, 20.00, 66.67, 20.00, 4.00, 100.00, 58.00, 'rising_star', 0, NULL, 3, 2, 0, 4.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(6, 6, 14.00, 40.00, 20.00, 4.00, 100.00, 52.00, 'rising_star', 0, NULL, 5, 2, 0, 3.50, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(7, 7, 0.00, 33.33, 4.00, 4.00, 66.67, 16.00, 'none', 0, NULL, 3, 1, 1, 0.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(8, 8, 8.00, 0.00, 4.00, 4.00, 50.00, 22.00, 'none', 0, NULL, 4, 0, 1, 3.43, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(9, 9, 20.00, 0.00, 4.00, 4.00, 50.00, 34.00, 'none', 0, NULL, 3, 0, 1, 4.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(10, 10, 0.00, 60.00, 20.00, 4.00, 100.00, 38.00, 'none', 0, NULL, 5, 3, 0, 0.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(11, 11, 0.00, 0.00, 4.00, 4.00, 66.67, 16.00, 'none', 0, NULL, 4, 0, 1, 2.33, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(12, 12, 0.00, 40.00, 4.00, 4.00, 75.00, 18.00, 'none', 0, NULL, 5, 2, 1, 0.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(13, 13, 20.00, 100.00, 20.00, 4.00, 100.00, 74.00, 'top_host', 0, NULL, 2, 2, 0, 4.40, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(14, 14, 8.00, 40.00, 20.00, 4.00, 100.00, 46.00, 'none', 0, NULL, 5, 2, 0, 3.17, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(15, 15, 30.00, 0.00, 20.00, 4.00, 100.00, 68.00, 'none', 0, NULL, 0, 0, 0, 5.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(16, 16, 8.00, 60.00, 20.00, 4.00, 100.00, 46.00, 'none', 0, NULL, 5, 3, 0, 3.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(17, 17, 20.00, 50.00, 20.00, 4.00, 100.00, 58.00, 'rising_star', 0, NULL, 2, 1, 0, 4.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(18, 18, 25.00, 100.00, 20.00, 4.00, 100.00, 79.00, 'top_host', 0, NULL, 2, 2, 0, 4.50, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(19, 19, 8.00, 0.00, 20.00, 4.00, 100.00, 46.00, 'none', 0, NULL, 2, 0, 0, 3.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(20, 20, 14.00, 50.00, 20.00, 4.00, 100.00, 52.00, 'rising_star', 0, NULL, 2, 1, 0, 3.50, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02'),
(21, 32, 20.00, 0.00, 4.00, 4.00, 50.00, 34.00, 'none', 0, NULL, 2, 0, 1, 4.00, 24.00, '2026-05-02 07:30:02', '2026-04-21 11:51:34', '2026-05-02 07:30:02');

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

--
-- Table structure for table `dashboard_widgets`
--

CREATE TABLE `dashboard_widgets` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) 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 `dashboard_widgets`
--

INSERT INTO `dashboard_widgets` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'widget_total_themes', '2026-03-16 09:08:54', '2026-03-16 09:08:54'),
(2, 'widget_total_users', '2026-03-16 09:08:54', '2026-03-16 09:08:54'),
(3, 'widget_total_plugins', '2026-03-16 09:08:54', '2026-03-16 09:08:54'),
(4, 'widget_total_pages', '2026-03-16 09:08:54', '2026-03-16 09:08:54'),
(5, 'widget_posts_recent', '2026-03-16 09:08:54', '2026-03-16 09:08:54'),
(6, 'widget_audit_logs', '2026-03-16 09:08:54', '2026-03-16 09:08:54');

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

--
-- Table structure for table `dashboard_widget_settings`
--

CREATE TABLE `dashboard_widget_settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `settings` text DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `widget_id` bigint(20) UNSIGNED NOT NULL,
  `order` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `status` tinyint(3) UNSIGNED NOT NULL DEFAULT 1,
  `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 `device_tokens`
--

CREATE TABLE `device_tokens` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `token` varchar(191) NOT NULL,
  `platform` varchar(191) DEFAULT NULL,
  `app_version` varchar(191) DEFAULT NULL,
  `device_id` varchar(191) DEFAULT NULL,
  `user_type` varchar(191) DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `last_used_at` timestamp NULL 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,
  `uuid` varchar(191) 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,
  `question` text NOT NULL,
  `answer` text NOT NULL,
  `category_id` bigint(20) UNSIGNED NOT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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 `faqs`
--

INSERT INTO `faqs` (`id`, `question`, `answer`, `category_id`, `status`, `created_at`, `updated_at`) VALUES
(1, 'What sets Luxury Hotel apart from others area?', 'Our hotel stands out with its prime coastal location, captivating design that harmonizes with nature, impeccable service dedicated to fulfilling every guest’s desire, and an array of world-class amenities that redefine opulence and sophistication.', 1, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(2, 'Are pets allowed at your hotel?', 'Unfortunately, as we strive to maintain an environment of tranquility and luxury for all our guests, we regret to inform you that we do not permit pets in our elegantly appointed rooms and meticulously designed public spaces.', 2, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(3, 'Is there a service from airport to hotel?', 'Absolutely! For your convenience, we offer an exclusive airport shuttle service that can be arranged in advance. Our dedicated concierge team will be delighted to provide you with detailed information and assist with reservations.', 1, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(4, 'What dining options are available at hotel?', 'Indulge in a culinary journey at our resort with a range of exquisite dining options. From elegantly crafted local and international cuisines to delightful specialty restaurants and inviting bars, every dining experience promises to tantalize your taste buds and elevate your stay to new heights of gastronomic pleasure.', 2, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(5, 'Is there a spa and wellness center on-site?', 'Embrace holistic well-being at our luxurious on-site spa and wellness center. Immerse yourself in a world of serenity and rejuvenation with a diverse selection of treatments, therapies, and state-of-the-art facilities that cater to your body, mind, and soul.', 2, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(6, 'Do you have family-friendly activities?', 'Families are warmly welcomed to our resort, where we have thoughtfully curated a range of family-friendly amenities and activities. From a dedicated kids’ club to a family pool and a host of engaging recreational options, we ensure a harmonious and enjoyable stay for guests of all ages.', 2, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(7, 'How can I arrange special at resort?', 'Celebrate life’s most precious moments in the epitome of luxury and elegance. Our skilled event planning team is committed to orchestrating seamless and memorable celebrations, ensuring every detail is tailored to your vision. Contact our dedicated events department to embark on a journey of crafting extraordinary moments.', 3, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(8, 'What safety measures do you have for guests?', 'Your well-being is our paramount concern. We have implemented stringent health and safety protocols to ensure a secure and comfortable environment for all our guests. These measures encompass enhanced cleaning procedures, social distancing guidelines, and a commitment to maintaining the highest standards of hygiene throughout the resort.', 4, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(9, 'Can I cancel or modify my reservation?', 'Our reservation policies vary based on the rate type and specific booking conditions. We kindly advise reviewing the terms and details of your reservation or reaching out to our dedicated reservations team for personalized assistance regarding cancellations or modifications. Your comfort and satisfaction remain our utmost priority.', 1, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(10, 'What activities are near your hotel?', 'Our hotel’s prime location offers easy access to a plethora of attractions. Explore the captivating Adriatic coastline, immerse yourself in historical landmarks, indulge in vibrant local culture, and embark on memorable excursions that our concierge team can readily assist in arranging.', 5, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22');

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

--
-- Table structure for table `faqs_translations`
--

CREATE TABLE `faqs_translations` (
  `lang_code` varchar(20) NOT NULL,
  `faqs_id` bigint(20) UNSIGNED NOT NULL,
  `question` text DEFAULT NULL,
  `answer` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `faq_categories`
--

CREATE TABLE `faq_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `order` tinyint(4) NOT NULL DEFAULT 0,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `faq_categories`
--

INSERT INTO `faq_categories` (`id`, `name`, `order`, `status`, `created_at`, `updated_at`, `description`) VALUES
(1, 'GENERAL INFORMATION', 0, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22', NULL),
(2, 'ACCOMMODATIONS AND AMENITIES', 1, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22', NULL),
(3, 'SPECIAL EVENTS', 2, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22', NULL),
(4, 'SAFETY AND HEALTH', 3, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22', NULL),
(5, 'EXPLORING', 4, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22', NULL),
(6, 'Account Management', 5, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22', NULL),
(7, 'Booking and Reservations', 6, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22', NULL),
(8, 'Activity Information', 7, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22', NULL);

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

--
-- Table structure for table `faq_categories_translations`
--

CREATE TABLE `faq_categories_translations` (
  `lang_code` varchar(20) NOT NULL,
  `faq_categories_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `fob_comments`
--

CREATE TABLE `fob_comments` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `reply_to` bigint(20) UNSIGNED DEFAULT NULL,
  `author_type` varchar(191) DEFAULT NULL,
  `author_id` bigint(20) UNSIGNED DEFAULT NULL,
  `reference_type` varchar(191) DEFAULT NULL,
  `reference_id` bigint(20) UNSIGNED DEFAULT NULL,
  `reference_url` varchar(255) DEFAULT NULL,
  `name` varchar(120) NOT NULL,
  `email` varchar(120) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `content` longtext NOT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'pending',
  `ip_address` varchar(45) NOT NULL,
  `user_agent` text 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 `galleries`
--

CREATE TABLE `galleries` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `description` longtext NOT NULL,
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `order` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `image` varchar(191) DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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 `galleries`
--

INSERT INTO `galleries` (`id`, `name`, `description`, `is_featured`, `order`, `image`, `user_id`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Stunning Electric Cars of 2024', '<p>A beautiful collection of images showcasing memorable moments and stunning visuals.</p>', 0, 0, 'instagram/featured-the-advantages-and-disadvantages-of-hybrid-vs-electric-cars-150x150.jpg', 1, 'published', '2026-03-06 08:22:22', '2026-03-19 06:52:53'),
(2, 'Top Luxury Cars for Special Occasions', '<p>A beautiful collection of images showcasing memorable moments and stunning visuals.</p>', 0, 0, 'instagram/images-16-150x150.jpeg', 1, 'published', '2026-03-06 08:22:22', '2026-03-19 06:53:15'),
(3, 'Family Cars with Advanced Safety Features', '<p>A beautiful collection of images showcasing memorable moments and stunning visuals.</p>', 0, 0, 'instagram/images-18-150x150.jpeg', 1, 'published', '2026-03-06 08:22:22', '2026-03-19 06:53:30'),
(4, 'Off-Road Vehicles in Action', '<p>A beautiful collection of images showcasing memorable moments and stunning visuals.</p>', 0, 0, 'instagram/05-2023-honda-cr-v-sport-3-150x150.jpg', 1, 'published', '2026-03-06 08:22:22', '2026-03-19 06:53:52'),
(5, 'The Evolution of Car Design: A Visual Journey', '<p>A beautiful collection of images showcasing memorable moments and stunning visuals.</p>', 0, 0, 'instagram/12-04-24-gruzja-2857-150x150.jpg', 1, 'published', '2026-03-06 08:22:22', '2026-03-19 06:54:13'),
(6, 'Best Road Trip Cars of the Year', '<p>A beautiful collection of images showcasing memorable moments and stunning visuals.</p>', 0, 0, 'instagram/large-63358-2025tucsonhybrid-150x150.jpg', 1, 'published', '2026-03-06 08:22:22', '2026-03-19 06:54:27'),
(7, 'Exclusive New Car Models Unveiled', '<p>A beautiful collection of images showcasing memorable moments and stunning visuals.</p>', 0, 0, 'instagram/kia-ev6-india-150x150.jpg', 1, 'published', '2026-03-06 08:22:22', '2026-03-19 06:54:40'),
(8, 'Iconic Cars from Around the World', '<p>A beautiful collection of images showcasing memorable moments and stunning visuals.</p>', 0, 0, 'instagram/images-23-150x150.jpeg', 1, 'published', '2026-03-06 08:22:22', '2026-03-19 06:54:53'),
(9, 'The Future of Electric and Hybrid Cars', '<p>A beautiful collection of images showcasing memorable moments and stunning visuals.</p>', 0, 0, 'instagram/hybrid-x-design-study-of-the-next-generation-hybrid-vehicle-150x150.jpeg', 1, 'published', '2026-03-06 08:22:22', '2026-03-19 06:55:14'),
(10, 'Luxury Car Interiors: A Closer Look', 'A beautiful collection of images showcasing memorable moments and stunning visuals.', 0, 0, 'galleries/10.jpg', 1, 'published', '2026-03-06 08:22:22', '2026-03-06 08:22:22');

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

--
-- Table structure for table `galleries_translations`
--

CREATE TABLE `galleries_translations` (
  `lang_code` varchar(20) NOT NULL,
  `galleries_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `gallery_meta`
--

CREATE TABLE `gallery_meta` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `images` text DEFAULT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(120) 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 `gallery_meta`
--

INSERT INTO `gallery_meta` (`id`, `images`, `reference_id`, `reference_type`, `created_at`, `updated_at`) VALUES
(1, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]', 1, 'Mxcar\\Gallery\\Models\\Gallery', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(2, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]', 2, 'Mxcar\\Gallery\\Models\\Gallery', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(3, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]', 3, 'Mxcar\\Gallery\\Models\\Gallery', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(4, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]', 4, 'Mxcar\\Gallery\\Models\\Gallery', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(5, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]', 5, 'Mxcar\\Gallery\\Models\\Gallery', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(6, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]', 6, 'Mxcar\\Gallery\\Models\\Gallery', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(7, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]', 7, 'Mxcar\\Gallery\\Models\\Gallery', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(8, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]', 8, 'Mxcar\\Gallery\\Models\\Gallery', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(9, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]', 9, 'Mxcar\\Gallery\\Models\\Gallery', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(10, '[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]', 10, 'Mxcar\\Gallery\\Models\\Gallery', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(66, NULL, 14, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:05:22', '2026-04-30 09:05:22'),
(68, NULL, 11, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:07:52', '2026-04-30 09:07:52'),
(71, NULL, 26, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:13:25', '2026-04-30 09:13:25'),
(72, NULL, 13, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:15:09', '2026-04-30 09:15:09'),
(74, NULL, 21, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:17:56', '2026-04-30 09:17:56'),
(75, NULL, 25, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:18:27', '2026-04-30 09:18:27'),
(76, NULL, 23, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:20:07', '2026-04-30 09:20:07'),
(77, NULL, 22, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:20:35', '2026-04-30 09:20:35'),
(79, NULL, 2, 'Mxcar\\Blog\\Models\\Post', '2026-04-30 17:17:34', '2026-04-30 17:17:34'),
(96, NULL, 37, 'Mxcar\\Page\\Models\\Page', '2026-05-11 13:52:21', '2026-05-11 13:52:21'),
(97, NULL, 36, 'Mxcar\\Page\\Models\\Page', '2026-05-11 13:53:34', '2026-05-11 13:53:34'),
(98, NULL, 35, 'Mxcar\\Page\\Models\\Page', '2026-05-11 13:54:33', '2026-05-11 13:54:33'),
(99, NULL, 34, 'Mxcar\\Page\\Models\\Page', '2026-05-11 13:55:37', '2026-05-11 13:55:37'),
(100, NULL, 33, 'Mxcar\\Page\\Models\\Page', '2026-05-11 13:56:37', '2026-05-11 13:56:37'),
(101, NULL, 32, 'Mxcar\\Page\\Models\\Page', '2026-05-11 13:57:30', '2026-05-11 13:57:30'),
(102, NULL, 30, 'Mxcar\\Page\\Models\\Page', '2026-05-11 14:02:04', '2026-05-11 14:02:04'),
(103, NULL, 29, 'Mxcar\\Page\\Models\\Page', '2026-05-11 14:02:53', '2026-05-11 14:02:53'),
(104, NULL, 27, 'Mxcar\\Page\\Models\\Page', '2026-05-11 14:06:50', '2026-05-11 14:06:50'),
(105, NULL, 16, 'Mxcar\\Page\\Models\\Page', '2026-05-11 14:15:57', '2026-05-11 14:15:57'),
(106, NULL, 18, 'Mxcar\\Page\\Models\\Page', '2026-05-11 14:18:28', '2026-05-11 14:18:28'),
(107, NULL, 19, 'Mxcar\\Page\\Models\\Page', '2026-05-11 14:18:58', '2026-05-11 14:18:58'),
(108, NULL, 1, 'Mxcar\\Page\\Models\\Page', '2026-06-10 04:31:34', '2026-06-10 04:31:34');

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

--
-- Table structure for table `gallery_meta_translations`
--

CREATE TABLE `gallery_meta_translations` (
  `lang_code` varchar(20) NOT NULL,
  `gallery_meta_id` bigint(20) UNSIGNED NOT NULL,
  `images` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `queue` varchar(191) NOT NULL,
  `payload` longtext NOT NULL,
  `attempts` tinyint(3) UNSIGNED NOT NULL,
  `reserved_at` int(10) UNSIGNED DEFAULT NULL,
  `available_at` int(10) UNSIGNED NOT NULL,
  `created_at` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `languages` (
  `lang_id` bigint(20) UNSIGNED NOT NULL,
  `lang_name` varchar(120) NOT NULL,
  `lang_locale` varchar(20) NOT NULL,
  `lang_code` varchar(20) NOT NULL,
  `lang_flag` varchar(20) DEFAULT NULL,
  `lang_is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `lang_order` int(11) NOT NULL DEFAULT 0,
  `lang_is_rtl` tinyint(3) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `languages` (`lang_id`, `lang_name`, `lang_locale`, `lang_code`, `lang_flag`, `lang_is_default`, `lang_order`, `lang_is_rtl`) VALUES
(1, 'English', 'en', 'en_US', 'us', 1, 0, 0);

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

--
-- Table structure for table `language_meta`
--

CREATE TABLE `language_meta` (
  `lang_meta_id` bigint(20) UNSIGNED NOT NULL,
  `lang_meta_code` varchar(20) DEFAULT NULL,
  `lang_meta_origin` varchar(32) NOT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(120) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `language_meta`
--

INSERT INTO `language_meta` (`lang_meta_id`, `lang_meta_code`, `lang_meta_origin`, `reference_id`, `reference_type`) VALUES
(1, 'en_US', '0eb187bd677352da0b51fde2afe35cca', 1, 'Mxcar\\Menu\\Models\\MenuLocation'),
(2, 'en_US', 'd7eac16b9db725041f3076f62acb4468', 1, 'Mxcar\\Menu\\Models\\Menu'),
(3, 'en_US', '69f3ffbca46a6517b5a1b46559084e67', 1, 'Mxcar\\SimpleSlider\\Models\\SimpleSlider'),
(4, 'en_US', '491c39cf2dcb04a8e78914a1c432bd0d', 2, 'Mxcar\\SimpleSlider\\Models\\SimpleSlider'),
(5, 'en_US', '766dcb434b464b7ff69f4c651adda390', 1, 'Mxcar\\Menu\\Models\\MenuNode'),
(6, 'en_US', 'f4051fd48038280db455fa1ff9f5f56b', 5, 'Mxcar\\Menu\\Models\\MenuNode'),
(7, 'en_US', 'e1c7f7631deedc5030723921f3b961ed', 6, 'Mxcar\\Menu\\Models\\MenuNode'),
(8, 'en_US', '6ebbd1f87f7bc098a2635cf680875d5a', 7, 'Mxcar\\Menu\\Models\\MenuNode'),
(9, 'en_US', '2ea6cdd942bbc96bb02e00236ac4d7d4', 8, 'Mxcar\\Menu\\Models\\MenuNode'),
(10, 'en_US', 'd19e93ea85a00f768a2a099c2c723ac0', 9, 'Mxcar\\Menu\\Models\\MenuNode'),
(11, 'en_US', 'ca89bf2a81a26be4dc9bd31316a7b3a3', 10, 'Mxcar\\Menu\\Models\\MenuNode'),
(12, 'en_US', '435fd563e81bbf4a99f8699c917a4c5b', 11, 'Mxcar\\Menu\\Models\\MenuNode'),
(13, 'en_US', 'cf71765e48d683697ad7d08ef1995066', 12, 'Mxcar\\Menu\\Models\\MenuNode'),
(14, 'en_US', 'a3194558c9c6cee452c9b79dfd30b936', 13, 'Mxcar\\Menu\\Models\\MenuNode'),
(15, 'en_US', '72691facdbc42347ee1c3a887d37847e', 14, 'Mxcar\\Menu\\Models\\MenuNode'),
(16, 'en_US', '3425bdbab99d89fae21d581c4a8534ba', 15, 'Mxcar\\Menu\\Models\\MenuNode'),
(17, 'en_US', '49026eacbfac28d2152c723bb7e7be2a', 16, 'Mxcar\\Menu\\Models\\MenuNode'),
(18, 'en_US', '3af8f4b5b2195f970f748f81b8f5dd42', 17, 'Mxcar\\Menu\\Models\\MenuNode'),
(19, 'en_US', '16047c40a090691ae197ae3ab802ddb5', 18, 'Mxcar\\Menu\\Models\\MenuNode'),
(20, 'en_US', '3fce6d46fd8ef92427ced5e5146e7f74', 19, 'Mxcar\\Menu\\Models\\MenuNode'),
(21, 'en_US', 'e4a2f1cd8f29663a482f568ebf1a31b1', 20, 'Mxcar\\Menu\\Models\\MenuNode'),
(22, 'en_US', 'f8502ef0e806a3e2b36843694c245bbb', 21, 'Mxcar\\Menu\\Models\\MenuNode'),
(23, 'en_US', '75763e689e8df7bbe4360b1a1428979c', 22, 'Mxcar\\Menu\\Models\\MenuNode'),
(24, 'en_US', '8c935990012b1f26e8c5cb2c8df249a2', 23, 'Mxcar\\Menu\\Models\\MenuNode'),
(25, 'en_US', '40a00b858ed5ed2e1cc09604e8142000', 24, 'Mxcar\\Menu\\Models\\MenuNode'),
(26, 'en_US', '37a48771fa6c0fab019cc2e6cca49f6d', 25, 'Mxcar\\Menu\\Models\\MenuNode'),
(27, 'en_US', '7afb9a075d7334e3cfe3c4e56336eb74', 26, 'Mxcar\\Menu\\Models\\MenuNode'),
(28, 'en_US', 'e208dec2ea8a7002e9c052201702e88d', 27, 'Mxcar\\Menu\\Models\\MenuNode'),
(29, 'en_US', 'f785c0881b0d8b8cb892f4431a2beaae', 28, 'Mxcar\\Menu\\Models\\MenuNode'),
(30, 'en_US', '92717239c27e28414fb0000f02e93153', 30, 'Mxcar\\Menu\\Models\\MenuNode'),
(31, 'en_US', '0886bd17cfc9cc9bc98476c82a69a416', 31, 'Mxcar\\Menu\\Models\\MenuNode');

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

--
-- Table structure for table `media_files`
--

CREATE TABLE `media_files` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `alt` varchar(191) DEFAULT NULL,
  `folder_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `mime_type` varchar(120) NOT NULL,
  `size` int(11) NOT NULL,
  `url` varchar(191) NOT NULL,
  `options` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `visibility` varchar(191) NOT NULL DEFAULT 'public'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `media_files`
--

INSERT INTO `media_files` (`id`, `user_id`, `name`, `alt`, `folder_id`, `mime_type`, `size`, `url`, `options`, `created_at`, `updated_at`, `deleted_at`, `visibility`) VALUES
(1, 0, '1', '1', 1, 'image/jpeg', 10644, 'general/1.jpg', '[]', '2026-03-06 08:22:03', '2026-03-06 08:22:03', NULL, 'public'),
(2, 0, '2', '2', 1, 'image/jpeg', 4750, 'general/2.jpg', '[]', '2026-03-06 08:22:03', '2026-03-06 08:22:03', NULL, 'public'),
(3, 0, '3', '3', 1, 'image/jpeg', 8045, 'general/3.jpg', '[]', '2026-03-06 08:22:03', '2026-03-06 08:22:03', NULL, 'public'),
(4, 0, 'about-us-1', 'about-us-1', 1, 'image/jpeg', 11009, 'general/about-us-1.jpg', '[]', '2026-03-06 08:22:04', '2026-03-06 08:22:04', NULL, 'public'),
(5, 0, 'about-us-2', 'about-us-2', 1, 'image/jpeg', 11009, 'general/about-us-2.jpg', '[]', '2026-03-06 08:22:04', '2026-03-06 08:22:04', NULL, 'public'),
(6, 0, 'about-us-3', 'about-us-3', 1, 'image/jpeg', 9151, 'general/about-us-3.jpg', '[]', '2026-03-06 08:22:04', '2026-03-06 08:22:04', NULL, 'public'),
(8, 0, 'appstore', 'appstore', 1, 'image/png', 3718, 'general/appstore.png', '[]', '2026-03-06 08:22:05', '2026-03-06 08:22:05', NULL, 'public'),
(11, 0, 'googleplay', 'googleplay', 1, 'image/png', 3970, 'general/googleplay.png', '[]', '2026-03-06 08:22:05', '2026-03-06 08:22:05', NULL, 'public'),
(12, 0, 'img-1', 'img-1', 1, 'image/png', 8332, 'general/img-1.png', '[]', '2026-03-06 08:22:06', '2026-03-06 08:22:06', NULL, 'public'),
(13, 0, 'img-2-1', 'img-2-1', 1, 'image/png', 4793, 'general/img-2-1.png', '[]', '2026-03-06 08:22:06', '2026-03-06 08:22:06', NULL, 'public'),
(14, 0, 'img-2-2', 'img-2-2', 1, 'image/png', 4443, 'general/img-2-2.png', '[]', '2026-03-06 08:22:06', '2026-03-06 08:22:06', NULL, 'public'),
(15, 0, 'img-2-3', 'img-2-3', 1, 'image/png', 3547, 'general/img-2-3.png', '[]', '2026-03-06 08:22:06', '2026-03-06 08:22:06', NULL, 'public'),
(16, 0, 'img-2-4', 'img-2-4', 1, 'image/png', 4221, 'general/img-2-4.png', '[]', '2026-03-06 08:22:07', '2026-03-06 08:22:07', NULL, 'public'),
(17, 0, 'img-2', 'img-2', 1, 'image/png', 8360, 'general/img-2.png', '[]', '2026-03-06 08:22:07', '2026-03-06 08:22:07', NULL, 'public'),
(18, 0, 'img-3', 'img-3', 1, 'image/png', 7564, 'general/img-3.png', '[]', '2026-03-06 08:22:07', '2026-03-06 08:22:07', NULL, 'public'),
(19, 0, 'img-4', 'img-4', 1, 'image/png', 7335, 'general/img-4.png', '[]', '2026-03-06 08:22:07', '2026-03-06 08:22:07', NULL, 'public'),
(20, 0, 'img-5', 'img-5', 1, 'image/png', 8318, 'general/img-5.png', '[]', '2026-03-06 08:22:08', '2026-03-06 08:22:08', NULL, 'public'),
(23, 0, 'phone', 'phone', 1, 'image/png', 10618, 'general/phone.png', '[]', '2026-03-06 08:22:08', '2026-03-06 08:22:08', NULL, 'public'),
(24, 0, 'truck', 'truck', 1, 'image/png', 5660, 'general/truck.png', '[]', '2026-03-06 08:22:09', '2026-03-06 08:22:09', NULL, 'public'),
(29, 0, '1', '1', 3, 'image/jpeg', 19108, 'news/1.jpg', '[]', '2026-03-06 08:22:11', '2026-03-06 08:22:11', NULL, 'public'),
(30, 0, '10', '10', 3, 'image/jpeg', 19108, 'news/10.jpg', '[]', '2026-03-06 08:22:12', '2026-03-06 08:22:12', NULL, 'public'),
(31, 0, '11', '11', 3, 'image/jpeg', 19108, 'news/11.jpg', '[]', '2026-03-06 08:22:12', '2026-03-06 08:22:12', NULL, 'public'),
(32, 0, '12', '12', 3, 'image/jpeg', 19108, 'news/12.jpg', '[]', '2026-03-06 08:22:12', '2026-03-06 08:22:12', NULL, 'public'),
(33, 0, '13', '13', 3, 'image/jpeg', 19108, 'news/13.jpg', '[]', '2026-03-06 08:22:13', '2026-03-06 08:22:13', NULL, 'public'),
(34, 0, '14', '14', 3, 'image/jpeg', 19108, 'news/14.jpg', '[]', '2026-03-06 08:22:13', '2026-03-06 08:22:13', NULL, 'public'),
(35, 0, '15', '15', 3, 'image/jpeg', 19108, 'news/15.jpg', '[]', '2026-03-06 08:22:13', '2026-03-06 08:22:13', NULL, 'public'),
(36, 0, '16', '16', 3, 'image/jpeg', 19108, 'news/16.jpg', '[]', '2026-03-06 08:22:14', '2026-03-06 08:22:14', NULL, 'public'),
(37, 0, '17', '17', 3, 'image/jpeg', 19108, 'news/17.jpg', '[]', '2026-03-06 08:22:14', '2026-03-06 08:22:14', NULL, 'public'),
(38, 0, '18', '18', 3, 'image/jpeg', 19108, 'news/18.jpg', '[]', '2026-03-06 08:22:14', '2026-03-06 08:22:14', NULL, 'public'),
(39, 0, '19', '19', 3, 'image/jpeg', 19108, 'news/19.jpg', '[]', '2026-03-06 08:22:15', '2026-03-06 08:22:15', NULL, 'public'),
(40, 0, '2', '2', 3, 'image/jpeg', 19108, 'news/2.jpg', '[]', '2026-03-06 08:22:15', '2026-03-06 08:22:15', NULL, 'public'),
(41, 0, '20', '20', 3, 'image/jpeg', 19108, 'news/20.jpg', '[]', '2026-03-06 08:22:15', '2026-03-06 08:22:15', NULL, 'public'),
(42, 0, '3', '3', 3, 'image/jpeg', 19108, 'news/3.jpg', '[]', '2026-03-06 08:22:16', '2026-03-06 08:22:16', NULL, 'public'),
(43, 0, '4', '4', 3, 'image/jpeg', 19108, 'news/4.jpg', '[]', '2026-03-06 08:22:16', '2026-03-06 08:22:16', NULL, 'public'),
(44, 0, '5', '5', 3, 'image/jpeg', 19108, 'news/5.jpg', '[]', '2026-03-06 08:22:16', '2026-03-06 08:22:16', NULL, 'public'),
(45, 0, '6', '6', 3, 'image/jpeg', 19108, 'news/6.jpg', '[]', '2026-03-06 08:22:17', '2026-03-06 08:22:17', NULL, 'public'),
(46, 0, '7', '7', 3, 'image/jpeg', 19108, 'news/7.jpg', '[]', '2026-03-06 08:22:17', '2026-03-06 08:22:17', NULL, 'public'),
(47, 0, '8', '8', 3, 'image/jpeg', 19108, 'news/8.jpg', '[]', '2026-03-06 08:22:17', '2026-03-06 08:22:17', NULL, 'public'),
(48, 0, '9', '9', 3, 'image/jpeg', 19108, 'news/9.jpg', '[]', '2026-03-06 08:22:18', '2026-03-06 08:22:18', NULL, 'public'),
(49, 0, '1', '1', 4, 'image/jpeg', 12879, 'galleries/1.jpg', '[]', '2026-03-06 08:22:18', '2026-03-06 08:22:18', NULL, 'public'),
(50, 0, '10', '10', 4, 'image/jpeg', 12879, 'galleries/10.jpg', '[]', '2026-03-06 08:22:19', '2026-03-06 08:22:19', NULL, 'public'),
(51, 0, '2', '2', 4, 'image/jpeg', 12879, 'galleries/2.jpg', '[]', '2026-03-06 08:22:19', '2026-03-06 08:22:19', NULL, 'public'),
(52, 0, '3', '3', 4, 'image/jpeg', 12879, 'galleries/3.jpg', '[]', '2026-03-06 08:22:19', '2026-03-06 08:22:19', NULL, 'public'),
(53, 0, '4', '4', 4, 'image/jpeg', 12879, 'galleries/4.jpg', '[]', '2026-03-06 08:22:20', '2026-03-06 08:22:20', NULL, 'public'),
(54, 0, '5', '5', 4, 'image/jpeg', 12879, 'galleries/5.jpg', '[]', '2026-03-06 08:22:20', '2026-03-06 08:22:20', NULL, 'public'),
(55, 0, '6', '6', 4, 'image/jpeg', 12879, 'galleries/6.jpg', '[]', '2026-03-06 08:22:20', '2026-03-06 08:22:20', NULL, 'public'),
(56, 0, '7', '7', 4, 'image/jpeg', 12879, 'galleries/7.jpg', '[]', '2026-03-06 08:22:21', '2026-03-06 08:22:21', NULL, 'public'),
(57, 0, '8', '8', 4, 'image/jpeg', 12879, 'galleries/8.jpg', '[]', '2026-03-06 08:22:21', '2026-03-06 08:22:21', NULL, 'public'),
(58, 0, '9', '9', 4, 'image/jpeg', 12879, 'galleries/9.jpg', '[]', '2026-03-06 08:22:21', '2026-03-06 08:22:21', NULL, 'public'),
(59, 0, '1', '1', 5, 'image/jpeg', 9803, 'teams/1.jpg', '[]', '2026-03-06 08:22:22', '2026-03-06 08:22:22', NULL, 'public'),
(60, 0, '2', '2', 5, 'image/jpeg', 9803, 'teams/2.jpg', '[]', '2026-03-06 08:22:22', '2026-03-06 08:22:22', NULL, 'public'),
(61, 0, '3', '3', 5, 'image/jpeg', 9803, 'teams/3.jpg', '[]', '2026-03-06 08:22:23', '2026-03-06 08:22:23', NULL, 'public'),
(62, 0, '4', '4', 5, 'image/jpeg', 9803, 'teams/4.jpg', '[]', '2026-03-06 08:22:23', '2026-03-06 08:22:23', NULL, 'public'),
(63, 0, '5', '5', 5, 'image/jpeg', 9803, 'teams/5.jpg', '[]', '2026-03-06 08:22:23', '2026-03-06 08:22:23', NULL, 'public'),
(64, 0, '6', '6', 5, 'image/jpeg', 9803, 'teams/6.jpg', '[]', '2026-03-06 08:22:24', '2026-05-11 15:49:51', '2026-05-11 15:49:51', 'public'),
(65, 0, '7', '7', 5, 'image/jpeg', 9803, 'teams/7.jpg', '[]', '2026-03-06 08:22:24', '2026-03-06 08:22:24', NULL, 'public'),
(66, 0, '8', '8', 5, 'image/jpeg', 9803, 'teams/8.jpg', '[]', '2026-03-06 08:22:24', '2026-03-06 08:22:24', NULL, 'public'),
(71, 0, 'location1', 'location1', 7, 'image/jpeg', 11707, 'locations/location1.jpg', '[]', '2026-03-06 08:22:26', '2026-03-06 08:22:26', NULL, 'public'),
(72, 0, 'location2', 'location2', 7, 'image/jpeg', 11707, 'locations/location2.jpg', '[]', '2026-03-06 08:22:26', '2026-03-06 08:22:26', NULL, 'public'),
(74, 0, 'location4', 'location4', 7, 'image/jpeg', 11707, 'locations/location4.jpg', '[]', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL, 'public'),
(75, 0, 'location5', 'location5', 7, 'image/jpeg', 11707, 'locations/location5.jpg', '[]', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL, 'public'),
(76, 0, 'location6', 'location6', 7, 'image/jpeg', 11707, 'locations/location6.jpg', '[]', '2026-03-06 08:22:27', '2026-03-06 08:22:27', NULL, 'public'),
(77, 0, '1', '1', 8, 'image/jpeg', 3916, 'customers/1.jpg', '[]', '2026-03-06 08:22:28', '2026-03-06 08:22:28', NULL, 'public'),
(78, 0, '10', '10', 8, 'image/jpeg', 3916, 'customers/10.jpg', '[]', '2026-03-06 08:22:28', '2026-03-06 08:22:28', NULL, 'public'),
(79, 0, '11', '11', 8, 'image/jpeg', 3916, 'customers/11.jpg', '[]', '2026-03-06 08:22:28', '2026-03-06 08:22:28', NULL, 'public'),
(80, 0, '12', '12', 8, 'image/jpeg', 3916, 'customers/12.jpg', '[]', '2026-03-06 08:22:29', '2026-03-06 08:22:29', NULL, 'public'),
(81, 0, '13', '13', 8, 'image/jpeg', 3916, 'customers/13.jpg', '[]', '2026-03-06 08:22:29', '2026-03-06 08:22:29', NULL, 'public'),
(82, 0, '14', '14', 8, 'image/jpeg', 3916, 'customers/14.jpg', '[]', '2026-03-06 08:22:29', '2026-03-06 08:22:29', NULL, 'public'),
(83, 0, '15', '15', 8, 'image/jpeg', 3916, 'customers/15.jpg', '[]', '2026-03-06 08:22:30', '2026-03-06 08:22:30', NULL, 'public'),
(84, 0, '16', '16', 8, 'image/jpeg', 3916, 'customers/16.jpg', '[]', '2026-03-06 08:22:30', '2026-03-06 08:22:30', NULL, 'public'),
(85, 0, '17', '17', 8, 'image/jpeg', 3916, 'customers/17.jpg', '[]', '2026-03-06 08:22:30', '2026-03-06 08:22:30', NULL, 'public'),
(86, 0, '18', '18', 8, 'image/jpeg', 3916, 'customers/18.jpg', '[]', '2026-03-06 08:22:30', '2026-03-06 08:22:30', NULL, 'public'),
(87, 0, '19', '19', 8, 'image/jpeg', 3916, 'customers/19.jpg', '[]', '2026-03-06 08:22:31', '2026-03-06 08:22:31', NULL, 'public'),
(88, 0, '2', '2', 8, 'image/jpeg', 3916, 'customers/2.jpg', '[]', '2026-03-06 08:22:31', '2026-03-06 08:22:31', NULL, 'public'),
(89, 0, '20', '20', 8, 'image/jpeg', 3916, 'customers/20.jpg', '[]', '2026-03-06 08:22:31', '2026-03-06 08:22:31', NULL, 'public'),
(90, 0, '21', '21', 8, 'image/jpeg', 3916, 'customers/21.jpg', '[]', '2026-03-06 08:22:32', '2026-03-06 08:22:32', NULL, 'public'),
(91, 0, '22', '22', 8, 'image/jpeg', 3916, 'customers/22.jpg', '[]', '2026-03-06 08:22:32', '2026-03-06 08:22:32', NULL, 'public'),
(92, 0, '23', '23', 8, 'image/jpeg', 3916, 'customers/23.jpg', '[]', '2026-03-06 08:22:32', '2026-03-06 08:22:32', NULL, 'public'),
(93, 0, '24', '24', 8, 'image/jpeg', 3916, 'customers/24.jpg', '[]', '2026-03-06 08:22:33', '2026-03-06 08:22:33', NULL, 'public'),
(94, 0, '25', '25', 8, 'image/jpeg', 3916, 'customers/25.jpg', '[]', '2026-03-06 08:22:33', '2026-03-06 08:22:33', NULL, 'public'),
(95, 0, '26', '26', 8, 'image/jpeg', 3916, 'customers/26.jpg', '[]', '2026-03-06 08:22:33', '2026-03-06 08:22:33', NULL, 'public'),
(96, 0, '27', '27', 8, 'image/jpeg', 3916, 'customers/27.jpg', '[]', '2026-03-06 08:22:34', '2026-03-06 08:22:34', NULL, 'public'),
(97, 0, '28', '28', 8, 'image/jpeg', 3916, 'customers/28.jpg', '[]', '2026-03-06 08:22:34', '2026-03-06 08:22:34', NULL, 'public'),
(98, 0, '29', '29', 8, 'image/jpeg', 3916, 'customers/29.jpg', '[]', '2026-03-06 08:22:34', '2026-03-06 08:22:34', NULL, 'public'),
(99, 0, '3', '3', 8, 'image/jpeg', 3916, 'customers/3.jpg', '[]', '2026-03-06 08:22:35', '2026-03-06 08:22:35', NULL, 'public'),
(100, 0, '30', '30', 8, 'image/jpeg', 3916, 'customers/30.jpg', '[]', '2026-03-06 08:22:35', '2026-03-06 08:22:35', NULL, 'public'),
(101, 0, '31', '31', 8, 'image/jpeg', 3916, 'customers/31.jpg', '[]', '2026-03-06 08:22:35', '2026-03-06 08:22:35', NULL, 'public'),
(102, 0, '4', '4', 8, 'image/jpeg', 3916, 'customers/4.jpg', '[]', '2026-03-06 08:22:35', '2026-03-06 08:22:35', NULL, 'public'),
(103, 0, '5', '5', 8, 'image/jpeg', 3916, 'customers/5.jpg', '[]', '2026-03-06 08:22:36', '2026-03-06 08:22:36', NULL, 'public'),
(104, 0, '6', '6', 8, 'image/jpeg', 3916, 'customers/6.jpg', '[]', '2026-03-06 08:22:36', '2026-03-06 08:22:36', NULL, 'public'),
(105, 0, '7', '7', 8, 'image/jpeg', 3916, 'customers/7.jpg', '[]', '2026-03-06 08:22:36', '2026-03-06 08:22:36', NULL, 'public'),
(106, 0, '8', '8', 8, 'image/jpeg', 3916, 'customers/8.jpg', '[]', '2026-03-06 08:22:36', '2026-03-06 08:22:36', NULL, 'public'),
(107, 0, '9', '9', 8, 'image/jpeg', 3916, 'customers/9.jpg', '[]', '2026-03-06 08:22:37', '2026-03-06 08:22:37', NULL, 'public'),
(108, 0, '1', '1', 9, 'image/jpeg', 33268, 'cars/1.jpg', '[]', '2026-03-06 08:22:49', '2026-03-06 08:22:49', NULL, 'public'),
(109, 0, '10', '10', 9, 'image/jpeg', 33268, 'cars/10.jpg', '[]', '2026-03-06 08:22:50', '2026-03-06 08:22:50', NULL, 'public'),
(110, 0, '100', '100', 9, 'image/jpeg', 33268, 'cars/100.jpg', '[]', '2026-03-06 08:22:50', '2026-03-06 08:22:50', NULL, 'public'),
(111, 0, '101', '101', 9, 'image/jpeg', 33268, 'cars/101.jpg', '[]', '2026-03-06 08:22:51', '2026-03-06 08:22:51', NULL, 'public'),
(112, 0, '102', '102', 9, 'image/jpeg', 33268, 'cars/102.jpg', '[]', '2026-03-06 08:22:52', '2026-03-06 08:22:52', NULL, 'public'),
(113, 0, '103', '103', 9, 'image/jpeg', 33268, 'cars/103.jpg', '[]', '2026-03-06 08:22:52', '2026-03-06 08:22:52', NULL, 'public'),
(114, 0, '104', '104', 9, 'image/jpeg', 33268, 'cars/104.jpg', '[]', '2026-03-06 08:22:52', '2026-03-06 08:22:52', NULL, 'public'),
(115, 0, '105', '105', 9, 'image/jpeg', 33268, 'cars/105.jpg', '[]', '2026-03-06 08:22:53', '2026-03-06 08:22:53', NULL, 'public'),
(116, 0, '11', '11', 9, 'image/jpeg', 33268, 'cars/11.jpg', '[]', '2026-03-06 08:22:54', '2026-03-06 08:22:54', NULL, 'public'),
(117, 0, '12', '12', 9, 'image/jpeg', 33268, 'cars/12.jpg', '[]', '2026-03-06 08:22:54', '2026-03-06 08:22:54', NULL, 'public'),
(118, 0, '13', '13', 9, 'image/jpeg', 33268, 'cars/13.jpg', '[]', '2026-03-06 08:22:55', '2026-03-06 08:22:55', NULL, 'public'),
(119, 0, '14', '14', 9, 'image/jpeg', 33268, 'cars/14.jpg', '[]', '2026-03-06 08:22:55', '2026-03-06 08:22:55', NULL, 'public'),
(120, 0, '15', '15', 9, 'image/jpeg', 33268, 'cars/15.jpg', '[]', '2026-03-06 08:22:56', '2026-03-06 08:22:56', NULL, 'public'),
(121, 0, '16', '16', 9, 'image/jpeg', 33268, 'cars/16.jpg', '[]', '2026-03-06 08:22:56', '2026-03-06 08:22:56', NULL, 'public'),
(122, 0, '17', '17', 9, 'image/jpeg', 33268, 'cars/17.jpg', '[]', '2026-03-06 08:22:57', '2026-03-06 08:22:57', NULL, 'public'),
(123, 0, '18', '18', 9, 'image/jpeg', 33268, 'cars/18.jpg', '[]', '2026-03-06 08:22:57', '2026-03-06 08:22:57', NULL, 'public'),
(124, 0, '19', '19', 9, 'image/jpeg', 33268, 'cars/19.jpg', '[]', '2026-03-06 08:22:58', '2026-03-06 08:22:58', NULL, 'public'),
(125, 0, '2', '2', 9, 'image/jpeg', 33268, 'cars/2.jpg', '[]', '2026-03-06 08:22:59', '2026-03-06 08:22:59', NULL, 'public'),
(126, 0, '20', '20', 9, 'image/jpeg', 33268, 'cars/20.jpg', '[]', '2026-03-06 08:22:59', '2026-03-06 08:22:59', NULL, 'public'),
(127, 0, '21', '21', 9, 'image/jpeg', 33268, 'cars/21.jpg', '[]', '2026-03-06 08:23:00', '2026-03-06 08:23:00', NULL, 'public'),
(128, 0, '22', '22', 9, 'image/jpeg', 33268, 'cars/22.jpg', '[]', '2026-03-06 08:23:00', '2026-03-06 08:23:00', NULL, 'public'),
(129, 0, '23', '23', 9, 'image/jpeg', 33268, 'cars/23.jpg', '[]', '2026-03-06 08:23:01', '2026-03-06 08:23:01', NULL, 'public'),
(130, 0, '24', '24', 9, 'image/jpeg', 33268, 'cars/24.jpg', '[]', '2026-03-06 08:23:01', '2026-03-06 08:23:01', NULL, 'public'),
(131, 0, '25', '25', 9, 'image/jpeg', 33268, 'cars/25.jpg', '[]', '2026-03-06 08:23:02', '2026-03-06 08:23:02', NULL, 'public'),
(132, 0, '26', '26', 9, 'image/jpeg', 33268, 'cars/26.jpg', '[]', '2026-03-06 08:23:03', '2026-03-06 08:23:03', NULL, 'public'),
(133, 0, '27', '27', 9, 'image/jpeg', 33268, 'cars/27.jpg', '[]', '2026-03-06 08:23:05', '2026-03-06 08:23:05', NULL, 'public'),
(134, 0, '28', '28', 9, 'image/jpeg', 33268, 'cars/28.jpg', '[]', '2026-03-06 08:23:05', '2026-03-06 08:23:05', NULL, 'public'),
(135, 0, '29', '29', 9, 'image/jpeg', 33268, 'cars/29.jpg', '[]', '2026-03-06 08:23:06', '2026-03-06 08:23:06', NULL, 'public'),
(136, 0, '3', '3', 9, 'image/jpeg', 33268, 'cars/3.jpg', '[]', '2026-03-06 08:23:06', '2026-03-06 08:23:06', NULL, 'public'),
(137, 0, '30', '30', 9, 'image/jpeg', 33268, 'cars/30.jpg', '[]', '2026-03-06 08:23:07', '2026-03-06 08:23:07', NULL, 'public'),
(138, 0, '31', '31', 9, 'image/jpeg', 33268, 'cars/31.jpg', '[]', '2026-03-06 08:23:07', '2026-03-06 08:23:07', NULL, 'public'),
(139, 0, '32', '32', 9, 'image/jpeg', 33268, 'cars/32.jpg', '[]', '2026-03-06 08:23:08', '2026-03-06 08:23:08', NULL, 'public'),
(140, 0, '33', '33', 9, 'image/jpeg', 33268, 'cars/33.jpg', '[]', '2026-03-06 08:23:08', '2026-03-06 08:23:08', NULL, 'public'),
(141, 0, '34', '34', 9, 'image/jpeg', 33268, 'cars/34.jpg', '[]', '2026-03-06 08:23:09', '2026-03-06 08:23:09', NULL, 'public'),
(142, 0, '35', '35', 9, 'image/jpeg', 33268, 'cars/35.jpg', '[]', '2026-03-06 08:23:09', '2026-03-06 08:23:09', NULL, 'public'),
(143, 0, '36', '36', 9, 'image/jpeg', 33268, 'cars/36.jpg', '[]', '2026-03-06 08:23:10', '2026-03-06 08:23:10', NULL, 'public'),
(144, 0, '37', '37', 9, 'image/jpeg', 33268, 'cars/37.jpg', '[]', '2026-03-06 08:23:10', '2026-03-06 08:23:10', NULL, 'public'),
(145, 0, '38', '38', 9, 'image/jpeg', 33268, 'cars/38.jpg', '[]', '2026-03-06 08:23:11', '2026-03-06 08:23:11', NULL, 'public'),
(146, 0, '39', '39', 9, 'image/jpeg', 33268, 'cars/39.jpg', '[]', '2026-03-06 08:23:12', '2026-03-06 08:23:12', NULL, 'public'),
(147, 0, '4', '4', 9, 'image/jpeg', 33268, 'cars/4.jpg', '[]', '2026-03-06 08:23:14', '2026-03-06 08:23:14', NULL, 'public'),
(148, 0, '40', '40', 9, 'image/jpeg', 33268, 'cars/40.jpg', '[]', '2026-03-06 08:23:15', '2026-03-06 08:23:15', NULL, 'public'),
(149, 0, '41', '41', 9, 'image/jpeg', 33268, 'cars/41.jpg', '[]', '2026-03-06 08:23:16', '2026-03-06 08:23:16', NULL, 'public'),
(150, 0, '42', '42', 9, 'image/jpeg', 33268, 'cars/42.jpg', '[]', '2026-03-06 08:23:16', '2026-03-06 08:23:16', NULL, 'public'),
(151, 0, '43', '43', 9, 'image/jpeg', 33268, 'cars/43.jpg', '[]', '2026-03-06 08:23:17', '2026-03-06 08:23:17', NULL, 'public'),
(152, 0, '44', '44', 9, 'image/jpeg', 33268, 'cars/44.jpg', '[]', '2026-03-06 08:23:17', '2026-03-06 08:23:17', NULL, 'public'),
(153, 0, '45', '45', 9, 'image/jpeg', 33268, 'cars/45.jpg', '[]', '2026-03-06 08:23:18', '2026-03-06 08:23:18', NULL, 'public'),
(154, 0, '46', '46', 9, 'image/jpeg', 33268, 'cars/46.jpg', '[]', '2026-03-06 08:23:18', '2026-03-06 08:23:18', NULL, 'public'),
(155, 0, '47', '47', 9, 'image/jpeg', 33268, 'cars/47.jpg', '[]', '2026-03-06 08:23:19', '2026-03-06 08:23:19', NULL, 'public'),
(156, 0, '48', '48', 9, 'image/jpeg', 33268, 'cars/48.jpg', '[]', '2026-03-06 08:23:19', '2026-03-06 08:23:19', NULL, 'public'),
(157, 0, '49', '49', 9, 'image/jpeg', 33268, 'cars/49.jpg', '[]', '2026-03-06 08:23:20', '2026-03-06 08:23:20', NULL, 'public'),
(158, 0, '5', '5', 9, 'image/jpeg', 33268, 'cars/5.jpg', '[]', '2026-03-06 08:23:20', '2026-03-06 08:23:20', NULL, 'public'),
(159, 0, '50', '50', 9, 'image/jpeg', 33268, 'cars/50.jpg', '[]', '2026-03-06 08:23:21', '2026-03-06 08:23:21', NULL, 'public'),
(160, 0, '51', '51', 9, 'image/jpeg', 33268, 'cars/51.jpg', '[]', '2026-03-06 08:23:21', '2026-03-06 08:23:21', NULL, 'public'),
(161, 0, '52', '52', 9, 'image/jpeg', 33268, 'cars/52.jpg', '[]', '2026-03-06 08:23:22', '2026-03-06 08:23:22', NULL, 'public'),
(162, 0, '53', '53', 9, 'image/jpeg', 33268, 'cars/53.jpg', '[]', '2026-03-06 08:23:22', '2026-03-06 08:23:22', NULL, 'public'),
(163, 0, '54', '54', 9, 'image/jpeg', 33268, 'cars/54.jpg', '[]', '2026-03-06 08:23:23', '2026-03-06 08:23:23', NULL, 'public'),
(164, 0, '55', '55', 9, 'image/jpeg', 33268, 'cars/55.jpg', '[]', '2026-03-06 08:23:23', '2026-03-06 08:23:23', NULL, 'public'),
(165, 0, '56', '56', 9, 'image/jpeg', 33268, 'cars/56.jpg', '[]', '2026-03-06 08:23:24', '2026-03-06 08:23:24', NULL, 'public'),
(166, 0, '57', '57', 9, 'image/jpeg', 33268, 'cars/57.jpg', '[]', '2026-03-06 08:23:24', '2026-03-06 08:23:24', NULL, 'public'),
(167, 0, '58', '58', 9, 'image/jpeg', 33268, 'cars/58.jpg', '[]', '2026-03-06 08:23:25', '2026-03-06 08:23:25', NULL, 'public'),
(168, 0, '59', '59', 9, 'image/jpeg', 33268, 'cars/59.jpg', '[]', '2026-03-06 08:23:25', '2026-03-06 08:23:25', NULL, 'public'),
(169, 0, '6', '6', 9, 'image/jpeg', 33268, 'cars/6.jpg', '[]', '2026-03-06 08:23:26', '2026-03-06 08:23:26', NULL, 'public'),
(170, 0, '60', '60', 9, 'image/jpeg', 33268, 'cars/60.jpg', '[]', '2026-03-06 08:23:26', '2026-03-06 08:23:26', NULL, 'public'),
(171, 0, '61', '61', 9, 'image/jpeg', 33268, 'cars/61.jpg', '[]', '2026-03-06 08:23:27', '2026-03-06 08:23:27', NULL, 'public'),
(172, 0, '62', '62', 9, 'image/jpeg', 33268, 'cars/62.jpg', '[]', '2026-03-06 08:23:27', '2026-03-06 08:23:27', NULL, 'public'),
(173, 0, '63', '63', 9, 'image/jpeg', 33268, 'cars/63.jpg', '[]', '2026-03-06 08:23:28', '2026-03-06 08:23:28', NULL, 'public'),
(174, 0, '64', '64', 9, 'image/jpeg', 33268, 'cars/64.jpg', '[]', '2026-03-06 08:23:28', '2026-03-06 08:23:28', NULL, 'public'),
(175, 0, '65', '65', 9, 'image/jpeg', 33268, 'cars/65.jpg', '[]', '2026-03-06 08:23:29', '2026-03-06 08:23:29', NULL, 'public'),
(176, 0, '66', '66', 9, 'image/jpeg', 33268, 'cars/66.jpg', '[]', '2026-03-06 08:23:29', '2026-03-06 08:23:29', NULL, 'public'),
(177, 0, '67', '67', 9, 'image/jpeg', 33268, 'cars/67.jpg', '[]', '2026-03-06 08:23:30', '2026-03-06 08:23:30', NULL, 'public'),
(178, 0, '68', '68', 9, 'image/jpeg', 33268, 'cars/68.jpg', '[]', '2026-03-06 08:23:30', '2026-03-06 08:23:30', NULL, 'public'),
(179, 0, '69', '69', 9, 'image/jpeg', 33268, 'cars/69.jpg', '[]', '2026-03-06 08:23:31', '2026-03-06 08:23:31', NULL, 'public'),
(180, 0, '7', '7', 9, 'image/jpeg', 33268, 'cars/7.jpg', '[]', '2026-03-06 08:23:31', '2026-03-06 08:23:31', NULL, 'public'),
(181, 0, '70', '70', 9, 'image/jpeg', 33268, 'cars/70.jpg', '[]', '2026-03-06 08:23:32', '2026-03-06 08:23:32', NULL, 'public'),
(182, 0, '71', '71', 9, 'image/jpeg', 33268, 'cars/71.jpg', '[]', '2026-03-06 08:23:32', '2026-03-06 08:23:32', NULL, 'public'),
(183, 0, '72', '72', 9, 'image/jpeg', 33268, 'cars/72.jpg', '[]', '2026-03-06 08:23:33', '2026-03-06 08:23:33', NULL, 'public'),
(184, 0, '73', '73', 9, 'image/jpeg', 33268, 'cars/73.jpg', '[]', '2026-03-06 08:23:33', '2026-03-06 08:23:33', NULL, 'public'),
(185, 0, '74', '74', 9, 'image/jpeg', 33268, 'cars/74.jpg', '[]', '2026-03-06 08:23:34', '2026-03-06 08:23:34', NULL, 'public'),
(186, 0, '75', '75', 9, 'image/jpeg', 33268, 'cars/75.jpg', '[]', '2026-03-06 08:23:34', '2026-03-06 08:23:34', NULL, 'public'),
(187, 0, '76', '76', 9, 'image/jpeg', 33268, 'cars/76.jpg', '[]', '2026-03-06 08:23:34', '2026-03-06 08:23:34', NULL, 'public'),
(188, 0, '77', '77', 9, 'image/jpeg', 33268, 'cars/77.jpg', '[]', '2026-03-06 08:23:35', '2026-03-06 08:23:35', NULL, 'public'),
(189, 0, '78', '78', 9, 'image/jpeg', 33268, 'cars/78.jpg', '[]', '2026-03-06 08:23:35', '2026-03-06 08:23:35', NULL, 'public'),
(190, 0, '79', '79', 9, 'image/jpeg', 33268, 'cars/79.jpg', '[]', '2026-03-06 08:23:36', '2026-03-06 08:23:36', NULL, 'public'),
(191, 0, '8', '8', 9, 'image/jpeg', 33268, 'cars/8.jpg', '[]', '2026-03-06 08:23:37', '2026-03-06 08:23:37', NULL, 'public'),
(192, 0, '80', '80', 9, 'image/jpeg', 33268, 'cars/80.jpg', '[]', '2026-03-06 08:23:38', '2026-03-06 08:23:38', NULL, 'public'),
(193, 0, '81', '81', 9, 'image/jpeg', 33268, 'cars/81.jpg', '[]', '2026-03-06 08:23:38', '2026-03-06 08:23:38', NULL, 'public'),
(194, 0, '82', '82', 9, 'image/jpeg', 33268, 'cars/82.jpg', '[]', '2026-03-06 08:23:39', '2026-03-06 08:23:39', NULL, 'public'),
(195, 0, '83', '83', 9, 'image/jpeg', 33268, 'cars/83.jpg', '[]', '2026-03-06 08:23:40', '2026-03-06 08:23:40', NULL, 'public'),
(196, 0, '84', '84', 9, 'image/jpeg', 33268, 'cars/84.jpg', '[]', '2026-03-06 08:23:40', '2026-03-06 08:23:40', NULL, 'public'),
(197, 0, '85', '85', 9, 'image/jpeg', 33268, 'cars/85.jpg', '[]', '2026-03-06 08:23:41', '2026-03-06 08:23:41', NULL, 'public'),
(198, 0, '86', '86', 9, 'image/jpeg', 33268, 'cars/86.jpg', '[]', '2026-03-06 08:23:42', '2026-03-06 08:23:42', NULL, 'public'),
(199, 0, '87', '87', 9, 'image/jpeg', 33268, 'cars/87.jpg', '[]', '2026-03-06 08:23:42', '2026-03-06 08:23:42', NULL, 'public'),
(200, 0, '88', '88', 9, 'image/jpeg', 33268, 'cars/88.jpg', '[]', '2026-03-06 08:23:43', '2026-03-06 08:23:43', NULL, 'public'),
(201, 0, '89', '89', 9, 'image/jpeg', 33268, 'cars/89.jpg', '[]', '2026-03-06 08:23:44', '2026-03-06 08:23:44', NULL, 'public'),
(202, 0, '9', '9', 9, 'image/jpeg', 33268, 'cars/9.jpg', '[]', '2026-03-06 08:23:44', '2026-03-06 08:23:44', NULL, 'public'),
(203, 0, '90', '90', 9, 'image/jpeg', 33268, 'cars/90.jpg', '[]', '2026-03-06 08:23:45', '2026-03-06 08:23:45', NULL, 'public'),
(204, 0, '91', '91', 9, 'image/jpeg', 33268, 'cars/91.jpg', '[]', '2026-03-06 08:23:45', '2026-03-06 08:23:45', NULL, 'public'),
(205, 0, '92', '92', 9, 'image/jpeg', 33268, 'cars/92.jpg', '[]', '2026-03-06 08:23:46', '2026-03-06 08:23:46', NULL, 'public'),
(206, 0, '93', '93', 9, 'image/jpeg', 33268, 'cars/93.jpg', '[]', '2026-03-06 08:23:46', '2026-03-06 08:23:46', NULL, 'public'),
(207, 0, '94', '94', 9, 'image/jpeg', 33268, 'cars/94.jpg', '[]', '2026-03-06 08:23:47', '2026-03-06 08:23:47', NULL, 'public'),
(208, 0, '95', '95', 9, 'image/jpeg', 33268, 'cars/95.jpg', '[]', '2026-03-06 08:23:48', '2026-03-06 08:23:48', NULL, 'public'),
(209, 0, '96', '96', 9, 'image/jpeg', 33268, 'cars/96.jpg', '[]', '2026-03-06 08:23:48', '2026-03-06 08:23:48', NULL, 'public'),
(210, 0, '97', '97', 9, 'image/jpeg', 33268, 'cars/97.jpg', '[]', '2026-03-06 08:23:49', '2026-03-06 08:23:49', NULL, 'public'),
(211, 0, '98', '98', 9, 'image/jpeg', 33268, 'cars/98.jpg', '[]', '2026-03-06 08:23:49', '2026-03-06 08:23:49', NULL, 'public'),
(212, 0, '99', '99', 9, 'image/jpeg', 33268, 'cars/99.jpg', '[]', '2026-03-06 08:23:50', '2026-03-06 08:23:50', NULL, 'public'),
(213, 0, 'car-1', 'car-1', 9, 'image/jpeg', 33268, 'cars/car-1.jpg', '[]', '2026-03-06 08:23:51', '2026-03-06 08:23:51', NULL, 'public'),
(214, 0, 'car-2', 'car-2', 9, 'image/jpeg', 33268, 'cars/car-2.jpg', '[]', '2026-03-06 08:23:51', '2026-03-06 08:23:51', NULL, 'public'),
(215, 0, 'car-3', 'car-3', 9, 'image/jpeg', 33268, 'cars/car-3.jpg', '[]', '2026-03-06 08:23:52', '2026-03-06 08:23:52', NULL, 'public'),
(216, 0, 'car-4', 'car-4', 9, 'image/jpeg', 33268, 'cars/car-4.jpg', '[]', '2026-03-06 08:23:53', '2026-03-06 08:23:53', NULL, 'public'),
(217, 0, 'car-5', 'car-5', 9, 'image/jpeg', 33268, 'cars/car-5.jpg', '[]', '2026-03-06 08:23:53', '2026-03-06 08:23:53', NULL, 'public'),
(218, 0, 'car-6', 'car-6', 9, 'image/jpeg', 33268, 'cars/car-6.jpg', '[]', '2026-03-06 08:23:54', '2026-03-06 08:23:54', NULL, 'public'),
(219, 0, 'car-7', 'car-7', 9, 'image/jpeg', 33268, 'cars/car-7.jpg', '[]', '2026-03-06 08:23:55', '2026-03-06 08:23:55', NULL, 'public'),
(220, 0, 'car-8', 'car-8', 9, 'image/jpeg', 33268, 'cars/car-8.jpg', '[]', '2026-03-06 08:23:55', '2026-03-06 08:23:55', NULL, 'public'),
(221, 0, 'car-interiors-1', 'car-interiors-1', 9, 'image/jpeg', 33268, 'cars/car-interiors-1.jpg', '[]', '2026-03-06 08:23:56', '2026-03-06 08:23:56', NULL, 'public'),
(222, 0, 'car-interiors-2', 'car-interiors-2', 9, 'image/jpeg', 33268, 'cars/car-interiors-2.jpg', '[]', '2026-03-06 08:23:57', '2026-03-06 08:23:57', NULL, 'public'),
(223, 0, 'car-interiors-3', 'car-interiors-3', 9, 'image/jpeg', 33268, 'cars/car-interiors-3.jpg', '[]', '2026-03-06 08:23:58', '2026-03-06 08:23:58', NULL, 'public'),
(224, 0, 'car-interiors-4', 'car-interiors-4', 9, 'image/jpeg', 33268, 'cars/car-interiors-4.jpg', '[]', '2026-03-06 08:23:58', '2026-03-06 08:23:58', NULL, 'public'),
(225, 0, 'car-interiors-5', 'car-interiors-5', 9, 'image/jpeg', 33268, 'cars/car-interiors-5.jpg', '[]', '2026-03-06 08:23:59', '2026-03-06 08:23:59', NULL, 'public'),
(226, 0, 'car-interiors-6', 'car-interiors-6', 9, 'image/jpeg', 33268, 'cars/car-interiors-6.jpg', '[]', '2026-03-06 08:23:59', '2026-03-06 08:23:59', NULL, 'public'),
(227, 0, 'car-interiors-7', 'car-interiors-7', 9, 'image/jpeg', 33268, 'cars/car-interiors-7.jpg', '[]', '2026-03-06 08:24:00', '2026-03-06 08:24:00', NULL, 'public'),
(228, 0, 'car-interiors-8', 'car-interiors-8', 9, 'image/jpeg', 33268, 'cars/car-interiors-8.jpg', '[]', '2026-03-06 08:24:00', '2026-03-06 08:24:00', NULL, 'public'),
(229, 0, 'img-1', 'img-1', 9, 'image/png', 33268, 'cars/img-1.png', '[]', '2026-03-06 08:24:01', '2026-03-06 08:24:01', NULL, 'public'),
(230, 0, 'img-2', 'img-2', 9, 'image/png', 33268, 'cars/img-2.png', '[]', '2026-03-06 08:24:01', '2026-03-06 08:24:01', NULL, 'public'),
(231, 0, 'banner-1', 'banner-1', 10, 'image/jpeg', 23738, 'sliders/banner-1.jpg', '[]', '2026-03-06 08:24:08', '2026-03-06 08:24:08', NULL, 'public'),
(232, 0, 'banner-2', 'banner-2', 10, 'image/jpeg', 23738, 'sliders/banner-2.jpg', '[]', '2026-03-06 08:24:08', '2026-03-06 08:24:08', NULL, 'public'),
(233, 0, 'img-1-1', 'img-1-1', 10, 'image/jpeg', 23738, 'sliders/img-1-1.jpg', '[]', '2026-03-06 08:24:09', '2026-03-06 08:24:09', NULL, 'public'),
(234, 0, 'img-1', 'img-1', 10, 'image/jpeg', 23738, 'sliders/img-1.jpg', '[]', '2026-03-06 08:24:09', '2026-03-06 08:24:09', NULL, 'public'),
(235, 1, 'Bronco3', 'Bronco3', 11, 'image/jpeg', 413050, 'customers/34/bronco3.jpg', '[]', '2026-03-18 03:58:31', '2026-03-18 03:58:31', NULL, 'public'),
(236, 1, 'Bronco2', 'Bronco2', 11, 'image/jpeg', 6738, 'customers/34/bronco2.jpg', '[]', '2026-03-18 03:58:35', '2026-03-18 03:58:35', NULL, 'public'),
(237, 1, '1-520x520', '1-520x520', 0, 'image/jpeg', 24329, '1-520x520.jpg', '[]', '2026-03-18 10:00:17', '2026-03-18 10:00:17', NULL, 'public'),
(238, 1, 'Bronco2', 'Bronco2', 0, 'image/jpeg', 6738, 'bronco2.jpg', '[]', '2026-03-18 10:01:44', '2026-03-18 10:01:44', NULL, 'public'),
(239, 1, 'Bronco3', 'Bronco3', 0, 'image/jpeg', 413050, 'bronco3.jpg', '[]', '2026-03-18 10:01:49', '2026-03-18 10:01:49', NULL, 'public'),
(240, 1, 'car-loan-form-bg', 'car-loan-form-bg', 0, 'image/jpeg', 89320, 'car-loan-form-bg.jpg', '[]', '2026-03-18 10:01:51', '2026-03-18 10:01:51', NULL, 'public'),
(241, 1, 'dark', 'dark', 0, 'image/png', 12606, 'dark.png', '[]', '2026-03-18 10:01:52', '2026-03-18 10:01:52', NULL, 'public'),
(242, 1, 'hero-banner', 'hero-banner', 0, 'image/jpeg', 86254, 'hero-banner.jpg', '[]', '2026-03-18 10:01:53', '2026-03-18 10:01:53', NULL, 'public'),
(243, 1, 'img-1', 'img-1', 0, 'image/png', 269487, 'img-1.png', '[]', '2026-03-18 10:01:56', '2026-03-18 10:01:56', NULL, 'public'),
(244, 1, 'img-2', 'img-2', 0, 'image/png', 231919, 'img-2.png', '[]', '2026-03-18 10:01:58', '2026-03-18 10:01:58', NULL, 'public'),
(245, 1, 'img-3', 'img-3', 0, 'image/png', 129458, 'img-3.png', '[]', '2026-03-18 10:02:00', '2026-03-18 10:02:00', NULL, 'public'),
(246, 1, 'img-4', 'img-4', 0, 'image/png', 124702, 'img-4.png', '[]', '2026-03-18 10:02:02', '2026-03-18 10:02:02', NULL, 'public'),
(247, 1, 'img-5', 'img-5', 0, 'image/png', 161159, 'img-5.png', '[]', '2026-03-18 10:02:04', '2026-03-18 10:02:04', NULL, 'public'),
(248, 1, 'light', 'light', 0, 'image/png', 13322, 'light.png', '[]', '2026-03-18 10:06:32', '2026-03-18 10:06:32', NULL, 'public'),
(249, 1, 'img-1-1', 'img-1-1', 0, 'image/png', 71597, 'img-1-1.png', '[]', '2026-03-18 10:11:46', '2026-03-18 10:11:46', NULL, 'public'),
(250, 1, 'img-2-1', 'img-2-1', 0, 'image/png', 69522, 'img-2-1.png', '[]', '2026-03-18 10:12:05', '2026-03-18 10:12:05', NULL, 'public'),
(251, 1, 'about-us-bg', 'about-us-bg', 0, 'image/jpeg', 98688, 'about-us-bg.jpg', '[]', '2026-03-18 10:28:50', '2026-03-18 10:28:50', NULL, 'public'),
(252, 1, '4a17324c0cdc150503c394ba27d9c772', '4a17324c0cdc150503c394ba27d9c772', 12, 'image/jpeg', 42423, 'blogs/4a17324c0cdc150503c394ba27d9c772.jpg', '[]', '2026-03-19 06:35:41', '2026-03-19 06:35:41', NULL, 'public'),
(253, 1, '19-1920x1080-520x380', '19-1920x1080-520x380', 12, 'image/jpeg', 25742, 'blogs/19-1920x1080-520x380.jpg', '[]', '2026-03-19 06:35:43', '2026-03-19 06:35:43', NULL, 'public'),
(254, 1, '25-years-car-side-onpng-520x380', '25-years-car-side-onpng-520x380', 12, 'image/webp', 10272, 'blogs/25-years-car-side-onpng-520x380.webp', '[]', '2026-03-19 06:35:43', '2026-03-19 06:35:43', NULL, 'public'),
(255, 1, '61ve5cdifgl-ac-uf10001000-ql80-520x380', '61ve5cdifgl-ac-uf10001000-ql80-520x380', 12, 'image/jpeg', 28614, 'blogs/61ve5cdifgl-ac-uf10001000-ql80-520x380.jpg', '[]', '2026-03-19 06:35:45', '2026-03-19 06:35:45', NULL, 'public'),
(256, 1, '113984896-150x150', '113984896-150x150', 12, 'image/jpeg', 2996, 'blogs/113984896-150x150.jpg', '[]', '2026-03-19 06:35:45', '2026-03-19 06:35:45', NULL, 'public'),
(257, 1, 'blog-smart-car-and-autonomous-selfdriving-mode-vehicle-on-metro-city-road-picture-id877349122-hero-a-520x380', 'blog-smart-car-and-autonomous-selfdriving-mode-vehicle-on-metro-city-road-picture-id877349122-hero-a-520x380', 12, 'image/jpeg', 45966, 'blogs/blog-smart-car-and-autonomous-selfdriving-mode-vehicle-on-metro-city-road-picture-id877349122-hero-a.jpg', '[]', '2026-03-19 06:35:47', '2026-03-19 06:35:47', NULL, 'public'),
(258, 1, 'brand-new-electric-vehicle-production-600nw-2287564725-520x380', 'brand-new-electric-vehicle-production-600nw-2287564725-520x380', 12, 'image/webp', 10818, 'blogs/brand-new-electric-vehicle-production-600nw-2287564725-520x380.webp', '[]', '2026-03-19 06:35:48', '2026-03-19 06:35:48', NULL, 'public'),
(259, 1, 'car-leasing-1000x687-520x380', 'car-leasing-1000x687-520x380', 12, 'image/jpeg', 22110, 'blogs/car-leasing-1000x687-520x380.jpg', '[]', '2026-03-19 06:35:49', '2026-03-19 06:35:49', NULL, 'public'),
(260, 1, 'electric-hybrid-102-6606e5cea9494-1-150x150', 'electric-hybrid-102-6606e5cea9494-1-150x150', 12, 'image/jpeg', 6005, 'blogs/electric-hybrid-102-6606e5cea9494-1-150x150.jpeg', '[]', '2026-03-19 06:35:50', '2026-03-19 06:35:50', NULL, 'public'),
(261, 1, 'images-7-520x380', 'images-7-520x380', 12, 'image/jpeg', 25656, 'blogs/images-7-520x380.jpeg', '[]', '2026-03-19 06:35:51', '2026-03-19 06:35:51', NULL, 'public'),
(262, 1, 'images-11-520x380', 'images-11-520x380', 12, 'image/jpeg', 24715, 'blogs/images-11-520x380.jpeg', '[]', '2026-03-19 06:35:52', '2026-03-19 06:35:52', NULL, 'public'),
(263, 1, 'images-12-150x150', 'images-12-150x150', 12, 'image/jpeg', 5181, 'blogs/images-12-150x150.jpeg', '[]', '2026-03-19 06:35:53', '2026-03-19 06:35:53', NULL, 'public'),
(264, 1, 'images-13', 'images-13', 12, 'image/jpeg', 7371, 'blogs/images-13.jpeg', '[]', '2026-03-19 06:35:54', '2026-03-19 06:35:54', NULL, 'public'),
(265, 1, 'images-14-520x380', 'images-14-520x380', 12, 'image/jpeg', 26265, 'blogs/images-14-520x380.jpeg', '[]', '2026-03-19 06:35:55', '2026-03-19 06:35:55', NULL, 'public'),
(266, 1, 'images-15-520x380', 'images-15-520x380', 12, 'image/jpeg', 21694, 'blogs/images-15-520x380.jpeg', '[]', '2026-03-19 06:35:56', '2026-03-19 06:35:56', NULL, 'public'),
(267, 1, 'images-18-520x380', 'images-18-520x380', 12, 'image/jpeg', 35043, 'blogs/images-18-520x380.jpeg', '[]', '2026-03-19 06:35:57', '2026-03-19 06:35:57', NULL, 'public'),
(268, 1, 'istockphoto-1438308925-612x612-1-520x380', 'istockphoto-1438308925-612x612-1-520x380', 12, 'image/jpeg', 26874, 'blogs/istockphoto-1438308925-612x612-1-520x380.jpg', '[]', '2026-03-19 06:35:58', '2026-03-19 06:35:58', NULL, 'public'),
(269, 1, 'mahindra-thar-1024x576-520x380', 'mahindra-thar-1024x576-520x380', 12, 'image/webp', 10272, 'blogs/mahindra-thar-1024x576-520x380.webp', '[]', '2026-03-19 06:35:59', '2026-03-19 06:35:59', NULL, 'public'),
(270, 1, 'the-evolution-of-electric-vehicles-1024x585-520x380', 'the-evolution-of-electric-vehicles-1024x585-520x380', 12, 'image/png', 317789, 'blogs/the-evolution-of-electric-vehicles-1024x585-520x380.png', '[]', '2026-03-19 06:36:01', '2026-03-19 06:36:01', NULL, 'public'),
(271, 1, 'images-4-1920x1080', 'images-4-1920x1080', 12, 'image/jpeg', 149808, 'blogs/images-4-1920x1080.jpeg', '[]', '2026-03-19 06:47:41', '2026-03-19 06:47:41', NULL, 'public'),
(272, 1, '05-2023-honda-cr-v-sport-3-150x150', '05-2023-honda-cr-v-sport-3-150x150', 13, 'image/jpeg', 5215, 'instagram/05-2023-honda-cr-v-sport-3-150x150.jpg', '[]', '2026-03-19 06:52:32', '2026-03-19 06:52:32', NULL, 'public'),
(273, 1, '12-04-24-gruzja-2857-150x150', '12-04-24-gruzja-2857-150x150', 13, 'image/jpeg', 4849, 'instagram/12-04-24-gruzja-2857-150x150.jpg', '[]', '2026-03-19 06:52:34', '2026-03-19 06:52:34', NULL, 'public'),
(274, 1, 'featured-the-advantages-and-disadvantages-of-hybrid-vs-electric-cars-150x150', 'featured-the-advantages-and-disadvantages-of-hybrid-vs-electric-cars-150x150', 13, 'image/jpeg', 4908, 'instagram/featured-the-advantages-and-disadvantages-of-hybrid-vs-electric-cars-150x150.jpg', '[]', '2026-03-19 06:52:36', '2026-03-19 06:52:36', NULL, 'public'),
(275, 1, 'hybrid-x-design-study-of-the-next-generation-hybrid-vehicle-150x150', 'hybrid-x-design-study-of-the-next-generation-hybrid-vehicle-150x150', 13, 'image/jpeg', 4495, 'instagram/hybrid-x-design-study-of-the-next-generation-hybrid-vehicle-150x150.jpeg', '[]', '2026-03-19 06:52:37', '2026-03-19 06:52:37', NULL, 'public'),
(276, 1, 'images-16-150x150', 'images-16-150x150', 13, 'image/jpeg', 7402, 'instagram/images-16-150x150.jpeg', '[]', '2026-03-19 06:52:38', '2026-03-19 06:52:38', NULL, 'public'),
(277, 1, 'images-18-150x150', 'images-18-150x150', 13, 'image/jpeg', 6921, 'instagram/images-18-150x150.jpeg', '[]', '2026-03-19 06:52:38', '2026-03-19 06:52:38', NULL, 'public'),
(278, 1, 'images-23-150x150', 'images-23-150x150', 13, 'image/jpeg', 4084, 'instagram/images-23-150x150.jpeg', '[]', '2026-03-19 06:52:40', '2026-03-19 06:52:40', NULL, 'public'),
(279, 1, 'kia-ev6-india-150x150', 'kia-ev6-india-150x150', 13, 'image/jpeg', 6014, 'instagram/kia-ev6-india-150x150.jpg', '[]', '2026-03-19 06:52:41', '2026-03-19 06:52:41', NULL, 'public'),
(280, 1, 'large-63358-2025tucsonhybrid-150x150', 'large-63358-2025tucsonhybrid-150x150', 13, 'image/jpeg', 5341, 'instagram/large-63358-2025tucsonhybrid-150x150.jpg', '[]', '2026-03-19 06:52:42', '2026-03-19 06:52:42', NULL, 'public'),
(281, 1, 'coupe', 'coupe', 14, 'image/jpeg', 6235, 'car-types/coupe.jpg', '[]', '2026-03-19 09:10:39', '2026-03-19 09:10:39', NULL, 'public'),
(282, 1, 'cressover', 'cressover', 14, 'image/jpeg', 6623, 'car-types/cressover.jpg', '[]', '2026-03-19 09:10:40', '2026-03-19 09:10:40', NULL, 'public'),
(283, 1, 'hatchback', 'hatchback', 14, 'image/jpeg', 5863, 'car-types/hatchback.jpg', '[]', '2026-03-19 09:10:41', '2026-03-19 09:10:41', NULL, 'public'),
(284, 1, 'minivan', 'minivan', 14, 'image/jpeg', 6056, 'car-types/minivan.jpg', '[]', '2026-03-19 09:10:42', '2026-03-19 09:10:42', NULL, 'public'),
(285, 1, 'pickup', 'pickup', 14, 'image/jpeg', 9111, 'car-types/pickup.jpg', '[]', '2026-03-19 09:10:43', '2026-03-19 09:10:43', NULL, 'public'),
(286, 1, 'sedan', 'sedan', 14, 'image/jpeg', 5836, 'car-types/sedan.jpg', '[]', '2026-03-19 09:10:43', '2026-03-19 09:10:43', NULL, 'public'),
(287, 1, 'sports-car', 'sports-car', 14, 'image/jpeg', 35590, 'car-types/sports-car.jpg', '[]', '2026-03-19 09:10:44', '2026-03-19 09:10:44', NULL, 'public'),
(288, 1, 'suv', 'suv', 14, 'image/jpeg', 6066, 'car-types/suv.jpg', '[]', '2026-03-19 09:10:45', '2026-03-19 09:10:45', NULL, 'public'),
(289, 1, 'about-us-1', 'about-us-1', 15, 'image/jpeg', 48419, 'about-us/about-us-1.jpg', '[]', '2026-03-19 11:28:17', '2026-03-19 11:28:17', NULL, 'public'),
(290, 1, 'about-us-2', 'about-us-2', 15, 'image/jpeg', 42062, 'about-us/about-us-2.jpg', '[]', '2026-03-19 11:28:18', '2026-03-19 11:28:18', NULL, 'public'),
(291, 1, 'images-33', 'images-33', 15, 'image/jpeg', 10611, 'about-us/images-33.jpeg', '[]', '2026-03-19 11:28:19', '2026-03-19 11:28:19', NULL, 'public'),
(292, 1, 'download-3-520x520', 'download-3-520x520', 15, 'image/jpeg', 33294, 'about-us/download-3-520x520.jfif', '[]', '2026-03-19 11:38:06', '2026-03-19 11:38:06', NULL, 'public'),
(293, 1, 'images-3-520x520', 'images-3-520x520', 15, 'image/jpeg', 22000, 'about-us/images-3-520x520.jfif', '[]', '2026-03-19 11:38:07', '2026-03-19 11:38:07', NULL, 'public'),
(294, 1, 'images-4-520x520', 'images-4-520x520', 15, 'image/jpeg', 28305, 'about-us/images-4-520x520.jfif', '[]', '2026-03-19 11:38:08', '2026-03-19 11:38:08', NULL, 'public'),
(295, 1, 'images-6-520x520', 'images-6-520x520', 15, 'image/jpeg', 23276, 'about-us/images-6-520x520.jfif', '[]', '2026-03-19 11:38:09', '2026-03-19 11:38:09', NULL, 'public'),
(296, 1, 'img-2-1', 'img-2-1', 15, 'image/png', 103946, 'about-us/img-2-1.png', '[]', '2026-03-19 11:38:11', '2026-03-19 11:38:11', NULL, 'public'),
(297, 1, 'img-2-2', 'img-2-2', 15, 'image/png', 92240, 'about-us/img-2-2.png', '[]', '2026-03-19 11:38:13', '2026-03-19 11:38:13', NULL, 'public'),
(298, 1, 'img-2-3', 'img-2-3', 15, 'image/png', 64227, 'about-us/img-2-3.png', '[]', '2026-03-19 11:38:14', '2026-03-19 11:38:14', NULL, 'public'),
(299, 1, 'img-2-4', 'img-2-4', 15, 'image/png', 91459, 'about-us/img-2-4.png', '[]', '2026-03-19 11:38:16', '2026-03-19 11:38:16', NULL, 'public'),
(300, 1, 'car', 'car', 0, 'image/jpeg', 20149, 'car.jpg', '[]', '2026-03-20 03:50:32', '2026-03-20 03:50:32', NULL, 'public'),
(301, 1, '3-520x380-520x380', '3-520x380-520x380', 16, 'image/jpeg', 29967, 'services/3-520x380-520x380.jpg', '[]', '2026-03-20 04:19:39', '2026-03-20 04:19:39', NULL, 'public'),
(302, 1, 'black-car-hd-42p5pzpxl5na0cmh', 'black-car-hd-42p5pzpxl5na0cmh', 16, 'image/jpeg', 196501, 'services/black-car-hd-42p5pzpxl5na0cmh.jpg', '[]', '2026-03-20 04:19:41', '2026-03-20 04:19:41', NULL, 'public'),
(303, 1, 'car-replace-520x380', 'car-replace-520x380', 16, 'image/jpeg', 40899, 'services/car-replace-520x380.jpg', '[]', '2026-03-20 04:19:42', '2026-03-20 04:19:42', NULL, 'public'),
(304, 1, 'citron-with-bg-1-520x380', 'citron-with-bg-1-520x380', 16, 'image/png', 233280, 'services/citron-with-bg-1-520x380.png', '[]', '2026-03-20 04:19:44', '2026-03-20 04:19:44', NULL, 'public'),
(305, 1, 'how-can-we-use-roadside-assistance-cover-in-car-insurance-520x380', 'how-can-we-use-roadside-assistance-cover-in-car-insurance-520x380', 16, 'image/jpeg', 33872, 'services/how-can-we-use-roadside-assistance-cover-in-car-insurance-520x380.jpg', '[]', '2026-03-20 04:19:46', '2026-03-20 04:19:46', NULL, 'public'),
(306, 1, 'promotion-block-bg', 'promotion-block-bg', 16, 'image/jpeg', 66248, 'services/promotion-block-bg.jpg', '[]', '2026-03-20 04:19:47', '2026-03-20 04:19:47', NULL, 'public'),
(307, 1, 'tire-replacement-520x380', 'tire-replacement-520x380', 16, 'image/jpeg', 31693, 'services/tire-replacement-520x380.jpg', '[]', '2026-03-20 04:19:49', '2026-03-20 04:19:49', NULL, 'public'),
(309, 1, 'download', 'download', 6, 'image/jpeg', 6168, 'testimonials/download.jfif', '[]', '2026-03-20 05:14:45', '2026-03-20 05:14:45', NULL, 'public'),
(310, 1, 'download-1', 'download-1', 6, 'image/jpeg', 7477, 'testimonials/download-1.jfif', '[]', '2026-03-20 05:14:46', '2026-03-20 05:14:46', NULL, 'public'),
(311, 1, 'download-2', 'download-2', 6, 'image/jpeg', 10584, 'testimonials/download-2.jfif', '[]', '2026-03-20 05:14:47', '2026-03-20 05:14:47', NULL, 'public'),
(312, 1, 'images', 'images', 6, 'image/jpeg', 4184, 'testimonials/images.jfif', '[]', '2026-03-20 05:14:48', '2026-03-20 05:14:48', NULL, 'public'),
(313, 1, 'newsletter-bg', 'newsletter-bg', 0, 'image/jpeg', 31997, 'newsletter-bg.jpg', '[]', '2026-03-20 10:48:29', '2026-03-20 10:48:29', NULL, 'public'),
(314, 1, '2', '2', 0, 'image/jpeg', 73454, '2.jpg', '[]', '2026-03-20 11:26:01', '2026-03-20 11:26:01', NULL, 'public'),
(315, 1, 'ford-mustang-gt02-520x380', 'ford-mustang-gt02-520x380', 17, 'image/jpeg', 26909, 'cars2/ford-mustang-gt02-520x380.jpeg', '[]', '2026-03-25 10:03:36', '2026-03-25 10:03:36', NULL, 'public'),
(316, 1, 'ford-mustang-gt-520x380', 'ford-mustang-gt-520x380', 17, 'image/jpeg', 30285, 'cars2/ford-mustang-gt-520x380.jpeg', '[]', '2026-03-25 10:03:36', '2026-03-25 10:03:36', NULL, 'public'),
(317, 1, '2025-toyota-rav4-hybrid-4dr-suv-se-fq-oem-1-815jpg-1920x1080', '2025-toyota-rav4-hybrid-4dr-suv-se-fq-oem-1-815jpg-1920x1080', 17, 'image/jpeg', 131151, 'cars2/2025-toyota-rav4-hybrid-4dr-suv-se-fq-oem-1-815jpg-1920x1080.jpeg', '[]', '2026-03-25 10:23:21', '2026-03-25 10:23:21', NULL, 'public'),
(318, 1, '2024-honda-cr-v-sport-l-520x380', '2024-honda-cr-v-sport-l-520x380', 17, 'image/jpeg', 25036, 'cars2/2024-honda-cr-v-sport-l-520x380.jpg', '[]', '2026-03-25 10:24:58', '2026-03-25 10:24:58', NULL, 'public'),
(319, 1, 'car-interiors-2-520x380-520x380', 'car-interiors-2-520x380-520x380', 17, 'image/jpeg', 35900, 'cars2/car-interiors-2-520x380-520x380.jpg', '[]', '2026-03-25 10:24:59', '2026-03-25 10:24:59', NULL, 'public'),
(320, 1, 'car-interiors-4-520x380-520x380', 'car-interiors-4-520x380-520x380', 17, 'image/jpeg', 29863, 'cars2/car-interiors-4-520x380-520x380.jpg', '[]', '2026-03-25 10:25:00', '2026-03-25 10:25:00', NULL, 'public'),
(321, 1, '2020-honda-cr-v-4dr-suv-touring-fq-oem-1-815jpg-520x380', '2020-honda-cr-v-4dr-suv-touring-fq-oem-1-815jpg-520x380', 17, 'image/jpeg', 34842, 'cars2/2020-honda-cr-v-4dr-suv-touring-fq-oem-1-815jpg-520x380.jpeg', '[]', '2026-03-25 10:25:01', '2026-03-25 10:25:01', NULL, 'public'),
(322, 1, 'download-4-520x520', 'download-4-520x520', 15, 'image/jpeg', 22587, 'about-us/download-4-520x520.jfif', '[]', '2026-03-25 10:35:47', '2026-03-25 10:35:47', NULL, 'public'),
(323, 1, 'images-2-520x520', 'images-2-520x520', 15, 'image/jpeg', 24178, 'about-us/images-2-520x520.jfif', '[]', '2026-03-25 10:35:48', '2026-03-25 10:35:48', NULL, 'public'),
(324, 1, 'images-5-520x520', 'images-5-520x520', 15, 'image/jpeg', 29481, 'about-us/images-5-520x520.jfif', '[]', '2026-03-25 10:35:49', '2026-03-25 10:35:49', NULL, 'public'),
(325, 1, 'images-7-520x520', 'images-7-520x520', 15, 'image/jpeg', 21364, 'about-us/images-7-520x520.jfif', '[]', '2026-03-25 10:35:50', '2026-03-25 10:35:50', NULL, 'public'),
(326, 1, 'car-interiors-7-520x380-520x380', 'car-interiors-7-520x380-520x380', 17, 'image/jpeg', 25049, 'cars2/car-interiors-7-520x380-520x380.jpg', '[]', '2026-03-25 10:38:39', '2026-03-25 10:38:39', NULL, 'public'),
(327, 1, 'bmw-x-series-x5-sp-desktop-520x380', 'bmw-x-series-x5-sp-desktop-520x380', 17, 'image/jpeg', 24708, 'cars2/bmw-x-series-x5-sp-desktop-520x380.jpg', '[]', '2026-03-25 10:38:40', '2026-03-25 10:38:40', NULL, 'public'),
(328, 1, 'download-1-520x380', 'download-1-520x380', 17, 'image/jpeg', 25416, 'cars2/download-1-520x380.jpeg', '[]', '2026-03-25 10:38:41', '2026-03-25 10:38:41', NULL, 'public'),
(329, 1, 'download-520x380', 'download-520x380', 17, 'image/jpeg', 23579, 'cars2/download-520x380.jpeg', '[]', '2026-03-25 10:38:42', '2026-03-25 10:38:42', NULL, 'public'),
(330, 1, '8-520x380-520x380', '8-520x380-520x380', 17, 'image/jpeg', 40012, 'cars2/8-520x380-520x380.jpg', '[]', '2026-03-25 10:42:33', '2026-03-25 10:42:33', NULL, 'public'),
(331, 1, '6-1920x1080-520x380', '6-1920x1080-520x380', 17, 'image/jpeg', 32666, 'cars2/6-1920x1080-520x380.jpg', '[]', '2026-03-25 10:42:34', '2026-03-25 10:42:34', NULL, 'public'),
(332, 1, 'car-interiors-4-1920x1080-520x380', 'car-interiors-4-1920x1080-520x380', 17, 'image/jpeg', 30798, 'cars2/car-interiors-4-1920x1080-520x380.jpg', '[]', '2026-03-25 10:42:35', '2026-03-25 10:42:35', NULL, 'public'),
(333, 1, 'car-interiors-6-520x380-520x380', 'car-interiors-6-520x380-520x380', 17, 'image/jpeg', 35666, 'cars2/car-interiors-6-520x380-520x380.jpg', '[]', '2026-03-25 10:42:36', '2026-03-25 10:42:36', NULL, 'public'),
(334, 1, 'car-interiors-5-520x380-520x380', 'car-interiors-5-520x380-520x380', 17, 'image/jpeg', 37102, 'cars2/car-interiors-5-520x380-520x380.jpg', '[]', '2026-03-25 10:42:36', '2026-03-25 10:42:36', NULL, 'public'),
(335, 1, '10-520x380-520x380', '10-520x380-520x380', 17, 'image/jpeg', 36145, 'cars2/10-520x380-520x380.jpg', '[]', '2026-03-25 10:44:01', '2026-03-25 10:44:01', NULL, 'public'),
(336, 1, 'car-interiors-8-520x380-520x380', 'car-interiors-8-520x380-520x380', 17, 'image/jpeg', 33011, 'cars2/car-interiors-8-520x380-520x380.jpg', '[]', '2026-03-25 10:44:02', '2026-03-25 10:44:02', NULL, 'public'),
(337, 1, '2021-toyota-camry-sedan-xle-fq-oem-1-815jpg-520x380', '2021-toyota-camry-sedan-xle-fq-oem-1-815jpg-520x380', 17, 'image/jpeg', 30333, 'cars2/2021-toyota-camry-sedan-xle-fq-oem-1-815jpg-520x380.jpeg', '[]', '2026-03-25 10:44:54', '2026-03-25 10:44:54', NULL, 'public'),
(338, 1, '2021-honda-accord-sedan-touring-fq-oem-2-1600x1067jpg-520x380', '2021-honda-accord-sedan-touring-fq-oem-2-1600x1067jpg-520x380', 17, 'image/jpeg', 34172, 'cars2/2021-honda-accord-sedan-touring-fq-oem-2-1600x1067jpg-520x380.jpeg', '[]', '2026-03-25 10:45:38', '2026-03-25 10:45:38', NULL, 'public'),
(339, 1, '2025-mercedes-benz-c-class-sedan-amg-c-43-fq-oem-2-1600x1067jpg-520x380', '2025-mercedes-benz-c-class-sedan-amg-c-43-fq-oem-2-1600x1067jpg-520x380', 17, 'image/jpeg', 30328, 'cars2/2025-mercedes-benz-c-class-sedan-amg-c-43-fq-oem-2-1600x1067jpg-520x380.jpeg', '[]', '2026-03-25 10:46:28', '2026-03-25 10:46:28', NULL, 'public'),
(340, 1, '2025-bmw-3-series-sedan-330i-fq-oem-3-1600x1067jpg-520x380', '2025-bmw-3-series-sedan-330i-fq-oem-3-1600x1067jpg-520x380', 17, 'image/jpeg', 35534, 'cars2/2025-bmw-3-series-sedan-330i-fq-oem-3-1600x1067jpg-520x380.jpeg', '[]', '2026-03-25 10:47:16', '2026-03-25 10:47:16', NULL, 'public'),
(341, 1, 'download-3-520x380', 'download-3-520x380', 17, 'image/jpeg', 35198, 'cars2/download-3-520x380.jpeg', '[]', '2026-03-25 10:50:08', '2026-03-25 10:50:08', NULL, 'public'),
(342, 1, 'download-2-520x380', 'download-2-520x380', 17, 'image/jpeg', 34923, 'cars2/download-2-520x380.jpeg', '[]', '2026-03-25 10:50:09', '2026-03-25 10:50:09', NULL, 'public'),
(343, 1, 'images-2-520x380', 'images-2-520x380', 17, 'image/jpeg', 23762, 'cars2/images-2-520x380.jpeg', '[]', '2026-03-25 10:50:10', '2026-03-25 10:50:10', NULL, 'public'),
(344, 1, '2024-lexus-es-interior-102-649f39cc5db39-520x380', '2024-lexus-es-interior-102-649f39cc5db39-520x380', 17, 'image/jpeg', 24401, 'cars2/2024-lexus-es-interior-102-649f39cc5db39-520x380.jpg', '[]', '2026-03-25 10:50:11', '2026-03-25 10:50:11', NULL, 'public'),
(345, 1, '2023-lexus-es350-f-sport-7-520x380', '2023-lexus-es350-f-sport-7-520x380', 17, 'image/jpeg', 38212, 'cars2/2023-lexus-es350-f-sport-7-520x380.jpg', '[]', '2026-03-25 10:50:12', '2026-03-25 10:50:12', NULL, 'public');
INSERT INTO `media_files` (`id`, `user_id`, `name`, `alt`, `folder_id`, `mime_type`, `size`, `url`, `options`, `created_at`, `updated_at`, `deleted_at`, `visibility`) VALUES
(346, 1, '2024-lexus-es-interior-101-649f39cc72916-520x380', '2024-lexus-es-interior-101-649f39cc72916-520x380', 17, 'image/jpeg', 23898, 'cars2/2024-lexus-es-interior-101-649f39cc72916-520x380.jpg', '[]', '2026-03-25 10:50:13', '2026-03-25 10:50:13', NULL, 'public'),
(347, 1, 'pexels-harrisonhaines-3536293', 'pexels-harrisonhaines-3536293', 16, 'image/jpeg', 119129, 'services/pexels-harrisonhaines-3536293.jpg', '[]', '2026-03-27 08:52:00', '2026-03-27 08:52:00', NULL, 'public'),
(348, 1, 'icon', 'icon', 0, 'image/png', 38005, 'icon.png', '[]', '2026-04-01 11:18:23', '2026-04-01 11:18:23', NULL, 'public'),
(349, 1, 'imockup-iphone-14 (1)', 'imockup-iphone-14 (1)', 0, 'image/png', 834514, 'imockup-iphone-14-1.png', '[]', '2026-04-02 08:13:25', '2026-04-02 08:13:25', NULL, 'public'),
(350, 1, 'berlin2-240x320', 'berlin2-240x320', 7, 'image/jpeg', 17769, 'locations/berlin2-240x320.jpg', '[]', '2026-04-02 08:28:10', '2026-04-02 08:28:10', NULL, 'public'),
(351, 1, 'copenhagen-240x320', 'copenhagen-240x320', 7, 'image/jpeg', 22723, 'locations/copenhagen-240x320.jpg', '[]', '2026-04-02 08:28:11', '2026-04-02 08:28:11', NULL, 'public'),
(352, 1, 'Golden-Gate-Bridge-San-Francisco', 'Golden-Gate-Bridge-San-Francisco', 7, 'image/webp', 79816, 'locations/golden-gate-bridge-san-francisco.webp', '[]', '2026-04-02 08:28:12', '2026-04-02 08:28:12', NULL, 'public'),
(353, 1, 'images', 'images', 7, 'image/jpeg', 13054, 'locations/images.jpg', '[]', '2026-04-02 08:28:14', '2026-04-02 08:28:14', NULL, 'public'),
(354, 1, 'london2-240x320', 'london2-240x320', 7, 'image/jpeg', 19302, 'locations/london2-240x320.jpg', '[]', '2026-04-02 08:28:15', '2026-04-02 08:28:15', NULL, 'public'),
(355, 1, 'new-york-240x320', 'new-york-240x320', 7, 'image/jpeg', 13096, 'locations/new-york-240x320.jpg', '[]', '2026-04-02 08:28:16', '2026-04-02 08:28:16', NULL, 'public'),
(356, 1, 'paris-240x320', 'paris-240x320', 7, 'image/jpeg', 19208, 'locations/paris-240x320.jpg', '[]', '2026-04-02 08:28:16', '2026-04-02 08:28:16', NULL, 'public'),
(357, 1, '1', '1', 0, 'image/jpeg', 669255, '1.jpg', '[]', '2026-04-03 05:46:36', '2026-04-03 05:46:36', NULL, 'public'),
(358, 1, '8', '8', 0, 'image/jpeg', 512757, '8.jpg', '[]', '2026-04-03 05:47:47', '2026-04-03 05:47:47', NULL, 'public'),
(359, 1, '4', '4', 0, 'image/jpeg', 915919, '4.jpg', '[]', '2026-04-03 05:47:52', '2026-04-03 05:47:52', NULL, 'public'),
(360, 1, '2-1', '2-1', 0, 'image/jpeg', 596638, '2-1.jpg', '[]', '2026-04-03 05:47:56', '2026-04-03 05:47:56', NULL, 'public'),
(361, 1, '6', '6', 0, 'image/jpeg', 500026, '6.jpg', '[]', '2026-04-03 05:48:44', '2026-04-03 05:48:44', NULL, 'public'),
(362, 1, '6-1', '6-1', 0, 'image/jpeg', 500026, '6-1.jpg', '[]', '2026-04-03 05:49:07', '2026-04-03 05:49:07', NULL, 'public'),
(363, 1, 'ext-Mercedes-Benz1-C300', 'ext-Mercedes-Benz1-C300', 0, 'image/png', 820631, 'ext-mercedes-benz1-c300.png', '[]', '2026-04-06 06:16:26', '2026-04-06 06:16:26', NULL, 'public'),
(364, 1, 'ext-Mercedes-Benz4-C300', 'ext-Mercedes-Benz4-C300', 0, 'image/jpeg', 73290, 'ext-mercedes-benz4-c300.jpg', '[]', '2026-04-06 06:16:29', '2026-04-06 06:16:29', NULL, 'public'),
(365, 1, 'ext-Mercedes-Benz5-C300', 'ext-Mercedes-Benz5-C300', 0, 'image/jpeg', 128865, 'ext-mercedes-benz5-c300.jpg', '[]', '2026-04-06 06:16:31', '2026-04-06 06:16:31', NULL, 'public'),
(366, 1, 'ext-Mercedes-Benz9-C300', 'ext-Mercedes-Benz9-C300', 0, 'image/jpeg', 40313, 'ext-mercedes-benz9-c300.jpg', '[]', '2026-04-06 06:16:32', '2026-04-06 06:16:32', NULL, 'public'),
(367, 1, 'ext-Mercedes-Benz10-C300', 'ext-Mercedes-Benz10-C300', 0, 'image/jpeg', 188696, 'ext-mercedes-benz10-c300.jpeg', '[]', '2026-04-06 06:16:33', '2026-04-06 06:16:33', NULL, 'public'),
(368, 1, 'ext-Mercedes-Benz-C300', 'ext-Mercedes-Benz-C300', 0, 'image/jpeg', 7858, 'ext-mercedes-benz-c300.jpeg', '[]', '2026-04-06 06:16:34', '2026-04-06 06:16:34', NULL, 'public'),
(369, 1, 'int-Mercedes-Benz0-C300', 'int-Mercedes-Benz0-C300', 0, 'image/jpeg', 11513, 'int-mercedes-benz0-c300.jpeg', '[]', '2026-04-06 06:16:35', '2026-04-06 06:16:35', NULL, 'public'),
(370, 1, 'int-Mercedes-Benz000-C300', 'int-Mercedes-Benz000-C300', 0, 'image/jpeg', 8308, 'int-mercedes-benz000-c300.jpeg', '[]', '2026-04-06 06:16:36', '2026-04-06 06:16:36', NULL, 'public'),
(371, 1, 'int-Mercedes-Benz00-C300', 'int-Mercedes-Benz00-C300', 0, 'image/jpeg', 257631, 'int-mercedes-benz00-c300.jpg', '[]', '2026-04-06 06:16:38', '2026-04-06 06:16:38', NULL, 'public'),
(372, 1, 'int-Mercedes-Benz2-C300', 'int-Mercedes-Benz2-C300', 0, 'image/jpeg', 52226, 'int-mercedes-benz2-c300.jpeg', '[]', '2026-04-06 06:16:39', '2026-04-06 06:16:39', NULL, 'public'),
(373, 1, 'int-Mercedes-Benz4-C300', 'int-Mercedes-Benz4-C300', 0, 'image/jpeg', 42896, 'int-mercedes-benz4-c300.jpg', '[]', '2026-04-06 06:16:41', '2026-04-06 06:16:41', NULL, 'public'),
(374, 1, 'int-Mercedes-Benz5-C300', 'int-Mercedes-Benz5-C300', 0, 'image/jpeg', 48265, 'int-mercedes-benz5-c300.jpg', '[]', '2026-04-06 06:16:42', '2026-04-06 06:16:42', NULL, 'public'),
(375, 1, 'int-Mercedes-Benz77-C300', 'int-Mercedes-Benz77-C300', 0, 'image/jpeg', 709479, 'int-mercedes-benz77-c300.jpg', '[]', '2026-04-06 06:16:45', '2026-04-06 06:16:45', NULL, 'public'),
(376, 1, 'int-Mercedes-Benz-C200', 'int-Mercedes-Benz-C200', 0, 'image/jpeg', 90238, 'int-mercedes-benz-c200.jpg', '[]', '2026-04-06 06:16:48', '2026-04-06 06:16:48', NULL, 'public'),
(377, 1, 'ext-Mercedes-Benz10-C300', 'ext-Mercedes-Benz10-C300', 19, 'image/jpeg', 188696, 'bookings/after-photos/ext-mercedes-benz10-c300.jpeg', '[]', '2026-04-09 14:23:44', '2026-04-09 14:23:44', NULL, 'public'),
(378, 0, 'verna2', 'verna2', 20, 'image/jpeg', 6185, 'customers/35/verna2.jpeg', '[]', '2026-04-09 14:29:17', '2026-04-09 14:29:17', NULL, 'public'),
(379, 0, 'verna1', 'verna1', 20, 'image/jpeg', 10797, 'customers/35/verna1.jpeg', '[]', '2026-04-09 14:29:18', '2026-04-09 14:29:18', NULL, 'public'),
(380, 1, 'verna1', 'verna1', 19, 'image/jpeg', 10797, 'bookings/after-photos/verna1.jpeg', '[]', '2026-04-09 14:38:47', '2026-04-09 14:38:47', NULL, 'public'),
(381, 1, 'verna', 'verna', 19, 'image/jpeg', 3259, 'bookings/after-photos/verna.jpeg', '[]', '2026-04-09 14:38:47', '2026-04-09 14:38:47', NULL, 'public'),
(383, 1, 'verna1', 'verna1', 23, 'image/jpeg', 10797, 'bookings/pickup-photos/verna1.jpeg', '[]', '2026-04-10 12:48:50', '2026-04-10 12:48:50', NULL, 'public'),
(384, 1, 'images (5)', 'images (5)', 23, 'image/jpeg', 11108, 'bookings/pickup-photos/images-5.jpeg', '[]', '2026-04-10 12:49:21', '2026-04-10 12:49:21', NULL, 'public'),
(385, 1, 'verna2', 'verna2', 23, 'image/jpeg', 6185, 'bookings/pickup-photos/verna2.jpeg', '[]', '2026-04-10 12:49:44', '2026-04-10 12:49:44', NULL, 'public'),
(389, 1, 'car-location', 'car-location', 15, 'image/png', 6800, 'about-us/car-location.png', '[]', '2026-04-21 16:44:03', '2026-04-21 16:44:03', NULL, 'public'),
(390, 1, 'convenient', 'convenient', 15, 'image/png', 3708, 'about-us/convenient.png', '[]', '2026-04-21 16:44:04', '2026-04-21 16:44:04', NULL, 'public'),
(391, 1, 'money', 'money', 15, 'image/png', 5109, 'about-us/money.png', '[]', '2026-04-21 16:44:05', '2026-04-21 16:44:05', NULL, 'public'),
(392, 1, 'supporter', 'supporter', 15, 'image/png', 7273, 'about-us/supporter.png', '[]', '2026-04-21 16:44:06', '2026-04-21 16:44:06', NULL, 'public'),
(396, 1, 'download', 'download', 17, 'image/jpeg', 7662, 'cars2/download.jpg', '[]', '2026-04-22 11:10:35', '2026-04-22 11:10:35', NULL, 'public'),
(397, 1, 'images', 'images', 17, 'image/jpeg', 10320, 'cars2/images.jpg', '[]', '2026-04-22 11:11:59', '2026-04-22 11:11:59', NULL, 'public'),
(399, 1, 's24-0160-fine', 's24-0160-fine', 17, 'image/webp', 23588, 'cars2/s24-0160-fine.webp', '[]', '2026-04-22 11:14:59', '2026-04-22 11:14:59', NULL, 'public'),
(401, 1, 'ff26c6d5-cae9-4bba-9366-66f35173bd4b', 'ff26c6d5-cae9-4bba-9366-66f35173bd4b', 17, 'image/jpeg', 63312, 'cars2/ff26c6d5-cae9-4bba-9366-66f35173bd4b.jpg', '[]', '2026-04-22 11:17:57', '2026-04-22 11:17:57', NULL, 'public'),
(402, 1, 'hq720', 'hq720', 17, 'image/jpeg', 63421, 'cars2/hq720.jpg', '[]', '2026-04-22 11:19:23', '2026-04-22 11:19:23', NULL, 'public'),
(403, 1, '2024-gmc-sierra-1500-denali-ultimate-review-truck-luxury', '2024-gmc-sierra-1500-denali-ultimate-review-truck-luxury', 17, 'image/webp', 83432, 'cars2/2024-gmc-sierra-1500-denali-ultimate-review-truck-luxury.webp', '[]', '2026-04-22 11:20:43', '2026-04-22 11:20:43', NULL, 'public'),
(404, 1, '2024-mitsubishi-outlander-phev-770x496', '2024-mitsubishi-outlander-phev-770x496', 17, 'image/jpeg', 85224, 'cars2/2024-mitsubishi-outlander-phev-770x496.jpg', '[]', '2026-04-22 11:22:25', '2026-04-22 11:22:25', NULL, 'public'),
(405, 1, 'images (1)', 'images (1)', 17, 'image/jpeg', 15269, 'cars2/images-1.jpg', '[]', '2026-04-22 11:23:42', '2026-04-22 11:23:42', NULL, 'public'),
(406, 1, 'images (2)', 'images (2)', 17, 'image/jpeg', 10806, 'cars2/images-2.jpg', '[]', '2026-04-22 11:24:34', '2026-04-22 11:24:34', NULL, 'public'),
(407, 1, 'images (3)', 'images (3)', 17, 'image/jpeg', 10998, 'cars2/images-3.jpg', '[]', '2026-04-22 11:36:40', '2026-04-22 11:36:40', NULL, 'public'),
(408, 1, 'model-s-plaid-2024-v0-8u4pk7gvee3d1', 'model-s-plaid-2024-v0-8u4pk7gvee3d1', 17, 'image/webp', 71384, 'cars2/model-s-plaid-2024-v0-8u4pk7gvee3d1.webp', '[]', '2026-04-22 11:37:53', '2026-04-22 11:37:53', NULL, 'public'),
(409, 1, 'ecae39d6-2024-lucid-air-grand-touring-ev-press-gtlaunch-ext-gt-zenithred-lifestyle1-768x432', 'ecae39d6-2024-lucid-air-grand-touring-ev-press-gtlaunch-ext-gt-zenithred-lifestyle1-768x432', 17, 'image/webp', 26718, 'cars2/ecae39d6-2024-lucid-air-grand-touring-ev-press-gtlaunch-ext-gt-zenithred-lifestyle1-768x432.webp', '[]', '2026-04-22 11:38:46', '2026-04-22 11:38:46', NULL, 'public'),
(411, 1, 'hq720 (1)', 'hq720 (1)', 17, 'image/jpeg', 54683, 'cars2/hq720-1.jpg', '[]', '2026-04-22 11:40:54', '2026-04-22 11:40:54', NULL, 'public'),
(412, 1, 'intro-1690570812', 'intro-1690570812', 17, 'image/jpeg', 74766, 'cars2/intro-1690570812.jpg', '[]', '2026-04-22 11:42:04', '2026-04-22 11:42:04', NULL, 'public'),
(413, 1, 'images (4)', 'images (4)', 17, 'image/jpeg', 12779, 'cars2/images-4.jpg', '[]', '2026-04-22 11:42:57', '2026-04-22 11:42:57', NULL, 'public'),
(415, 1, 'subaru_100882893_m', 'subaru_100882893_m', 17, 'image/jpeg', 43803, 'cars2/subaru-100882893-m.jpg', '[]', '2026-04-22 11:44:38', '2026-04-22 11:44:38', NULL, 'public'),
(416, 1, 'carrera_4s_092fef0de5', 'carrera_4s_092fef0de5', 17, 'image/jpeg', 70144, 'cars2/carrera-4s-092fef0de5.jpeg', '[]', '2026-04-22 11:45:54', '2026-04-22 11:45:54', NULL, 'public'),
(417, 1, 'images (5)', 'images (5)', 17, 'image/jpeg', 6511, 'cars2/images-5.jpg', '[]', '2026-04-22 11:49:02', '2026-04-22 11:49:02', NULL, 'public'),
(418, 1, '2024-hyundai-tucson-limited-awd-front-view-26', '2024-hyundai-tucson-limited-awd-front-view-26', 17, 'image/webp', 54260, 'cars2/2024-hyundai-tucson-limited-awd-front-view-26.webp', '[]', '2026-04-22 11:50:02', '2026-04-22 11:50:02', NULL, 'public'),
(420, 1, 'hq720 (2)', 'hq720 (2)', 17, 'image/jpeg', 68155, 'cars2/hq720-2.jpg', '[]', '2026-04-22 11:51:39', '2026-04-22 11:51:39', NULL, 'public'),
(421, 1, '2024-lamborghini-urus-performante-16-1920x800', '2024-lamborghini-urus-performante-16-1920x800', 17, 'image/jpeg', 163810, 'cars2/2024-lamborghini-urus-performante-16-1920x800.jpg', '[]', '2026-04-22 11:51:46', '2026-04-22 11:51:46', NULL, 'public'),
(422, 1, '001-2023-dodge-challenger-scat-pack-shakedown-front-three-quarters-in-action', '001-2023-dodge-challenger-scat-pack-shakedown-front-three-quarters-in-action', 17, 'image/webp', 25018, 'cars2/001-2023-dodge-challenger-scat-pack-shakedown-front-three-quarters-in-action.webp', '[]', '2026-04-22 11:52:32', '2026-04-22 11:52:32', NULL, 'public'),
(423, 1, 'images (6)', 'images (6)', 17, 'image/jpeg', 12025, 'cars2/images-6.jpg', '[]', '2026-04-22 11:53:30', '2026-04-22 11:53:30', NULL, 'public'),
(424, 1, '11127834a (1)', '11127834a (1)', 17, 'image/webp', 37798, 'cars2/11127834a-1.webp', '[]', '2026-04-22 11:54:05', '2026-04-22 11:54:05', NULL, 'public'),
(425, 1, 'images (7)', 'images (7)', 17, 'image/jpeg', 12720, 'cars2/images-7.jpg', '[]', '2026-04-22 11:54:24', '2026-04-22 11:54:24', NULL, 'public'),
(426, 1, '2299781350', '2299781350', 17, 'image/jpeg', 71554, 'cars2/2299781350.jpg', '[]', '2026-04-22 11:55:32', '2026-04-22 11:55:32', NULL, 'public'),
(427, 1, '2024_toyota_gr-supra_coupe_30-premium_fq_oem_1_1280x855', '2024_toyota_gr-supra_coupe_30-premium_fq_oem_1_1280x855', 17, 'image/avif', 67614, 'cars2/2024-toyota-gr-supra-coupe-30-premium-fq-oem-1-1280x855.avif', '[]', '2026-04-22 11:56:06', '2026-04-22 11:56:06', NULL, 'public'),
(429, 1, 'images (8)', 'images (8)', 17, 'image/jpeg', 16913, 'cars2/images-8.jpg', '[]', '2026-04-22 11:56:42', '2026-04-22 11:56:42', NULL, 'public'),
(430, 1, '2024_toyota_gr-supra_coupe_30-premium_fq_oem_1_1280x855 (1)', '2024_toyota_gr-supra_coupe_30-premium_fq_oem_1_1280x855 (1)', 17, 'image/png', 67614, 'cars2/2024-toyota-gr-supra-coupe-30-premium-fq-oem-1-1280x855-1.png', '[]', '2026-04-22 11:57:06', '2026-04-22 11:57:06', NULL, 'public'),
(431, 1, 'images (9)', 'images (9)', 17, 'image/jpeg', 8934, 'cars2/images-9.jpg', '[]', '2026-04-22 11:59:14', '2026-04-22 11:59:14', NULL, 'public'),
(432, 1, '098b0d9566b6c0fd4c663fb97f92c072x', '098b0d9566b6c0fd4c663fb97f92c072x', 17, 'image/jpeg', 109215, 'cars2/098b0d9566b6c0fd4c663fb97f92c072x.jpg', '[]', '2026-04-22 11:59:15', '2026-04-22 11:59:15', NULL, 'public'),
(433, 1, 'images (10)', 'images (10)', 17, 'image/jpeg', 13187, 'cars2/images-10.jpg', '[]', '2026-04-22 12:00:14', '2026-04-22 12:00:14', NULL, 'public'),
(434, 1, 'Fiat_500X_Sport_2024', 'Fiat_500X_Sport_2024', 17, 'image/jpeg', 23398, 'cars2/fiat-500x-sport-2024.jpg', '[]', '2026-04-22 12:01:09', '2026-04-22 12:01:09', NULL, 'public'),
(435, 1, '01-2024-toyota-highlander-angular-front-jms', '01-2024-toyota-highlander-angular-front-jms', 17, 'image/webp', 75758, 'cars2/01-2024-toyota-highlander-angular-front-jms.webp', '[]', '2026-04-22 12:01:18', '2026-04-22 12:01:18', NULL, 'public'),
(436, 1, 'images (11)', 'images (11)', 17, 'image/jpeg', 13074, 'cars2/images-11.jpg', '[]', '2026-04-22 12:03:15', '2026-04-22 12:03:15', NULL, 'public'),
(437, 1, 'images (12)', 'images (12)', 17, 'image/jpeg', 14037, 'cars2/images-12.jpg', '[]', '2026-04-22 12:05:22', '2026-04-22 12:05:22', NULL, 'public'),
(438, 1, 'DSC_0121', 'DSC_0121', 17, 'image/jpeg', 122415, 'cars2/dsc-0121.jpg', '[]', '2026-04-22 12:05:50', '2026-04-22 12:05:50', NULL, 'public'),
(439, 1, 'image-processing20200211-6895-1sv4pgy', 'image-processing20200211-6895-1sv4pgy', 17, 'image/jpeg', 54155, 'cars2/image-processing20200211-6895-1sv4pgy.jpg', '[]', '2026-04-22 12:06:54', '2026-04-22 12:06:54', NULL, 'public'),
(440, 1, 'images (13)', 'images (13)', 17, 'image/jpeg', 7340, 'cars2/images-13.jpg', '[]', '2026-04-22 12:07:51', '2026-04-22 12:07:51', NULL, 'public'),
(441, 1, 'image-1', 'image-1', 17, 'image/webp', 19312, 'cars2/image-1.webp', '[]', '2026-04-22 12:07:53', '2026-04-22 12:07:53', NULL, 'public'),
(442, 1, 'images (14)', 'images (14)', 17, 'image/jpeg', 10983, 'cars2/images-14.jpg', '[]', '2026-04-22 12:08:41', '2026-04-22 12:08:41', NULL, 'public'),
(443, 1, 'images (15)', 'images (15)', 17, 'image/jpeg', 7628, 'cars2/images-15.jpg', '[]', '2026-04-22 12:09:29', '2026-04-22 12:09:29', NULL, 'public'),
(444, 1, 'images (16)', 'images (16)', 17, 'image/jpeg', 13234, 'cars2/images-16.jpg', '[]', '2026-04-22 12:10:35', '2026-04-22 12:10:35', NULL, 'public'),
(445, 1, 'preview-928x522', 'preview-928x522', 17, 'image/jpeg', 98169, 'cars2/preview-928x522.jpg', '[]', '2026-04-22 12:10:41', '2026-04-22 12:10:41', NULL, 'public'),
(446, 1, 'images (17)', 'images (17)', 17, 'image/jpeg', 11999, 'cars2/images-17.jpg', '[]', '2026-04-22 12:11:16', '2026-04-22 12:11:16', NULL, 'public'),
(447, 1, 'images (18)', 'images (18)', 17, 'image/jpeg', 10893, 'cars2/images-18.jpg', '[]', '2026-04-22 12:12:29', '2026-04-22 12:12:29', NULL, 'public'),
(448, 1, 'images (19)', 'images (19)', 17, 'image/jpeg', 11466, 'cars2/images-19.jpg', '[]', '2026-04-22 12:14:18', '2026-04-22 12:14:18', NULL, 'public'),
(449, 1, '69-alfa-giulia-quadrifoglio-front-cornering', '69-alfa-giulia-quadrifoglio-front-cornering', 17, 'image/webp', 41218, 'cars2/69-alfa-giulia-quadrifoglio-front-cornering.webp', '[]', '2026-04-22 12:14:50', '2026-04-22 12:14:50', NULL, 'public'),
(450, 1, 'hq720 (3)', 'hq720 (3)', 17, 'image/jpeg', 77036, 'cars2/hq720-3.jpg', '[]', '2026-04-22 12:15:24', '2026-04-22 12:15:24', NULL, 'public'),
(451, 1, 'images (20)', 'images (20)', 17, 'image/jpeg', 11804, 'cars2/images-20.jpg', '[]', '2026-04-22 12:16:08', '2026-04-22 12:16:08', NULL, 'public'),
(452, 1, 'Range-Rover-Sport-SUV-Car-Hire-Dundass-01', 'Range-Rover-Sport-SUV-Car-Hire-Dundass-01', 17, 'image/jpeg', 79084, 'cars2/range-rover-sport-suv-car-hire-dundass-01.jpg', '[]', '2026-04-22 12:17:12', '2026-04-22 12:17:12', NULL, 'public'),
(453, 1, '2026-dodge-viper-acr-looks-like-a-supercar-built-in-a-digital-shed-247187-7', '2026-dodge-viper-acr-looks-like-a-supercar-built-in-a-digital-shed-247187-7', 17, 'image/jpeg', 49309, 'cars2/2026-dodge-viper-acr-looks-like-a-supercar-built-in-a-digital-shed-247187-7.jpg', '[]', '2026-04-22 12:17:16', '2026-04-22 12:17:16', NULL, 'public'),
(454, 1, '2024-m5-renders-v0-6x6pusm029kb1', '2024-m5-renders-v0-6x6pusm029kb1', 17, 'image/webp', 62808, 'cars2/2024-m5-renders-v0-6x6pusm029kb1.webp', '[]', '2026-04-22 12:25:30', '2026-04-22 12:25:30', NULL, 'public'),
(455, 1, 'LandRover_RangeRover_Evoque_P250_Core_S_2024', 'LandRover_RangeRover_Evoque_P250_Core_S_2024', 17, 'image/jpeg', 25437, 'cars2/landrover-rangerover-evoque-p250-core-s-2024.jpg', '[]', '2026-04-22 12:30:07', '2026-04-22 12:30:07', NULL, 'public'),
(456, 0, 'Voiture Logo PNG , Icône De La Papouasie   Nouvelle   Guinée, Voiture, Icône De Voiture PNG et vecteur pour téléchargement gratuit', 'Voiture Logo PNG , Icône De La Papouasie   Nouvelle   Guinée, Voiture, Icône De Voiture PNG et vecteur pour téléchargement gratuit', 27, 'image/jpeg', 14578, 'kyc/37/voiture-logo-png-icone-de-la-papouasie-nouvelle-guinee-voiture-icone-de-voiture-png-et-vecteur-pour-.jpeg', '[]', '2026-04-22 13:59:45', '2026-04-22 13:59:45', NULL, 'public'),
(457, 0, 'thar3', 'thar3', 27, 'image/jpeg', 291551, 'kyc/37/thar3.jpg', '[]', '2026-04-22 13:59:46', '2026-04-22 13:59:46', NULL, 'public'),
(458, 0, 'thar2', 'thar2', 27, 'image/jpeg', 999632, 'kyc/37/thar2.jpg', '[]', '2026-04-22 13:59:47', '2026-04-22 13:59:47', NULL, 'public'),
(459, 0, 'profile', 'profile', 28, 'image/jpeg', 39923, 'customers\\36/profile.jpg', '[]', '2026-04-28 12:54:07', '2026-04-28 12:54:07', NULL, 'public'),
(461, 0, 'profile-1', 'profile-1', 28, 'image/jpeg', 39923, 'customers\\36/profile-1.jpg', '[]', '2026-04-29 06:16:52', '2026-04-29 06:16:52', NULL, 'public'),
(529, 1, '1', '1', 29, 'image/jpeg', 43283, 'admin-login/1.jpg', '[]', '2026-05-11 09:56:07', '2026-05-11 09:56:07', NULL, 'public'),
(530, 1, '3', '3', 29, 'image/jpeg', 150800, 'admin-login/3.jpg', '[]', '2026-05-11 09:56:10', '2026-05-11 09:56:10', NULL, 'public'),
(531, 1, '2', '2', 29, 'image/jpeg', 73454, 'admin-login/2.jpg', '[]', '2026-05-11 09:56:13', '2026-05-11 09:56:13', NULL, 'public'),
(532, 1, 'maxresdefault (1)', 'maxresdefault (1)', 9, 'image/jpeg', 149169, 'cars/maxresdefault-1.jpg', '[]', '2026-05-11 10:01:45', '2026-05-11 10:01:45', NULL, 'public'),
(533, 1, 'New-2024-Bentley-Bentayga-S-V8-1713479414', 'New-2024-Bentley-Bentayga-S-V8-1713479414', 9, 'image/jpeg', 224018, 'cars/new-2024-bentley-bentayga-s-v8-1713479414.jpg', '[]', '2026-05-11 10:01:48', '2026-05-11 10:01:48', NULL, 'public'),
(534, 1, 'maxresdefault', 'maxresdefault', 9, 'image/jpeg', 145415, 'cars/maxresdefault.jpg', '[]', '2026-05-11 10:01:50', '2026-05-11 10:01:50', NULL, 'public'),
(535, 1, 'maxresdefault (4)', 'maxresdefault (4)', 9, 'image/jpeg', 172714, 'cars/maxresdefault-4.jpg', '[]', '2026-05-11 10:04:29', '2026-05-11 10:04:29', NULL, 'public'),
(536, 1, 'maxresdefault (3)', 'maxresdefault (3)', 9, 'image/jpeg', 145700, 'cars/maxresdefault-3.jpg', '[]', '2026-05-11 10:04:31', '2026-05-11 10:04:31', NULL, 'public'),
(537, 1, 'maxresdefault (2)', 'maxresdefault (2)', 9, 'image/jpeg', 158501, 'cars/maxresdefault-2.jpg', '[]', '2026-05-11 10:04:33', '2026-05-11 10:04:33', NULL, 'public'),
(538, 1, '02-2023-Rivian-R1S-Adventure-Performance-Dual-Motor-Max-interior', '02-2023-Rivian-R1S-Adventure-Performance-Dual-Motor-Max-interior', 9, 'image/webp', 76234, 'cars/02-2023-rivian-r1s-adventure-performance-dual-motor-max-interior.webp', '[]', '2026-05-11 10:07:41', '2026-05-11 10:07:41', NULL, 'public'),
(539, 1, '9aaD0gDl-rL0poFyHfG-(edit)', '9aaD0gDl-rL0poFyHfG-(edit)', 9, 'image/jpeg', 32751, 'cars/9aad0gdl-rl0pofyhfg-edit.jpg', '[]', '2026-05-11 10:07:42', '2026-05-11 10:07:42', NULL, 'public'),
(540, 1, 'KVpxWBwz-CxlH8qzosS-(edit)', 'KVpxWBwz-CxlH8qzosS-(edit)', 9, 'image/jpeg', 492996, 'cars/kvpxwbwz-cxlh8qzoss-edit.jpg', '[]', '2026-05-11 10:07:46', '2026-05-11 10:07:46', NULL, 'public'),
(541, 1, 'bmw-x7-dashboard-view-633648', 'bmw-x7-dashboard-view-633648', 9, 'image/webp', 69980, 'cars/bmw-x7-dashboard-view-633648.webp', '[]', '2026-05-11 10:09:47', '2026-05-11 10:09:47', NULL, 'public'),
(542, 1, '23060511131DSC_1801', '23060511131DSC_1801', 9, 'image/webp', 48316, 'cars/23060511131dsc-1801.webp', '[]', '2026-05-11 10:09:49', '2026-05-11 10:09:49', NULL, 'public'),
(543, 1, 'hq720', 'hq720', 9, 'image/jpeg', 58994, 'cars/hq720.jpg', '[]', '2026-05-11 10:09:51', '2026-05-11 10:09:51', NULL, 'public'),
(544, 1, '89-jaguarfpace-interior', '89-jaguarfpace-interior', 9, 'image/webp', 40366, 'cars/89-jaguarfpace-interior.webp', '[]', '2026-05-11 10:14:06', '2026-05-11 10:14:06', NULL, 'public'),
(545, 1, '403458-2024-jaguar-f-pace', '403458-2024-jaguar-f-pace', 9, 'image/jpeg', 160922, 'cars/403458-2024-jaguar-f-pace.jpg', '[]', '2026-05-11 10:14:08', '2026-05-11 10:14:08', NULL, 'public'),
(546, 1, '2024_jaguar_f-pace_svr_21', '2024_jaguar_f-pace_svr_21', 9, 'image/jpeg', 39196, 'cars/2024-jaguar-f-pace-svr-21.jpg', '[]', '2026-05-11 10:14:09', '2026-05-11 10:14:09', NULL, 'public'),
(547, 1, '2024 Ferrari F8 Tributo rear ', '2024 Ferrari F8 Tributo rear ', 9, 'image/jpeg', 90524, 'cars/2024-ferrari-f8-tributo-rear.jpg', '[]', '2026-05-11 10:16:41', '2026-05-11 10:16:41', NULL, 'public'),
(548, 1, 'generation_64a7f689334d4_ferrari-f8-spider-exterior-front', 'generation_64a7f689334d4_ferrari-f8-spider-exterior-front', 9, 'image/webp', 90594, 'cars/generation-64a7f689334d4-ferrari-f8-spider-exterior-front.webp', '[]', '2026-05-11 10:16:42', '2026-05-11 10:16:42', NULL, 'public'),
(549, 1, '2021_ferrari_f8-tributo_photo-aug-15-2024-2-32-54-am-1-90083', '2021_ferrari_f8-tributo_photo-aug-15-2024-2-32-54-am-1-90083', 9, 'image/webp', 152938, 'cars/2021-ferrari-f8-tributo-photo-aug-15-2024-2-32-54-am-1-90083.webp', '[]', '2026-05-11 10:16:45', '2026-05-11 10:16:45', NULL, 'public'),
(550, 1, '2024-chevrolet-camaro-1ss-1le', '2024-chevrolet-camaro-1ss-1le', 9, 'image/jpeg', 208343, 'cars/2024-chevrolet-camaro-1ss-1le.jpg', '[]', '2026-05-11 10:25:29', '2026-05-11 10:25:29', NULL, 'public'),
(551, 1, 'camaro-2ss-1le-2024-v0-necq5cub3p9c1', 'camaro-2ss-1le-2024-v0-necq5cub3p9c1', 9, 'image/jpeg', 184653, 'cars/camaro-2ss-1le-2024-v0-necq5cub3p9c1.jpg', '[]', '2026-05-11 10:25:42', '2026-05-11 10:25:42', NULL, 'public'),
(552, 1, 'ozark-dealer-won-t-sell-2024-camaro-zl1-collector-edition-for-102000-call-jason-bateman_18', 'ozark-dealer-won-t-sell-2024-camaro-zl1-collector-edition-for-102000-call-jason-bateman_18', 9, 'image/jpeg', 205370, 'cars/ozark-dealer-won-t-sell-2024-camaro-zl1-collector-edition-for-102000-call-jason-bateman-18.jpg', '[]', '2026-05-11 10:26:45', '2026-05-11 10:26:45', NULL, 'public'),
(553, 1, 'Everything-You-Need-To-Know-About-The-2024-Nissan-Rogue-9-800x532', 'Everything-You-Need-To-Know-About-The-2024-Nissan-Rogue-9-800x532', 9, 'image/webp', 31904, 'cars/everything-you-need-to-know-about-the-2024-nissan-rogue-9-800x532.webp', '[]', '2026-05-11 10:32:43', '2026-05-11 10:32:43', NULL, 'public'),
(554, 1, 'thumbnail-364x204', 'thumbnail-364x204', 9, 'image/jpeg', 19781, 'cars/thumbnail-364x204.jpg', '[]', '2026-05-11 10:32:45', '2026-05-11 10:32:45', NULL, 'public'),
(555, 1, 'Everything-You-Need-To-Know-About-The-2024-Nissan-Rogue-3', 'Everything-You-Need-To-Know-About-The-2024-Nissan-Rogue-3', 9, 'image/webp', 62912, 'cars/everything-you-need-to-know-about-the-2024-nissan-rogue-3.webp', '[]', '2026-05-11 10:32:46', '2026-05-11 10:32:46', NULL, 'public'),
(556, 1, 'kia-sportage-sx_09', 'kia-sportage-sx_09', 9, 'image/jpeg', 115100, 'cars/kia-sportage-sx-09.jpg', '[]', '2026-05-11 10:35:13', '2026-05-11 10:35:13', NULL, 'public'),
(557, 1, '2024-Kia-Sportage-Hybrid-6', '2024-Kia-Sportage-Hybrid-6', 9, 'image/jpeg', 209253, 'cars/2024-kia-sportage-hybrid-6.jpg', '[]', '2026-05-11 10:35:15', '2026-05-11 10:35:15', NULL, 'public'),
(558, 1, '2024-kia-sportage', '2024-kia-sportage', 9, 'image/webp', 56794, 'cars/2024-kia-sportage.webp', '[]', '2026-05-11 10:35:17', '2026-05-11 10:35:17', NULL, 'public'),
(559, 1, 'New-2024-Bentley-Continental-GT-V8-1710934060', 'New-2024-Bentley-Continental-GT-V8-1710934060', 9, 'image/jpeg', 292210, 'cars/new-2024-bentley-continental-gt-v8-1710934060.jpg', '[]', '2026-05-11 10:37:12', '2026-05-11 10:37:12', NULL, 'public'),
(560, 1, 'maxresdefault (5)', 'maxresdefault (5)', 9, 'image/jpeg', 247600, 'cars/maxresdefault-5.jpg', '[]', '2026-05-11 10:37:14', '2026-05-11 10:37:14', NULL, 'public'),
(561, 1, 'images', 'images', 9, 'image/jpeg', 14016, 'cars/images.jpg', '[]', '2026-05-11 10:37:15', '2026-05-11 10:37:15', NULL, 'public'),
(562, 1, 'P90536850-highRes-scaled-e1707305913308', 'P90536850-highRes-scaled-e1707305913308', 9, 'image/jpeg', 352007, 'cars/p90536850-highres-scaled-e1707305913308.jpg', '[]', '2026-05-11 10:39:13', '2026-05-11 10:39:13', NULL, 'public'),
(563, 1, '2024-m4-interior', '2024-m4-interior', 9, 'image/jpeg', 122506, 'cars/2024-m4-interior.jpg', '[]', '2026-05-11 10:39:15', '2026-05-11 10:39:15', NULL, 'public'),
(564, 1, 'cobb-i7launch-031122-20876', 'cobb-i7launch-031122-20876', 9, 'image/webp', 40884, 'cars/cobb-i7launch-031122-20876.webp', '[]', '2026-05-11 10:39:16', '2026-05-11 10:39:16', NULL, 'public'),
(565, 1, '2024_LAMBORGHINI_HURACAN_TECNICA_V10_Red_WB-5', '2024_LAMBORGHINI_HURACAN_TECNICA_V10_Red_WB-5', 9, 'image/jpeg', 148824, 'cars/2024-lamborghini-huracan-tecnica-v10-red-wb-5.jpg', '[]', '2026-05-11 10:41:46', '2026-05-11 10:41:46', NULL, 'public'),
(566, 1, '6ec47ec8a85777240ac02498bcdbb1bc', '6ec47ec8a85777240ac02498bcdbb1bc', 9, 'image/jpeg', 58738, 'cars/6ec47ec8a85777240ac02498bcdbb1bc.jpeg', '[]', '2026-05-11 10:41:48', '2026-05-11 10:41:48', NULL, 'public'),
(567, 1, 'LamboHur1', 'LamboHur1', 9, 'image/webp', 93166, 'cars/lambohur1.webp', '[]', '2026-05-11 10:41:49', '2026-05-11 10:41:49', NULL, 'public'),
(568, 1, '2024 Audi R8 interior', '2024 Audi R8 interior', 9, 'image/jpeg', 91834, 'cars/2024-audi-r8-interior.jpg', '[]', '2026-05-11 10:50:34', '2026-05-11 10:50:34', NULL, 'public'),
(569, 1, 'images (1)', 'images (1)', 9, 'image/jpeg', 11408, 'cars/images-1.jpg', '[]', '2026-05-11 10:50:35', '2026-05-11 10:50:35', NULL, 'public'),
(571, 1, 'hq720 (1)', 'hq720 (1)', 9, 'image/jpeg', 66168, 'cars/hq720-1.jpg', '[]', '2026-05-11 10:51:31', '2026-05-11 10:51:31', NULL, 'public'),
(572, 1, 'hq720 (2)', 'hq720 (2)', 9, 'image/jpeg', 44744, 'cars/hq720-2.jpg', '[]', '2026-05-11 10:53:44', '2026-05-11 10:53:44', NULL, 'public'),
(573, 1, 'download', 'download', 9, 'image/jpeg', 98732, 'cars/download.jpg', '[]', '2026-05-11 10:53:45', '2026-05-11 10:53:45', NULL, 'public'),
(574, 1, '2024-ford-mustang-gt-premium-hero-2-carpro', '2024-ford-mustang-gt-premium-hero-2-carpro', 9, 'image/jpeg', 108117, 'cars/2024-ford-mustang-gt-premium-hero-2-carpro.jpg', '[]', '2026-05-11 10:53:46', '2026-05-11 10:53:46', NULL, 'public'),
(575, 1, 'Interior-01-1120x600-min', 'Interior-01-1120x600-min', 9, 'image/jpeg', 80236, 'cars/interior-01-1120x600-min.jpg', '[]', '2026-05-11 10:58:58', '2026-05-11 10:58:58', NULL, 'public'),
(576, 1, 'Highlights-031-960x510-min', 'Highlights-031-960x510-min', 9, 'image/webp', 37948, 'cars/highlights-031-960x510-min.webp', '[]', '2026-05-11 10:58:59', '2026-05-11 10:58:59', NULL, 'public'),
(577, 1, '652de68e-2024-hyundai-sonata-n-line-sedan-39', '652de68e-2024-hyundai-sonata-n-line-sedan-39', 9, 'image/webp', 623198, 'cars/652de68e-2024-hyundai-sonata-n-line-sedan-39.webp', '[]', '2026-05-11 10:59:05', '2026-05-11 10:59:05', NULL, 'public'),
(578, 1, '2024_audi_a4_sedan_dashboard', '2024_audi_a4_sedan_dashboard', 9, 'image/jpeg', 23182, 'cars/2024-audi-a4-sedan-dashboard.jpg', '[]', '2026-05-11 11:47:53', '2026-05-11 11:47:53', NULL, 'public'),
(579, 1, '9948557_3', '9948557_3', 9, 'image/jpeg', 177979, 'cars/9948557-3.jpg', '[]', '2026-05-11 11:47:56', '2026-05-11 11:47:56', NULL, 'public'),
(580, 1, '97e0d79ca1_800', '97e0d79ca1_800', 9, 'image/jpeg', 111896, 'cars/97e0d79ca1-800.jpg', '[]', '2026-05-11 11:47:57', '2026-05-11 11:47:57', NULL, 'public'),
(581, 1, 'pNakbZS27fKKjeDDnjwttVKuXVkrhEwciCxUE4JM', 'pNakbZS27fKKjeDDnjwttVKuXVkrhEwciCxUE4JM', 9, 'image/png', 1021646, 'cars/pnakbzs27fkkjeddnjwttvkuxvkrhewcicxue4jm.png', '[]', '2026-05-11 11:50:33', '2026-05-11 11:50:33', NULL, 'public'),
(582, 1, 'IMG_6164-1-scaled', 'IMG_6164-1-scaled', 9, 'image/jpeg', 525918, 'cars/img-6164-1-scaled.jpg', '[]', '2026-05-11 11:50:38', '2026-05-11 11:50:38', NULL, 'public'),
(583, 1, '2024-Lexus-RX-350h-Premium-AWD', '2024-Lexus-RX-350h-Premium-AWD', 9, 'image/jpeg', 284772, 'cars/2024-lexus-rx-350h-premium-awd.jpg', '[]', '2026-05-11 11:50:42', '2026-05-11 11:50:42', NULL, 'public'),
(584, 1, 'maxresdefault (6)', 'maxresdefault (6)', 9, 'image/jpeg', 147634, 'cars/maxresdefault-6.jpg', '[]', '2026-05-11 11:53:36', '2026-05-11 11:53:36', NULL, 'public'),
(585, 1, '2024-cr-v-hybrid-interior', '2024-cr-v-hybrid-interior', 9, 'image/jpeg', 27463, 'cars/2024-cr-v-hybrid-interior.jpg', '[]', '2026-05-11 11:53:37', '2026-05-11 11:53:37', NULL, 'public'),
(586, 1, 'CG_2024_Honda_CR-V_Sport_Touring_Hybrid_Blue_Front_Quarter_View', 'CG_2024_Honda_CR-V_Sport_Touring_Hybrid_Blue_Front_Quarter_View', 9, 'image/jpeg', 172557, 'cars/cg-2024-honda-cr-v-sport-touring-hybrid-blue-front-quarter-view.jpeg', '[]', '2026-05-11 11:53:39', '2026-05-11 11:53:39', NULL, 'public'),
(587, 1, 'IMG_6164-1-scaled (1)', 'IMG_6164-1-scaled (1)', 9, 'image/jpeg', 525918, 'cars/img-6164-1-scaled-1.jpg', '[]', '2026-05-11 11:56:28', '2026-05-11 11:56:28', NULL, 'public'),
(588, 1, '2024-lexus-is-350-fsport-006-1', '2024-lexus-is-350-fsport-006-1', 9, 'image/webp', 48598, 'cars/2024-lexus-is-350-fsport-006-1.webp', '[]', '2026-05-11 11:56:29', '2026-05-11 11:56:29', NULL, 'public'),
(589, 1, 'maxresdefault (7)', 'maxresdefault (7)', 9, 'image/jpeg', 137372, 'cars/maxresdefault-7.jpg', '[]', '2026-05-11 11:56:31', '2026-05-11 11:56:31', NULL, 'public'),
(590, 1, 'IMG_5972-71-scaled', 'IMG_5972-71-scaled', 9, 'image/jpeg', 459093, 'cars/img-5972-71-scaled.jpg', '[]', '2026-05-11 11:58:57', '2026-05-11 11:58:57', NULL, 'public'),
(591, 1, '2022-Honda-Accord-1HGCV2F3XNA020531-3', '2022-Honda-Accord-1HGCV2F3XNA020531-3', 9, 'image/jpeg', 69216, 'cars/2022-honda-accord-1hgcv2f3xna020531-3.jpg', '[]', '2026-05-11 11:58:59', '2026-05-11 11:58:59', NULL, 'public'),
(592, 1, 'unnamed', 'unnamed', 9, 'image/jpeg', 236652, 'cars/unnamed.jpg', '[]', '2026-05-11 11:59:00', '2026-05-11 11:59:00', NULL, 'public'),
(593, 1, 'images', 'images', 5, 'image/png', 4779, 'teams/images.png', '[]', '2026-05-11 12:24:12', '2026-05-11 12:24:12', NULL, 'public'),
(594, 1, 'attachment_142602548', 'attachment_142602548', 5, 'image/png', 19058, 'teams/attachment-142602548.png', '[]', '2026-05-11 12:28:15', '2026-05-11 12:28:15', NULL, 'public'),
(595, 0, 'attachment_142602548', 'attachment_142602548', 30, 'image/png', 19058, 'customers/1/attachment-142602548.png', '[]', '2026-05-11 12:56:32', '2026-05-11 12:56:32', NULL, 'public'),
(596, 0, 'channels4_profile', 'channels4_profile', 31, 'image/jpeg', 35056, 'customers/2/channels4-profile.jpg', '[]', '2026-05-11 12:59:32', '2026-05-11 12:59:32', NULL, 'public'),
(597, 0, 'EMOV8Xlc', 'EMOV8Xlc', 32, 'image/jpeg', 8392, 'customers/4/emov8xlc.jpg', '[]', '2026-05-11 13:03:43', '2026-05-11 13:03:43', NULL, 'public'),
(598, 0, 'minimalistic-rental-car-logo-with-car-outline-vector', 'minimalistic-rental-car-logo-with-car-outline-vector', 33, 'image/jpeg', 6329, 'customers/3/minimalistic-rental-car-logo-with-car-outline-vector.jpg', '[]', '2026-05-11 13:04:24', '2026-05-11 13:04:24', NULL, 'public'),
(599, 0, 'images (2)', 'images (2)', 34, 'image/jpeg', 6513, 'customers/5/images-2.jpg', '[]', '2026-05-11 13:06:58', '2026-05-11 13:06:58', NULL, 'public'),
(600, 0, 'images (1)', 'images (1)', 35, 'image/png', 9694, 'customers/6/images-1.png', '[]', '2026-05-11 13:08:51', '2026-05-11 13:08:51', NULL, 'public'),
(601, 0, 'logo_horizon_01', 'logo_horizon_01', 36, 'image/jpeg', 27155, 'customers/7/logo-horizon-01.jpg', '[]', '2026-05-11 13:11:00', '2026-05-11 13:11:00', NULL, 'public'),
(602, 0, 'prestigemotorsca_logo', 'prestigemotorsca_logo', 37, 'image/jpeg', 4120, 'customers/8/prestigemotorsca-logo.jpg', '[]', '2026-05-11 13:12:54', '2026-05-11 13:12:54', NULL, 'public'),
(603, 0, 'unnamed', 'unnamed', 38, 'image/png', 80503, 'customers/9/unnamed.png', '[]', '2026-05-11 13:14:14', '2026-05-11 13:14:14', NULL, 'public'),
(604, 0, 'images (2)', 'images (2)', 39, 'image/png', 9941, 'customers/10/images-2.png', '[]', '2026-05-11 13:17:25', '2026-05-11 13:17:25', NULL, 'public'),
(605, 0, 'images (3)', 'images (3)', 40, 'image/jpeg', 5607, 'customers/11/images-3.jpg', '[]', '2026-05-11 13:18:49', '2026-05-11 13:18:49', NULL, 'public'),
(606, 0, 'attachment_85657378', 'attachment_85657378', 41, 'image/png', 42967, 'customers/12/attachment-85657378.png', '[]', '2026-05-11 13:19:45', '2026-05-11 13:19:45', NULL, 'public'),
(607, 0, 'images (4)', 'images (4)', 42, 'image/jpeg', 4152, 'customers/13/images-4.jpg', '[]', '2026-05-11 13:24:36', '2026-05-11 13:24:36', NULL, 'public'),
(608, 0, '488f3a62031f3a7aeb4f07777dd1fd01', '488f3a62031f3a7aeb4f07777dd1fd01', 43, 'image/jpeg', 8582, 'customers/14/488f3a62031f3a7aeb4f07777dd1fd01.jpg', '[]', '2026-05-11 13:33:00', '2026-05-11 13:33:00', NULL, 'public'),
(609, 0, 'images (5)', 'images (5)', 44, 'image/jpeg', 7578, 'customers/15/images-5.jpg', '[]', '2026-05-11 13:33:52', '2026-05-11 13:33:52', NULL, 'public'),
(610, 0, '432085_14455703_2670575_a39f71ad_image', '432085_14455703_2670575_a39f71ad_image', 45, 'image/jpeg', 48628, 'customers/16/432085-14455703-2670575-a39f71ad-image.jpg', '[]', '2026-05-11 13:35:09', '2026-05-11 13:35:09', NULL, 'public'),
(611, 0, '348s', '348s', 46, 'image/png', 31940, 'customers/17/348s.png', '[]', '2026-05-11 13:36:06', '2026-05-11 13:36:06', NULL, 'public'),
(612, 0, 'alliance_d_o_o_logo', 'alliance_d_o_o_logo', 47, 'image/jpeg', 5841, 'customers/18/alliance-d-o-o-logo.jpg', '[]', '2026-05-11 13:37:16', '2026-05-11 13:37:16', NULL, 'public'),
(613, 0, 'images (6)', 'images (6)', 48, 'image/jpeg', 3598, 'customers/19/images-6.jpg', '[]', '2026-05-11 13:38:00', '2026-05-11 13:38:00', NULL, 'public'),
(614, 0, 'sterling_automotive_group_logo', 'sterling_automotive_group_logo', 49, 'image/jpeg', 4216, 'customers/20/sterling-automotive-group-logo.jpg', '[]', '2026-05-11 13:38:40', '2026-05-11 13:38:40', NULL, 'public'),
(615, 0, 'modern-blue-fast-car-cartoon-logo-free-vector', 'modern-blue-fast-car-cartoon-logo-free-vector', 50, 'image/jpeg', 85026, 'customers/32/modern-blue-fast-car-cartoon-logo-free-vector.jpg', '[]', '2026-05-11 13:43:41', '2026-05-11 13:43:41', NULL, 'public'),
(616, 1, 'f54cdd2c-a21e-449f-ad27-54ba45374604', 'f54cdd2c-a21e-449f-ad27-54ba45374604', 51, 'image/png', 6022, 'users/f54cdd2c-a21e-449f-ad27-54ba45374604.png', '[]', '2026-05-11 15:49:51', '2026-05-11 15:49:51', NULL, 'public'),
(617, 0, '23cc1afc-c03c-4f77-868f-f44144d4167c', '23cc1afc-c03c-4f77-868f-f44144d4167c', 30, 'image/webp', 28884, 'customers/1/23cc1afc-c03c-4f77-868f-f44144d4167c.webp', '[]', '2026-05-18 11:21:52', '2026-05-18 11:21:52', NULL, 'public'),
(618, 1, 'bronco3-1', 'bronco3-1', 0, 'image/jpeg', 413041, 'bronco3-1.jpg', '[]', '2026-05-22 09:41:51', '2026-05-22 09:41:51', NULL, 'public'),
(619, 1, 'photo-1535713875002-d1d0cf377fde', 'photo-1535713875002-d1d0cf377fde', 52, 'image/jpeg', 1144870, 'kyc\\1/photo-1535713875002-d1d0cf377fde.jpg', '[]', '2026-06-09 05:42:18', '2026-06-09 05:42:18', NULL, 'public'),
(620, 1, 'photo-1535713875002-d1d0cf377fde-1', 'photo-1535713875002-d1d0cf377fde-1', 52, 'image/jpeg', 1144870, 'kyc\\1/photo-1535713875002-d1d0cf377fde-1.jpg', '[]', '2026-06-09 05:42:22', '2026-06-09 05:42:22', NULL, 'public'),
(621, 1, 'photo-1535713875002-d1d0cf377fde-2', 'photo-1535713875002-d1d0cf377fde-2', 52, 'image/jpeg', 1144870, 'kyc\\1/photo-1535713875002-d1d0cf377fde-2.jpg', '[]', '2026-06-09 05:42:26', '2026-06-09 05:42:26', NULL, 'public');

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

--
-- Table structure for table `media_folders`
--

CREATE TABLE `media_folders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `color` varchar(191) DEFAULT NULL,
  `slug` varchar(191) DEFAULT NULL,
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `media_folders`
--

INSERT INTO `media_folders` (`id`, `user_id`, `name`, `color`, `slug`, `parent_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 0, 'general', NULL, 'general', 0, '2026-03-06 08:22:03', '2026-03-06 08:22:03', NULL),
(3, 0, 'news', NULL, 'news', 0, '2026-03-06 08:22:11', '2026-03-06 08:22:11', NULL),
(4, 0, 'galleries', NULL, 'galleries', 0, '2026-03-06 08:22:18', '2026-03-06 08:22:18', NULL),
(5, 0, 'teams', NULL, 'teams', 0, '2026-03-06 08:22:22', '2026-03-06 08:22:22', NULL),
(6, 0, 'testimonials', NULL, 'testimonials', 0, '2026-03-06 08:22:25', '2026-03-06 08:22:25', NULL),
(7, 0, 'locations', NULL, 'locations', 0, '2026-03-06 08:22:26', '2026-03-06 08:22:26', NULL),
(8, 0, 'customers', NULL, 'customers', 0, '2026-03-06 08:22:28', '2026-03-06 08:22:28', NULL),
(9, 0, 'cars', NULL, 'cars', 0, '2026-03-06 08:22:49', '2026-03-06 08:22:49', NULL),
(10, 0, 'sliders', NULL, 'sliders', 0, '2026-03-06 08:24:08', '2026-03-06 08:24:08', NULL),
(11, 1, '34', NULL, '34', 8, '2026-03-18 03:58:31', '2026-03-18 03:58:31', NULL),
(12, 1, 'Blogs', NULL, 'blogs', 0, '2026-03-19 06:35:20', '2026-03-19 06:35:20', NULL),
(13, 1, 'instagram', NULL, 'instagram', 0, '2026-03-19 06:52:18', '2026-03-19 06:52:18', NULL),
(14, 1, 'car-types', NULL, 'car-types', 0, '2026-03-19 09:10:30', '2026-03-19 09:10:30', NULL),
(15, 1, 'about-us', NULL, 'about-us', 0, '2026-03-19 11:28:09', '2026-03-19 11:28:09', NULL),
(16, 1, 'services', NULL, 'services', 0, '2026-03-20 04:19:28', '2026-03-20 04:19:28', NULL),
(17, 1, 'cars2', NULL, 'cars2', 0, '2026-03-25 10:03:22', '2026-03-25 10:03:22', NULL),
(18, 1, 'bookings', NULL, 'bookings', 0, '2026-04-09 14:23:44', '2026-04-09 14:23:44', NULL),
(19, 1, 'after-photos', NULL, 'after-photos', 18, '2026-04-09 14:23:44', '2026-04-09 14:23:44', NULL),
(20, 0, '35', NULL, '35', 8, '2026-04-09 14:29:17', '2026-04-09 14:29:17', NULL),
(21, 1, 'car-rentals', NULL, 'car-rentals', 0, '2026-04-09 16:53:05', '2026-04-09 16:53:05', NULL),
(22, 1, 'completion-images', NULL, 'completion-images', 21, '2026-04-09 16:53:05', '2026-04-09 16:53:05', NULL),
(23, 1, 'pickup-photos', NULL, 'pickup-photos', 18, '2026-04-10 12:48:50', '2026-04-10 12:48:50', NULL),
(24, 1, 'kyc', NULL, 'kyc', 0, '2026-04-20 13:56:38', '2026-04-20 13:56:38', NULL),
(25, 1, '38', NULL, '38', 24, '2026-04-20 13:56:38', '2026-04-20 13:56:38', NULL),
(26, 0, '36', NULL, '36', 24, '2026-04-22 10:49:00', '2026-04-22 10:49:00', NULL),
(27, 0, '37', NULL, '37', 24, '2026-04-22 13:59:45', '2026-04-22 13:59:45', NULL),
(28, 0, '36', NULL, '36', 8, '2026-04-28 12:54:07', '2026-04-28 12:54:07', NULL),
(29, 1, 'Admin Login', NULL, 'admin-login', 0, '2026-04-30 16:06:56', '2026-04-30 16:06:56', NULL),
(30, 0, '1', NULL, '1', 8, '2026-05-11 12:56:32', '2026-05-11 12:56:32', NULL),
(31, 0, '2', NULL, '2', 8, '2026-05-11 12:59:32', '2026-05-11 12:59:32', NULL),
(32, 0, '4', NULL, '4', 8, '2026-05-11 13:03:43', '2026-05-11 13:03:43', NULL),
(33, 0, '3', NULL, '3', 8, '2026-05-11 13:04:23', '2026-05-11 13:04:23', NULL),
(34, 0, '5', NULL, '5', 8, '2026-05-11 13:06:58', '2026-05-11 13:06:58', NULL),
(35, 0, '6', NULL, '6', 8, '2026-05-11 13:08:51', '2026-05-11 13:08:51', NULL),
(36, 0, '7', NULL, '7', 8, '2026-05-11 13:11:00', '2026-05-11 13:11:00', NULL),
(37, 0, '8', NULL, '8', 8, '2026-05-11 13:12:54', '2026-05-11 13:12:54', NULL),
(38, 0, '9', NULL, '9', 8, '2026-05-11 13:14:14', '2026-05-11 13:14:14', NULL),
(39, 0, '10', NULL, '10', 8, '2026-05-11 13:17:25', '2026-05-11 13:17:25', NULL),
(40, 0, '11', NULL, '11', 8, '2026-05-11 13:18:48', '2026-05-11 13:18:48', NULL),
(41, 0, '12', NULL, '12', 8, '2026-05-11 13:19:45', '2026-05-11 13:19:45', NULL),
(42, 0, '13', NULL, '13', 8, '2026-05-11 13:24:36', '2026-05-11 13:24:36', NULL),
(43, 0, '14', NULL, '14', 8, '2026-05-11 13:33:00', '2026-05-11 13:33:00', NULL),
(44, 0, '15', NULL, '15', 8, '2026-05-11 13:33:52', '2026-05-11 13:33:52', NULL),
(45, 0, '16', NULL, '16', 8, '2026-05-11 13:35:09', '2026-05-11 13:35:09', NULL),
(46, 0, '17', NULL, '17', 8, '2026-05-11 13:36:06', '2026-05-11 13:36:06', NULL),
(47, 0, '18', NULL, '18', 8, '2026-05-11 13:37:16', '2026-05-11 13:37:16', NULL),
(48, 0, '19', NULL, '19', 8, '2026-05-11 13:38:00', '2026-05-11 13:38:00', NULL),
(49, 0, '20', NULL, '20', 8, '2026-05-11 13:38:40', '2026-05-11 13:38:40', NULL),
(50, 0, '32', NULL, '32', 8, '2026-05-11 13:43:41', '2026-05-11 13:43:41', NULL),
(51, 1, 'users', NULL, 'users', 0, '2026-05-11 15:49:51', '2026-05-11 15:49:51', NULL),
(52, 1, '1', NULL, '1', 24, '2026-06-09 05:42:17', '2026-06-09 05:42:17', NULL);

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

--
-- Table structure for table `media_settings`
--

CREATE TABLE `media_settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `key` varchar(120) NOT NULL,
  `value` text DEFAULT NULL,
  `media_id` bigint(20) UNSIGNED DEFAULT NULL,
  `user_id` bigint(20) 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 `media_settings`
--

INSERT INTO `media_settings` (`id`, `key`, `value`, `media_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'recent_items', '[{\"id\":244,\"is_folder\":false},{\"id\":618,\"is_folder\":false},{\"id\":1,\"is_folder\":true},{\"id\":240,\"is_folder\":false},{\"id\":300,\"is_folder\":false},{\"id\":24,\"is_folder\":true},{\"id\":21,\"is_folder\":true},{\"id\":22,\"is_folder\":true},{\"id\":389,\"is_folder\":false},{\"id\":15,\"is_folder\":true},{\"id\":4,\"is_folder\":true},{\"id\":19,\"is_folder\":false},{\"id\":16,\"is_folder\":false},{\"id\":594,\"is_folder\":false},{\"id\":593,\"is_folder\":false},{\"id\":5,\"is_folder\":true},{\"id\":17,\"is_folder\":false},{\"id\":23,\"is_folder\":false},{\"id\":590,\"is_folder\":false},{\"id\":591,\"is_folder\":false}]', NULL, 1, '2026-03-18 10:00:18', '2026-06-10 08:40:42');

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

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

CREATE TABLE `menus` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `slug` varchar(120) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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`, `name`, `slug`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Main menu', 'main-menu', 'published', '2026-03-06 08:22:11', '2026-04-30 04:34:50');

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

--
-- Table structure for table `menu_locations`
--

CREATE TABLE `menu_locations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `menu_id` bigint(20) UNSIGNED NOT NULL,
  `location` 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 `menu_locations`
--

INSERT INTO `menu_locations` (`id`, `menu_id`, `location`, `created_at`, `updated_at`) VALUES
(1, 1, 'main-menu', '2026-03-06 08:22:11', '2026-03-06 08:22:11');

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

--
-- Table structure for table `menu_nodes`
--

CREATE TABLE `menu_nodes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `menu_id` bigint(20) UNSIGNED NOT NULL,
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `reference_id` bigint(20) UNSIGNED DEFAULT NULL,
  `reference_type` varchar(191) DEFAULT NULL,
  `url` varchar(191) DEFAULT NULL,
  `icon_font` varchar(191) DEFAULT NULL,
  `position` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `title` varchar(191) DEFAULT NULL,
  `css_class` varchar(191) DEFAULT NULL,
  `target` varchar(20) NOT NULL DEFAULT '_self',
  `has_child` tinyint(3) UNSIGNED NOT NULL 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 `menu_nodes`
--

INSERT INTO `menu_nodes` (`id`, `menu_id`, `parent_id`, `reference_id`, `reference_type`, `url`, `icon_font`, `position`, `title`, `css_class`, `target`, `has_child`, `created_at`, `updated_at`) VALUES
(1, 1, 0, 0, NULL, '/', '', 0, 'Home', '', '_self', 0, '2026-03-06 08:22:11', '2026-04-30 04:34:51'),
(15, 1, 0, 6, 'Mxcar\\Page\\Models\\Page', '/about-us', '', 6, 'About Us', '', '_self', 0, '2026-03-06 08:22:11', '2026-04-30 04:34:51'),
(16, 1, 0, 4, 'Mxcar\\Page\\Models\\Page', '/services', '', 3, 'Our Services', '', '_self', 0, '2026-03-06 08:22:11', '2026-04-30 04:34:51'),
(17, 1, 0, 5, 'Mxcar\\Page\\Models\\Page', '/pricing', '', 4, 'Pricing', '', '_self', 0, '2026-03-06 08:22:11', '2026-04-30 04:34:51'),
(24, 1, 0, 2, 'Mxcar\\Page\\Models\\Page', '/blog', '', 5, 'News', '', '_self', 0, '2026-03-06 08:22:11', '2026-04-30 04:34:51'),
(27, 1, 0, 3, 'Mxcar\\Page\\Models\\Page', '/contact', '', 7, 'Contact', '', '_self', 0, '2026-03-06 08:22:11', '2026-04-30 04:34:51'),
(28, 1, 0, 7, 'Mxcar\\Page\\Models\\Page', '/car-list-1', '', 1, 'Car Rentals', '', '_self', 0, '2026-03-20 03:48:29', '2026-04-30 04:34:51'),
(31, 1, 0, 40, 'Mxcar\\Page\\Models\\Page', '/car-classified', NULL, 2, 'Car Classified', NULL, '_self', 0, '2026-04-30 04:34:42', '2026-04-30 04:34:51');

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

--
-- Table structure for table `meta_boxes`
--

CREATE TABLE `meta_boxes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `meta_key` varchar(191) NOT NULL,
  `meta_value` text DEFAULT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(120) 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 `meta_boxes`
--

INSERT INTO `meta_boxes` (`id`, `meta_key`, `meta_value`, `reference_id`, `reference_type`, `created_at`, `updated_at`) VALUES
(1, 'content_on_top', '[\"[car-advance-search button_search_name=\\\"Find a Vehicle\\\" link_need_help=\\\"\\/faqs\\\" top=\\\"0\\\" bottom=\\\"0\\\" left=\\\"0\\\" right=\\\"0\\\" url=\\\"\\/cars\\\" tabs=\\\"all,new_car,used_car\\\"][\\/car-advance-search]\"]', 1, 'Mxcar\\SimpleSlider\\Models\\SimpleSlider', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(2, 'footer_on_top', '[\"<p><span class=\\\"text-lg-medium color-white\\\">Get 5% discount when <\\/span><a class=\\\"text-primary\\\" href=\\\"#install-app\\\"><span class=\\\"text-lg-medium\\\">Ordering via APP<\\/span><\\/a><\\/p>\"]', 1, 'Mxcar\\SimpleSlider\\Models\\SimpleSlider', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(3, 'label_top', '[\"+3600 cars for you\"]', 1, 'Mxcar\\SimpleSlider\\Models\\SimpleSliderItem', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(4, 'keywords', '[[{\"name\":\"Economy\",\"link\":\"\\/\"},{\"name\":\"Standard\",\"link\":\"\\/\"},{\"name\":\"Luxury\",\"link\":\"\\/\"},{\"name\":\"SUV\",\"link\":\"\\/\"},{\"name\":\"Convertible\",\"link\":\"\\/\"}]]', 1, 'Mxcar\\SimpleSlider\\Models\\SimpleSliderItem', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(5, 'label_top', '[\"Best car rental system\"]', 2, 'Mxcar\\SimpleSlider\\Models\\SimpleSliderItem', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(6, 'keywords', '[[{\"name\":\"Economy\",\"link\":\"\\/\"},{\"name\":\"Standard\",\"link\":\"\\/\"},{\"name\":\"Luxury\",\"link\":\"\\/\"},{\"name\":\"SUV\",\"link\":\"\\/\"},{\"name\":\"Convertible\",\"link\":\"\\/\"}]]', 2, 'Mxcar\\SimpleSlider\\Models\\SimpleSliderItem', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(7, 'appearance', '[\"style-2\"]', 2, 'Mxcar\\SimpleSlider\\Models\\SimpleSlider', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(8, 'subtitle', '[\"2025 Mazda CX-50 <br class=\\\"d-none d-md-block\\\"> Review and news\"]', 3, 'Mxcar\\SimpleSlider\\Models\\SimpleSliderItem', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(9, 'link_label', '[\"View Details\"]', 3, 'Mxcar\\SimpleSlider\\Models\\SimpleSliderItem', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(10, 'subtitle', '[\"Hyundai Tucson Plug-In <br class=\\\"d-none d-md-block\\\"> Hybrid 2025 review\"]', 4, 'Mxcar\\SimpleSlider\\Models\\SimpleSliderItem', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(11, 'link_label', '[\"View Details\"]', 4, 'Mxcar\\SimpleSlider\\Models\\SimpleSliderItem', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(12, 'breadcrumb_simple', '[\"0\"]', 2, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-21 11:56:10'),
(13, 'breadcrumb_background_image', '[\"car.jpg\"]', 3, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:07:05'),
(14, 'breadcrumb_text_color', '[\"#ffffff\"]', 3, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(15, 'breadcrumb_background_image', '[\"car.jpg\"]', 4, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:06:42'),
(16, 'breadcrumb_text_color', '[\"#ffffff\"]', 4, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(17, 'breadcrumb_background_image', '[\"car.jpg\"]', 5, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:06:27'),
(18, 'breadcrumb_text_color', '[\"#ffffff\"]', 5, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(19, 'breadcrumb_background_image', '[\"car.jpg\"]', 6, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:05:52'),
(20, 'breadcrumb_text_color', '[\"#ffffff\"]', 6, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(21, 'breadcrumb_background_image', '[\"car.jpg\"]', 11, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:07:52'),
(22, 'breadcrumb_text_color', '[\"#ffffff\"]', 11, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(23, 'breadcrumb_display_last_update', '[\"0\"]', 11, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-22 15:17:59'),
(24, 'breadcrumb_simple', '[\"1\"]', 12, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-22 12:55:56'),
(25, 'breadcrumb_background_image', '[\"car.jpg\"]', 13, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:15:09'),
(26, 'breadcrumb_text_color', '[\"#ffffff\"]', 13, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(27, 'breadcrumb_background_image', '[\"car.jpg\"]', 14, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:05:22'),
(28, 'breadcrumb_text_color', '[\"#ffffff\"]', 14, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(31, 'breadcrumb_background_image', '[\"car.jpg\"]', 16, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:16:34'),
(32, 'breadcrumb_text_color', '[\"#ffffff\"]', 16, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(33, 'breadcrumb_background_image', '[\"car.jpg\"]', 17, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:16:54'),
(34, 'breadcrumb_text_color', '[\"#ffffff\"]', 17, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(35, 'breadcrumb_background_image', '[\"car.jpg\"]', 18, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:17:13'),
(36, 'breadcrumb_text_color', '[\"#ffffff\"]', 18, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(37, 'breadcrumb_background_image', '[\"car.jpg\"]', 19, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:17:41'),
(38, 'breadcrumb_text_color', '[\"#ffffff\"]', 19, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(41, 'breadcrumb_background_image', '[\"car.jpg\"]', 21, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:17:56'),
(42, 'breadcrumb_text_color', '[\"#ffffff\"]', 21, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(43, 'breadcrumb_background_image', '[\"car.jpg\"]', 22, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:20:35'),
(44, 'breadcrumb_text_color', '[\"#ffffff\"]', 22, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(45, 'breadcrumb_background_image', '[\"car.jpg\"]', 23, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:20:07'),
(46, 'breadcrumb_text_color', '[\"#ffffff\"]', 23, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(49, 'breadcrumb_background_image', '[\"car.jpg\"]', 25, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-04-30 09:18:27'),
(50, 'breadcrumb_text_color', '[\"#ffffff\"]', 25, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(51, 'breadcrumb_background_image', '[\"car.jpg\"]', 26, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:13:25'),
(52, 'breadcrumb_text_color', '[\"#ffffff\"]', 26, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(53, 'breadcrumb_background_image', '[\"car.jpg\"]', 27, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:13:04'),
(54, 'breadcrumb_text_color', '[\"#ffffff\"]', 27, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(55, 'breadcrumb_background_image', '[\"car.jpg\"]', 28, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:12:44'),
(56, 'breadcrumb_text_color', '[\"#ffffff\"]', 28, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(57, 'breadcrumb_background_image', '[\"car.jpg\"]', 29, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:12:25'),
(58, 'breadcrumb_text_color', '[\"#ffffff\"]', 29, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(59, 'breadcrumb_background_image', '[\"car.jpg\"]', 30, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:11:44'),
(60, 'breadcrumb_text_color', '[\"#ffffff\"]', 30, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(61, 'breadcrumb_background_image', '[\"car.jpg\"]', 31, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:11:13'),
(62, 'breadcrumb_text_color', '[\"#ffffff\"]', 31, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(63, 'breadcrumb_background_image', '[\"car.jpg\"]', 32, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:10:43'),
(64, 'breadcrumb_text_color', '[\"#ffffff\"]', 32, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(65, 'breadcrumb_background_image', '[\"car.jpg\"]', 33, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:10:23'),
(66, 'breadcrumb_text_color', '[\"#ffffff\"]', 33, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(67, 'breadcrumb_background_image', '[\"car.jpg\"]', 34, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:10:07'),
(68, 'breadcrumb_text_color', '[\"#ffffff\"]', 34, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(69, 'breadcrumb_background_image', '[\"car.jpg\"]', 35, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:09:48'),
(70, 'breadcrumb_text_color', '[\"#ffffff\"]', 35, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(71, 'breadcrumb_background_image', '[\"car.jpg\"]', 36, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:09:18'),
(72, 'breadcrumb_text_color', '[\"#ffffff\"]', 36, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(73, 'breadcrumb_background_image', '[\"car.jpg\"]', 37, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:09:01'),
(74, 'breadcrumb_text_color', '[\"#ffffff\"]', 37, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(75, 'breadcrumb_background_image', '[\"car.jpg\"]', 38, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:04:53'),
(76, 'breadcrumb_text_color', '[\"#ffffff\"]', 38, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(77, 'breadcrumb_background_image', '[\"car.jpg\"]', 39, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-04-30 09:04:33'),
(78, 'breadcrumb_text_color', '[\"#ffffff\"]', 39, 'Mxcar\\Page\\Models\\Page', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(79, 'logo', '[\"icons\\/activity.png\"]', 1, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(80, 'logo_dark', '[\"icons\\/activity-w.png\"]', 1, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(81, 'logo', '[\"icons\\/flash.png\"]', 2, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(82, 'logo_dark', '[\"icons\\/flash-w.png\"]', 2, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(83, 'logo', '[\"icons\\/list.png\"]', 3, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(84, 'logo_dark', '[\"icons\\/list-w.png\"]', 3, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(85, 'logo', '[\"icons\\/refresh.png\"]', 4, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(86, 'logo_dark', '[\"icons\\/refresh-w.png\"]', 4, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(87, 'logo', '[\"icons\\/ticket.png\"]', 5, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(88, 'logo_dark', '[\"icons\\/ticket-w.png\"]', 5, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(89, 'logo', '[\"icons\\/user.png\"]', 6, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(90, 'logo_dark', '[\"icons\\/user-w.png\"]', 6, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(91, 'logo', '[\"icons\\/ticket.png\"]', 7, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(92, 'logo_dark', '[\"icons\\/ticket-w.png\"]', 7, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(93, 'logo', '[\"icons\\/wallet.png\"]', 8, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(94, 'logo_dark', '[\"icons\\/wallet-w.png\"]', 8, 'Mxcar\\Faq\\Models\\FaqCategory', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(95, 'rating_star', '[\"5\"]', 1, 'Mxcar\\Testimonial\\Models\\Testimonial', '2026-03-06 08:22:26', '2026-03-20 05:14:55'),
(96, 'rating_star', '[\"5\"]', 2, 'Mxcar\\Testimonial\\Models\\Testimonial', '2026-03-06 08:22:26', '2026-03-20 05:15:49'),
(97, 'rating_star', '[\"5\"]', 3, 'Mxcar\\Testimonial\\Models\\Testimonial', '2026-03-06 08:22:26', '2026-03-20 05:16:11'),
(98, 'rating_star', '[\"5\"]', 4, 'Mxcar\\Testimonial\\Models\\Testimonial', '2026-03-06 08:22:26', '2026-03-20 05:16:33'),
(99, 'logo_dark', '[\"icons\\/lexus-w.png\"]', 1, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(100, 'logo_invert', '[\"icons\\/lexus-w.png\"]', 1, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(101, 'logo_dark', '[\"icons\\/mer-w.png\"]', 2, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(102, 'logo_invert', '[\"icons\\/mer-i.png\"]', 2, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(103, 'logo_dark', '[\"icons\\/bugatti-w.png\"]', 3, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(104, 'logo_invert', '[\"icons\\/bugatti-w.png\"]', 3, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(105, 'logo_dark', '[\"icons\\/jaguar-w.png\"]', 4, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(106, 'logo_invert', '[\"icons\\/jaguar-w.png\"]', 4, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(107, 'logo_dark', '[\"icons\\/honda-w.png\"]', 5, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(108, 'logo_invert', '[\"icons\\/honda-w.png\"]', 5, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(109, 'logo_dark', '[\"icons\\/chevrolet-w.png\"]', 6, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(110, 'logo_invert', '[\"icons\\/chevrolet-w.png\"]', 6, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(111, 'logo_dark', '[\"icons\\/acura-w.png\"]', 7, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(112, 'logo_invert', '[\"icons\\/acura-w.png\"]', 7, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(113, 'logo_dark', '[\"icons\\/bmw-w.png\"]', 8, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(114, 'logo_invert', '[\"icons\\/bmw-i.png\"]', 8, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(115, 'logo_dark', '[\"icons\\/toyota-w.png\"]', 9, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(116, 'logo_invert', '[\"icons\\/toyota-i.png\"]', 9, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(117, 'logo_dark', '[\"icons\\/ford-i.png\"]', 10, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(118, 'logo_invert', '[\"icons\\/ford-i.png\"]', 10, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(119, 'logo_dark', '[\"icons\\/nissan-w.png\"]', 11, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(120, 'logo_invert', '[\"icons\\/nissan-i.png\"]', 11, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(121, 'logo_dark', '[\"icons\\/opel-w.png\"]', 12, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(122, 'logo_invert', '[\"icons\\/opel-i.png\"]', 12, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(123, 'logo_dark', '[\"icons\\/bmw-w.png\"]', 13, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(124, 'logo_invert', '[\"icons\\/bmw-i.png\"]', 13, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(125, 'logo_dark', '[\"icons\\/toyota-w.png\"]', 14, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(126, 'logo_invert', '[\"icons\\/toyota-i.png\"]', 14, 'Mxcar\\CarRentals\\Models\\CarMake', '2026-03-06 08:22:48', '2026-03-06 08:22:48'),
(127, 'faq_ids', '[[\"2\",\"3\",\"5\",\"6\",\"9\"]]', 1, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-03-25 10:45:01'),
(128, 'faq_ids', '[[\"1\",\"2\",\"3\",\"4\",\"8\"]]', 2, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-03-25 10:45:46'),
(129, 'faq_ids', '[[\"2\",\"3\",\"5\",\"6\",\"9\"]]', 3, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-03-25 10:46:35'),
(130, 'faq_ids', '[[\"1\",\"3\",\"5\",\"6\",\"8\"]]', 4, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-03-25 10:47:22'),
(131, 'faq_ids', '[[\"1\",\"4\",\"5\",\"8\",\"9\"]]', 5, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-03-25 10:50:47'),
(132, 'faq_ids', '[[\"2\",\"4\",\"5\",\"6\",\"9\"]]', 6, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-03-25 10:23:42'),
(133, 'faq_ids', '[[\"1\",\"3\",\"4\",\"5\",\"7\"]]', 7, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-03-25 10:25:24'),
(134, 'faq_ids', '[[\"1\",\"2\",\"3\",\"5\",\"10\"]]', 8, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-03-25 10:39:44'),
(135, 'faq_ids', '[[\"2\",\"4\",\"5\",\"8\",\"10\"]]', 9, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-03-25 10:43:06'),
(136, 'faq_ids', '[[\"2\",\"3\",\"4\",\"6\",\"10\"]]', 10, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-03-25 10:44:17'),
(137, 'faq_ids', '[[\"2\",\"6\",\"7\",\"9\",\"10\"]]', 11, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-04-30 16:49:33'),
(138, 'faq_ids', '[[\"5\",\"6\",\"7\",\"8\",\"10\"]]', 12, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-04-22 11:53:35'),
(139, 'faq_ids', '[[\"1\",\"3\",\"6\",\"8\",\"9\"]]', 13, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-04-22 11:54:30'),
(140, 'faq_ids', '[[\"1\",\"3\",\"5\",\"9\",\"10\"]]', 14, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-04-22 12:07:00'),
(141, 'faq_ids', '[[\"1\",\"2\",\"3\",\"8\",\"10\"]]', 15, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-04-22 11:55:37'),
(142, 'faq_ids', '[[\"1\",\"4\",\"5\",\"7\",\"10\"]]', 16, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-04-22 12:07:57'),
(143, 'faq_ids', '[[\"3\",\"5\",\"7\",\"9\",\"10\"]]', 17, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:02', '2026-04-22 12:08:46'),
(144, 'faq_ids', '[[\"3\",\"5\",\"7\",\"8\",\"9\"]]', 18, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 11:56:48'),
(145, 'faq_ids', '[[\"1\",\"3\",\"5\",\"9\",\"10\"]]', 19, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 12:30:14'),
(147, 'faq_ids', '[[\"5\",\"6\",\"7\",\"8\",\"10\"]]', 21, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 11:59:22'),
(148, 'faq_ids', '[[\"1\",\"2\",\"6\",\"7\",\"10\"]]', 22, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-30 18:05:46'),
(150, 'faq_ids', '[[\"2\",\"4\",\"6\",\"8\",\"10\"]]', 24, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 11:39:51'),
(154, 'faq_ids', '[[\"2\",\"5\",\"6\",\"9\",\"10\"]]', 28, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 11:41:09'),
(156, 'faq_ids', '[[\"2\",\"4\",\"7\",\"8\",\"10\"]]', 30, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 11:43:04'),
(157, 'faq_ids', '[[\"1\",\"4\",\"5\",\"6\",\"8\"]]', 31, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 11:44:42'),
(159, 'faq_ids', '[[\"1\",\"2\",\"6\",\"7\",\"8\"]]', 33, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-03-25 10:07:14'),
(160, 'faq_ids', '[[\"2\",\"3\",\"4\",\"9\",\"10\"]]', 34, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 11:46:00'),
(161, 'faq_ids', '[[\"1\",\"2\",\"4\",\"6\",\"10\"]]', 35, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-30 17:36:20'),
(162, 'faq_ids', '[[\"4\",\"5\",\"6\",\"7\",\"9\"]]', 36, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-30 17:33:29'),
(163, 'faq_ids', '[[\"1\",\"4\",\"7\",\"8\",\"10\"]]', 37, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-30 17:30:35'),
(164, 'faq_ids', '[[\"1\",\"6\",\"7\",\"8\",\"9\"]]', 38, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 11:49:09'),
(165, 'faq_ids', '[[\"2\",\"3\",\"4\",\"5\",\"10\"]]', 39, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-30 17:25:37'),
(166, 'faq_ids', '[[\"1\",\"3\",\"5\",\"8\",\"10\"]]', 40, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 12:00:19'),
(167, 'faq_ids', '[[\"3\",\"4\",\"5\",\"8\",\"10\"]]', 41, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 11:50:08'),
(168, 'faq_ids', '[[\"2\",\"4\",\"6\",\"8\",\"10\"]]', 42, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-30 17:21:14'),
(169, 'faq_ids', '[[\"1\",\"3\",\"6\",\"7\",\"8\"]]', 43, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 11:10:44'),
(170, 'faq_ids', '[[\"4\",\"5\",\"6\",\"9\",\"10\"]]', 44, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 12:01:45'),
(171, 'faq_ids', '[[\"2\",\"3\",\"6\",\"8\",\"10\"]]', 45, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 12:03:34'),
(172, 'faq_ids', '[[\"1\",\"2\",\"5\",\"8\",\"9\"]]', 46, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 11:51:44'),
(173, 'faq_ids', '[[\"3\",\"5\",\"6\",\"9\",\"10\"]]', 47, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-30 17:16:31'),
(174, 'faq_ids', '[[\"1\",\"2\",\"4\",\"6\",\"7\"]]', 48, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 12:05:26'),
(175, 'faq_ids', '[[\"1\",\"4\",\"5\",\"6\",\"8\"]]', 49, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-22 11:52:38'),
(176, 'faq_ids', '[[\"1\",\"2\",\"4\",\"5\",\"8\"]]', 50, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-30 17:12:28'),
(177, 'faq_ids', '[[\"2\",\"3\",\"4\",\"7\",\"8\"]]', 51, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:03', '2026-04-30 17:09:27'),
(178, 'faq_ids', '[[\"1\",\"4\",\"5\",\"9\",\"10\"]]', 52, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-30 16:27:26'),
(179, 'faq_ids', '[[\"2\",\"3\",\"6\",\"7\",\"9\"]]', 53, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 11:18:08'),
(180, 'faq_ids', '[[\"2\",\"5\",\"6\",\"8\",\"10\"]]', 54, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 11:19:30'),
(181, 'faq_ids', '[[\"2\",\"3\",\"4\",\"6\",\"9\"]]', 55, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 11:20:53'),
(182, 'faq_ids', '[[\"2\",\"3\",\"5\",\"9\",\"10\"]]', 56, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 11:22:37'),
(184, 'faq_ids', '[[\"1\",\"3\",\"5\",\"6\",\"7\"]]', 58, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 12:01:20'),
(187, 'faq_ids', '[[\"5\",\"6\",\"8\",\"9\",\"10\"]]', 61, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 12:05:57'),
(189, 'faq_ids', '[[\"2\",\"3\",\"6\",\"7\",\"10\"]]', 63, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 11:23:51'),
(194, 'faq_ids', '[[\"4\",\"5\",\"6\",\"9\",\"10\"]]', 68, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-30 16:42:25'),
(197, 'faq_ids', '[[\"2\",\"3\",\"6\",\"8\",\"10\"]]', 71, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 11:35:25'),
(198, 'faq_ids', '[[\"1\",\"2\",\"4\",\"6\",\"8\"]]', 72, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 12:08:02'),
(199, 'faq_ids', '[[\"3\",\"5\",\"7\",\"8\",\"10\"]]', 73, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 12:10:50'),
(200, 'faq_ids', '[[\"2\",\"4\",\"7\",\"8\",\"10\"]]', 74, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 11:36:45'),
(201, 'faq_ids', '[[\"1\",\"2\",\"5\",\"7\",\"8\"]]', 75, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 12:14:56'),
(203, 'faq_ids', '[[\"1\",\"2\",\"3\",\"6\",\"7\"]]', 77, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 12:17:20'),
(205, 'faq_ids', '[[\"4\",\"5\",\"6\",\"9\",\"10\"]]', 79, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 12:25:47'),
(207, 'faq_ids', '[[\"2\",\"4\",\"5\",\"7\",\"8\"]]', 81, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 11:37:58'),
(208, 'faq_ids', '[[\"1\",\"5\",\"7\",\"9\",\"10\"]]', 82, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-22 11:38:50'),
(209, 'faq_ids', '[[\"3\",\"6\",\"7\",\"8\",\"9\"]]', 83, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-30 18:14:53'),
(212, 'faq_ids', '[[\"1\",\"2\",\"6\",\"9\",\"10\"]]', 86, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:04', '2026-04-30 18:11:12'),
(213, 'faq_ids', '[[\"3\",\"7\",\"8\",\"9\",\"10\"]]', 87, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-30 18:08:52'),
(214, 'faq_ids', '[[\"3\",\"4\",\"5\",\"7\",\"10\"]]', 88, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-22 12:09:34'),
(215, 'faq_ids', '[[\"2\",\"5\",\"8\",\"9\",\"10\"]]', 89, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-22 12:10:39'),
(216, 'faq_ids', '[[\"1\",\"3\",\"4\",\"8\",\"10\"]]', 90, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-22 12:11:20'),
(217, 'faq_ids', '[[\"1\",\"5\",\"7\",\"8\",\"9\"]]', 91, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-22 12:12:34'),
(218, 'faq_ids', '[[\"3\",\"4\",\"5\",\"8\",\"10\"]]', 92, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-22 11:12:05'),
(219, 'faq_ids', '[[\"1\",\"2\",\"3\",\"7\",\"8\"]]', 93, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-22 11:50:24'),
(221, 'faq_ids', '[[\"1\",\"2\",\"3\",\"6\",\"10\"]]', 95, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-22 12:14:22'),
(222, 'faq_ids', '[[\"2\",\"7\",\"8\",\"9\",\"10\"]]', 96, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-22 12:15:28'),
(223, 'faq_ids', '[[\"4\",\"5\",\"8\",\"9\",\"10\"]]', 97, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-22 12:16:13'),
(224, 'faq_ids', '[[\"1\",\"4\",\"7\",\"8\",\"10\"]]', 98, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-22 12:17:23'),
(225, 'faq_ids', '[[\"1\",\"3\",\"5\",\"8\",\"9\"]]', 99, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-22 11:54:14'),
(226, 'faq_ids', '[[\"1\",\"3\",\"4\",\"6\",\"8\"]]', 100, 'Mxcar\\CarRentals\\Models\\Car', '2026-03-06 08:24:05', '2026-04-20 16:48:40'),
(227, 'allow_comments', '[\"0\"]', 1, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:36:18', '2026-03-19 06:36:18'),
(228, 'allow_comments', '[\"0\"]', 2, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:37:09', '2026-03-19 06:37:09'),
(229, 'allow_comments', '[\"0\"]', 3, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:37:42', '2026-03-19 06:37:42'),
(230, 'allow_comments', '[\"0\"]', 4, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:38:20', '2026-03-19 06:38:20'),
(231, 'allow_comments', '[\"0\"]', 5, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:39:13', '2026-03-19 06:39:13'),
(232, 'allow_comments', '[\"0\"]', 6, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:39:50', '2026-03-19 06:39:50'),
(233, 'allow_comments', '[\"0\"]', 7, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:40:17', '2026-03-19 06:40:17'),
(234, 'allow_comments', '[\"0\"]', 8, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:41:07', '2026-03-19 06:41:07'),
(235, 'allow_comments', '[\"0\"]', 9, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:41:34', '2026-03-19 06:41:34'),
(236, 'allow_comments', '[\"0\"]', 10, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:42:06', '2026-03-19 06:42:06'),
(237, 'allow_comments', '[\"0\"]', 11, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:42:42', '2026-03-19 06:42:42'),
(238, 'allow_comments', '[\"0\"]', 12, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:43:21', '2026-03-19 06:43:21'),
(239, 'allow_comments', '[\"0\"]', 13, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:43:41', '2026-03-19 06:43:41'),
(240, 'allow_comments', '[\"0\"]', 14, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:44:23', '2026-03-19 06:44:23'),
(241, 'allow_comments', '[\"0\"]', 15, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:44:53', '2026-03-19 06:44:53'),
(242, 'allow_comments', '[\"0\"]', 16, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:45:28', '2026-03-19 06:45:28'),
(243, 'allow_comments', '[\"0\"]', 17, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:45:55', '2026-03-19 06:45:55'),
(244, 'allow_comments', '[\"0\"]', 18, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:46:24', '2026-03-19 06:46:24'),
(245, 'allow_comments', '[\"0\"]', 19, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:46:57', '2026-03-19 06:46:57'),
(246, 'allow_comments', '[\"0\"]', 20, 'Mxcar\\Blog\\Models\\Post', '2026-03-19 06:47:49', '2026-03-19 06:47:49'),
(247, 'breadcrumb_simple', '[\"0\"]', 5, 'Mxcar\\Page\\Models\\Page', '2026-03-19 11:22:29', '2026-03-19 11:22:29'),
(248, 'breadcrumb_background_color', '[\"transparent\"]', 5, 'Mxcar\\Page\\Models\\Page', '2026-03-19 11:22:29', '2026-03-19 11:22:29'),
(249, 'breadcrumb_display_last_update', '[\"0\"]', 5, 'Mxcar\\Page\\Models\\Page', '2026-03-19 11:22:29', '2026-03-19 11:22:29'),
(250, 'breadcrumb_simple', '[\"0\"]', 6, 'Mxcar\\Page\\Models\\Page', '2026-03-19 11:27:49', '2026-03-19 11:27:49'),
(251, 'breadcrumb_background_color', '[\"transparent\"]', 6, 'Mxcar\\Page\\Models\\Page', '2026-03-19 11:27:49', '2026-03-19 11:27:49'),
(252, 'breadcrumb_display_last_update', '[\"0\"]', 6, 'Mxcar\\Page\\Models\\Page', '2026-03-19 11:27:49', '2026-03-19 11:27:49'),
(253, 'breadcrumb_simple', '[\"0\"]', 4, 'Mxcar\\Page\\Models\\Page', '2026-03-20 04:21:17', '2026-03-20 04:21:17'),
(254, 'breadcrumb_background_color', '[\"transparent\"]', 4, 'Mxcar\\Page\\Models\\Page', '2026-03-20 04:21:17', '2026-03-20 04:21:17'),
(255, 'breadcrumb_display_last_update', '[\"0\"]', 4, 'Mxcar\\Page\\Models\\Page', '2026-03-20 04:21:17', '2026-03-20 04:21:17'),
(256, 'breadcrumb_simple', '[\"0\"]', 3, 'Mxcar\\Page\\Models\\Page', '2026-03-20 05:18:03', '2026-03-20 05:18:03'),
(257, 'breadcrumb_background_color', '[\"transparent\"]', 3, 'Mxcar\\Page\\Models\\Page', '2026-03-20 05:18:03', '2026-03-20 05:18:03'),
(258, 'breadcrumb_display_last_update', '[\"0\"]', 3, 'Mxcar\\Page\\Models\\Page', '2026-03-20 05:18:03', '2026-03-20 05:18:03'),
(262, 'breadcrumb_simple', '[\"0\"]', 16, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:38:04', '2026-03-25 10:38:04'),
(263, 'breadcrumb_background_color', '[\"transparent\"]', 16, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:38:04', '2026-03-25 10:38:04'),
(264, 'breadcrumb_display_last_update', '[\"0\"]', 16, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:38:04', '2026-03-25 10:38:04'),
(265, 'breadcrumb_simple', '[\"0\"]', 17, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:41:45', '2026-03-25 10:41:45'),
(266, 'breadcrumb_background_color', '[\"transparent\"]', 17, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:41:45', '2026-03-25 10:41:45'),
(267, 'breadcrumb_display_last_update', '[\"0\"]', 17, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:41:45', '2026-03-25 10:41:45'),
(268, 'breadcrumb_simple', '[\"0\"]', 18, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:45:31', '2026-03-25 10:45:31'),
(269, 'breadcrumb_background_color', '[\"transparent\"]', 18, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:45:31', '2026-03-25 10:45:31'),
(270, 'breadcrumb_display_last_update', '[\"0\"]', 18, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:45:31', '2026-03-25 10:45:31'),
(271, 'breadcrumb_simple', '[\"0\"]', 19, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:48:07', '2026-03-25 10:48:07'),
(272, 'breadcrumb_background_color', '[\"transparent\"]', 19, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:48:07', '2026-03-25 10:48:07'),
(273, 'breadcrumb_display_last_update', '[\"0\"]', 19, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:48:07', '2026-03-25 10:48:07'),
(274, 'breadcrumb_simple', '[\"0\"]', 27, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:51:38', '2026-03-25 10:51:38'),
(275, 'breadcrumb_background_color', '[\"transparent\"]', 27, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:51:38', '2026-03-25 10:51:38'),
(276, 'breadcrumb_display_last_update', '[\"0\"]', 27, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:51:38', '2026-03-25 10:51:38'),
(277, 'breadcrumb_simple', '[\"0\"]', 28, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:54:11', '2026-03-25 10:54:11'),
(278, 'breadcrumb_background_color', '[\"transparent\"]', 28, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:54:11', '2026-03-25 10:54:11'),
(279, 'breadcrumb_display_last_update', '[\"0\"]', 28, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:54:11', '2026-03-25 10:54:11'),
(280, 'breadcrumb_simple', '[\"0\"]', 29, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:57:50', '2026-03-25 10:57:50'),
(281, 'breadcrumb_background_color', '[\"transparent\"]', 29, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:57:50', '2026-03-25 10:57:50'),
(282, 'breadcrumb_display_last_update', '[\"0\"]', 29, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:57:50', '2026-03-25 10:57:50'),
(283, 'breadcrumb_simple', '[\"0\"]', 30, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:59:59', '2026-03-25 10:59:59'),
(284, 'breadcrumb_background_color', '[\"transparent\"]', 30, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:59:59', '2026-03-25 10:59:59'),
(285, 'breadcrumb_display_last_update', '[\"0\"]', 30, 'Mxcar\\Page\\Models\\Page', '2026-03-25 10:59:59', '2026-03-25 10:59:59'),
(286, 'breadcrumb_simple', '[\"0\"]', 31, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:28:59', '2026-03-25 11:28:59'),
(287, 'breadcrumb_background_color', '[\"transparent\"]', 31, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:28:59', '2026-03-25 11:28:59'),
(288, 'breadcrumb_display_last_update', '[\"0\"]', 31, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:28:59', '2026-03-25 11:28:59'),
(289, 'breadcrumb_simple', '[\"0\"]', 36, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:29:07', '2026-03-25 11:29:07'),
(290, 'breadcrumb_background_color', '[\"transparent\"]', 36, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:29:07', '2026-03-25 11:29:07'),
(291, 'breadcrumb_display_last_update', '[\"0\"]', 36, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:29:07', '2026-03-25 11:29:07'),
(292, 'breadcrumb_simple', '[\"0\"]', 37, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:30:30', '2026-03-25 11:30:30'),
(293, 'breadcrumb_background_color', '[\"transparent\"]', 37, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:30:30', '2026-03-25 11:30:30'),
(294, 'breadcrumb_display_last_update', '[\"0\"]', 37, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:30:30', '2026-03-25 11:30:30'),
(295, 'breadcrumb_simple', '[\"0\"]', 38, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:30:53', '2026-03-25 11:30:53'),
(296, 'breadcrumb_background_color', '[\"transparent\"]', 38, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:30:53', '2026-03-25 11:30:53'),
(297, 'breadcrumb_display_last_update', '[\"0\"]', 38, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:30:53', '2026-03-25 11:30:53'),
(298, 'breadcrumb_simple', '[\"0\"]', 39, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:31:16', '2026-03-25 11:31:16'),
(299, 'breadcrumb_background_color', '[\"transparent\"]', 39, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:31:16', '2026-03-25 11:31:16'),
(300, 'breadcrumb_display_last_update', '[\"0\"]', 39, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:31:16', '2026-03-25 11:31:16'),
(301, 'breadcrumb_simple', '[\"0\"]', 32, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:31:44', '2026-03-25 11:31:44'),
(302, 'breadcrumb_background_color', '[\"transparent\"]', 32, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:31:44', '2026-03-25 11:31:44'),
(303, 'breadcrumb_display_last_update', '[\"0\"]', 32, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:31:44', '2026-03-25 11:31:44'),
(304, 'breadcrumb_simple', '[\"0\"]', 33, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:32:45', '2026-03-25 11:32:45'),
(305, 'breadcrumb_background_color', '[\"transparent\"]', 33, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:32:45', '2026-03-25 11:32:45'),
(306, 'breadcrumb_display_last_update', '[\"0\"]', 33, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:32:45', '2026-03-25 11:32:45'),
(307, 'breadcrumb_simple', '[\"0\"]', 34, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:34:08', '2026-03-25 11:34:08'),
(308, 'breadcrumb_background_color', '[\"transparent\"]', 34, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:34:08', '2026-03-25 11:34:08'),
(309, 'breadcrumb_display_last_update', '[\"0\"]', 34, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:34:08', '2026-03-25 11:34:08'),
(310, 'breadcrumb_simple', '[\"0\"]', 35, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:34:55', '2026-03-25 11:34:55'),
(311, 'breadcrumb_background_color', '[\"transparent\"]', 35, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:34:55', '2026-03-25 11:34:55'),
(312, 'breadcrumb_display_last_update', '[\"0\"]', 35, 'Mxcar\\Page\\Models\\Page', '2026-03-25 11:34:55', '2026-03-25 11:34:55'),
(313, 'youtube_video_url', '[\"https:\\/\\/www.youtube.com\\/watch?v=4zX-MFM7E9Q\"]', 3, 'Mxcar\\CarRentals\\Models\\Car', '2026-04-06 06:18:17', '2026-04-06 06:18:17'),
(314, 'breadcrumb_background_image', '[\"car.jpg\"]', 2, 'Mxcar\\Page\\Models\\Page', '2026-04-21 11:56:10', '2026-04-30 09:07:30'),
(315, 'breadcrumb_text_color', '[\"transparent\"]', 2, 'Mxcar\\Page\\Models\\Page', '2026-04-21 11:56:10', '2026-04-21 11:56:10'),
(316, 'breadcrumb_background_color', '[\"transparent\"]', 2, 'Mxcar\\Page\\Models\\Page', '2026-04-21 11:56:10', '2026-04-21 11:56:10'),
(317, 'breadcrumb_display_last_update', '[\"0\"]', 2, 'Mxcar\\Page\\Models\\Page', '2026-04-21 11:56:10', '2026-04-21 11:56:10'),
(318, 'breadcrumb_text_color', '[\"transparent\"]', 12, 'Mxcar\\Page\\Models\\Page', '2026-04-22 12:55:56', '2026-04-22 12:55:56'),
(319, 'breadcrumb_background_color', '[\"transparent\"]', 12, 'Mxcar\\Page\\Models\\Page', '2026-04-22 12:55:56', '2026-04-22 12:55:56'),
(320, 'breadcrumb_display_last_update', '[\"0\"]', 12, 'Mxcar\\Page\\Models\\Page', '2026-04-22 12:55:56', '2026-04-22 12:55:56'),
(321, 'breadcrumb_simple', '[\"0\"]', 11, 'Mxcar\\Page\\Models\\Page', '2026-04-22 15:17:46', '2026-04-22 15:17:46'),
(322, 'breadcrumb_background_color', '[\"transparent\"]', 11, 'Mxcar\\Page\\Models\\Page', '2026-04-22 15:17:46', '2026-04-22 15:17:46'),
(323, 'breadcrumb_simple', '[\"0\"]', 1, 'Mxcar\\Page\\Models\\Page', '2026-04-28 07:09:54', '2026-04-28 07:09:54'),
(324, 'breadcrumb_text_color', '[\"transparent\"]', 1, 'Mxcar\\Page\\Models\\Page', '2026-04-28 07:09:54', '2026-04-28 07:09:54'),
(325, 'breadcrumb_background_color', '[\"transparent\"]', 1, 'Mxcar\\Page\\Models\\Page', '2026-04-28 07:09:54', '2026-04-28 07:09:54'),
(326, 'breadcrumb_display_last_update', '[\"0\"]', 1, 'Mxcar\\Page\\Models\\Page', '2026-04-28 07:09:54', '2026-04-28 07:09:54'),
(327, 'breadcrumb_simple', '[\"0\"]', 40, 'Mxcar\\Page\\Models\\Page', '2026-04-30 04:31:09', '2026-04-30 04:31:09'),
(328, 'breadcrumb_text_color', '[\"transparent\"]', 40, 'Mxcar\\Page\\Models\\Page', '2026-04-30 04:31:09', '2026-04-30 04:31:09'),
(329, 'breadcrumb_background_color', '[\"transparent\"]', 40, 'Mxcar\\Page\\Models\\Page', '2026-04-30 04:31:09', '2026-04-30 04:31:09'),
(330, 'breadcrumb_display_last_update', '[\"0\"]', 40, 'Mxcar\\Page\\Models\\Page', '2026-04-30 04:31:09', '2026-04-30 04:31:09'),
(331, 'breadcrumb_simple', '[\"0\"]', 7, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:00:51', '2026-04-30 09:00:51'),
(332, 'breadcrumb_text_color', '[\"transparent\"]', 7, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:00:51', '2026-04-30 09:00:51'),
(333, 'breadcrumb_background_color', '[\"transparent\"]', 7, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:00:51', '2026-04-30 09:00:51'),
(334, 'breadcrumb_display_last_update', '[\"0\"]', 7, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:00:51', '2026-04-30 09:00:51'),
(335, 'breadcrumb_simple', '[\"0\"]', 14, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:05:22', '2026-04-30 09:05:22'),
(336, 'breadcrumb_background_color', '[\"transparent\"]', 14, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:05:22', '2026-04-30 09:05:22'),
(337, 'breadcrumb_display_last_update', '[\"0\"]', 14, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:05:22', '2026-04-30 09:05:22'),
(338, 'breadcrumb_background_image', '[\"car.jpg\"]', 12, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:08:34', '2026-04-30 09:08:34'),
(339, 'breadcrumb_simple', '[\"0\"]', 26, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:13:25', '2026-04-30 09:13:25'),
(340, 'breadcrumb_background_color', '[\"transparent\"]', 26, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:13:25', '2026-04-30 09:13:25'),
(341, 'breadcrumb_display_last_update', '[\"0\"]', 26, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:13:25', '2026-04-30 09:13:25'),
(342, 'breadcrumb_simple', '[\"0\"]', 13, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:15:09', '2026-04-30 09:15:09'),
(343, 'breadcrumb_background_color', '[\"transparent\"]', 13, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:15:09', '2026-04-30 09:15:09'),
(344, 'breadcrumb_display_last_update', '[\"0\"]', 13, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:15:09', '2026-04-30 09:15:09'),
(345, 'breadcrumb_simple', '[\"0\"]', 21, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:17:56', '2026-04-30 09:17:56'),
(346, 'breadcrumb_background_color', '[\"transparent\"]', 21, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:17:56', '2026-04-30 09:17:56'),
(347, 'breadcrumb_display_last_update', '[\"0\"]', 21, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:17:56', '2026-04-30 09:17:56'),
(348, 'breadcrumb_simple', '[\"0\"]', 25, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:18:27', '2026-04-30 09:18:27'),
(349, 'breadcrumb_background_color', '[\"transparent\"]', 25, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:18:27', '2026-04-30 09:18:27'),
(350, 'breadcrumb_display_last_update', '[\"0\"]', 25, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:18:27', '2026-04-30 09:18:27'),
(351, 'breadcrumb_simple', '[\"0\"]', 23, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:20:07', '2026-04-30 09:20:07'),
(352, 'breadcrumb_background_color', '[\"transparent\"]', 23, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:20:07', '2026-04-30 09:20:07'),
(353, 'breadcrumb_display_last_update', '[\"0\"]', 23, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:20:07', '2026-04-30 09:20:07'),
(354, 'breadcrumb_simple', '[\"0\"]', 22, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:20:35', '2026-04-30 09:20:35'),
(355, 'breadcrumb_background_color', '[\"transparent\"]', 22, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:20:35', '2026-04-30 09:20:35'),
(356, 'breadcrumb_display_last_update', '[\"0\"]', 22, 'Mxcar\\Page\\Models\\Page', '2026-04-30 09:20:35', '2026-04-30 09:20:35');

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

--
-- 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
(1, '0001_01_01_000001_create_cache_table', 1),
(2, '2013_04_09_032329_create_base_tables', 1),
(3, '2013_04_09_062329_create_revisions_table', 1),
(4, '2014_10_12_000000_create_users_table', 1),
(5, '2014_10_12_100000_create_password_reset_tokens_table', 1),
(6, '2015_06_18_033822_create_blog_table', 1),
(7, '2015_06_29_025744_create_audit_history', 1),
(8, '2016_06_10_230148_create_acl_tables', 1),
(9, '2016_06_14_230857_create_menus_table', 1),
(10, '2016_06_17_091537_create_contacts_table', 1),
(11, '2016_06_28_221418_create_pages_table', 1),
(12, '2016_10_03_032336_create_languages_table', 1),
(13, '2016_10_05_074239_create_setting_table', 1),
(14, '2016_10_07_193005_create_translations_table', 1),
(15, '2016_10_13_150201_create_galleries_table', 1),
(16, '2016_11_28_032840_create_dashboard_widget_tables', 1),
(17, '2016_12_16_084601_create_widgets_table', 1),
(18, '2017_05_09_070343_create_media_tables', 1),
(19, '2017_05_18_080441_create_payment_tables', 1),
(20, '2017_07_11_140018_create_simple_slider_table', 1),
(21, '2017_10_24_154832_create_newsletter_table', 1),
(22, '2017_11_03_070450_create_slug_table', 1),
(23, '2018_07_09_214610_create_testimonial_table', 1),
(24, '2018_07_09_221238_create_faq_table', 1),
(25, '2019_01_05_053554_create_jobs_table', 1),
(26, '2019_08_19_000000_create_failed_jobs_table', 1),
(27, '2019_11_18_061011_create_country_table', 1),
(28, '2019_12_14_000001_create_personal_access_tokens_table', 1),
(29, '2021_02_16_092633_remove_default_value_for_author_type', 1),
(30, '2021_03_27_144913_add_customer_type_into_table_payments', 1),
(31, '2021_05_24_034720_make_column_currency_nullable', 1),
(32, '2021_08_09_161302_add_metadata_column_to_payments_table', 1),
(33, '2021_10_19_020859_update_metadata_field', 1),
(34, '2021_10_25_021023_fix-priority-load-for-language-advanced', 1),
(35, '2021_12_03_030600_create_blog_translations', 1),
(36, '2021_12_03_075608_create_page_translations', 1),
(37, '2021_12_03_082134_create_faq_translations', 1),
(38, '2021_12_03_082953_create_gallery_translations', 1),
(39, '2021_12_03_083642_create_testimonials_translations', 1),
(40, '2021_12_03_084118_create_location_translations', 1),
(41, '2021_12_03_094518_migrate_old_location_data', 1),
(42, '2021_12_10_034440_switch_plugin_location_to_use_language_advanced', 1),
(43, '2022_01_16_085908_improve_plugin_location', 1),
(44, '2022_04_19_113923_add_index_to_table_posts', 1),
(45, '2022_04_20_100851_add_index_to_media_table', 1),
(46, '2022_04_20_101046_add_index_to_menu_table', 1),
(47, '2022_04_30_034048_create_gallery_meta_translations_table', 1),
(48, '2022_06_28_151901_activate_paypal_stripe_plugin', 1),
(49, '2022_07_07_153354_update_charge_id_in_table_payments', 1),
(50, '2022_07_10_034813_move_lang_folder_to_root', 1),
(51, '2022_08_04_051940_add_missing_column_expires_at', 1),
(52, '2022_08_04_052122_delete_location_backup_tables', 1),
(53, '2022_09_01_000001_create_admin_notifications_tables', 1),
(54, '2022_10_14_024629_drop_column_is_featured', 1),
(55, '2022_11_02_092723_team_create_team_table', 1),
(56, '2022_11_18_063357_add_missing_timestamp_in_table_settings', 1),
(57, '2022_12_02_093615_update_slug_index_columns', 1),
(58, '2023_01_30_024431_add_alt_to_media_table', 1),
(59, '2023_02_16_042611_drop_table_password_resets', 1),
(60, '2023_04_23_005903_add_column_permissions_to_admin_notifications', 1),
(61, '2023_04_23_061847_increase_state_translations_abbreviation_column', 1),
(62, '2023_05_10_075124_drop_column_id_in_role_users_table', 1),
(63, '2023_07_06_011444_create_slug_translations_table', 1),
(64, '2023_07_26_041451_add_more_columns_to_location_table', 1),
(65, '2023_07_27_041451_add_more_columns_to_location_translation_table', 1),
(66, '2023_08_11_060908_create_announcements_table', 1),
(67, '2023_08_11_094574_update_team_table', 1),
(68, '2023_08_15_073307_drop_unique_in_states_cities_translations', 1),
(69, '2023_08_21_090810_make_page_content_nullable', 1),
(70, '2023_08_29_074620_make_column_author_id_nullable', 1),
(71, '2023_08_29_075308_make_column_user_id_nullable', 1),
(72, '2023_09_14_021936_update_index_for_slugs_table', 1),
(73, '2023_09_14_022423_add_index_for_language_table', 1),
(74, '2023_10_21_065016_make_state_id_in_table_cities_nullable', 1),
(75, '2023_11_10_080225_migrate_contact_blacklist_email_domains_to_core', 1),
(76, '2023_11_14_033417_change_request_column_in_table_audit_histories', 1),
(77, '2023_11_17_063408_add_description_column_to_faq_categories_table', 1),
(78, '2023_11_30_085354_add_missing_description_to_team', 1),
(79, '2023_12_07_095130_add_color_column_to_media_folders_table', 1),
(80, '2023_12_12_105220_drop_translations_table', 1),
(81, '2023_12_17_162208_make_sure_column_color_in_media_folders_nullable', 1),
(82, '2024_01_16_050056_create_comments_table', 1),
(83, '2024_03_20_080001_migrate_change_attribute_email_to_nullable_form_contacts_table', 1),
(84, '2024_03_25_000001_update_captcha_settings_for_contact', 1),
(85, '2024_03_25_000001_update_captcha_settings_for_newsletter', 1),
(86, '2024_04_04_110758_update_value_column_in_user_meta_table', 1),
(87, '2024_04_19_063914_create_custom_fields_table', 1),
(88, '2024_04_27_100730_improve_analytics_setting', 1),
(89, '2024_05_12_091229_add_column_visibility_to_table_media_files', 1),
(90, '2024_07_04_083133_create_payment_logs_table', 1),
(91, '2024_07_07_091316_fix_column_url_in_menu_nodes_table', 1),
(92, '2024_07_12_100000_change_random_hash_for_media', 1),
(93, '2024_07_30_091615_fix_order_column_in_categories_table', 1),
(94, '2024_08_17_094600_add_image_into_countries', 1),
(95, '2024_08_22_062602_create_car_rentals_tables', 1),
(96, '2024_08_28_154009_create_cr_car_addresses', 1),
(97, '2024_09_05_151532_add_column_addresses_cars_table', 1),
(98, '2024_09_11_151251_create_cr_car_categories', 1),
(99, '2024_09_30_024515_create_sessions_table', 1),
(100, '2024_10_02_030027_add_more_columns_to_teams_translations_table', 1),
(101, '2024_12_01_000000_add_indexes_to_blog_translations_tables', 1),
(102, '2024_12_01_000000_add_indexes_to_car_rentals_translations_tables', 1),
(103, '2024_12_01_000000_add_indexes_to_contact_translations_tables', 1),
(104, '2024_12_01_000000_add_indexes_to_faq_translations_tables', 1),
(105, '2024_12_01_000000_add_indexes_to_gallery_translations_tables', 1),
(106, '2024_12_01_000000_add_indexes_to_pages_translations_table', 1),
(107, '2024_12_01_000000_add_indexes_to_slugs_translations_table', 1),
(108, '2024_12_01_000000_add_indexes_to_testimonials_translations_table', 1),
(109, '2024_12_01_000000_add_key_prefix_index_to_slugs_table', 1),
(110, '2024_12_11_044552_add_author_to_table_cr_cars', 1),
(111, '2024_12_11_082630_create_cr_messages_table', 1),
(112, '2024_12_12_034118_add_is_vendor_to_cr_customers', 1),
(113, '2024_12_12_082259_add_phone_to_table_cr_messages', 1),
(114, '2024_12_12_093603_add_vendor_verified_at_to_table_cr_customers', 1),
(115, '2024_12_19_000001_create_device_tokens_table', 1),
(116, '2024_12_19_000002_create_push_notifications_table', 1),
(117, '2024_12_19_000003_create_push_notification_recipients_table', 1),
(118, '2024_12_20_064621_add_moderation_status_to_cr_cars', 1),
(119, '2024_12_30_000001_create_user_settings_table', 1),
(120, '2024_12_30_022046_add_vendor_id_to_cr_bookings_table', 1),
(121, '2025_01_06_033807_add_default_value_for_categories_author_type', 1),
(122, '2025_01_08_093652_add_zip_code_to_cities', 1),
(123, '2025_01_15_000000_add_completion_fields_to_cr_bookings_table', 1),
(124, '2025_01_17_043153_improve_invoices_table', 1),
(125, '2025_02_10_040833_add_reject_reason_to_cars', 1),
(126, '2025_02_11_153025_add_action_label_to_announcement_translations', 1),
(127, '2025_02_20_075043_improve_cr_cars_table', 1),
(128, '2025_03_23_075418_add_selling_features_to_cr_cars_table', 1),
(129, '2025_04_02_000000_rename_car_rentals_enabled_rental_booking_setting', 1),
(130, '2025_04_08_040931_create_social_logins_table', 1),
(131, '2025_04_10_000000_update_cr_taxes_table', 1),
(132, '2025_04_12_000003_add_payment_fee_to_payments_table', 1),
(133, '2025_04_14_000001_create_category_commissions_table', 1),
(134, '2025_04_14_000002_create_customer_revenues_table', 1),
(135, '2025_04_14_000003_add_balance_column_to_customers_table', 1),
(136, '2025_04_14_000004_add_vendor_id_column_to_bookings_table', 1),
(137, '2025_04_14_000005_add_vendor_id_column_to_cars_table', 1),
(138, '2025_04_14_000006_create_customer_withdrawals_table', 1),
(139, '2025_04_14_000007_add_bank_info_to_customers_table', 1),
(140, '2025_04_20_081632_rename_current_location_to_location_in_cr_cars_table', 1),
(141, '2025_04_22_102623_set_moderation_status_to_approved_for_existing_cars', 1),
(142, '2025_04_23_000000_add_external_booking_url_to_cr_cars_table', 1),
(143, '2025_05_05_000001_add_user_type_to_audit_histories_table', 1),
(144, '2025_05_13_000000_add_price_type_column_to_cr_services_table', 1),
(145, '2025_05_22_000001_add_payment_fee_type_to_settings_table', 1),
(146, '2025_06_04_000000_add_horsepower_to_cr_cars_table', 1),
(147, '2025_07_06_030754_add_phone_to_users_table', 1),
(148, '2025_07_11_160139_add_order_column_to_cr_car_makes_table', 1),
(149, '2025_07_11_160140_add_order_column_to_cr_car_types_table', 1),
(150, '2025_07_11_160141_add_order_column_to_cr_car_transmissions_table', 1),
(151, '2025_07_11_160142_add_order_column_to_cr_car_fuels_table', 1),
(152, '2025_07_11_160143_add_order_column_to_cr_car_addresses_table', 1),
(153, '2025_07_11_160144_add_order_column_to_cr_car_amenities_table', 1),
(154, '2025_07_11_160145_add_order_column_to_cr_car_colors_table', 1),
(155, '2025_07_14_014535_add_currency_tables_to_car_rentals', 1),
(156, '2025_07_14_025000_simplify_currency_implementation', 1),
(157, '2025_07_14_030502_add_currency_id_to_cr_services_table', 1),
(158, '2025_07_23_000000_create_car_amenity_categories_table', 1),
(159, '2025_07_23_000001_add_category_id_to_car_amenities_table', 1),
(160, '2025_07_23_add_icon_column_to_cr_car_amenities_table', 1),
(161, '2025_07_23_add_icon_column_to_cr_car_types_table', 1),
(162, '2025_07_31_083459_add_indexes_for_location_search_performance', 1),
(163, '2025_07_31_add_performance_indexes_to_slugs_table', 1),
(164, '2025_08_07_090752_add_verification_fields_to_cr_customers_table', 1),
(165, '2025_08_11_055037_add_location_fields_to_cr_cars_table', 1),
(166, '2025_08_11_063447_remove_address_fields_from_cr_cars_table', 1),
(167, '2025_08_11_064405_migrate_car_addresses_to_cities', 1),
(168, '2025_08_11_091336_add_address_to_cr_cars_table', 1),
(169, '2025_10_10_200000_add_advanced_fields_to_cr_currencies_table', 1),
(170, '2025_10_22_000001_add_whatsapp_to_cr_customers_table', 1),
(171, '2025_11_07_000001_add_actor_type_to_audit_histories_table', 1),
(172, '2025_11_10_000000_cleanup_duplicate_widgets', 1),
(173, '2025_11_30_100000_add_sessions_invalidated_at_to_users_table', 1),
(174, '2025_12_30_000000_create_cr_car_dates_table', 1),
(175, '2026_01_10_000001_add_status_to_simple_slider_items_table', 1),
(176, '2026_01_25_072348_add_block_reason_to_cr_customers_table', 1),
(177, '2026_01_25_073439_update_cr_customers_status_values', 1),
(178, '2026_02_08_024904_add_order_to_cr_cars_table', 1),
(179, '2026_04_03_000001_create_chat_tables', 2),
(180, '2026_04_03_000002_create_chat_settings_table', 2),
(181, '2026_04_06_052648_create_cr_customer_reviews_table', 2),
(182, '2026_04_06_090000_add_price_lock_and_deposit_to_cr_bookings_table', 2),
(183, '2026_04_06_130000_add_fee_fields_to_cr_bookings_table', 2),
(184, '2026_04_07_053910_create_cr_insurances_table', 2),
(185, '2026_04_07_062534_create_cr_booking_insurances_table', 2),
(186, '2026_04_07_134719_create_cr_trip_messages_table', 2),
(187, '2026_04_07_134722_add_is_escalated_to_cr_bookings_table', 2),
(188, '2026_04_07_200000_add_contactless_fields', 2),
(189, '2026_04_08_100000_add_pickup_photos_to_bookings', 2),
(190, '2026_04_08_100000_add_risk_deposit_fields_to_cr_bookings_table', 2),
(191, '2026_04_08_101000_add_authorization_fields_to_payments_table', 2),
(192, '2026_04_08_170000_expand_deposit_hold_status_length', 2),
(193, '2026_04_08_200000_add_after_photos_to_bookings', 2),
(194, '2026_04_10_000000_create_car_pricing_policy_tables', 3),
(195, '2026_04_10_010000_add_distance_overage_fields_to_cr_bookings_table', 3),
(196, '2026_04_10_020000_add_start_mileage_snapshot_to_cr_bookings_table', 3),
(197, '2026_04_10_030000_add_post_trip_billing_fields', 3),
(198, '2026_04_13_090000_add_kyc_fields_to_cr_customers_table', 3),
(199, '2026_04_13_091000_create_cr_customer_kyc_verifications_table', 3),
(200, '2026_04_13_092000_create_cr_customer_kyc_documents_table', 3),
(201, '2026_04_13_093000_add_kyc_eligibility_fields_to_cr_bookings_table', 3),
(202, '2026_04_13_104215_upgrade_insurance_to_protection_engine', 3),
(203, '2026_04_13_122343_force_add_mileage_snapshot_now', 3),
(204, '2026_04_13_123616_remove_strict_fks_from_bookings', 3),
(205, '2026_04_13_165323_add_trip_modification_fields_to_cr_bookings_table', 3),
(206, '2026_04_14_120000_add_demand_pricing_recommendations', 3),
(207, '2026_04_14_120611_add_views_count_to_cr_cars_table', 3),
(208, '2026_04_15_000000_add_vendor_columns_to_demand_pricing_recommendations', 3),
(209, '2026_04_15_000001_add_auto_pricing_to_car_pricing_policies', 3),
(210, '2026_04_15_092425_create_telematics_tables', 3),
(211, '2026_04_15_144237_create_cr_vendor_quality_scores_table', 3),
(212, '2026_04_16_000000_add_whatsapp_source_to_chat_messages', 3),
(213, '2026_04_16_000001_add_vendor_first_reply_at_to_cr_trip_messages', 3),
(214, '2026_04_16_000001_create_whatsapp_configs_table', 3),
(215, '2026_04_16_000002_add_cancelled_by_to_cr_bookings', 3),
(216, '2026_04_16_000002_create_whatsapp_webhook_logs_table', 4),
(217, '2026_04_16_000003_add_whatsapp_context_to_chat_conversations', 4),
(218, '2026_04_16_000100_create_whatsapp_sent_messages_table', 5),
(219, '2026_04_16_000101_create_whatsapp_message_templates_table', 5),
(220, '2026_04_16_092947_add_delivery_rules_to_car_rentals_tables', 5),
(221, '2026_04_16_120000_create_cr_booking_support_actions_table', 5),
(222, '2026_04_16_130000_create_cr_booking_claims_table', 5),
(223, '2026_04_16_130100_add_linked_claim_foreign_to_whatsapp_webhook_logs_table', 5),
(224, '2026_04_16_130200_add_claim_foreign_to_whatsapp_sent_messages_table', 5),
(225, '2026_04_16_180000_extend_cr_booking_claims_for_workflow_and_settlement', 5),
(226, '2026_04_17_000102_add_provider_fields_to_whatsapp_sent_messages_table', 5),
(227, '2026_04_20_114739_drop_host_plan_foreign_key_from_cr_cars_table', 6),
(228, '2026_04_24_000000_add_vr_images_to_cr_cars_table', 7),
(229, '2026_05_20_000000_create_car_pricing_calendar_table', 8),
(230, '2025_11_30_100001_add_sessions_invalidated_at_to_customers_table', 9);

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

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

CREATE TABLE `newsletters` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `email` varchar(120) NOT NULL,
  `name` varchar(120) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'subscribed',
  `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`, `name`, `status`, `created_at`, `updated_at`) VALUES
(1, 'user@demo.com', NULL, 'subscribed', '2026-04-22 10:26:16', '2026-04-22 10:26:16'),
(2, 'user1@demo.com', NULL, 'subscribed', '2026-04-22 11:00:53', '2026-04-22 11:00:53'),
(3, 'cusfsmc@outlook.com', NULL, 'subscribed', '2026-05-22 18:26:37', '2026-05-22 18:26:37'),
(4, 'katavic.davor321@gmail.com', NULL, 'subscribed', '2026-05-22 18:33:45', '2026-05-22 18:33:45'),
(5, 'konnis@gmx.net', NULL, 'subscribed', '2026-05-22 18:48:27', '2026-05-22 18:48:27'),
(6, 'yves.samouillan@gmail.com', NULL, 'subscribed', '2026-05-22 18:55:48', '2026-05-22 18:55:48'),
(7, 'jgrever55@gmail.com', NULL, 'subscribed', '2026-05-22 19:03:08', '2026-05-22 19:03:08'),
(8, 'alexmeyer2010@hotmail.de', NULL, 'subscribed', '2026-05-22 19:13:37', '2026-05-22 19:13:37'),
(9, 'lppenev@gmail.com', NULL, 'subscribed', '2026-05-22 19:26:38', '2026-05-22 19:26:38'),
(10, 'gbm2108@gmail.com', NULL, 'subscribed', '2026-05-22 19:43:20', '2026-05-22 19:43:20'),
(11, 'jnauman@regoproducts.com', NULL, 'subscribed', '2026-05-22 19:55:18', '2026-05-22 19:55:18'),
(12, 'gcruz@petra.com', NULL, 'subscribed', '2026-05-22 20:04:07', '2026-05-22 20:04:07'),
(13, 'mbianco@elliman.com', NULL, 'subscribed', '2026-05-22 20:04:45', '2026-05-22 20:04:45'),
(14, 'wlkoening@bizjournals.com', NULL, 'subscribed', '2026-05-22 20:09:07', '2026-05-22 20:09:07'),
(15, 'fredh@hasack.com', NULL, 'subscribed', '2026-05-22 20:13:01', '2026-05-22 20:13:01'),
(16, 'rsession@aerotek.com', NULL, 'subscribed', '2026-05-22 20:17:00', '2026-05-22 20:17:00'),
(17, 'galleriekd@cdmsmith.com', NULL, 'subscribed', '2026-05-22 20:20:42', '2026-05-22 20:20:42'),
(18, 'gmentore@webershandwick.com', NULL, 'subscribed', '2026-05-22 20:26:59', '2026-05-22 20:26:59'),
(19, 'beth.mcfadden@hutchenslawfirm.com', NULL, 'subscribed', '2026-05-22 20:30:26', '2026-05-22 20:30:26'),
(20, 'lgagain04@gmail.com', NULL, 'subscribed', '2026-05-22 20:33:05', '2026-05-22 20:33:05'),
(21, 'openhiner2010@gmail.com', NULL, 'subscribed', '2026-05-22 20:52:49', '2026-05-22 20:52:49'),
(22, 'kutclean@gmail.com', NULL, 'subscribed', '2026-05-22 21:09:09', '2026-05-22 21:09:09'),
(23, 'p.benayas@gmail.com', NULL, 'subscribed', '2026-05-22 21:23:20', '2026-05-22 21:23:20'),
(24, 'mightygunja@gmail.com', NULL, 'subscribed', '2026-05-22 21:41:57', '2026-05-22 21:41:57'),
(25, 'rmorgan1025@yahoo.com', NULL, 'subscribed', '2026-05-22 22:04:07', '2026-05-22 22:04:07'),
(26, 'rubenpazm@hotmail.es', NULL, 'subscribed', '2026-05-22 22:10:39', '2026-05-22 22:10:39'),
(27, 'a.pronin@pfbqgc.bizml.ru', NULL, 'subscribed', '2026-05-22 22:16:49', '2026-05-22 22:16:49'),
(28, 'miades@colden.com', NULL, 'subscribed', '2026-05-22 22:24:15', '2026-05-22 22:24:15'),
(29, 'akumar@questmindshare.com', NULL, 'subscribed', '2026-05-22 22:32:35', '2026-05-22 22:32:35'),
(30, 'cintia.sousa@gilbarco.com', NULL, 'subscribed', '2026-05-22 22:40:08', '2026-05-22 22:40:08'),
(31, 'dgarone@ferrandinoandson.com', NULL, 'subscribed', '2026-05-22 22:43:40', '2026-05-22 22:43:40'),
(32, 'gabriel.aceituno@performanceteam.net', NULL, 'subscribed', '2026-05-22 22:47:26', '2026-05-22 22:47:26'),
(33, 'tiffany@governorsgunclub.com', NULL, 'subscribed', '2026-05-22 22:53:57', '2026-05-22 22:53:57'),
(34, 'bryang@blackenterprise.com', NULL, 'subscribed', '2026-05-22 22:53:58', '2026-05-22 22:53:58'),
(35, 'phancody88@hotmail.com', NULL, 'subscribed', '2026-05-22 23:11:08', '2026-05-22 23:11:08'),
(36, 'gpence@farmerbros.com', NULL, 'unsubscribed', '2026-05-22 23:33:32', '2026-05-22 23:33:40'),
(37, 'bsawyer@gomezandsullivan.com', NULL, 'subscribed', '2026-05-22 23:36:30', '2026-05-22 23:36:30'),
(38, 'lokmanlam82@gmail.com', NULL, 'subscribed', '2026-05-22 23:40:40', '2026-05-22 23:40:40'),
(39, 'tim.buckley@bartonmalow.com', NULL, 'subscribed', '2026-05-22 23:44:50', '2026-05-22 23:44:50'),
(40, 'mark.heldt@vacationclub.com', NULL, 'subscribed', '2026-05-22 23:50:30', '2026-05-22 23:50:30'),
(41, 'adamss@motorola.com', NULL, 'subscribed', '2026-05-22 23:56:22', '2026-05-22 23:56:22'),
(42, 'gpreisman@cce-inc.com', NULL, 'subscribed', '2026-05-23 00:02:25', '2026-05-23 00:02:25'),
(43, 'jkreider@cpabr.com', NULL, 'subscribed', '2026-05-23 00:09:14', '2026-05-23 00:09:14'),
(44, 'robert.bramlet@gmail.com', NULL, 'subscribed', '2026-05-23 00:41:32', '2026-05-23 00:41:32'),
(45, 'greeves@campusboxmedia.com', NULL, 'subscribed', '2026-05-23 00:59:21', '2026-05-23 00:59:21'),
(46, 'dab@freese.com', NULL, 'subscribed', '2026-05-23 01:09:09', '2026-05-23 01:09:09'),
(47, 'lwhelan@ellisdon.com', NULL, 'subscribed', '2026-05-23 01:12:49', '2026-05-23 01:12:49'),
(48, 'sarah.laurent@schreiberfoods.com', NULL, 'subscribed', '2026-05-23 01:16:56', '2026-05-23 01:16:56'),
(49, 'linda.hassan@cwservices.com', NULL, 'subscribed', '2026-05-23 01:20:19', '2026-05-23 01:20:19'),
(50, 'manoj.sawant@oilstates.com', NULL, 'subscribed', '2026-05-23 01:24:08', '2026-05-23 01:24:08'),
(51, 'rockn116@msn.com', NULL, 'subscribed', '2026-05-23 01:28:17', '2026-05-23 01:28:17'),
(52, 'FISCHERWYO@MSN.COM', NULL, 'subscribed', '2026-05-23 01:34:38', '2026-05-23 01:34:38'),
(53, 'ZOULETHGONZALEZ@OUTLOOK.COM', NULL, 'subscribed', '2026-05-23 02:03:06', '2026-05-23 02:03:06'),
(54, 'chad@rivercityrush.com', NULL, 'subscribed', '2026-05-23 02:11:44', '2026-05-23 02:11:44'),
(55, 'ricksultra@hotmail.com', NULL, 'subscribed', '2026-05-23 02:44:34', '2026-05-23 02:44:34'),
(56, 'atifjee786@gmail.com', NULL, 'subscribed', '2026-05-23 03:16:19', '2026-05-23 03:16:19'),
(57, 'cross@ironmanparts.com', NULL, 'subscribed', '2026-05-23 04:14:29', '2026-05-23 04:14:29'),
(58, 'bev520@aol.com', NULL, 'subscribed', '2026-05-23 05:07:31', '2026-05-23 05:07:31'),
(59, 'dshaye@yahoo.com', NULL, 'subscribed', '2026-05-23 07:08:58', '2026-05-23 07:08:58'),
(60, 'peggyjgeiger@gmail.com', NULL, 'subscribed', '2026-05-23 09:34:51', '2026-05-23 09:34:51'),
(61, 'dave.eisler@hotmail.com', NULL, 'subscribed', '2026-05-23 11:56:05', '2026-05-23 11:56:05'),
(62, 'sheri@flvero.com', NULL, 'subscribed', '2026-05-23 14:45:21', '2026-05-23 14:45:21'),
(63, 'info@momentsmadeco.net', NULL, 'subscribed', '2026-05-23 15:05:31', '2026-05-23 15:05:31'),
(64, '1tom.dillon@gmail.com', NULL, 'subscribed', '2026-05-23 15:23:41', '2026-05-23 15:23:41'),
(65, 'beatricemagistro@gmail.com', NULL, 'subscribed', '2026-05-23 15:53:30', '2026-05-23 15:53:30'),
(66, 'elissa_smith2003@yahoo.com', NULL, 'subscribed', '2026-05-23 17:51:45', '2026-05-23 17:51:45'),
(67, 'maxwoodmont@aol.com', NULL, 'subscribed', '2026-05-23 19:03:25', '2026-05-23 19:03:25'),
(68, 'cassandre.eliacin93@gmail.com', NULL, 'subscribed', '2026-05-23 20:16:24', '2026-05-23 20:16:24'),
(69, 'arce.diego13@live.com', NULL, 'subscribed', '2026-05-23 20:44:48', '2026-05-23 20:44:48'),
(70, 'heathertodd@earthlink.net', NULL, 'subscribed', '2026-05-23 21:21:57', '2026-05-23 21:21:57'),
(71, 'rtalkington@geospherenh.com', NULL, 'subscribed', '2026-05-23 22:40:17', '2026-05-23 22:40:17'),
(72, 'brookealdrich@gmail.com', NULL, 'subscribed', '2026-05-24 00:40:40', '2026-05-24 00:40:40'),
(73, 'kmilne88@gmail.com', NULL, 'subscribed', '2026-05-24 02:10:09', '2026-05-24 02:10:09'),
(74, 'acrews112609@gmail.com', NULL, 'subscribed', '2026-05-24 03:24:58', '2026-05-24 03:24:58'),
(75, 'outlaww01@yahoo.com', NULL, 'subscribed', '2026-05-24 04:40:39', '2026-05-24 04:40:39'),
(76, 'dave.stanfield@rockfordchristian.org', NULL, 'subscribed', '2026-05-24 06:48:13', '2026-05-24 06:48:13'),
(77, 'jessicaglover1989@yahoo.com', NULL, 'subscribed', '2026-05-24 09:14:55', '2026-05-24 09:14:55'),
(78, 'abbibertalotto@gmail.com', NULL, 'subscribed', '2026-05-24 10:50:13', '2026-05-24 10:50:13'),
(79, 'rmeisenbach53@hotmail.com', NULL, 'subscribed', '2026-05-24 12:18:16', '2026-05-24 12:18:16'),
(80, 'egonzalez060518@gmail.com', NULL, 'subscribed', '2026-05-24 13:35:01', '2026-05-24 13:35:01'),
(81, 'm_a_drum@hotmail.com', NULL, 'subscribed', '2026-05-24 14:52:20', '2026-05-24 14:52:20'),
(82, 'kylie.mcgeoch@gmail.com', NULL, 'subscribed', '2026-05-24 16:35:47', '2026-05-24 16:35:47'),
(83, 'jared.sullivan13@gmail.com', NULL, 'subscribed', '2026-05-24 17:31:05', '2026-05-24 17:31:05'),
(84, 'cordellborchardt@comcast.net', NULL, 'subscribed', '2026-05-24 21:36:21', '2026-05-24 21:36:21'),
(85, 'philbylewis@outlook.com', NULL, 'subscribed', '2026-05-24 22:39:58', '2026-05-24 22:39:58'),
(86, 'lbleile@espi.ca', NULL, 'subscribed', '2026-05-24 23:43:48', '2026-05-24 23:43:48'),
(87, 'rebeccacox16@hotmail.com', NULL, 'subscribed', '2026-05-25 03:19:43', '2026-05-25 03:19:43'),
(88, 'lrvalles@hotmail.com', NULL, 'subscribed', '2026-05-25 07:36:44', '2026-05-25 07:36:44'),
(89, 'deepace1030@gmail.com', NULL, 'subscribed', '2026-05-25 08:21:43', '2026-05-25 08:21:43'),
(90, 'kirbygusa@yahoo.com', NULL, 'subscribed', '2026-05-25 09:34:29', '2026-05-25 09:34:29'),
(91, 'brsherer@yahoo.com', NULL, 'subscribed', '2026-05-25 10:32:15', '2026-05-25 10:32:15'),
(92, 'hannaka615@yahoo.com', NULL, 'subscribed', '2026-05-25 14:10:04', '2026-05-25 14:10:04'),
(93, 'yvonne.sandell@gmail.com', NULL, 'subscribed', '2026-05-25 16:35:46', '2026-05-25 16:35:46'),
(94, 'henice22@yahoo.com', NULL, 'subscribed', '2026-05-25 18:20:55', '2026-05-25 18:20:55'),
(95, 'brenthebel@yahoo.com', NULL, 'subscribed', '2026-05-25 19:03:01', '2026-05-25 19:03:01'),
(96, 'gnlttsju@immenseignite.info', NULL, 'subscribed', '2026-05-25 19:07:11', '2026-05-25 19:07:11'),
(97, 'tpjdmgxm@immenseignite.info', NULL, 'subscribed', '2026-05-25 19:07:12', '2026-05-25 19:07:12'),
(98, 'rivuwhuh@immenseignite.info', NULL, 'subscribed', '2026-05-25 19:07:16', '2026-05-25 19:07:16'),
(99, 'hvyergyf@immenseignite.info', NULL, 'subscribed', '2026-05-25 19:07:37', '2026-05-25 19:07:37'),
(100, 'udhvokxk@immenseignite.info', NULL, 'subscribed', '2026-05-25 19:07:55', '2026-05-25 19:07:55'),
(101, 'sergeyzaitsev404@proton.me', NULL, 'subscribed', '2026-05-25 19:15:55', '2026-05-25 19:15:55'),
(102, 'keri-n-jonathan827@hotmail.com', NULL, 'subscribed', '2026-05-25 19:15:57', '2026-05-25 19:15:57'),
(103, 'jalunness@hotmail.com', NULL, 'subscribed', '2026-05-25 19:33:56', '2026-05-25 19:33:56'),
(104, 'marshakipp@gmail.com', NULL, 'subscribed', '2026-05-25 19:52:33', '2026-05-25 19:52:33'),
(105, 'larrylonda63@gmail.com', NULL, 'subscribed', '2026-05-25 19:53:08', '2026-05-25 19:53:08'),
(106, 'marjean.szyaula@gmail.com', NULL, 'subscribed', '2026-05-25 20:42:28', '2026-05-25 20:42:28'),
(107, 'c.ray.jones08@gmail.com', NULL, 'subscribed', '2026-05-25 21:06:08', '2026-05-25 21:06:08'),
(108, 'ravaldez@santaclarapueblo.org', NULL, 'subscribed', '2026-05-25 21:20:48', '2026-05-25 21:20:48'),
(109, 'jlandis001@columbus.rr.com', NULL, 'subscribed', '2026-05-25 21:31:19', '2026-05-25 21:31:19'),
(110, 'dlyddane1@gmail.com', NULL, 'subscribed', '2026-05-25 21:31:20', '2026-05-25 21:31:20'),
(111, 'BPAGAN@VIKINGFENCE.COM', NULL, 'subscribed', '2026-05-25 21:45:52', '2026-05-25 21:45:52'),
(112, 'MEDISKIN@DISKINENTERPRISES.COM', NULL, 'subscribed', '2026-05-25 21:57:31', '2026-05-25 21:57:31'),
(113, 'bjs6981@aol.com', NULL, 'subscribed', '2026-05-25 21:57:32', '2026-05-25 21:57:32'),
(114, 'mike661810@gmail.com', NULL, 'subscribed', '2026-05-25 21:57:35', '2026-05-25 21:57:35'),
(115, 'staceylevy@sympatico.ca', NULL, 'subscribed', '2026-05-25 22:06:29', '2026-05-25 22:06:29'),
(116, 'abak@dell.com', NULL, 'subscribed', '2026-05-25 22:18:10', '2026-05-25 22:18:10'),
(117, 'nicolas@amores.bo', NULL, 'subscribed', '2026-05-25 22:30:50', '2026-05-25 22:30:50'),
(118, 'jlawyer@pacificcrest.us', NULL, 'subscribed', '2026-05-25 23:05:12', '2026-05-25 23:05:12'),
(119, 'michelcanna@aol.com', NULL, 'subscribed', '2026-05-25 23:05:30', '2026-05-25 23:05:30'),
(120, 'dmuchowski@twp.mountholly.nj.us', NULL, 'subscribed', '2026-05-25 23:40:47', '2026-05-25 23:40:47'),
(121, 'liam.shissler@co.snohomish.wa.us', NULL, 'subscribed', '2026-05-26 01:01:58', '2026-05-26 01:01:58'),
(122, 'phatman1@sympatico.ca', NULL, 'subscribed', '2026-05-26 01:33:05', '2026-05-26 01:33:05'),
(123, 'danwkremer@gmail.com', NULL, 'subscribed', '2026-05-26 02:34:59', '2026-05-26 02:34:59'),
(124, 'janet.uson@ymail.com', NULL, 'subscribed', '2026-05-26 02:35:00', '2026-05-26 02:35:00'),
(125, 'kzau41@gmail.com', NULL, 'subscribed', '2026-05-26 02:35:00', '2026-05-26 02:35:00'),
(126, 'omaremera1992@gmail.com', NULL, 'subscribed', '2026-05-26 03:34:33', '2026-05-26 03:34:33'),
(127, 'splaster@gctel.com', NULL, 'subscribed', '2026-05-26 04:02:32', '2026-05-26 04:02:32'),
(128, 'salomones1976@gmail.com', NULL, 'subscribed', '2026-05-26 04:02:32', '2026-05-26 04:02:32'),
(129, 'DBAKER@USTCORP.NET', NULL, 'subscribed', '2026-05-26 04:23:21', '2026-05-26 04:23:21'),
(130, 'gaya.shai13@gmail.com', NULL, 'subscribed', '2026-05-26 04:49:51', '2026-05-26 04:49:51'),
(131, 'beneb007@gmail.com', NULL, 'subscribed', '2026-05-26 06:02:53', '2026-05-26 06:02:53'),
(132, 'oquispepareja@gmail.com', NULL, 'subscribed', '2026-05-26 06:03:20', '2026-05-26 06:03:20'),
(133, 'shelleydm@gmail.com', NULL, 'subscribed', '2026-05-26 06:43:03', '2026-05-26 06:43:03'),
(134, 'saokorentacar@gmail.com', NULL, 'subscribed', '2026-05-26 07:02:42', '2026-05-26 07:02:42'),
(135, 'scrapper4012@gmail.com', NULL, 'subscribed', '2026-05-26 07:02:43', '2026-05-26 07:02:43'),
(136, 'pgardill@gmail.com', NULL, 'subscribed', '2026-05-26 07:02:43', '2026-05-26 07:02:43'),
(137, 'gregness10@gmail.com', NULL, 'subscribed', '2026-05-26 07:20:24', '2026-05-26 07:20:24'),
(138, 'sandy500sl@aol.com', NULL, 'subscribed', '2026-05-26 07:34:31', '2026-05-26 07:34:31'),
(139, 'zr16@rice.edu', NULL, 'subscribed', '2026-05-26 07:34:32', '2026-05-26 07:34:32'),
(140, 'quinnsprengeler@frontier.com', NULL, 'subscribed', '2026-05-26 07:53:35', '2026-05-26 07:53:35'),
(141, 'shani.jinks@outlook.com', NULL, 'subscribed', '2026-05-26 08:05:56', '2026-05-26 08:05:56'),
(142, 'rkreynosa@gmail.com', NULL, 'subscribed', '2026-05-26 08:05:59', '2026-05-26 08:05:59'),
(143, 'huckjean@verizon.net', NULL, 'subscribed', '2026-05-26 08:27:08', '2026-05-26 08:27:08'),
(144, 'mkt8801@gmail.com', NULL, 'subscribed', '2026-05-26 08:49:34', '2026-05-26 08:49:34'),
(145, 'whitney.mcmahon@gmail.com', NULL, 'subscribed', '2026-05-26 08:50:45', '2026-05-26 08:50:45'),
(146, 'irish3501@gmail.com', NULL, 'subscribed', '2026-05-26 09:11:33', '2026-05-26 09:11:33'),
(147, 'alexandraback@peoplepc.com', NULL, 'subscribed', '2026-05-26 09:27:12', '2026-05-26 09:27:12'),
(148, 'sknight0227@gmail.com', NULL, 'subscribed', '2026-05-26 09:27:16', '2026-05-26 09:27:16'),
(149, 'irabati.xaverian@gmail.com', NULL, 'subscribed', '2026-05-26 10:12:35', '2026-05-26 10:12:35'),
(150, 'meet2ashis@gmail.com', NULL, 'subscribed', '2026-05-26 10:12:36', '2026-05-26 10:12:36'),
(151, 'barbaracarlson721@gmail.com', NULL, 'subscribed', '2026-05-26 11:52:59', '2026-05-26 11:52:59'),
(152, 'beardkah@hotmail.com', NULL, 'subscribed', '2026-05-26 12:32:03', '2026-05-26 12:32:03'),
(153, 'grandpa.danner@gmail.com', NULL, 'subscribed', '2026-05-26 13:34:38', '2026-05-26 13:34:38'),
(154, 'naderpourmand@gmail.com', NULL, 'subscribed', '2026-05-26 14:05:20', '2026-05-26 14:05:20'),
(155, 'ractaylor@msn.com', NULL, 'subscribed', '2026-05-26 14:05:51', '2026-05-26 14:05:51'),
(156, 'sweetgirl891.nw@gmail.com', NULL, 'subscribed', '2026-05-26 14:05:54', '2026-05-26 14:05:54'),
(157, 'nataliealfonso05@gmail.com', NULL, 'subscribed', '2026-05-26 14:53:14', '2026-05-26 14:53:14'),
(158, 'mrs1caddy@live.com', NULL, 'subscribed', '2026-05-26 15:16:55', '2026-05-26 15:16:55'),
(159, 'davethecommish@gmail.com', NULL, 'subscribed', '2026-05-26 15:16:56', '2026-05-26 15:16:56'),
(160, 'quigs1600@gmail.com', NULL, 'subscribed', '2026-05-26 15:17:02', '2026-05-26 15:17:02'),
(161, 'krhughes@charter.net', NULL, 'subscribed', '2026-05-26 15:52:34', '2026-05-26 15:52:34'),
(162, 'me@jeffreyhyman.com', NULL, 'subscribed', '2026-05-26 16:23:00', '2026-05-26 16:23:00'),
(163, 'leleicoyle@gmail.com', NULL, 'subscribed', '2026-05-26 16:23:31', '2026-05-26 16:23:31'),
(164, 'hattie.chen@mdpi.com', NULL, 'subscribed', '2026-05-26 16:39:47', '2026-05-26 16:39:47'),
(165, 'celine.teniere@ferrero.com', NULL, 'subscribed', '2026-05-26 16:39:50', '2026-05-26 16:39:50'),
(166, 'eric.delory@suhner.com', NULL, 'subscribed', '2026-05-26 16:39:53', '2026-05-26 16:39:53'),
(167, 'sakshidureja08@gmail.com', NULL, 'subscribed', '2026-05-26 16:45:39', '2026-05-26 16:45:39'),
(168, 'ralph.bernardiii@gmail.com', NULL, 'subscribed', '2026-05-26 16:55:56', '2026-05-26 16:55:56'),
(169, 'agonal2001@gmail.com', NULL, 'subscribed', '2026-05-26 17:14:50', '2026-05-26 17:14:50'),
(170, 'wendy.aldrich@gmail.com', NULL, 'subscribed', '2026-05-26 17:45:58', '2026-05-26 17:45:58'),
(171, 'pgrichardson@shaw.ca', NULL, 'subscribed', '2026-05-26 17:45:58', '2026-05-26 17:45:58'),
(172, 'r@shaw.ca', NULL, 'subscribed', '2026-05-26 17:45:58', '2026-05-26 17:45:58'),
(173, 'nabarjyc@schaeffler.com', NULL, 'subscribed', '2026-05-26 18:26:58', '2026-05-26 18:26:58'),
(174, 'camille.wisniewski@kartesia.com', NULL, 'subscribed', '2026-05-26 18:31:24', '2026-05-26 18:31:24'),
(175, 'biba@iom.int', NULL, 'subscribed', '2026-05-26 18:31:31', '2026-05-26 18:31:31'),
(176, 'brijesh.tiwari@andritz.com', NULL, 'subscribed', '2026-05-26 18:31:33', '2026-05-26 18:31:33'),
(177, 'gaby.sperl@tkelevator.com', NULL, 'subscribed', '2026-05-26 18:39:25', '2026-05-26 18:39:25'),
(178, 'c.pigors@teigwaren-riesa.de', NULL, 'subscribed', '2026-05-26 18:39:25', '2026-05-26 18:39:25'),
(179, 'rachel.liu@mdpi.com', NULL, 'subscribed', '2026-05-26 18:44:33', '2026-05-26 18:44:33'),
(180, 'nick.lee@traxys.com', NULL, 'subscribed', '2026-05-26 18:53:19', '2026-05-26 18:53:19'),
(181, 'n.sack@aurora-kunststoffe.de', NULL, 'subscribed', '2026-05-26 18:54:34', '2026-05-26 18:54:34'),
(182, 'mayr.stefan@fronius.com', NULL, 'subscribed', '2026-05-26 18:59:31', '2026-05-26 18:59:31'),
(183, 'jnoel4111@aol.com', NULL, 'subscribed', '2026-05-26 19:03:49', '2026-05-26 19:03:49'),
(184, 'zanychc@msn.com', NULL, 'subscribed', '2026-05-26 19:03:51', '2026-05-26 19:03:51'),
(185, 'amit.kumar5@andritz.com', NULL, 'subscribed', '2026-05-26 19:09:34', '2026-05-26 19:09:34'),
(186, 'jgherman@sympatico.ca', NULL, 'subscribed', '2026-05-26 19:15:37', '2026-05-26 19:15:37'),
(187, 'jeremy@thebikeinn.com', NULL, 'subscribed', '2026-05-26 19:42:55', '2026-05-26 19:42:55'),
(188, 'kwakefield@ohiocat.com', NULL, 'subscribed', '2026-05-26 20:28:24', '2026-05-26 20:28:24'),
(189, 'kristi.weston@4frontes.com', NULL, 'subscribed', '2026-05-26 20:28:34', '2026-05-26 20:28:34'),
(190, 'kpearson@novaecorp.com', NULL, 'subscribed', '2026-05-26 20:28:50', '2026-05-26 20:28:50'),
(191, 'gabriel.fernandez@wago.com', NULL, 'subscribed', '2026-05-26 20:37:28', '2026-05-26 20:37:28'),
(192, 'anthony.westfield@shapetechnologies.com', NULL, 'subscribed', '2026-05-26 20:40:03', '2026-05-26 20:40:03'),
(193, 'awilliams@shapetechnologies.com', NULL, 'subscribed', '2026-05-26 20:40:05', '2026-05-26 20:40:05'),
(194, 'bcowell@ohiocat.com', NULL, 'subscribed', '2026-05-26 20:40:08', '2026-05-26 20:40:08'),
(195, 'jimmy.scott@dhpace.com', NULL, 'subscribed', '2026-05-26 20:43:11', '2026-05-26 20:43:11'),
(196, 'lisa.moloney@opwglobal.com', NULL, 'subscribed', '2026-05-26 20:44:55', '2026-05-26 20:44:55'),
(197, 'lteter@weldmaster.com', NULL, 'subscribed', '2026-05-26 20:44:59', '2026-05-26 20:44:59'),
(198, 'mason.irvin@shickesteve.com', NULL, 'subscribed', '2026-05-26 20:45:00', '2026-05-26 20:45:00'),
(199, 'cshoppell@pts-tools.com', NULL, 'subscribed', '2026-05-26 20:48:04', '2026-05-26 20:48:04'),
(200, 'matt.colyar@wagstaff.com', NULL, 'subscribed', '2026-05-26 20:50:51', '2026-05-26 20:50:51'),
(201, 'mgerber@weldmaster.com', NULL, 'subscribed', '2026-05-26 20:51:06', '2026-05-26 20:51:06'),
(202, 'scott.schauer@wago.com', NULL, 'subscribed', '2026-05-26 20:51:29', '2026-05-26 20:51:29'),
(203, 'chatfield@wieseusa.com', NULL, 'subscribed', '2026-05-26 20:55:19', '2026-05-26 20:55:19'),
(204, 'jonathan.hage@putzmeister.com', NULL, 'subscribed', '2026-05-26 20:58:01', '2026-05-26 20:58:01'),
(205, 'kkohler@ohiocat.com', NULL, 'subscribed', '2026-05-26 20:58:02', '2026-05-26 20:58:02'),
(206, 'lsnyder@wenger.com', NULL, 'subscribed', '2026-05-26 20:58:04', '2026-05-26 20:58:04'),
(207, 'ahaas@wieseusa.com', NULL, 'subscribed', '2026-05-26 21:00:26', '2026-05-26 21:00:26'),
(208, 'rkern@cummins-wagner.com', NULL, 'subscribed', '2026-05-26 21:02:01', '2026-05-26 21:02:01'),
(209, 'rroth@davis-standard.com', NULL, 'subscribed', '2026-05-26 21:02:01', '2026-05-26 21:02:01'),
(210, 'snye@assertiotx.com', NULL, 'subscribed', '2026-05-26 21:05:01', '2026-05-26 21:05:01'),
(211, 'eric.schussler@cpm.net', NULL, 'subscribed', '2026-05-26 21:06:00', '2026-05-26 21:06:00'),
(212, 'djongsma@fedsig.com', NULL, 'subscribed', '2026-05-26 21:06:01', '2026-05-26 21:06:01'),
(213, 'dlorenc@davis-standard.com', NULL, 'subscribed', '2026-05-26 21:06:01', '2026-05-26 21:06:01'),
(214, 'nicole.idzikowski@convergixautomation.com', NULL, 'subscribed', '2026-05-26 21:07:26', '2026-05-26 21:07:26'),
(215, 'jmaynard@avidbio.com', NULL, 'subscribed', '2026-05-26 21:09:24', '2026-05-26 21:09:24'),
(216, 'kaitlyn.martin@acreageholdings.com', NULL, 'subscribed', '2026-05-26 21:11:53', '2026-05-26 21:11:53'),
(217, 'jtotten@davis-standard.com', NULL, 'subscribed', '2026-05-26 21:11:54', '2026-05-26 21:11:54'),
(218, 'jozsef.nagy@cognex.com', NULL, 'subscribed', '2026-05-26 21:11:54', '2026-05-26 21:11:54'),
(219, 'cooper.hayes@cpm.net', NULL, 'subscribed', '2026-05-26 21:15:19', '2026-05-26 21:15:19'),
(220, 'johnson60948@yahoo.com', NULL, 'subscribed', '2026-05-26 21:17:36', '2026-05-26 21:17:36'),
(221, 'volkovkatie@gmail.com', NULL, 'subscribed', '2026-05-26 21:22:32', '2026-05-26 21:22:32'),
(222, 'kathy.kxiong16@gmail.com', NULL, 'subscribed', '2026-05-26 21:38:16', '2026-05-26 21:38:16'),
(223, 'blueheaven211@gmail.com', NULL, 'subscribed', '2026-05-26 21:38:50', '2026-05-26 21:38:50'),
(224, 'microgameming@gmail.com', NULL, 'subscribed', '2026-05-26 22:38:34', '2026-05-26 22:38:34'),
(225, 'azharuddinahmed1965@gmail.com', NULL, 'subscribed', '2026-05-26 23:14:55', '2026-05-26 23:14:55'),
(226, 'jaynaieward2002@gmail.com', NULL, 'subscribed', '2026-05-26 23:14:58', '2026-05-26 23:14:58'),
(227, 'laguila5@visteon.com', NULL, 'subscribed', '2026-05-26 23:31:03', '2026-05-26 23:31:03'),
(228, 'kelly.preece@mannington.com', NULL, 'subscribed', '2026-05-26 23:31:05', '2026-05-26 23:31:05'),
(229, 'katherine_rocheleau@vfc.com', NULL, 'subscribed', '2026-05-26 23:31:19', '2026-05-26 23:31:19'),
(230, 'amol.bane@nord.com', NULL, 'subscribed', '2026-05-26 23:36:10', '2026-05-26 23:36:10'),
(231, 'andres.torres@valmont.com', NULL, 'subscribed', '2026-05-26 23:36:10', '2026-05-26 23:36:10'),
(232, 'ahobbs@cce-inc.com', NULL, 'subscribed', '2026-05-26 23:36:11', '2026-05-26 23:36:11'),
(233, 'nirali.mehta@verifone.com', NULL, 'subscribed', '2026-05-26 23:39:21', '2026-05-26 23:39:21'),
(234, 'bfullmer@echo.com', NULL, 'subscribed', '2026-05-26 23:41:13', '2026-05-26 23:41:13'),
(235, 'bculkin@briscoeprotective.com', NULL, 'subscribed', '2026-05-26 23:41:17', '2026-05-26 23:41:17'),
(236, 'naveen.chillara@freese.com', NULL, 'subscribed', '2026-05-26 23:44:32', '2026-05-26 23:44:32'),
(237, 'efujii@cooperstandard.com', NULL, 'subscribed', '2026-05-26 23:46:44', '2026-05-26 23:46:44'),
(238, 'gerald.folds@southwire.com', NULL, 'subscribed', '2026-05-26 23:46:46', '2026-05-26 23:46:46'),
(239, 'aaron.knight@scjalliance.com', NULL, 'subscribed', '2026-05-26 23:49:45', '2026-05-26 23:49:45'),
(240, 'crussell@scriptpro.com', NULL, 'subscribed', '2026-05-26 23:53:42', '2026-05-26 23:53:42'),
(241, 'amandatucker584@gmail.com', NULL, 'subscribed', '2026-05-26 23:53:43', '2026-05-26 23:53:43'),
(242, 'hcain@radwell.com', NULL, 'subscribed', '2026-05-26 23:59:11', '2026-05-26 23:59:11'),
(243, 'jgammage@radwell.com', NULL, 'subscribed', '2026-05-27 00:02:49', '2026-05-27 00:02:49'),
(244, 'jeffrey.mills@stollemachinery.com', NULL, 'subscribed', '2026-05-27 00:02:49', '2026-05-27 00:02:49'),
(245, 'jimmy.murphy@ringpower.com', NULL, 'subscribed', '2026-05-27 00:02:50', '2026-05-27 00:02:50'),
(246, 'denniscoley02@gmail.com', NULL, 'subscribed', '2026-05-27 00:08:00', '2026-05-27 00:08:00'),
(247, 'bernhardtlockner@sbcglobal.net', NULL, 'subscribed', '2026-05-27 00:28:03', '2026-05-27 00:28:03'),
(248, 'teddyr@stotzeq.com', NULL, 'subscribed', '2026-05-27 00:47:32', '2026-05-27 00:47:32'),
(249, 'thaelfrisch@rands.com', NULL, 'subscribed', '2026-05-27 00:59:27', '2026-05-27 00:59:27'),
(250, 'taryn.lapointe@us.sumitomo-pharma.com', NULL, 'subscribed', '2026-05-27 00:59:41', '2026-05-27 00:59:41'),
(251, 'cphillips55@verizon.net', NULL, 'subscribed', '2026-05-27 01:24:47', '2026-05-27 01:24:47'),
(252, 'leidyramirezb@hotmail.com', NULL, 'subscribed', '2026-05-27 01:36:38', '2026-05-27 01:36:38'),
(253, 'leannodonnell@gmail.com', NULL, 'subscribed', '2026-05-27 01:36:39', '2026-05-27 01:36:39'),
(254, 'arundles@rundlesandassociates.com', NULL, 'subscribed', '2026-05-27 01:43:09', '2026-05-27 01:43:09'),
(255, 'amanda@roperwhitney.com', NULL, 'subscribed', '2026-05-27 01:47:36', '2026-05-27 01:47:36'),
(256, 'alecia.sistrunk@us.sumitomo-pharma.com', NULL, 'subscribed', '2026-05-27 01:47:38', '2026-05-27 01:47:38'),
(257, 'ameans@stotzeq.com', NULL, 'subscribed', '2026-05-27 01:47:49', '2026-05-27 01:47:49'),
(258, 'bbogers@stotzeq.com', NULL, 'subscribed', '2026-05-27 01:52:42', '2026-05-27 01:52:42'),
(259, 'aburke@rosenboom.com', NULL, 'subscribed', '2026-05-27 01:57:54', '2026-05-27 01:57:54'),
(260, 'solobd87@yahoo.com', NULL, 'subscribed', '2026-05-27 02:20:45', '2026-05-27 02:20:45'),
(261, 'lizsoares628@gmail.com', NULL, 'subscribed', '2026-05-27 02:41:18', '2026-05-27 02:41:18'),
(262, 'grace.verdeja@protonmail.com', NULL, 'subscribed', '2026-05-27 02:41:19', '2026-05-27 02:41:19'),
(263, 'rameeny@goldencoastco.com', NULL, 'subscribed', '2026-05-27 02:42:14', '2026-05-27 02:42:14'),
(264, 'joegold2003@yahoo.com', NULL, 'subscribed', '2026-05-27 03:29:53', '2026-05-27 03:29:53'),
(265, 'lfarlow70@icloud.com', NULL, 'subscribed', '2026-05-27 03:37:21', '2026-05-27 03:37:21'),
(266, 'lrrylucas8@aol.com', NULL, 'subscribed', '2026-05-27 03:57:32', '2026-05-27 03:57:32'),
(267, 'ss0583261505@gmail.com', NULL, 'subscribed', '2026-05-27 04:46:42', '2026-05-27 04:46:42'),
(268, 'hmchab.dmd@gmail.com', NULL, 'subscribed', '2026-05-27 06:17:48', '2026-05-27 06:17:48'),
(269, 'j_ringe@msn.com', NULL, 'subscribed', '2026-05-27 06:34:11', '2026-05-27 06:34:11'),
(270, 'nived797@gmail.com', NULL, 'subscribed', '2026-05-27 06:34:23', '2026-05-27 06:34:23'),
(271, 'baylor25@aol.com', NULL, 'subscribed', '2026-05-27 07:01:24', '2026-05-27 07:01:24'),
(272, 'lfrazier09@charter.net', NULL, 'subscribed', '2026-05-27 07:37:40', '2026-05-27 07:37:40'),
(273, 'deborahw2a@msn.com', NULL, 'subscribed', '2026-05-27 07:37:42', '2026-05-27 07:37:42'),
(274, 'jpsmith12@gmail.com', NULL, 'subscribed', '2026-05-27 07:38:11', '2026-05-27 07:38:11'),
(275, 'giselacooper@yahoo.com', NULL, 'subscribed', '2026-05-27 08:02:46', '2026-05-27 08:02:46'),
(276, 'chinadoll7566@yahoo.com', NULL, 'subscribed', '2026-05-27 08:41:45', '2026-05-27 08:41:45'),
(277, 'wsarathy@gmail.com', NULL, 'subscribed', '2026-05-27 08:41:46', '2026-05-27 08:41:46'),
(278, 'kingsrow55@gmail.com', NULL, 'subscribed', '2026-05-27 08:41:47', '2026-05-27 08:41:47'),
(279, 'bobby.smith@gmail.com', NULL, 'subscribed', '2026-05-27 09:16:25', '2026-05-27 09:16:25'),
(280, 'tondagalvez@gmail.com', NULL, 'subscribed', '2026-05-27 09:17:31', '2026-05-27 09:17:31'),
(281, 'ademiltonrocha@hotmail.com', NULL, 'subscribed', '2026-05-27 09:39:45', '2026-05-27 09:39:45'),
(282, 'hpmellor@gmail.com', NULL, 'subscribed', '2026-05-27 09:39:45', '2026-05-27 09:39:45'),
(283, 'dkeon@yahoo.com', NULL, 'subscribed', '2026-05-27 09:39:46', '2026-05-27 09:39:46'),
(284, 'julierlambert@gmail.com', NULL, 'subscribed', '2026-05-27 10:12:20', '2026-05-27 10:12:20'),
(285, 'salman_nadeem4@yahoo.co.uk', NULL, 'subscribed', '2026-05-27 10:12:22', '2026-05-27 10:12:22'),
(286, 'rah4408@aol.co', NULL, 'subscribed', '2026-05-27 10:51:56', '2026-05-27 10:51:56'),
(287, 'm2cruising@yahoo.com', NULL, 'subscribed', '2026-05-27 11:42:25', '2026-05-27 11:42:25'),
(288, 'lukefisher47@gmail.com', NULL, 'subscribed', '2026-05-27 11:43:04', '2026-05-27 11:43:04'),
(289, 'karenchen.tpe@gmail.com', NULL, 'subscribed', '2026-05-27 11:43:14', '2026-05-27 11:43:14'),
(290, 'dexterbecklund@gmail.com', NULL, 'subscribed', '2026-05-27 12:11:25', '2026-05-27 12:11:25'),
(291, 'grasshopper314159@gmail.com', NULL, 'subscribed', '2026-05-27 12:37:47', '2026-05-27 12:37:47'),
(292, 'deevy.bhimani@gmail.com', NULL, 'subscribed', '2026-05-27 12:38:14', '2026-05-27 12:38:14'),
(293, 'wes@wesleynelson.com', NULL, 'subscribed', '2026-05-27 13:26:42', '2026-05-27 13:26:42'),
(294, 'judobuddha@hotmail.com', NULL, 'subscribed', '2026-05-27 13:41:15', '2026-05-27 13:41:15'),
(295, 'andrea.easton94@gmail.com', NULL, 'subscribed', '2026-05-27 13:41:37', '2026-05-27 13:41:37'),
(296, 'bellvino@icloud.com', NULL, 'subscribed', '2026-05-27 13:41:58', '2026-05-27 13:41:58'),
(297, 'nohemi.nunez@consultdss.com', NULL, 'subscribed', '2026-05-27 14:47:32', '2026-05-27 14:47:32'),
(298, 'oliver.petley@traxys.com', NULL, 'subscribed', '2026-05-27 14:47:38', '2026-05-27 14:47:38'),
(299, 'martini6@me.com', NULL, 'subscribed', '2026-05-27 15:06:46', '2026-05-27 15:06:46'),
(300, 'jonkman@interstroom.nl', NULL, 'subscribed', '2026-05-27 15:06:47', '2026-05-27 15:06:47'),
(301, 'amin1799@gmail.com', NULL, 'subscribed', '2026-05-27 15:49:21', '2026-05-27 15:49:21'),
(302, 'carlo.parillo@druckchemie.com', NULL, 'subscribed', '2026-05-27 16:04:48', '2026-05-27 16:04:48'),
(303, 'bram.willemsen@dachser.com', NULL, 'subscribed', '2026-05-27 16:05:01', '2026-05-27 16:05:01'),
(304, 'aurelien.bigot@syngenta.com', NULL, 'subscribed', '2026-05-27 16:05:25', '2026-05-27 16:05:25'),
(305, 'helen.chapman@syngenta.com', NULL, 'subscribed', '2026-05-27 16:09:04', '2026-05-27 16:09:04'),
(306, 'bagalu@gmx.de', NULL, 'subscribed', '2026-05-27 16:12:24', '2026-05-27 16:12:24'),
(307, 'gennaro.cefariello@bizerba.com', NULL, 'subscribed', '2026-05-27 16:12:24', '2026-05-27 16:12:24'),
(308, 'heidi.brand@lekkerland.de', NULL, 'subscribed', '2026-05-27 16:12:30', '2026-05-27 16:12:30'),
(309, 'a.burgstaller@scheuch.com', NULL, 'subscribed', '2026-05-27 16:16:51', '2026-05-27 16:16:51'),
(310, 'andreas.pfitscher@durr.com', NULL, 'subscribed', '2026-05-27 16:20:07', '2026-05-27 16:20:07'),
(311, 'alexander.leroy@vl-rs.com', NULL, 'subscribed', '2026-05-27 16:20:08', '2026-05-27 16:20:08'),
(312, 'alexander.behrend@zueblin.de', NULL, 'subscribed', '2026-05-27 16:20:08', '2026-05-27 16:20:08'),
(313, 'benvindacruz@yahoo.com', NULL, 'subscribed', '2026-05-27 16:46:56', '2026-05-27 16:46:56'),
(314, 'michael.wittler@dekra.com', NULL, 'subscribed', '2026-05-27 17:57:12', '2026-05-27 17:57:12'),
(315, 'michael.kistemann@rewe-group.com', NULL, 'subscribed', '2026-05-27 18:03:35', '2026-05-27 18:03:35'),
(316, 'maurine.zorko@rewe-group.com', NULL, 'subscribed', '2026-05-27 18:03:36', '2026-05-27 18:03:36'),
(317, 'msorlando05@yahoo.com', NULL, 'subscribed', '2026-05-27 18:40:26', '2026-05-27 18:40:26'),
(318, 'pelkeyd@state.gov', NULL, 'subscribed', '2026-05-27 18:41:37', '2026-05-27 18:41:37'),
(319, 'ralph.becker@zueblin.de', NULL, 'subscribed', '2026-05-27 19:10:49', '2026-05-27 19:10:49'),
(320, 'stephen.brearley@ifco.com', NULL, 'subscribed', '2026-05-27 19:15:31', '2026-05-27 19:15:31'),
(321, 'sina.vorwick@smtscharf.com', NULL, 'subscribed', '2026-05-27 19:15:33', '2026-05-27 19:15:33'),
(322, 'stanislav.axt@bhtc.com', NULL, 'subscribed', '2026-05-27 19:15:33', '2026-05-27 19:15:33'),
(323, 'uwe.kaiser@thyssenkrupp.com', NULL, 'subscribed', '2026-05-27 19:20:54', '2026-05-27 19:20:54'),
(324, 'pierina.carriero@omya.com', NULL, 'subscribed', '2026-05-27 19:27:01', '2026-05-27 19:27:01'),
(325, 'ilariakallaverja@gmail.com', NULL, 'subscribed', '2026-05-27 19:40:39', '2026-05-27 19:40:39'),
(326, 'annalisa.meloni.lilliu@gmail.com', NULL, 'subscribed', '2026-05-27 19:40:42', '2026-05-27 19:40:42'),
(327, 'millerchad9069@yahoo.com', NULL, 'subscribed', '2026-05-27 19:40:44', '2026-05-27 19:40:44'),
(328, 'madison.ashley@stihl.us', NULL, 'subscribed', '2026-05-27 19:50:40', '2026-05-27 19:50:40'),
(329, 'barbdavis501@gmail.com', NULL, 'subscribed', '2026-05-27 19:55:10', '2026-05-27 19:55:10'),
(330, 'matthew.quelch@stihl.us', NULL, 'subscribed', '2026-05-27 20:00:09', '2026-05-27 20:00:09'),
(331, 'mchristenbury@carolinacat.com', NULL, 'subscribed', '2026-05-27 20:01:52', '2026-05-27 20:01:52'),
(332, 'matwer@bradburyco.com', NULL, 'subscribed', '2026-05-27 20:01:53', '2026-05-27 20:01:53'),
(333, 'mervat.elrafei@bradmanlake.com', NULL, 'subscribed', '2026-05-27 20:01:54', '2026-05-27 20:01:54'),
(334, 'towen@calvaryrobotics.com', NULL, 'subscribed', '2026-05-27 20:04:12', '2026-05-27 20:04:12'),
(335, 'summerhope3@gmail.com', NULL, 'subscribed', '2026-05-27 20:08:21', '2026-05-27 20:08:21'),
(336, 'marty.bare@bradyservices.com', NULL, 'subscribed', '2026-05-27 20:10:01', '2026-05-27 20:10:01'),
(337, 'mark.watson@cwbearing.com', NULL, 'subscribed', '2026-05-27 20:10:32', '2026-05-27 20:10:32'),
(338, 'rargo@bannerengineering.com', NULL, 'subscribed', '2026-05-27 20:13:18', '2026-05-27 20:13:18'),
(339, 'pepsi.jimenez@blastone.com', NULL, 'subscribed', '2026-05-27 20:19:16', '2026-05-27 20:19:16'),
(340, 'sean.williamsb@gmail.com', NULL, 'subscribed', '2026-05-27 20:24:23', '2026-05-27 20:24:23'),
(341, 'nbelmore01@gmail.com', NULL, 'subscribed', '2026-05-27 20:24:23', '2026-05-27 20:24:23'),
(342, 'patcloclo@bluewin.ch', NULL, 'subscribed', '2026-05-27 20:24:24', '2026-05-27 20:24:24'),
(343, 'robert.johnson@ssiservicesusa.com', NULL, 'subscribed', '2026-05-27 20:31:03', '2026-05-27 20:31:03'),
(344, 'nancy.huntsman@stollemachinery.com', NULL, 'subscribed', '2026-05-27 20:35:24', '2026-05-27 20:35:24'),
(345, 'mike.pruitt@redlion.net', NULL, 'subscribed', '2026-05-27 20:35:24', '2026-05-27 20:35:24'),
(346, 'nicole.deraimo@shire.com', NULL, 'subscribed', '2026-05-27 20:35:42', '2026-05-27 20:35:42'),
(347, 'jamesnonperdona2003@gmail.com', NULL, 'subscribed', '2026-05-27 20:46:05', '2026-05-27 20:46:05'),
(348, 'csylven@ryderins.ca', NULL, 'subscribed', '2026-05-27 21:11:31', '2026-05-27 21:11:31'),
(349, 'jamestrevoreagle@gmail.com', NULL, 'subscribed', '2026-05-27 21:31:07', '2026-05-27 21:31:07'),
(350, 'kathy.morgan@sabre.com', NULL, 'subscribed', '2026-05-27 21:31:08', '2026-05-27 21:31:08'),
(351, 'info@catchengineering.com', NULL, 'subscribed', '2026-05-27 21:45:27', '2026-05-27 21:45:27'),
(352, 'hartley@catchengineering.com', NULL, 'subscribed', '2026-05-27 21:45:44', '2026-05-27 21:45:44'),
(353, 'a.haas-lw@web.de', NULL, 'subscribed', '2026-05-27 21:57:05', '2026-05-27 21:57:05'),
(354, 'dwolffmom@cox.net', NULL, 'subscribed', '2026-05-27 22:11:33', '2026-05-27 22:11:33'),
(355, 'kjjensen47@gmail.com', NULL, 'subscribed', '2026-05-27 22:11:38', '2026-05-27 22:11:38'),
(356, 'toleramelie@gmail.com', NULL, 'subscribed', '2026-05-27 22:11:53', '2026-05-27 22:11:53'),
(357, 'marietta@customsignstoday.com', NULL, 'subscribed', '2026-05-27 22:26:51', '2026-05-27 22:26:51'),
(358, 'david.mcdaniel@bradyservices.com', NULL, 'subscribed', '2026-05-27 22:35:21', '2026-05-27 22:35:21'),
(359, 'amckinzie@cookcompression.com', NULL, 'subscribed', '2026-05-27 22:38:28', '2026-05-27 22:38:28'),
(360, 'tobinwolverton@gmail.com', NULL, 'subscribed', '2026-05-27 22:46:07', '2026-05-27 22:46:07'),
(361, 'justinspaye@gmail.com', NULL, 'subscribed', '2026-05-27 22:46:08', '2026-05-27 22:46:08'),
(362, 'dan.seymour@doverfs.com', NULL, 'subscribed', '2026-05-27 22:51:47', '2026-05-27 22:51:47'),
(363, 'bensherman7@gmail.com', NULL, 'subscribed', '2026-05-27 23:00:50', '2026-05-27 23:00:50'),
(364, 'segirod@comcast.net', NULL, 'subscribed', '2026-05-27 23:14:32', '2026-05-27 23:14:32'),
(365, 'devon@dfab.ca', NULL, 'subscribed', '2026-05-27 23:27:19', '2026-05-27 23:27:19'),
(366, 'dominic.buccilli@swagelok.com', NULL, 'subscribed', '2026-05-27 23:57:28', '2026-05-27 23:57:28'),
(367, 'dgossett@thermoid.com', NULL, 'subscribed', '2026-05-27 23:57:29', '2026-05-27 23:57:29'),
(368, 'dennis.haupt@turck.com', NULL, 'subscribed', '2026-05-27 23:57:30', '2026-05-27 23:57:30'),
(369, 'andrew.danna@victaulic.com', NULL, 'subscribed', '2026-05-27 23:57:57', '2026-05-27 23:57:57'),
(370, 'drew.wert@usnr.com', NULL, 'subscribed', '2026-05-28 00:03:31', '2026-05-28 00:03:31'),
(371, 'dhefty@urschel.com', NULL, 'subscribed', '2026-05-28 00:03:32', '2026-05-28 00:03:32'),
(372, 'casey.cousino@theschaefergroup.com', NULL, 'subscribed', '2026-05-28 00:07:05', '2026-05-28 00:07:05'),
(373, 'billy.guest@usnr.com', NULL, 'subscribed', '2026-05-28 00:09:49', '2026-05-28 00:09:49'),
(374, 'beth.sedivy@taylor-company.com', NULL, 'subscribed', '2026-05-28 00:09:49', '2026-05-28 00:09:49'),
(375, 'brandon.bell@teaminc.com', NULL, 'subscribed', '2026-05-28 00:09:50', '2026-05-28 00:09:50'),
(376, 'brewer250r@gmail.com', NULL, 'subscribed', '2026-05-28 00:20:10', '2026-05-28 00:20:10'),
(377, 'oconn712@alumni.umn.edu', NULL, 'subscribed', '2026-05-28 00:33:10', '2026-05-28 00:33:10'),
(378, 'cedricfong@gmail.com', NULL, 'subscribed', '2026-05-28 00:33:11', '2026-05-28 00:33:11'),
(379, 'tracyduhs@icloud.com', NULL, 'subscribed', '2026-05-28 00:33:11', '2026-05-28 00:33:11'),
(380, 'jim.machura@bradmanlake.com', NULL, 'subscribed', '2026-05-28 00:39:18', '2026-05-28 00:39:18'),
(381, 'tiziocast@gmail.com', NULL, 'subscribed', '2026-05-28 00:44:33', '2026-05-28 00:44:33'),
(382, 'mom2chance2002@yahoo.com', NULL, 'subscribed', '2026-05-28 00:44:49', '2026-05-28 00:44:49'),
(383, 'josh.shepherd@blastone.com', NULL, 'subscribed', '2026-05-28 00:44:49', '2026-05-28 00:44:49'),
(384, 'micheliniarred@libero.it', NULL, 'subscribed', '2026-05-28 01:01:27', '2026-05-28 01:01:27'),
(385, 'jasons131521@gmail.com', NULL, 'subscribed', '2026-05-28 01:01:28', '2026-05-28 01:01:28'),
(386, 'sallymontanez1@gmail.com', NULL, 'subscribed', '2026-05-28 01:07:14', '2026-05-28 01:07:14'),
(387, 'eric.peterson@cpm.net', NULL, 'subscribed', '2026-05-28 01:10:15', '2026-05-28 01:10:15'),
(388, 'hdaage12@gmail.com', NULL, 'subscribed', '2026-05-28 01:10:15', '2026-05-28 01:10:15'),
(389, 'leo_tanaka@yahoo.com', NULL, 'subscribed', '2026-05-28 01:18:35', '2026-05-28 01:18:35'),
(390, 'lelandshenfield@yahoo.com', NULL, 'subscribed', '2026-05-28 01:18:54', '2026-05-28 01:18:54'),
(391, 'tmorrison@tcf.com', NULL, 'subscribed', '2026-05-28 01:24:42', '2026-05-28 01:24:42'),
(392, 'tim.dezellem@usnr.com', NULL, 'subscribed', '2026-05-28 01:24:42', '2026-05-28 01:24:42'),
(393, 'tracey.mitchell@usnr.com', NULL, 'subscribed', '2026-05-28 01:24:42', '2026-05-28 01:24:42'),
(394, 'rusty.tomlinson@tmhu.toyota-industries.com', NULL, 'subscribed', '2026-05-28 01:27:13', '2026-05-28 01:27:13'),
(395, 'vanhorn23@gmail.com', NULL, 'subscribed', '2026-05-28 01:31:26', '2026-05-28 01:31:26'),
(396, 'lakshmi.sitaram@tennantco.com', NULL, 'subscribed', '2026-05-28 01:33:28', '2026-05-28 01:33:28'),
(397, 'lukas.treu@swagelok.com', NULL, 'subscribed', '2026-05-28 01:33:32', '2026-05-28 01:33:32'),
(398, 'laura.sund@turck.com', NULL, 'subscribed', '2026-05-28 01:33:36', '2026-05-28 01:33:36'),
(399, 'lisa.hrpcek@tennantco.com', NULL, 'subscribed', '2026-05-28 01:36:12', '2026-05-28 01:36:12'),
(400, 'henryjatticus@gmail.com', NULL, 'subscribed', '2026-05-28 01:38:24', '2026-05-28 01:38:24'),
(401, 'kitt.woodrel@turck.com', NULL, 'subscribed', '2026-05-28 01:42:53', '2026-05-28 01:42:53'),
(402, 'kmccormick@surfaceprep.com', NULL, 'subscribed', '2026-05-28 01:42:54', '2026-05-28 01:42:54'),
(403, 'jason.verbeeck@tsi.com', NULL, 'subscribed', '2026-05-28 01:42:55', '2026-05-28 01:42:55'),
(404, 'megan.longenderfer@victaulic.com', NULL, 'subscribed', '2026-05-28 01:48:43', '2026-05-28 01:48:43'),
(405, 'mmmdaveo1@yahoo.com', NULL, 'subscribed', '2026-05-28 01:52:55', '2026-05-28 01:52:55'),
(406, 'hawkman@reagan.com', NULL, 'subscribed', '2026-05-28 01:59:17', '2026-05-28 01:59:17'),
(407, 'fittdog8848@hotmail.com', NULL, 'subscribed', '2026-05-28 02:02:34', '2026-05-28 02:02:34'),
(408, 'tchadwick@catalystpharma.com', NULL, 'subscribed', '2026-05-28 02:09:02', '2026-05-28 02:09:02'),
(409, 'renee.plavnicky@catalent.com', NULL, 'subscribed', '2026-05-28 02:16:48', '2026-05-28 02:16:48'),
(410, 'sheila26qu@gmail.com', NULL, 'subscribed', '2026-05-28 02:20:55', '2026-05-28 02:20:55'),
(411, 'pablo_mia_dom@hotmail.com', NULL, 'subscribed', '2026-05-28 02:20:56', '2026-05-28 02:20:56'),
(412, 'nadiacbarnes@gmail.com', NULL, 'subscribed', '2026-05-28 02:35:28', '2026-05-28 02:35:28'),
(413, 'cacarlett@gmail.com', NULL, 'subscribed', '2026-05-28 02:55:31', '2026-05-28 02:55:31'),
(414, 'andreamalavasisoundon@gmail.com', NULL, 'subscribed', '2026-05-28 03:26:16', '2026-05-28 03:26:16'),
(415, 'ductient@gmail.com', NULL, 'subscribed', '2026-05-28 03:26:28', '2026-05-28 03:26:28'),
(416, 'jgsharpe@charter.net', NULL, 'subscribed', '2026-05-28 03:27:03', '2026-05-28 03:27:03'),
(417, 'jonathan.laplante@free.fr', NULL, 'subscribed', '2026-05-28 03:37:07', '2026-05-28 03:37:07'),
(418, 'sabrewilliams00@outlook.com', NULL, 'subscribed', '2026-05-28 03:44:24', '2026-05-28 03:44:24'),
(419, 'mainardm@hotmail.com', NULL, 'subscribed', '2026-05-28 03:44:53', '2026-05-28 03:44:53'),
(420, 'SSOMERS@PELICANSINKS.COM', NULL, 'subscribed', '2026-05-28 04:18:41', '2026-05-28 04:18:41'),
(421, 'rlevine91@gmail.com', NULL, 'subscribed', '2026-05-28 04:18:41', '2026-05-28 04:18:41'),
(422, 'dion_c_b5985@yahoo.com', NULL, 'subscribed', '2026-05-28 05:23:41', '2026-05-28 05:23:41'),
(423, 'cforde@financialguide.com', NULL, 'subscribed', '2026-05-28 05:26:04', '2026-05-28 05:26:04'),
(424, 'cuzised2@gmail.com', NULL, 'subscribed', '2026-05-28 06:34:01', '2026-05-28 06:34:01'),
(425, 'opus168jk@gmail.com', NULL, 'subscribed', '2026-05-28 07:14:15', '2026-05-28 07:14:15'),
(426, 'elyssagranger94@msn.com', NULL, 'subscribed', '2026-05-28 07:39:01', '2026-05-28 07:39:01'),
(427, 'jeff@diamondbuildersia.com', NULL, 'subscribed', '2026-05-28 08:00:24', '2026-05-28 08:00:24'),
(428, 'jmoyer76@yahoo.com', NULL, 'subscribed', '2026-05-28 08:00:25', '2026-05-28 08:00:25'),
(429, 'robinmyers761@gmail.com', NULL, 'subscribed', '2026-05-28 08:28:10', '2026-05-28 08:28:10'),
(430, 'selder8911@charter.net', NULL, 'subscribed', '2026-05-28 09:32:34', '2026-05-28 09:32:34'),
(431, 'marginv2@aol.com', NULL, 'subscribed', '2026-05-28 09:33:51', '2026-05-28 09:33:51'),
(432, 'brentonlab5786@hotmail.com', NULL, 'subscribed', '2026-05-28 09:33:53', '2026-05-28 09:33:53'),
(433, 'stein.jacob.n@gmail.com', NULL, 'subscribed', '2026-05-28 11:16:05', '2026-05-28 11:16:05'),
(434, 'ryder@ryderins.ca', NULL, 'subscribed', '2026-05-28 11:47:59', '2026-05-28 11:47:59'),
(435, 'anastasia.m.baker@gmail.com', NULL, 'subscribed', '2026-05-28 11:47:59', '2026-05-28 11:47:59'),
(436, 'nogues.elisabeth@gmail.com', NULL, 'subscribed', '2026-05-28 13:51:34', '2026-05-28 13:51:34'),
(437, 'cynthiasammons7@gmail.com', NULL, 'subscribed', '2026-05-28 13:51:37', '2026-05-28 13:51:37'),
(438, 'megansaam5@gmail.com', NULL, 'subscribed', '2026-05-28 13:51:59', '2026-05-28 13:51:59'),
(439, 'rachelthomas945@gmail.com', NULL, 'subscribed', '2026-05-28 14:22:46', '2026-05-28 14:22:46'),
(440, 'ralf.kaiser@rewe-group.com', NULL, 'subscribed', '2026-05-28 14:35:16', '2026-05-28 14:35:16'),
(441, 'peter_gajda@deichmann.com', NULL, 'subscribed', '2026-05-28 14:35:17', '2026-05-28 14:35:17'),
(442, 'thilo.rauch@waldner.de', NULL, 'subscribed', '2026-05-28 14:41:10', '2026-05-28 14:41:10'),
(443, 'richard.dale@syngenta.com', NULL, 'subscribed', '2026-05-28 14:46:02', '2026-05-28 14:46:02'),
(444, 'silke.blesing@nora.com', NULL, 'subscribed', '2026-05-28 14:46:17', '2026-05-28 14:46:17'),
(445, 'yvette.michael@datwyler.com', NULL, 'subscribed', '2026-05-28 14:50:56', '2026-05-28 14:50:56'),
(446, 'lisaa.hall67@gmail.com', NULL, 'subscribed', '2026-05-28 14:57:10', '2026-05-28 14:57:10'),
(447, 'amy.mendez36.am@gmail.com', NULL, 'subscribed', '2026-05-28 14:57:12', '2026-05-28 14:57:12'),
(448, 'julien.bailly@histovery.com', NULL, 'subscribed', '2026-05-28 14:57:12', '2026-05-28 14:57:12'),
(449, 'p.vlug@dilpack.com', NULL, 'subscribed', '2026-05-28 15:17:28', '2026-05-28 15:17:28'),
(450, 'sumikocohen@gmail.com', NULL, 'subscribed', '2026-05-28 15:44:57', '2026-05-28 15:44:57'),
(451, 'bergermaud2016@gmail.com', NULL, 'subscribed', '2026-05-28 15:45:14', '2026-05-28 15:45:14'),
(452, 'sassydivabey39@mail.com', NULL, 'subscribed', '2026-05-28 15:45:17', '2026-05-28 15:45:17'),
(453, 'bemurphy@bresnan.net', NULL, 'subscribed', '2026-05-28 16:21:40', '2026-05-28 16:21:40'),
(454, 'forum.jfr@gmail.com', NULL, 'subscribed', '2026-05-28 16:21:41', '2026-05-28 16:21:41'),
(455, 'sherryapaulinoa@gmail.com', NULL, 'subscribed', '2026-05-28 16:52:40', '2026-05-28 16:52:40'),
(456, 'jamesgrasty@gmail.com', NULL, 'subscribed', '2026-05-28 16:54:27', '2026-05-28 16:54:27'),
(457, 'nonobass64@gmail.com', NULL, 'subscribed', '2026-05-28 17:14:02', '2026-05-28 17:14:02'),
(458, 'steffen.freise@inpro-electric.de', NULL, 'subscribed', '2026-05-28 17:20:49', '2026-05-28 17:20:49'),
(459, 'jfrisch@kfazlaw.com', NULL, 'subscribed', '2026-05-28 17:31:30', '2026-05-28 17:31:30'),
(460, 'arianna.segurachavez@gmail.com', NULL, 'subscribed', '2026-05-28 17:51:39', '2026-05-28 17:51:39'),
(461, 'anbm1@windowslive.com', NULL, 'subscribed', '2026-05-28 17:51:44', '2026-05-28 17:51:44'),
(462, 'winewife@sunflower.com', NULL, 'subscribed', '2026-05-28 17:54:32', '2026-05-28 17:54:32'),
(463, 'nikoletta.jung@mapal.com', NULL, 'subscribed', '2026-05-28 18:31:08', '2026-05-28 18:31:08'),
(464, 'jarwilliams@chicagofamilyhealth.org', NULL, 'subscribed', '2026-05-28 18:35:05', '2026-05-28 18:35:05'),
(465, 'nreyes@republicebank.com', NULL, 'subscribed', '2026-05-28 18:35:05', '2026-05-28 18:35:05'),
(466, 'dbfn4948@aol.com', NULL, 'subscribed', '2026-05-28 18:35:31', '2026-05-28 18:35:31'),
(467, 'lisa.lobianco@outlook.com', NULL, 'subscribed', '2026-05-28 18:40:25', '2026-05-28 18:40:25'),
(468, 's2suzuki125@gmail.com', NULL, 'subscribed', '2026-05-28 18:44:22', '2026-05-28 18:44:22'),
(469, 'blueallencito@gmail.com', NULL, 'subscribed', '2026-05-28 18:44:23', '2026-05-28 18:44:23'),
(470, 'johannes.pfenning@schaeffler.com', NULL, 'subscribed', '2026-05-28 18:44:32', '2026-05-28 18:44:32'),
(471, 'ute.hoffmann@freudenberg-filter.com', NULL, 'subscribed', '2026-05-28 18:49:48', '2026-05-28 18:49:48'),
(472, 'mklum@hotmail.com', NULL, 'subscribed', '2026-05-28 19:10:43', '2026-05-28 19:10:43'),
(473, 'jcrct1@gmail.com', NULL, 'subscribed', '2026-05-28 19:54:02', '2026-05-28 19:54:02'),
(474, 'dpriest@icumed.com', NULL, 'subscribed', '2026-05-28 19:59:12', '2026-05-28 19:59:12'),
(475, 'fred.sliney@sunovion.com', NULL, 'subscribed', '2026-05-28 19:59:12', '2026-05-28 19:59:12'),
(476, 'erla.isaac@icumed.com', NULL, 'subscribed', '2026-05-28 19:59:12', '2026-05-28 19:59:12'),
(477, 'thewitt@victaulic.com', NULL, 'subscribed', '2026-05-28 20:02:50', '2026-05-28 20:02:50'),
(478, 'barchambeau@coldchaintech.com', NULL, 'subscribed', '2026-05-28 20:05:51', '2026-05-28 20:05:51'),
(479, 'luke@jetblastms.com', NULL, 'subscribed', '2026-05-28 20:06:06', '2026-05-28 20:06:06'),
(480, 'beth.laface@us.sumitomo-pharma.com', NULL, 'subscribed', '2026-05-28 20:06:10', '2026-05-28 20:06:10'),
(481, 'jblow@coldchaintech.com', NULL, 'subscribed', '2026-05-28 20:09:14', '2026-05-28 20:09:14'),
(482, 'jillian.borders@catalent.com', NULL, 'subscribed', '2026-05-28 20:12:13', '2026-05-28 20:12:13'),
(483, 'jgarrity@catalystpharma.com', NULL, 'subscribed', '2026-05-28 20:12:31', '2026-05-28 20:12:31'),
(484, 'aferrara@coldchaintech.com', NULL, 'subscribed', '2026-05-28 20:18:26', '2026-05-28 20:18:26'),
(485, 'achilcoat@scriptpro.com', NULL, 'subscribed', '2026-05-28 20:18:26', '2026-05-28 20:18:26'),
(486, 'jharrah@catalystpharma.com', NULL, 'subscribed', '2026-05-28 20:18:32', '2026-05-28 20:18:32'),
(487, 'anna.soracco@gmail.com', NULL, 'subscribed', '2026-05-28 20:25:18', '2026-05-28 20:25:18'),
(488, 'amy.m.burnett@gmail.com', NULL, 'subscribed', '2026-05-28 20:30:12', '2026-05-28 20:30:12'),
(489, 'c.jones@pgud.org', NULL, 'subscribed', '2026-05-28 20:36:01', '2026-05-28 20:36:01'),
(490, 'hharris@catchengineering.com', NULL, 'subscribed', '2026-05-28 20:40:12', '2026-05-28 20:40:12'),
(491, 'lokesh.konchady@catchengineering.com', NULL, 'subscribed', '2026-05-28 20:56:14', '2026-05-28 20:56:14'),
(492, 'patrick.hoqueloux@icloud.com', NULL, 'subscribed', '2026-05-28 21:13:31', '2026-05-28 21:13:31'),
(493, 'winsto13@yahoo.com', NULL, 'subscribed', '2026-05-28 21:34:43', '2026-05-28 21:34:43'),
(494, 'deborah.kopp62@gmail.com', NULL, 'subscribed', '2026-05-28 21:34:44', '2026-05-28 21:34:44'),
(495, 'ljwindso@iu.edu', NULL, 'subscribed', '2026-05-28 21:53:54', '2026-05-28 21:53:54'),
(496, 'kaleigh.savnik@lmiweb.com', NULL, 'subscribed', '2026-05-28 22:01:53', '2026-05-28 22:01:53'),
(497, 'miller-gt@hotmail.com', NULL, 'subscribed', '2026-05-28 22:01:53', '2026-05-28 22:01:53'),
(498, 'kylewhiten@gmail.com', NULL, 'subscribed', '2026-05-28 22:01:54', '2026-05-28 22:01:54'),
(499, 'robert.schmidt@keanmiller.com', NULL, 'subscribed', '2026-05-28 22:15:33', '2026-05-28 22:15:33'),
(500, 'mharris@attorneykennugent.com', NULL, 'subscribed', '2026-05-28 22:15:33', '2026-05-28 22:15:33'),
(501, 'mpatel@sirsol.com', NULL, 'subscribed', '2026-05-28 22:15:34', '2026-05-28 22:15:34'),
(502, 'chris.granade@troutman.com', NULL, 'subscribed', '2026-05-28 22:53:24', '2026-05-28 22:53:24'),
(503, 'hailey.mcentyre@stoel.com', NULL, 'subscribed', '2026-05-28 22:57:17', '2026-05-28 22:57:17'),
(504, 'bebechulito_232@hotmail.com', NULL, 'subscribed', '2026-05-28 22:57:18', '2026-05-28 22:57:18'),
(505, 'kamel.tarek@gmail.com', NULL, 'subscribed', '2026-05-28 22:57:34', '2026-05-28 22:57:34'),
(506, 'david.hancock@gray-robinson.com', NULL, 'subscribed', '2026-05-28 23:03:12', '2026-05-28 23:03:12'),
(507, 'd.m.nguyen@inari-san.de', NULL, 'subscribed', '2026-05-28 23:13:31', '2026-05-28 23:13:31'),
(508, 'mariamonca8151@gmail.com', NULL, 'subscribed', '2026-05-28 23:22:43', '2026-05-28 23:22:43'),
(509, 'brianrabenko@gmail.com', NULL, 'subscribed', '2026-05-28 23:22:43', '2026-05-28 23:22:43'),
(510, 'steinbrecher-gutachter-bau@gmx.de', NULL, 'subscribed', '2026-05-28 23:22:44', '2026-05-28 23:22:44');
INSERT INTO `newsletters` (`id`, `email`, `name`, `status`, `created_at`, `updated_at`) VALUES
(511, 'rweber@kimballne.org', NULL, 'subscribed', '2026-05-28 23:38:04', '2026-05-28 23:38:04'),
(512, 'heklem@t-online.de', NULL, 'subscribed', '2026-05-28 23:50:30', '2026-05-28 23:50:30'),
(513, 'pattinunez@yahoo.com', NULL, 'subscribed', '2026-05-29 00:09:58', '2026-05-29 00:09:58'),
(514, 'kathrine.krylova@obagi.com', NULL, 'subscribed', '2026-05-29 00:20:55', '2026-05-29 00:20:55'),
(515, 'kbecker@collegiumpharma.com', NULL, 'subscribed', '2026-05-29 00:21:24', '2026-05-29 00:21:24'),
(516, 'katie.sousa@us.sumitomo-pharma.com', NULL, 'subscribed', '2026-05-29 00:21:58', '2026-05-29 00:21:58'),
(517, 'tina.senatra@icumed.com', NULL, 'subscribed', '2026-05-29 00:24:49', '2026-05-29 00:24:49'),
(518, 'andrew.tharp@butlersnow.com', NULL, 'subscribed', '2026-05-29 00:27:32', '2026-05-29 00:27:32'),
(519, 'andrew.schrack@butlersnow.com', NULL, 'subscribed', '2026-05-29 00:27:32', '2026-05-29 00:27:32'),
(520, 'armstrongj@ballardspahr.com', NULL, 'subscribed', '2026-05-29 00:27:33', '2026-05-29 00:27:33'),
(521, 'john.manning@us.sumitomo-pharma.com', NULL, 'subscribed', '2026-05-29 00:31:13', '2026-05-29 00:31:13'),
(522, 'heba.aly@legalmatch.com', NULL, 'subscribed', '2026-05-29 00:34:00', '2026-05-29 00:34:00'),
(523, 'dethomask@ballardspahr.com', NULL, 'subscribed', '2026-05-29 00:34:00', '2026-05-29 00:34:00'),
(524, 'dshore@carltonfields.com', NULL, 'subscribed', '2026-05-29 00:34:01', '2026-05-29 00:34:01'),
(525, 'wwegryn@collegiumpharma.com', NULL, 'subscribed', '2026-05-29 00:38:10', '2026-05-29 00:38:10'),
(526, 'jen@antill.org', NULL, 'subscribed', '2026-05-29 00:43:23', '2026-05-29 00:43:23'),
(527, 'awnelle@gmail.com', NULL, 'subscribed', '2026-05-29 00:54:39', '2026-05-29 00:54:39'),
(528, 'cshajan@stark-stark.com', NULL, 'subscribed', '2026-05-29 01:13:27', '2026-05-29 01:13:27'),
(529, 'fosterr@fnb-corp.com', NULL, 'subscribed', '2026-05-29 01:16:43', '2026-05-29 01:16:43'),
(530, 'jamiek@jpfirm.com', NULL, 'subscribed', '2026-05-29 01:16:49', '2026-05-29 01:16:49'),
(531, 'jcanan@hdp.com', NULL, 'subscribed', '2026-05-29 01:16:51', '2026-05-29 01:16:51'),
(532, 'jmeese-martinez@hahnlaw.com', NULL, 'subscribed', '2026-05-29 01:19:43', '2026-05-29 01:19:43'),
(533, 'fiscalofficer@mysagamorehills.com', NULL, 'subscribed', '2026-05-29 01:22:30', '2026-05-29 01:22:30'),
(534, 'receptionist@mysagamorehills.com', NULL, 'subscribed', '2026-05-29 01:22:30', '2026-05-29 01:22:30'),
(535, 'katiebeth.bowens@bowlesrice.com', NULL, 'subscribed', '2026-05-29 01:32:06', '2026-05-29 01:32:06'),
(536, 'dholmander@apslaw.com', NULL, 'subscribed', '2026-05-29 01:34:58', '2026-05-29 01:34:58'),
(537, 'deena.lawrence@gmlaw.com', NULL, 'subscribed', '2026-05-29 01:34:58', '2026-05-29 01:34:58'),
(538, 'ddunn@stark-stark.com', NULL, 'subscribed', '2026-05-29 01:34:59', '2026-05-29 01:34:59'),
(539, 'emma@mirandabrooks.com', NULL, 'subscribed', '2026-05-29 01:49:32', '2026-05-29 01:49:32'),
(540, 'snpahren@vorys.com', NULL, 'subscribed', '2026-05-29 02:01:57', '2026-05-29 02:01:57'),
(541, 'ttomlinson@stark-stark.com', NULL, 'subscribed', '2026-05-29 02:01:57', '2026-05-29 02:01:57'),
(542, 'stewartellams@yahoo.co.uk', NULL, 'subscribed', '2026-05-29 02:01:58', '2026-05-29 02:01:58'),
(543, 'seismannharpen@fbtlaw.com', NULL, 'subscribed', '2026-05-29 02:13:41', '2026-05-29 02:13:41'),
(544, 'mathewkretzschmar@gmail.com', NULL, 'subscribed', '2026-05-29 02:44:16', '2026-05-29 02:44:16'),
(545, 'oshanechambers74@gmail.com', NULL, 'subscribed', '2026-05-29 03:11:07', '2026-05-29 03:11:07'),
(546, 'Support@rubimicrocafe.com', NULL, 'subscribed', '2026-05-29 03:55:15', '2026-05-29 03:55:15'),
(547, 'space@chicagofamilyhealth.org', NULL, 'subscribed', '2026-05-29 04:32:12', '2026-05-29 04:32:12'),
(548, 'llobianco@chicagofamilyhealth.org', NULL, 'subscribed', '2026-05-29 04:32:13', '2026-05-29 04:32:13'),
(549, 'greg.tsoraklidis@century21.ca', NULL, 'subscribed', '2026-05-29 05:43:49', '2026-05-29 05:43:49'),
(550, 'william.ringstaff@gmail.com', NULL, 'subscribed', '2026-05-29 06:28:35', '2026-05-29 06:28:35'),
(551, 'tkuster104@aol.com', NULL, 'subscribed', '2026-05-29 06:28:47', '2026-05-29 06:28:47'),
(552, 'debworrell@gmail.com', NULL, 'subscribed', '2026-05-29 06:28:57', '2026-05-29 06:28:57'),
(553, 'mumsy62@hotmail.com', NULL, 'subscribed', '2026-05-29 07:17:05', '2026-05-29 07:17:05'),
(554, 'kikasong@aol.com', NULL, 'subscribed', '2026-05-29 08:03:48', '2026-05-29 08:03:48'),
(555, 'ctugkpymmetlzeeyd@outlook.com', NULL, 'subscribed', '2026-05-29 08:03:48', '2026-05-29 08:03:48'),
(556, 'wotwpzhtjjzthzcszab@outlook.com', NULL, 'subscribed', '2026-05-29 08:03:49', '2026-05-29 08:03:49'),
(557, 'glndlssxbvscnhf@outlook.com', NULL, 'subscribed', '2026-05-29 08:50:12', '2026-05-29 08:50:12'),
(558, 'genechel@comcast.net', NULL, 'subscribed', '2026-05-29 09:37:20', '2026-05-29 09:37:20'),
(559, 'bradleyhartnett9@gmail.com', NULL, 'subscribed', '2026-05-29 09:37:21', '2026-05-29 09:37:21'),
(560, 'plmkkjtssxkmxoaapht@outlook.com', NULL, 'subscribed', '2026-05-29 09:37:22', '2026-05-29 09:37:22'),
(561, 'joshuachandler94@gmail.com', NULL, 'subscribed', '2026-05-29 10:38:49', '2026-05-29 10:38:49'),
(562, 'ghbhmuwsdlt@outlook.com', NULL, 'subscribed', '2026-05-29 11:09:47', '2026-05-29 11:09:47'),
(563, 'jamfitz@gmail.com', NULL, 'subscribed', '2026-05-29 11:10:42', '2026-05-29 11:10:42'),
(564, 'aehrasyz@gmail.com', NULL, 'subscribed', '2026-05-29 11:35:42', '2026-05-29 11:35:42'),
(565, 'amanda.brooks@peoplepc.com', NULL, 'subscribed', '2026-05-29 12:35:55', '2026-05-29 12:35:55'),
(566, 'caitlyn.monaghan@gmail.com', NULL, 'subscribed', '2026-05-29 12:35:57', '2026-05-29 12:35:57'),
(567, 'v_s_toy@hotmail.com', NULL, 'subscribed', '2026-05-29 12:36:18', '2026-05-29 12:36:18'),
(568, 'emt518@hotmail.com', NULL, 'subscribed', '2026-05-29 13:44:26', '2026-05-29 13:44:26'),
(569, 'sinakhorram@gmail.com', NULL, 'subscribed', '2026-05-29 14:19:26', '2026-05-29 14:19:26'),
(570, 'lizsundevil@yahoo.com', NULL, 'subscribed', '2026-05-29 14:19:27', '2026-05-29 14:19:27'),
(571, 'michele.petrilli@gmail.com', NULL, 'subscribed', '2026-05-29 14:19:33', '2026-05-29 14:19:33'),
(572, 'juergen.schinwald@ktm.com', NULL, 'subscribed', '2026-05-29 14:35:09', '2026-05-29 14:35:09'),
(573, 'elisa.politano@fst.com', NULL, 'subscribed', '2026-05-29 14:42:00', '2026-05-29 14:42:00'),
(574, 'cassius.mazzeu@clariant.com', NULL, 'subscribed', '2026-05-29 14:42:10', '2026-05-29 14:42:10'),
(575, 'christian.tamarin@fst.com', NULL, 'subscribed', '2026-05-29 14:42:11', '2026-05-29 14:42:11'),
(576, 'katia.vaudano@fst.com', NULL, 'subscribed', '2026-05-29 14:50:25', '2026-05-29 14:50:25'),
(577, 'pelus_corina@yahoo.com', NULL, 'subscribed', '2026-05-29 16:10:26', '2026-05-29 16:10:26'),
(578, 'andriesgous@icloud.com', NULL, 'subscribed', '2026-05-29 16:10:56', '2026-05-29 16:10:56'),
(579, 'nathalivardernar9876453@hotmail.com', NULL, 'subscribed', '2026-05-29 16:11:00', '2026-05-29 16:11:00'),
(580, 'martina.mocsonoky@pipelife.com', NULL, 'subscribed', '2026-05-29 16:41:18', '2026-05-29 16:41:18'),
(581, 'pim.vanderjagt@nabertherm.com', NULL, 'subscribed', '2026-05-29 16:48:07', '2026-05-29 16:48:07'),
(582, 'n.betz@kinkele.de', NULL, 'subscribed', '2026-05-29 16:48:07', '2026-05-29 16:48:07'),
(583, 'mr@cureus.de', NULL, 'subscribed', '2026-05-29 16:48:08', '2026-05-29 16:48:08'),
(584, 'nikola.firic@tkelevator.com', NULL, 'subscribed', '2026-05-29 16:57:10', '2026-05-29 16:57:10'),
(585, 'duane.cappo@minebea-intec.com', NULL, 'subscribed', '2026-05-29 17:32:51', '2026-05-29 17:32:51'),
(586, 'draga.vukojevic@burda.com', NULL, 'subscribed', '2026-05-29 17:32:52', '2026-05-29 17:32:52'),
(587, 'a.geissler@mediaplus.com', NULL, 'subscribed', '2026-05-29 17:42:08', '2026-05-29 17:42:08'),
(588, 'colky95@live.it', NULL, 'subscribed', '2026-05-29 17:56:57', '2026-05-29 17:56:57'),
(589, 'rbetlach@yahoo.com', NULL, 'subscribed', '2026-05-29 17:57:34', '2026-05-29 17:57:34'),
(590, 'jeremyjm4@gmail.com', NULL, 'subscribed', '2026-05-29 18:56:42', '2026-05-29 18:56:42'),
(591, 'slamacow03@gmail.com', NULL, 'subscribed', '2026-05-29 19:07:26', '2026-05-29 19:07:26'),
(592, 'melanie.mantho@campana-schott.com', NULL, 'subscribed', '2026-05-29 19:13:41', '2026-05-29 19:13:41'),
(593, 'monika.wuest@aldiana.com', NULL, 'subscribed', '2026-05-29 19:18:23', '2026-05-29 19:18:23'),
(594, 'octavio.cruz-aedo@minebea-intec.com', NULL, 'subscribed', '2026-05-29 19:18:24', '2026-05-29 19:18:24'),
(595, 'm.reutter@mediaplus.com', NULL, 'subscribed', '2026-05-29 19:18:27', '2026-05-29 19:18:27'),
(596, 'adkinson794@gmail.com', NULL, 'subscribed', '2026-05-29 19:26:43', '2026-05-29 19:26:43'),
(597, 'zheng.guo@syntegon.com', NULL, 'subscribed', '2026-05-29 19:27:45', '2026-05-29 19:27:45'),
(598, 'nandersen@clausen.com', NULL, 'subscribed', '2026-05-29 19:44:50', '2026-05-29 19:44:50'),
(599, 'mcarter@allenmatkins.com', NULL, 'subscribed', '2026-05-29 19:44:54', '2026-05-29 19:44:54'),
(600, 'kwilliams@wnj.com', NULL, 'subscribed', '2026-05-29 19:45:10', '2026-05-29 19:45:10'),
(601, 'nicole.choma@axiomlaw.com', NULL, 'subscribed', '2026-05-29 19:54:52', '2026-05-29 19:54:52'),
(602, 'meg.spisich@americanbar.org', NULL, 'subscribed', '2026-05-29 19:54:52', '2026-05-29 19:54:52'),
(603, 'rick.dye@butlersnow.com', NULL, 'subscribed', '2026-05-29 19:54:53', '2026-05-29 19:54:53'),
(604, 'RDAY@TOWNOFRANLO.ORG', NULL, 'subscribed', '2026-05-29 20:06:50', '2026-05-29 20:06:50'),
(605, '4wilma4565@gmail.com', NULL, 'subscribed', '2026-05-29 20:06:57', '2026-05-29 20:06:57'),
(606, 'ljastremsky@pcfins.com', NULL, 'subscribed', '2026-05-29 20:14:21', '2026-05-29 20:14:21'),
(607, 'estelatbonacci@gmail.com', NULL, 'subscribed', '2026-05-29 20:20:14', '2026-05-29 20:20:14'),
(608, 'brian.smith@patracorp.com', NULL, 'subscribed', '2026-05-29 20:28:57', '2026-05-29 20:28:57'),
(609, 'pmcguire@clausen.com', NULL, 'subscribed', '2026-05-29 20:57:40', '2026-05-29 20:57:40'),
(610, 'sdreyer@lewisrice.com', NULL, 'subscribed', '2026-05-29 21:02:16', '2026-05-29 21:02:16'),
(611, 'mtorrence@clausen.com', NULL, 'subscribed', '2026-05-29 21:02:17', '2026-05-29 21:02:17'),
(612, 'stsmith@crlegalteam.com', NULL, 'subscribed', '2026-05-29 21:02:22', '2026-05-29 21:02:22'),
(613, 'john.funderburk@keanmiller.com', NULL, 'subscribed', '2026-05-29 21:05:43', '2026-05-29 21:05:43'),
(614, 'mmorano@mdmc-law.com', NULL, 'subscribed', '2026-05-29 21:08:55', '2026-05-29 21:08:55'),
(615, 'mholland@crlegalteam.com', NULL, 'subscribed', '2026-05-29 21:08:55', '2026-05-29 21:08:55'),
(616, 'mteich@harnessip.com', NULL, 'subscribed', '2026-05-29 21:08:56', '2026-05-29 21:08:56'),
(617, 'fjofqqzl@immenseignite.info', NULL, 'subscribed', '2026-05-29 21:17:27', '2026-05-29 21:17:27'),
(618, 'tdhkwiyy@immenseignite.info', NULL, 'subscribed', '2026-05-29 21:17:27', '2026-05-29 21:17:27'),
(619, 'kljurvps@immenseignite.info', NULL, 'subscribed', '2026-05-29 21:17:29', '2026-05-29 21:17:29'),
(620, 'jpfhstot@immenseignite.info', NULL, 'subscribed', '2026-05-29 21:17:40', '2026-05-29 21:17:40'),
(621, 'george@chiropractiecentraal.com', NULL, 'subscribed', '2026-05-29 21:18:21', '2026-05-29 21:18:21'),
(622, 'leerdman@vorys.com', NULL, 'subscribed', '2026-05-29 21:20:42', '2026-05-29 21:20:42'),
(623, 'james@freeportwest.com', NULL, 'subscribed', '2026-05-29 21:21:59', '2026-05-29 21:21:59'),
(624, 'thomastj24@gmail.com', NULL, 'subscribed', '2026-05-29 21:38:31', '2026-05-29 21:38:31'),
(625, 'mastro61@gmail.com', NULL, 'subscribed', '2026-05-29 21:38:32', '2026-05-29 21:38:32'),
(626, 'saturninalayell76@outlook.com', NULL, 'subscribed', '2026-05-29 21:38:32', '2026-05-29 21:38:32'),
(627, 'gcottman1@gmail.com', NULL, 'subscribed', '2026-05-29 22:06:15', '2026-05-29 22:06:15'),
(628, 'proudnana3118@gmail.com', NULL, 'subscribed', '2026-05-29 22:06:23', '2026-05-29 22:06:23'),
(629, 'davidezac4@gmail.com', NULL, 'subscribed', '2026-05-29 22:06:32', '2026-05-29 22:06:32'),
(630, 'penmc@charter.net', NULL, 'subscribed', '2026-05-29 22:19:32', '2026-05-29 22:19:32'),
(631, 'jkarras@insight.rr.com', NULL, 'subscribed', '2026-05-29 22:19:35', '2026-05-29 22:19:35'),
(632, 'daniel.sparr@la-bas.se', NULL, 'subscribed', '2026-05-29 22:19:37', '2026-05-29 22:19:37'),
(633, 'vltaylor4490@hotmail.com', NULL, 'subscribed', '2026-05-29 22:30:14', '2026-05-29 22:30:14'),
(634, 'ursula.soltys@americanmusicandsound.com', NULL, 'subscribed', '2026-05-29 22:30:16', '2026-05-29 22:30:16'),
(635, 'thomas.bouthillier@alliedsystems.com', NULL, 'subscribed', '2026-05-29 22:33:23', '2026-05-29 22:33:23'),
(636, 'jillpwolfe@yahoo.com', NULL, 'subscribed', '2026-05-29 22:56:12', '2026-05-29 22:56:12'),
(637, 'jenna.riggenbach@gmail.com', NULL, 'subscribed', '2026-05-29 23:30:25', '2026-05-29 23:30:25'),
(638, 'krwelsh82@yahoo.com', NULL, 'subscribed', '2026-05-29 23:30:27', '2026-05-29 23:30:27'),
(639, 'debbie.ellisor@acuren.com', NULL, 'subscribed', '2026-05-29 23:31:28', '2026-05-29 23:31:28'),
(640, 'ymiranda@altmanplants.com', NULL, 'subscribed', '2026-05-29 23:34:49', '2026-05-29 23:34:49'),
(641, 'bpayson523@yahoo.com', NULL, 'subscribed', '2026-05-29 23:34:53', '2026-05-29 23:34:53'),
(642, 'alaybolt@acuren.com', NULL, 'subscribed', '2026-05-29 23:38:01', '2026-05-29 23:38:01'),
(643, 'brandon.murphy@activengage.com', NULL, 'subscribed', '2026-05-29 23:38:03', '2026-05-29 23:38:03'),
(644, 'rheyaz.ismail@activengage.com', NULL, 'subscribed', '2026-05-29 23:38:20', '2026-05-29 23:38:20'),
(645, 'nicholasj.ryan@acuren.com', NULL, 'subscribed', '2026-05-29 23:40:59', '2026-05-29 23:40:59'),
(646, 'michelle.pritchard@acuren.com', NULL, 'subscribed', '2026-05-29 23:41:00', '2026-05-29 23:41:00'),
(647, 'rlillard@acuren.com', NULL, 'subscribed', '2026-05-29 23:41:01', '2026-05-29 23:41:01'),
(648, 'kdileo@mdmc-law.com', NULL, 'subscribed', '2026-05-29 23:44:32', '2026-05-29 23:44:32'),
(649, 'joye@jpfirm.com', NULL, 'subscribed', '2026-05-29 23:44:49', '2026-05-29 23:44:49'),
(650, 'jill.gautreaux@keanmiller.com', NULL, 'subscribed', '2026-05-29 23:48:24', '2026-05-29 23:48:24'),
(651, 'jgcastro@bal.com', NULL, 'subscribed', '2026-05-29 23:48:25', '2026-05-29 23:48:25'),
(652, 'jeffreyg@jpfirm.com', NULL, 'subscribed', '2026-05-29 23:49:12', '2026-05-29 23:49:12'),
(653, 'farnaz.alms@keanmiller.com', NULL, 'subscribed', '2026-05-29 23:50:56', '2026-05-29 23:50:56'),
(654, 'zepheeee@gmail.com', NULL, 'subscribed', '2026-05-30 00:02:28', '2026-05-30 00:02:28'),
(655, 'irma.hernandez@oncor.com', NULL, 'subscribed', '2026-05-30 00:02:28', '2026-05-30 00:02:28'),
(656, 'carissa.hilliard@oncor.com', NULL, 'subscribed', '2026-05-30 00:18:39', '2026-05-30 00:18:39'),
(657, 'cindy.faulkner@alerus.com', NULL, 'subscribed', '2026-05-30 00:26:18', '2026-05-30 00:26:18'),
(658, 'campbell.mclean@gray-robinson.com', NULL, 'subscribed', '2026-05-30 00:26:21', '2026-05-30 00:26:21'),
(659, 'egoldberg@stark-stark.com', NULL, 'subscribed', '2026-05-30 00:31:07', '2026-05-30 00:31:07'),
(660, 'jennifer.wentz@accurusaero.com', NULL, 'subscribed', '2026-05-30 00:31:27', '2026-05-30 00:31:27'),
(661, 'acowley@bal.com', NULL, 'subscribed', '2026-05-30 00:34:25', '2026-05-30 00:34:25'),
(662, 'jill.jones@ansira.com', NULL, 'subscribed', '2026-05-30 00:37:26', '2026-05-30 00:37:26'),
(663, 'jeremyh@gmail.com', NULL, 'subscribed', '2026-05-30 00:40:14', '2026-05-30 00:40:14'),
(664, 'hy.grauer@americanmusicandsound.com', NULL, 'subscribed', '2026-05-30 00:40:14', '2026-05-30 00:40:14'),
(665, 'fferrer@amerijet.com', NULL, 'subscribed', '2026-05-30 00:40:17', '2026-05-30 00:40:17'),
(666, 'andy.alcindor@fr.com', NULL, 'subscribed', '2026-05-30 00:40:26', '2026-05-30 00:40:26'),
(667, 'angela.dalton@gmlaw.com', NULL, 'subscribed', '2026-05-30 00:40:43', '2026-05-30 00:40:43'),
(668, 'khart@accupac.com', NULL, 'subscribed', '2026-05-30 00:43:35', '2026-05-30 00:43:35'),
(669, 'kris.mcdougall@americanmusicandsound.com', NULL, 'subscribed', '2026-05-30 00:43:45', '2026-05-30 00:43:45'),
(670, 'jdawson@americanpackaging.com', NULL, 'subscribed', '2026-05-30 00:46:44', '2026-05-30 00:46:44'),
(671, 'jcereceda@amerijet.com', NULL, 'subscribed', '2026-05-30 00:46:44', '2026-05-30 00:46:44'),
(672, 'jellis@armadaanalytics.com', NULL, 'subscribed', '2026-05-30 00:51:20', '2026-05-30 00:51:20'),
(673, 'condavi@aol.com', NULL, 'subscribed', '2026-05-30 00:59:42', '2026-05-30 00:59:42'),
(674, 'adam.quint@alliedsystems.com', NULL, 'subscribed', '2026-05-30 01:11:23', '2026-05-30 01:11:23'),
(675, 'awiggins@accuquote.com', NULL, 'subscribed', '2026-05-30 01:14:21', '2026-05-30 01:14:21'),
(676, 'dmcphee@agfinityinc.com', NULL, 'subscribed', '2026-05-30 01:14:29', '2026-05-30 01:14:29'),
(677, 'anna.gagliano@americanmusicandsound.com', NULL, 'subscribed', '2026-05-30 01:14:30', '2026-05-30 01:14:30'),
(678, 'ckierys@accuquote.com', NULL, 'subscribed', '2026-05-30 01:18:48', '2026-05-30 01:18:48'),
(679, 'dawn.whitchurch@alliedsystems.com', NULL, 'subscribed', '2026-05-30 01:18:57', '2026-05-30 01:18:57'),
(680, 'dbulman@accupac.com', NULL, 'subscribed', '2026-05-30 01:19:20', '2026-05-30 01:19:20'),
(681, 'gorm.nielsen@adeia.com', NULL, 'subscribed', '2026-05-30 01:43:16', '2026-05-30 01:43:16'),
(682, 'jnazaroff@acorneng.com', NULL, 'subscribed', '2026-05-30 01:43:32', '2026-05-30 01:43:32'),
(683, 'donyoung@adams-electric.com', NULL, 'subscribed', '2026-05-30 01:44:11', '2026-05-30 01:44:11'),
(684, 'evelynr@actfulfillment.com', NULL, 'subscribed', '2026-05-30 01:56:49', '2026-05-30 01:56:49'),
(685, 'jessica.spain@acibuilds.com', NULL, 'subscribed', '2026-05-30 01:56:52', '2026-05-30 01:56:52'),
(686, 'gvenable@admiralbeverage.com', NULL, 'subscribed', '2026-05-30 02:15:05', '2026-05-30 02:15:05'),
(687, 'fritz.hutterli@anchorglass.com', NULL, 'subscribed', '2026-05-30 02:15:08', '2026-05-30 02:15:08'),
(688, 'bfunk@admiralbeverage.com', NULL, 'subscribed', '2026-05-30 02:24:05', '2026-05-30 02:24:05'),
(689, 'adienna@servpro9423.com', NULL, 'subscribed', '2026-05-30 02:26:59', '2026-05-30 02:26:59'),
(690, 'ahyellen@gmail.com', NULL, 'subscribed', '2026-05-30 02:59:55', '2026-05-30 02:59:55'),
(691, 'lesterjulian1968@gmail.com', NULL, 'subscribed', '2026-05-30 04:15:34', '2026-05-30 04:15:34'),
(692, 'kamil.jablonski@yahoo.com', NULL, 'subscribed', '2026-05-30 04:33:15', '2026-05-30 04:33:15'),
(693, 'velosobozo@comcast.net', NULL, 'subscribed', '2026-05-30 06:59:59', '2026-05-30 06:59:59'),
(694, 'wingate125@sbcglobal.net', NULL, 'subscribed', '2026-05-30 06:59:59', '2026-05-30 06:59:59'),
(695, 'steamboatfan63@sbcglobal.net', NULL, 'subscribed', '2026-05-30 07:00:00', '2026-05-30 07:00:00'),
(696, 'abruzzese222@gmail.com', NULL, 'subscribed', '2026-05-30 08:28:48', '2026-05-30 08:28:48'),
(697, 'anthony.frattolillo@gmail.com', NULL, 'subscribed', '2026-05-30 10:39:02', '2026-05-30 10:39:02'),
(698, 'brosenfel@optonline.net', NULL, 'subscribed', '2026-05-30 12:00:38', '2026-05-30 12:00:38'),
(699, 'darcy.setzler@yahoo.com', NULL, 'subscribed', '2026-05-30 12:01:46', '2026-05-30 12:01:46'),
(700, '1998@yahoo.com', NULL, 'subscribed', '2026-05-30 12:29:29', '2026-05-30 12:29:29'),
(701, 'kruegerconstruction@gmail.com', NULL, 'subscribed', '2026-05-30 12:29:30', '2026-05-30 12:29:30'),
(702, 'nturney18@gmail.com', NULL, 'subscribed', '2026-05-30 12:29:37', '2026-05-30 12:29:37'),
(703, 'adjusterchip@gmail.com', NULL, 'subscribed', '2026-05-30 13:52:56', '2026-05-30 13:52:56'),
(704, 'allison228715@gmail.com', NULL, 'subscribed', '2026-05-30 13:53:28', '2026-05-30 13:53:28'),
(705, 'corman527@gmail.com', NULL, 'subscribed', '2026-05-30 14:52:37', '2026-05-30 14:52:37'),
(706, 'casey.zmudzinski@gmail.com', NULL, 'subscribed', '2026-05-30 14:52:37', '2026-05-30 14:52:37'),
(707, 'sarahcatreed@gmail.com', NULL, 'subscribed', '2026-05-30 14:52:38', '2026-05-30 14:52:38'),
(708, 'andrewmorales@yahoo.com', NULL, 'subscribed', '2026-05-30 15:21:33', '2026-05-30 15:21:33'),
(709, 'evie.fujimoto@gmail.com', NULL, 'subscribed', '2026-05-30 15:21:35', '2026-05-30 15:21:35'),
(710, 'geeth.makepeace@gmail.com', NULL, 'subscribed', '2026-05-30 15:24:39', '2026-05-30 15:24:39'),
(711, 'dkiujffwpq@outlook.com', NULL, 'subscribed', '2026-05-30 16:11:45', '2026-05-30 16:11:45'),
(712, 'pmurray22@aol.com', NULL, 'subscribed', '2026-05-30 16:38:34', '2026-05-30 16:38:34'),
(713, 'lillian.toumey@gmail.com', NULL, 'subscribed', '2026-05-30 17:04:12', '2026-05-30 17:04:12'),
(714, 'kflynn06@charter.net', NULL, 'subscribed', '2026-05-30 17:04:12', '2026-05-30 17:04:12'),
(715, 'reichertjr@earthlink.net', NULL, 'subscribed', '2026-05-30 17:22:27', '2026-05-30 17:22:27'),
(716, 'ashleewitty@gmail.com', NULL, 'subscribed', '2026-05-30 17:53:48', '2026-05-30 17:53:48'),
(717, 'patdennis374@gmail.com', NULL, 'subscribed', '2026-05-30 18:50:07', '2026-05-30 18:50:07'),
(718, 'kayleelovelady84@gmail.com', NULL, 'subscribed', '2026-05-30 18:50:07', '2026-05-30 18:50:07'),
(719, 'michael.werner112@gmx.de', NULL, 'subscribed', '2026-05-30 19:24:38', '2026-05-30 19:24:38'),
(720, 'tina@pinkgirlwines.com', NULL, 'subscribed', '2026-05-30 19:24:38', '2026-05-30 19:24:38'),
(721, 'ian@projectbruce.net', NULL, 'subscribed', '2026-05-30 19:24:39', '2026-05-30 19:24:39'),
(722, 'rebeccapullum123@gmail.com', NULL, 'subscribed', '2026-05-30 19:53:08', '2026-05-30 19:53:08'),
(723, 'vineethreddypolam@gmail.com', NULL, 'subscribed', '2026-05-30 19:53:09', '2026-05-30 19:53:09'),
(724, 'sparksdanny@att.net', NULL, 'subscribed', '2026-05-30 19:55:12', '2026-05-30 19:55:12'),
(725, 'jefftruman78@icloud.com', NULL, 'subscribed', '2026-05-30 20:25:29', '2026-05-30 20:25:29'),
(726, 'adamorion@gmail.com', NULL, 'subscribed', '2026-05-30 20:25:39', '2026-05-30 20:25:39'),
(727, 'alnjamieseger@gmail.com', NULL, 'subscribed', '2026-05-30 20:52:34', '2026-05-30 20:52:34'),
(728, 'datsunian@gmail.com', NULL, 'subscribed', '2026-05-30 20:53:50', '2026-05-30 20:53:50'),
(729, 'jackmc1995@live.co.uk', NULL, 'subscribed', '2026-05-30 20:56:11', '2026-05-30 20:56:11'),
(730, 'joet@justperspective.com', NULL, 'subscribed', '2026-05-30 21:27:59', '2026-05-30 21:27:59'),
(731, 'squallteo@gmail.com', NULL, 'subscribed', '2026-05-30 21:27:59', '2026-05-30 21:27:59'),
(732, 'gjaye921@gmail.com', NULL, 'subscribed', '2026-05-30 21:27:59', '2026-05-30 21:27:59'),
(733, 'srj@vitol.com', NULL, 'subscribed', '2026-05-30 22:02:55', '2026-05-30 22:02:55'),
(734, 'b2bistheway@gmail.com', NULL, 'subscribed', '2026-05-30 23:39:32', '2026-05-30 23:39:32'),
(735, 'elvin.bl@hotmail.com', NULL, 'subscribed', '2026-05-30 23:39:33', '2026-05-30 23:39:33'),
(736, 'colbathjason@gmail.com', NULL, 'subscribed', '2026-05-31 00:10:38', '2026-05-31 00:10:38'),
(737, 'maryannavila@me.com', NULL, 'subscribed', '2026-05-31 00:10:58', '2026-05-31 00:10:58'),
(738, 'caroline.auclair@cssps.gouv.qc.ca', NULL, 'subscribed', '2026-05-31 01:25:39', '2026-05-31 01:25:39'),
(739, 'semajxoian@gmail.com', NULL, 'subscribed', '2026-05-31 02:54:45', '2026-05-31 02:54:45'),
(740, 'bc97@hotmail.com', NULL, 'subscribed', '2026-05-31 03:30:09', '2026-05-31 03:30:09'),
(741, 'riperdj@gmail.com', NULL, 'subscribed', '2026-05-31 03:30:09', '2026-05-31 03:30:09'),
(742, 'lucius.arndt@outlook.de', NULL, 'subscribed', '2026-05-31 03:30:23', '2026-05-31 03:30:23'),
(743, 'cathydouglas@shaw.ca', NULL, 'subscribed', '2026-05-31 03:58:45', '2026-05-31 03:58:45'),
(744, 'richard.archibald@sympatico.ca', NULL, 'subscribed', '2026-05-31 03:58:46', '2026-05-31 03:58:46'),
(745, 'che_duma@hotmail.com', NULL, 'subscribed', '2026-05-31 04:25:22', '2026-05-31 04:25:22'),
(746, 'thegfe@gmail.com', NULL, 'subscribed', '2026-05-31 04:25:25', '2026-05-31 04:25:25'),
(747, 'tomikolockett@gmail.com', NULL, 'subscribed', '2026-05-31 04:29:58', '2026-05-31 04:29:58'),
(748, 'soulkid9@aol.com', NULL, 'subscribed', '2026-05-31 05:48:27', '2026-05-31 05:48:27'),
(749, 'sbyrnes@hvc.rr.com', NULL, 'subscribed', '2026-05-31 07:31:17', '2026-05-31 07:31:17'),
(750, 'lemanemx@gmail.com', NULL, 'subscribed', '2026-05-31 07:46:18', '2026-05-31 07:46:18'),
(751, 'majaleilani@yahoo.com', NULL, 'subscribed', '2026-05-31 09:15:07', '2026-05-31 09:15:07'),
(752, 'weebback@aol.com', NULL, 'subscribed', '2026-05-31 09:15:08', '2026-05-31 09:15:08'),
(753, '48.hoodie-promise@icloud.com', NULL, 'subscribed', '2026-05-31 10:19:55', '2026-05-31 10:19:55'),
(754, 'maeyoro@gmail.com', NULL, 'subscribed', '2026-05-31 10:19:57', '2026-05-31 10:19:57'),
(755, 'trlwd2@gmail.com', NULL, 'subscribed', '2026-05-31 10:23:20', '2026-05-31 10:23:20'),
(756, 'avery.sorensen@gmail.com', NULL, 'subscribed', '2026-05-31 10:55:46', '2026-05-31 10:55:46'),
(757, 'kellystone1106@gmail.com', NULL, 'subscribed', '2026-05-31 10:55:47', '2026-05-31 10:55:47'),
(758, 'luviskomlung@yahoo.com', NULL, 'subscribed', '2026-05-31 10:55:47', '2026-05-31 10:55:47'),
(759, 'mylmas@yahoo.com', NULL, 'subscribed', '2026-05-31 11:56:46', '2026-05-31 11:56:46'),
(760, 'criper2000@gmail.com', NULL, 'subscribed', '2026-05-31 11:56:47', '2026-05-31 11:56:47'),
(761, 'carolamber@icloud.com', NULL, 'subscribed', '2026-05-31 12:39:45', '2026-05-31 12:39:45'),
(762, 'gailpadrick@yahoo.com', NULL, 'subscribed', '2026-05-31 12:40:25', '2026-05-31 12:40:25'),
(763, 'hermanandaya@yahoo.com', NULL, 'subscribed', '2026-05-31 12:40:49', '2026-05-31 12:40:49'),
(764, 'brad.duncan7@gmail.com', NULL, 'subscribed', '2026-05-31 13:59:14', '2026-05-31 13:59:14'),
(765, 'luana.feustel@gmail.com', NULL, 'subscribed', '2026-05-31 14:01:30', '2026-05-31 14:01:30'),
(766, 'takawata0226@gmail.com', NULL, 'subscribed', '2026-05-31 14:34:35', '2026-05-31 14:34:35'),
(767, 'mattmiller1984@gmail.com', NULL, 'subscribed', '2026-05-31 14:34:43', '2026-05-31 14:34:43'),
(768, 'peggyckwok@gmail.com', NULL, 'subscribed', '2026-05-31 14:34:51', '2026-05-31 14:34:51'),
(769, 'mash@depaul.edu', NULL, 'subscribed', '2026-05-31 15:47:26', '2026-05-31 15:47:26'),
(770, 'tabitharoverstreet@gmail.com', NULL, 'subscribed', '2026-05-31 15:47:27', '2026-05-31 15:47:27'),
(771, 'vinmentvincent@gmail.com', NULL, 'subscribed', '2026-05-31 15:50:30', '2026-05-31 15:50:30'),
(772, 'valerienakkin657722@hotmail.com', NULL, 'subscribed', '2026-05-31 16:42:29', '2026-05-31 16:42:29'),
(773, 'mroneal57@gmail.com', NULL, 'subscribed', '2026-05-31 16:42:31', '2026-05-31 16:42:31'),
(774, 'stanleyquan1@gmail.com', NULL, 'subscribed', '2026-05-31 17:34:31', '2026-05-31 17:34:31'),
(775, 'roofing_benches7x@icloud.com', NULL, 'subscribed', '2026-05-31 18:38:48', '2026-05-31 18:38:48'),
(776, 'jsouthwood@aol.com', NULL, 'subscribed', '2026-05-31 18:38:50', '2026-05-31 18:38:50'),
(777, 'shortisteffi@gmail.com', NULL, 'subscribed', '2026-05-31 18:38:50', '2026-05-31 18:38:50'),
(778, 'aneyan3591@outlook.com', NULL, 'subscribed', '2026-05-31 19:54:32', '2026-05-31 19:54:32'),
(779, 'maciejgarbowski@gmail.com', NULL, 'subscribed', '2026-05-31 19:58:32', '2026-05-31 19:58:32'),
(780, 'jamepigeon@gmail.com', NULL, 'subscribed', '2026-05-31 21:13:53', '2026-05-31 21:13:53'),
(781, 'surinder.mahil@outlook.com', NULL, 'subscribed', '2026-05-31 21:13:54', '2026-05-31 21:13:54'),
(782, 'nassim.naour@gmail.com', NULL, 'subscribed', '2026-05-31 21:47:25', '2026-05-31 21:47:25'),
(783, 'aras.bukauskas@gmail.com', NULL, 'subscribed', '2026-05-31 21:47:25', '2026-05-31 21:47:25'),
(784, 'clidenikita@gmail.com', NULL, 'subscribed', '2026-05-31 22:28:01', '2026-05-31 22:28:01'),
(785, 'bk@don-kes.com', NULL, 'subscribed', '2026-06-01 03:28:54', '2026-06-01 03:28:54'),
(786, 'chcastle@gmail.com', NULL, 'subscribed', '2026-06-01 06:15:01', '2026-06-01 06:15:01'),
(787, 'eron.lindsey@outlook.com', NULL, 'subscribed', '2026-06-01 06:15:02', '2026-06-01 06:15:02'),
(788, 'nmitchell4@aol.com', NULL, 'subscribed', '2026-06-01 06:17:59', '2026-06-01 06:17:59'),
(789, 'fscottpage@gmail.com', NULL, 'subscribed', '2026-06-01 06:43:42', '2026-06-01 06:43:42'),
(790, 'ashleem25@gmail.com', NULL, 'subscribed', '2026-06-01 07:18:50', '2026-06-01 07:18:50'),
(791, 'refaat@comcast.net', NULL, 'subscribed', '2026-06-01 07:19:40', '2026-06-01 07:19:40'),
(792, 'lisade93@gmail.com', NULL, 'subscribed', '2026-06-01 07:21:00', '2026-06-01 07:21:00'),
(793, 'kdasharathram@gmail.com', NULL, 'subscribed', '2026-06-01 07:43:00', '2026-06-01 07:43:00'),
(794, 'melissamonroe88@hotmail.com', NULL, 'subscribed', '2026-06-01 07:43:01', '2026-06-01 07:43:01'),
(795, 'benjamin.n.morrison@gmail.com', NULL, 'subscribed', '2026-06-01 07:43:01', '2026-06-01 07:43:01'),
(796, 'peteyworld@yaho.com', NULL, 'subscribed', '2026-06-01 07:58:03', '2026-06-01 07:58:03'),
(797, 'drduck3825@gmail.com', NULL, 'subscribed', '2026-06-01 07:58:04', '2026-06-01 07:58:04'),
(798, 'appowell1989@gmail.com', NULL, 'subscribed', '2026-06-01 07:59:21', '2026-06-01 07:59:21'),
(799, 'victor.e.3@gmail.com', NULL, 'subscribed', '2026-06-01 08:34:50', '2026-06-01 08:34:50'),
(800, 'tcgreene@hotmail.com', NULL, 'subscribed', '2026-06-01 08:37:38', '2026-06-01 08:37:38'),
(801, 'lsen@chevron.com', NULL, 'subscribed', '2026-06-01 09:32:06', '2026-06-01 09:32:06'),
(802, 'delanesoares@yahoo.com', NULL, 'subscribed', '2026-06-01 09:52:16', '2026-06-01 09:52:16'),
(803, 'a.casiano97@yahoo.com', NULL, 'subscribed', '2026-06-01 09:52:33', '2026-06-01 09:52:33'),
(804, 'r.shruti.puri@gmail.com', NULL, 'subscribed', '2026-06-01 09:52:50', '2026-06-01 09:52:50'),
(805, 'austinsisley123@gmail.com', NULL, 'subscribed', '2026-06-01 10:26:49', '2026-06-01 10:26:49'),
(806, 'dreamylittleyu@gmail.com', NULL, 'subscribed', '2026-06-01 10:27:35', '2026-06-01 10:27:35'),
(807, 'yaelstraus@gmail.com', NULL, 'subscribed', '2026-06-01 10:51:33', '2026-06-01 10:51:33'),
(808, 'deciabuterfly@hotmail.com', NULL, 'subscribed', '2026-06-01 10:52:38', '2026-06-01 10:52:38'),
(809, 'paulevan@gmail.com', NULL, 'subscribed', '2026-06-01 11:36:35', '2026-06-01 11:36:35'),
(810, 'ad.russell@hotmail.com', NULL, 'subscribed', '2026-06-01 12:12:45', '2026-06-01 12:12:45'),
(811, 'finsfan034@yahoo.com', NULL, 'subscribed', '2026-06-01 13:41:41', '2026-06-01 13:41:41'),
(812, 'thardleyt@netscape.net', NULL, 'subscribed', '2026-06-01 13:41:41', '2026-06-01 13:41:41'),
(813, 'ginadela@comcast.net', NULL, 'subscribed', '2026-06-01 15:11:57', '2026-06-01 15:11:57'),
(814, 'stacylynn81@gmail.com', NULL, 'subscribed', '2026-06-01 17:44:21', '2026-06-01 17:44:21'),
(815, 'martahunson675521@hotmail.com', NULL, 'subscribed', '2026-06-01 17:44:24', '2026-06-01 17:44:24'),
(816, 'rita.haas@kasto.com', NULL, 'subscribed', '2026-06-01 18:26:29', '2026-06-01 18:26:29'),
(817, 'mathieu.zimmermann@omya.com', NULL, 'subscribed', '2026-06-01 18:26:30', '2026-06-01 18:26:30'),
(818, 'rene.dombrowski@siempelkamp.com', NULL, 'subscribed', '2026-06-01 18:26:30', '2026-06-01 18:26:30'),
(819, 'jeanphilippe.hauller@omya.com', NULL, 'subscribed', '2026-06-01 18:34:05', '2026-06-01 18:34:05'),
(820, 'h.pruckner@welser.com', NULL, 'subscribed', '2026-06-01 18:34:06', '2026-06-01 18:34:06'),
(821, 'cecilia.weber@stihl.de', NULL, 'subscribed', '2026-06-01 18:34:49', '2026-06-01 18:34:49'),
(822, 'camand@markem-imaje.com', NULL, 'subscribed', '2026-06-01 18:41:53', '2026-06-01 18:41:53'),
(823, 'uwe.klemmer@binderholz.com', NULL, 'subscribed', '2026-06-01 18:41:53', '2026-06-01 18:41:53'),
(824, 'auftragspruefung@zwickroell.com', NULL, 'subscribed', '2026-06-01 18:42:25', '2026-06-01 18:42:25'),
(825, 'fergiexy924@gmail.com', NULL, 'subscribed', '2026-06-01 18:59:28', '2026-06-01 18:59:28'),
(826, 'amberfav12@aol.com', NULL, 'subscribed', '2026-06-01 19:02:51', '2026-06-01 19:02:51'),
(827, 'tldisher@gmail.com', NULL, 'subscribed', '2026-06-01 19:24:52', '2026-06-01 19:24:52'),
(828, 'lsoliz1313@gmail.com', NULL, 'subscribed', '2026-06-01 19:25:02', '2026-06-01 19:25:02'),
(829, 'jules_215@yahoo.com', NULL, 'subscribed', '2026-06-01 19:44:03', '2026-06-01 19:44:03'),
(830, 'tsullinger@gmail.com', NULL, 'subscribed', '2026-06-01 19:44:18', '2026-06-01 19:44:18'),
(831, 'duartenorma191@gmail.com', NULL, 'subscribed', '2026-06-01 19:45:12', '2026-06-01 19:45:12'),
(832, 'soltykevycht@ae.ca', NULL, 'subscribed', '2026-06-01 20:03:28', '2026-06-01 20:03:28'),
(833, 'sharkins@adkstudios.com', NULL, 'subscribed', '2026-06-01 20:03:29', '2026-06-01 20:03:29'),
(834, 'seishi.okamoto@advics-na.com', NULL, 'subscribed', '2026-06-01 20:03:29', '2026-06-01 20:03:29'),
(835, 'robertg@actfulfillment.com', NULL, 'subscribed', '2026-06-01 20:06:36', '2026-06-01 20:06:36'),
(836, 'sdent@adctn.com', NULL, 'subscribed', '2026-06-01 20:06:40', '2026-06-01 20:06:40'),
(837, 'ryan.moon@acralending.com', NULL, 'subscribed', '2026-06-01 20:06:51', '2026-06-01 20:06:51'),
(838, 'mdibella@actioncarting.com', NULL, 'subscribed', '2026-06-01 20:09:20', '2026-06-01 20:09:20'),
(839, 'mike.bowling@acibuilds.com', NULL, 'subscribed', '2026-06-01 20:09:37', '2026-06-01 20:09:37'),
(840, 'sean.obrien@acibuilds.com', NULL, 'subscribed', '2026-06-01 20:11:20', '2026-06-01 20:11:20'),
(841, 'shelly@actionsales.com', NULL, 'subscribed', '2026-06-01 20:11:32', '2026-06-01 20:11:32'),
(842, 'rbryant@adsalarm.com', NULL, 'subscribed', '2026-06-01 20:13:33', '2026-06-01 20:13:33'),
(843, 'pcalabrese@admarsupply.com', NULL, 'subscribed', '2026-06-01 20:13:34', '2026-06-01 20:13:34'),
(844, 'nathalie.blanchard@admtl.com', NULL, 'subscribed', '2026-06-01 20:13:34', '2026-06-01 20:13:34'),
(845, 'heather.price@admiralbeverage.com', NULL, 'subscribed', '2026-06-01 20:16:19', '2026-06-01 20:16:19'),
(846, 'j.sullivan@acmeunited.com', NULL, 'subscribed', '2026-06-01 20:17:00', '2026-06-01 20:17:00'),
(847, 'shawn@actionsales.com', NULL, 'subscribed', '2026-06-01 20:18:16', '2026-06-01 20:18:16'),
(848, 'ureo@actioncarting.com', NULL, 'subscribed', '2026-06-01 20:20:50', '2026-06-01 20:20:50'),
(849, 'steven.gill@actionac.net', NULL, 'subscribed', '2026-06-01 20:22:52', '2026-06-01 20:22:52'),
(850, 'smiller@achfood.com', NULL, 'subscribed', '2026-06-01 20:22:53', '2026-06-01 20:22:53'),
(851, 'thomasharper@adams-electric.com', NULL, 'subscribed', '2026-06-01 20:22:54', '2026-06-01 20:22:54'),
(852, 'mimi0mimi@yahoo.com', NULL, 'subscribed', '2026-06-01 20:26:14', '2026-06-01 20:26:14'),
(853, 'rspeed@adctn.com', NULL, 'subscribed', '2026-06-01 20:26:16', '2026-06-01 20:26:16'),
(854, 'kkahle@acorneng.com', NULL, 'subscribed', '2026-06-01 20:27:13', '2026-06-01 20:27:13'),
(855, 'isele.henriette@hotmail.ch', NULL, 'subscribed', '2026-06-01 20:50:23', '2026-06-01 20:50:23'),
(856, 'dhellie@gmail.com', NULL, 'subscribed', '2026-06-01 20:50:27', '2026-06-01 20:50:27'),
(857, 'steve.coombs@tiscali.co.uk', NULL, 'subscribed', '2026-06-01 20:58:02', '2026-06-01 20:58:02'),
(858, 'max@adu.com', NULL, 'subscribed', '2026-06-01 20:58:03', '2026-06-01 20:58:03'),
(859, 's.techritz@live.de', NULL, 'subscribed', '2026-06-01 21:02:53', '2026-06-01 21:02:53'),
(860, 'lacostamgr@advenirliving.com', NULL, 'subscribed', '2026-06-01 21:08:48', '2026-06-01 21:08:48'),
(861, 'mariko.thompson@advics-na.com', NULL, 'subscribed', '2026-06-01 21:09:06', '2026-06-01 21:09:06'),
(862, 'jfigurski@adkstudios.com', NULL, 'subscribed', '2026-06-01 21:12:53', '2026-06-01 21:12:53'),
(863, 'javier.aguilar@adj.com', NULL, 'subscribed', '2026-06-01 21:12:54', '2026-06-01 21:12:54'),
(864, 'jjendrick@aepscorp.com', NULL, 'subscribed', '2026-06-01 21:12:56', '2026-06-01 21:12:56'),
(865, 'muse.faulkner@gmail.com', NULL, 'subscribed', '2026-06-01 21:22:19', '2026-06-01 21:22:19'),
(866, 'jen.clarke.fi@gmail.com', NULL, 'subscribed', '2026-06-01 21:38:37', '2026-06-01 21:38:37'),
(867, 'belbeensen@gmail.com', NULL, 'subscribed', '2026-06-01 21:52:54', '2026-06-01 21:52:54'),
(868, 'kristie.jenkins@anchorglass.com', NULL, 'subscribed', '2026-06-01 21:59:03', '2026-06-01 21:59:03'),
(869, 'marie.riego@adec-innovations.com', NULL, 'subscribed', '2026-06-01 21:59:06', '2026-06-01 21:59:06'),
(870, 'rgdeleon@allegromicro.com', NULL, 'subscribed', '2026-06-01 21:59:32', '2026-06-01 21:59:32'),
(871, 'mpekipaki@allendistribution.com', NULL, 'subscribed', '2026-06-01 22:04:09', '2026-06-01 22:04:09'),
(872, 'karranaga@americangolf.com', NULL, 'subscribed', '2026-06-01 22:04:17', '2026-06-01 22:04:17'),
(873, 'kecornman@allendistribution.com', NULL, 'subscribed', '2026-06-01 22:08:07', '2026-06-01 22:08:07'),
(874, 'amendezjr@alamo1.com', NULL, 'subscribed', '2026-06-01 22:08:13', '2026-06-01 22:08:13'),
(875, 'kevinpoitras@alimentsasta.com', NULL, 'subscribed', '2026-06-01 22:08:21', '2026-06-01 22:08:21'),
(876, 'asamoahlucy@yahoo.com', NULL, 'subscribed', '2026-06-01 22:11:29', '2026-06-01 22:11:29'),
(877, 'kristen.gorman@alerus.com', NULL, 'subscribed', '2026-06-01 22:14:18', '2026-06-01 22:14:18'),
(878, 'kkonas@allegiancecrane.com', NULL, 'subscribed', '2026-06-01 22:14:32', '2026-06-01 22:14:32'),
(879, 'sylviamarievargas@gmail.com', NULL, 'subscribed', '2026-06-01 22:14:47', '2026-06-01 22:14:47'),
(880, 'mchaput@albilegeant.com', NULL, 'subscribed', '2026-06-01 22:17:40', '2026-06-01 22:17:40'),
(881, 'letty.jimenez@alignaero.com', NULL, 'subscribed', '2026-06-01 22:17:42', '2026-06-01 22:17:42'),
(882, 'kritter@alexandriaindustries.com', NULL, 'subscribed', '2026-06-01 22:17:46', '2026-06-01 22:17:46'),
(883, 'alicejan@aem-usa.com', NULL, 'subscribed', '2026-06-01 22:21:04', '2026-06-01 22:21:04'),
(884, 'amanda.quigley@advics-ohio.com', NULL, 'subscribed', '2026-06-01 22:21:05', '2026-06-01 22:21:05'),
(885, 'klyons@ajrose.com', NULL, 'subscribed', '2026-06-01 22:24:37', '2026-06-01 22:24:37'),
(886, 'schristman97@yahoo.com', NULL, 'subscribed', '2026-06-01 22:36:20', '2026-06-01 22:36:20'),
(887, 'rick.forshay@activeinternational.com', NULL, 'subscribed', '2026-06-01 23:03:48', '2026-06-01 23:03:48'),
(888, 'rattymarie@yahoo.co.uk', NULL, 'subscribed', '2026-06-01 23:12:08', '2026-06-01 23:12:08'),
(889, 'dclayton@andyfrain.com', NULL, 'subscribed', '2026-06-01 23:12:13', '2026-06-01 23:12:13'),
(890, 'wrylant@altoingredients.com', NULL, 'subscribed', '2026-06-01 23:12:20', '2026-06-01 23:12:20'),
(891, 'jehnnabug@gmail.com', NULL, 'subscribed', '2026-06-01 23:19:35', '2026-06-01 23:19:35'),
(892, 'aihling@aimscompanies.com', NULL, 'subscribed', '2026-06-01 23:36:33', '2026-06-01 23:36:33'),
(893, 'als@airxcel.com', NULL, 'subscribed', '2026-06-01 23:36:34', '2026-06-01 23:36:34'),
(894, 'dawnscarola@aia.org', NULL, 'subscribed', '2026-06-01 23:37:17', '2026-06-01 23:37:17'),
(895, 'nico.krautmann@ssi-schaefer.com', NULL, 'subscribed', '2026-06-01 23:43:05', '2026-06-01 23:43:05'),
(896, 'maximilian.paschek@protego.com', NULL, 'subscribed', '2026-06-01 23:43:06', '2026-06-01 23:43:06'),
(897, 'victoria.keller@afpllc.com', NULL, 'subscribed', '2026-06-01 23:43:13', '2026-06-01 23:43:13'),
(898, 'djfinzen@comcast.net', NULL, 'subscribed', '2026-06-01 23:51:33', '2026-06-01 23:51:33'),
(899, 'lclaiborne@agi.net', NULL, 'subscribed', '2026-06-01 23:54:16', '2026-06-01 23:54:16'),
(900, 'pbroccoli@aimsolder.com', NULL, 'subscribed', '2026-06-01 23:54:26', '2026-06-01 23:54:26'),
(901, 'michael@aka-brands.com', NULL, 'subscribed', '2026-06-01 23:54:30', '2026-06-01 23:54:30'),
(902, 'mfigueroa@ai-thermal.com', NULL, 'subscribed', '2026-06-01 23:56:21', '2026-06-01 23:56:21'),
(903, 'mburchett@airforceone.com', NULL, 'subscribed', '2026-06-01 23:56:22', '2026-06-01 23:56:22'),
(904, 'k-burghardt@aiibeauty.com', NULL, 'subscribed', '2026-06-01 23:58:38', '2026-06-01 23:58:38'),
(905, 'joni.burkitt@aimco.com', NULL, 'subscribed', '2026-06-01 23:58:39', '2026-06-01 23:58:39'),
(906, 'mpiskur@agoc.com', NULL, 'subscribed', '2026-06-01 23:58:52', '2026-06-01 23:58:52'),
(907, 'mandrews@airliteplastics.com', NULL, 'subscribed', '2026-06-02 00:01:27', '2026-06-02 00:01:27'),
(908, 'marcela.quiroz.a@ahresty.com', NULL, 'subscribed', '2026-06-02 00:01:28', '2026-06-02 00:01:28'),
(909, 'mark.scherer@ahresty.com', NULL, 'subscribed', '2026-06-02 00:01:30', '2026-06-02 00:01:30'),
(910, 'marteaga@airxcel.com', NULL, 'subscribed', '2026-06-02 00:01:58', '2026-06-02 00:01:58'),
(911, 'asierra@aimsolder.com', NULL, 'subscribed', '2026-06-02 00:05:23', '2026-06-02 00:05:23'),
(912, 'msocha@agoc.com', NULL, 'subscribed', '2026-06-02 00:08:33', '2026-06-02 00:08:33'),
(913, 'shazlewood@agi.net', NULL, 'subscribed', '2026-06-02 00:08:53', '2026-06-02 00:08:53'),
(914, '17carie22erica@gmail.com', NULL, 'subscribed', '2026-06-02 00:38:46', '2026-06-02 00:38:46'),
(915, 'evelinaturen@gmail.com', NULL, 'subscribed', '2026-06-02 00:43:17', '2026-06-02 00:43:17'),
(916, 'kpastikova@gmail.com', NULL, 'subscribed', '2026-06-02 01:02:44', '2026-06-02 01:02:44'),
(917, 'rayhborst@gmail.com', NULL, 'subscribed', '2026-06-02 01:02:45', '2026-06-02 01:02:45'),
(918, 'keithstanley1104@gmail.com', NULL, 'subscribed', '2026-06-02 01:02:46', '2026-06-02 01:02:46'),
(919, 'yasou23@yahoo.com', NULL, 'subscribed', '2026-06-02 01:19:40', '2026-06-02 01:19:40'),
(920, 'shoebank@allenedmonds.com', NULL, 'subscribed', '2026-06-02 01:30:56', '2026-06-02 01:30:56'),
(921, 'sabina.miklowitz@aliceandolivia.com', NULL, 'subscribed', '2026-06-02 01:31:03', '2026-06-02 01:31:03'),
(922, 'brianfilipiak@allianceglazing.com', NULL, 'subscribed', '2026-06-02 01:35:59', '2026-06-02 01:35:59'),
(923, 'brian.noyes@alpa.org', NULL, 'subscribed', '2026-06-02 01:36:07', '2026-06-02 01:36:07'),
(924, 'cabbott@alliedfireprotection.com', NULL, 'subscribed', '2026-06-02 01:36:09', '2026-06-02 01:36:09'),
(925, 'jkasischke@almo.com', NULL, 'subscribed', '2026-06-02 01:39:42', '2026-06-02 01:39:42'),
(926, 'jmolay@alliedglobalmarketing.com', NULL, 'subscribed', '2026-06-02 01:39:49', '2026-06-02 01:39:49'),
(927, 'svergen@aleutcorp.com', NULL, 'subscribed', '2026-06-02 01:42:20', '2026-06-02 01:42:20'),
(928, 'tkling@alitho.com', NULL, 'subscribed', '2026-06-02 01:42:25', '2026-06-02 01:42:25'),
(929, 'stephanie.brown@alignaero.com', NULL, 'subscribed', '2026-06-02 01:42:28', '2026-06-02 01:42:28'),
(930, 'ejones@allstarautomotive.com', NULL, 'subscribed', '2026-06-02 01:46:22', '2026-06-02 01:46:22'),
(931, 'dnieves@almo.com', NULL, 'subscribed', '2026-06-02 01:47:06', '2026-06-02 01:47:06'),
(932, 'amanda.shinevare@allylogistics.com', NULL, 'subscribed', '2026-06-02 01:51:20', '2026-06-02 01:51:20'),
(933, 'astern@almo.com', NULL, 'subscribed', '2026-06-02 01:51:55', '2026-06-02 01:51:55'),
(934, 'campbellki@allsteeloffice.com', NULL, 'subscribed', '2026-06-02 01:56:15', '2026-06-02 01:56:15'),
(935, 'cgorra@almo.com', NULL, 'subscribed', '2026-06-02 01:56:16', '2026-06-02 01:56:16'),
(936, 'dlafleur@allstarautomotive.com', NULL, 'subscribed', '2026-06-02 01:56:41', '2026-06-02 01:56:41'),
(937, 'linnette.delvalle@ampirical.com', NULL, 'subscribed', '2026-06-02 02:18:58', '2026-06-02 02:18:58'),
(938, 'todd@pro-pt.net', NULL, 'subscribed', '2026-06-02 02:18:59', '2026-06-02 02:18:59'),
(939, 'asa63@yahoo.com', NULL, 'subscribed', '2026-06-02 03:35:17', '2026-06-02 03:35:17'),
(940, 'ladylynnmason1@yahoo.com', NULL, 'subscribed', '2026-06-02 03:49:14', '2026-06-02 03:49:14'),
(941, 'derron.wallace@gmail.com', NULL, 'subscribed', '2026-06-02 03:49:26', '2026-06-02 03:49:26'),
(942, 'aninirene411@gmail.com', NULL, 'subscribed', '2026-06-02 04:25:52', '2026-06-02 04:25:52'),
(943, 'yonathan.gluckmann@neuf.fr', NULL, 'subscribed', '2026-06-02 04:57:26', '2026-06-02 04:57:26'),
(944, 'Juan8295@gmail.com', NULL, 'subscribed', '2026-06-02 05:28:28', '2026-06-02 05:28:28'),
(945, 'ap@carterra-bio.com', NULL, 'subscribed', '2026-06-02 05:28:28', '2026-06-02 05:28:28'),
(946, 'roebuckjm@gmail.com', NULL, 'subscribed', '2026-06-02 06:22:18', '2026-06-02 06:22:18'),
(947, 'smwerning@gmail.com', NULL, 'subscribed', '2026-06-02 06:22:45', '2026-06-02 06:22:45'),
(948, 'santaurus49@gmail.com', NULL, 'subscribed', '2026-06-02 06:49:21', '2026-06-02 06:49:21'),
(949, 'wvduplessis@gmail.com', NULL, 'subscribed', '2026-06-02 06:49:27', '2026-06-02 06:49:27'),
(950, 'dornsophath@yahoo.com', NULL, 'subscribed', '2026-06-02 06:50:54', '2026-06-02 06:50:54'),
(951, 'michaellawrencefrank@gmail.com', NULL, 'subscribed', '2026-06-02 07:16:10', '2026-06-02 07:16:10'),
(952, 'jmunoz84@hotmail.com', NULL, 'subscribed', '2026-06-02 07:16:11', '2026-06-02 07:16:11'),
(953, 'awning.sunspot2r@icloud.com', NULL, 'subscribed', '2026-06-02 07:48:30', '2026-06-02 07:48:30'),
(954, 'hunterclowdus@gmail.com', NULL, 'subscribed', '2026-06-02 08:08:48', '2026-06-02 08:08:48'),
(955, 'hayleysdinning@gmail.com', NULL, 'subscribed', '2026-06-02 08:08:48', '2026-06-02 08:08:48'),
(956, 'rflores927@yahoo.com', NULL, 'subscribed', '2026-06-02 08:46:07', '2026-06-02 08:46:07'),
(957, 'gregory.albright@gmail.com', NULL, 'subscribed', '2026-06-02 09:18:51', '2026-06-02 09:18:51'),
(958, 'tglopez0976@yahoo.com', NULL, 'subscribed', '2026-06-02 09:49:49', '2026-06-02 09:49:49'),
(959, 'austyn@citibrokers.com', NULL, 'subscribed', '2026-06-02 09:52:02', '2026-06-02 09:52:02'),
(960, 'vini.gupta03@gmail.com', NULL, 'subscribed', '2026-06-02 10:34:32', '2026-06-02 10:34:32'),
(961, 'erikmpierce@gmail.com', NULL, 'subscribed', '2026-06-02 10:35:42', '2026-06-02 10:35:42'),
(962, 'brittkurz@gmail.com', NULL, 'subscribed', '2026-06-02 11:23:42', '2026-06-02 11:23:42'),
(963, 'mdmpi@yahoo.com', NULL, 'subscribed', '2026-06-02 11:24:11', '2026-06-02 11:24:11'),
(964, 'enay.10@gmail.com', NULL, 'subscribed', '2026-06-02 11:25:37', '2026-06-02 11:25:37'),
(965, 'conic@hotmail.com', NULL, 'subscribed', '2026-06-02 11:40:03', '2026-06-02 11:40:03'),
(966, 'yunahan21@aol.com', NULL, 'subscribed', '2026-06-02 11:40:03', '2026-06-02 11:40:03'),
(967, 'kylemmoynihan@gmail.com', NULL, 'subscribed', '2026-06-02 11:40:12', '2026-06-02 11:40:12'),
(968, 'lisa@lisahardgrove.com', NULL, 'subscribed', '2026-06-02 12:21:12', '2026-06-02 12:21:12'),
(969, 'cw.penguin23@gmail.com', NULL, 'subscribed', '2026-06-02 12:21:12', '2026-06-02 12:21:12'),
(970, 'jason.hornback84@gmail.com', NULL, 'subscribed', '2026-06-02 13:48:17', '2026-06-02 13:48:17'),
(971, 'sparklights@gmail.com', NULL, 'subscribed', '2026-06-02 13:48:20', '2026-06-02 13:48:20'),
(972, 'indrute.n@gmail.com', NULL, 'subscribed', '2026-06-02 13:49:26', '2026-06-02 13:49:26'),
(973, 'hyeran901@hotmail.com', NULL, 'subscribed', '2026-06-02 14:12:01', '2026-06-02 14:12:01'),
(974, 'kjamesmooney@gmail.com', NULL, 'subscribed', '2026-06-02 14:14:32', '2026-06-02 14:14:32'),
(975, 'elmer.d.parrish@gmail.com', NULL, 'subscribed', '2026-06-02 14:40:16', '2026-06-02 14:40:16'),
(976, 'tweety0064@yahoo.com', NULL, 'subscribed', '2026-06-02 14:40:17', '2026-06-02 14:40:17'),
(977, 'byron@buhain.us', NULL, 'subscribed', '2026-06-02 14:43:32', '2026-06-02 14:43:32'),
(978, 'banisterfamily@gmail.com', NULL, 'subscribed', '2026-06-02 15:03:48', '2026-06-02 15:03:48'),
(979, 'dembesky@gmail.com', NULL, 'subscribed', '2026-06-02 15:03:50', '2026-06-02 15:03:50'),
(980, 'nico287228@gmail.com', NULL, 'subscribed', '2026-06-02 15:03:58', '2026-06-02 15:03:58'),
(981, 'dominika.adamczyk@hagergroup.com', NULL, 'subscribed', '2026-06-02 15:16:39', '2026-06-02 15:16:39'),
(982, 'gunther.steinert@syntegon.com', NULL, 'subscribed', '2026-06-02 15:16:40', '2026-06-02 15:16:40'),
(983, 'dc.hsiang@te.com', NULL, 'subscribed', '2026-06-02 15:17:19', '2026-06-02 15:17:19'),
(984, 'oliver.skup@amacaerospace.com', NULL, 'subscribed', '2026-06-02 15:23:56', '2026-06-02 15:23:56'),
(985, 'lothar.bruester@api.de', NULL, 'subscribed', '2026-06-02 15:24:22', '2026-06-02 15:24:22'),
(986, 'ajacquot@tente.com', NULL, 'subscribed', '2026-06-02 15:30:14', '2026-06-02 15:30:14'),
(987, 'paulo.dias@api.de', NULL, 'subscribed', '2026-06-02 15:30:14', '2026-06-02 15:30:14'),
(988, 'arryinseattle@hotmail.com', NULL, 'subscribed', '2026-06-02 16:05:55', '2026-06-02 16:05:55'),
(989, 'paula4president@gmail.com', NULL, 'subscribed', '2026-06-02 16:06:20', '2026-06-02 16:06:20'),
(990, 'k.schreiber@traxit.com', NULL, 'subscribed', '2026-06-02 16:22:25', '2026-06-02 16:22:25'),
(991, 'carissalili@gmail.com', NULL, 'subscribed', '2026-06-02 16:23:00', '2026-06-02 16:23:00'),
(992, 'manuel.winkler@attocube.com', NULL, 'subscribed', '2026-06-02 16:24:44', '2026-06-02 16:24:44'),
(993, 'z.saje-traeger@schrack-seconet.com', NULL, 'subscribed', '2026-06-02 16:24:46', '2026-06-02 16:24:46'),
(994, 'laetitia.unverzagt@freudenberg-pm.com', NULL, 'subscribed', '2026-06-02 16:25:05', '2026-06-02 16:25:05'),
(995, 'hauer58@gmail.com', NULL, 'subscribed', '2026-06-02 16:29:39', '2026-06-02 16:29:39'),
(996, 'josef.wagner@ssi-schaefer.com', NULL, 'subscribed', '2026-06-02 16:29:40', '2026-06-02 16:29:40'),
(997, 'dschilling@rajapack.de', NULL, 'subscribed', '2026-06-02 16:34:08', '2026-06-02 16:34:08'),
(998, 'claudio.dalsavio@attocube.com', NULL, 'subscribed', '2026-06-02 16:34:08', '2026-06-02 16:34:08'),
(999, 'evelina.richard@valora.com', NULL, 'subscribed', '2026-06-02 16:34:09', '2026-06-02 16:34:09'),
(1000, 'handorf.daniel@web.de', NULL, 'subscribed', '2026-06-02 16:43:57', '2026-06-02 16:43:57'),
(1001, 'lich@hotmail.de', NULL, 'subscribed', '2026-06-02 16:43:57', '2026-06-02 16:43:57'),
(1002, 'adaunte6177@outlook.com', NULL, 'subscribed', '2026-06-02 16:56:56', '2026-06-02 16:56:56'),
(1003, 'madisonmaloy@gmail.com', NULL, 'subscribed', '2026-06-02 17:35:37', '2026-06-02 17:35:37'),
(1004, 'cncvandenberg@gmail.com', NULL, 'subscribed', '2026-06-02 17:35:38', '2026-06-02 17:35:38'),
(1005, 'monypots@gmail.com', NULL, 'subscribed', '2026-06-02 17:38:50', '2026-06-02 17:38:50'),
(1006, 'darin5g@yahoo.com', NULL, 'subscribed', '2026-06-02 18:02:22', '2026-06-02 18:02:22'),
(1007, 'pmarchi@pacbell.net', NULL, 'subscribed', '2026-06-02 18:02:22', '2026-06-02 18:02:22'),
(1008, 'waterforgotham@gmail.com', NULL, 'subscribed', '2026-06-02 18:28:58', '2026-06-02 18:28:58'),
(1009, 'b.allen001@yahoo.com', NULL, 'subscribed', '2026-06-02 18:48:48', '2026-06-02 18:48:48'),
(1010, 'cameron.b.haas@gmail.com', NULL, 'subscribed', '2026-06-02 18:48:49', '2026-06-02 18:48:49'),
(1011, 'jordan@y8studio.com', NULL, 'subscribed', '2026-06-02 18:50:23', '2026-06-02 18:50:23'),
(1012, 'nataliana11@hotmail.com', NULL, 'subscribed', '2026-06-02 18:59:50', '2026-06-02 18:59:50'),
(1013, 'ashleyvanlier@hotmail.com', NULL, 'subscribed', '2026-06-02 18:59:55', '2026-06-02 18:59:55'),
(1014, 'renee.sanders@gmail.com', NULL, 'subscribed', '2026-06-02 19:00:04', '2026-06-02 19:00:04'),
(1015, 'rimk@who.int', NULL, 'subscribed', '2026-06-02 19:08:18', '2026-06-02 19:08:18'),
(1016, 'annaperez637@gmail.com', NULL, 'subscribed', '2026-06-02 19:09:14', '2026-06-02 19:09:14'),
(1017, 'elmedin.draganovic@inpro-electric.de', NULL, 'subscribed', '2026-06-02 19:13:21', '2026-06-02 19:13:21'),
(1018, 'zamboodr@schaeffler.com', NULL, 'subscribed', '2026-06-02 19:13:21', '2026-06-02 19:13:21');
INSERT INTO `newsletters` (`id`, `email`, `name`, `status`, `created_at`, `updated_at`) VALUES
(1019, 'bhatiav@who.int', NULL, 'subscribed', '2026-06-02 19:13:22', '2026-06-02 19:13:22'),
(1020, 'jeffbush286@gmail.com', NULL, 'subscribed', '2026-06-02 19:34:27', '2026-06-02 19:34:27'),
(1021, 'exieinger5948@outlook.com', NULL, 'subscribed', '2026-06-02 19:36:54', '2026-06-02 19:36:54'),
(1022, 'loydd@allsteeloffice.com', NULL, 'subscribed', '2026-06-02 19:49:59', '2026-06-02 19:49:59'),
(1023, 'kgrossheim@allenedmonds.com', NULL, 'subscribed', '2026-06-02 19:50:02', '2026-06-02 19:50:02'),
(1024, 'justin.douma@allylogistics.com', NULL, 'subscribed', '2026-06-02 19:50:12', '2026-06-02 19:50:12'),
(1025, 'enavarro@aluminumprecision.com', NULL, 'subscribed', '2026-06-02 19:54:43', '2026-06-02 19:54:43'),
(1026, 'asharpe@americanbathgroup.com', NULL, 'subscribed', '2026-06-02 19:54:58', '2026-06-02 19:54:58'),
(1027, 'eocheltree@americantextile.com', NULL, 'subscribed', '2026-06-02 19:57:40', '2026-06-02 19:57:40'),
(1028, 'coakes@allegiancestaffing.com', NULL, 'subscribed', '2026-06-02 20:00:23', '2026-06-02 20:00:23'),
(1029, 'bnieto@allegiancecrane.com', NULL, 'subscribed', '2026-06-02 20:00:24', '2026-06-02 20:00:24'),
(1030, 'rstollenwe@allenedmonds.com', NULL, 'subscribed', '2026-06-02 20:00:54', '2026-06-02 20:00:54'),
(1031, 'bfledderjohn@allendistribution.com', NULL, 'subscribed', '2026-06-02 20:03:19', '2026-06-02 20:03:19'),
(1032, 'arivard@albilegeant.com', NULL, 'subscribed', '2026-06-02 20:03:39', '2026-06-02 20:03:39'),
(1033, 'kaocalla72@gmail.com', NULL, 'subscribed', '2026-06-02 20:05:50', '2026-06-02 20:05:50'),
(1034, 'andrewja011@gmail.com', NULL, 'subscribed', '2026-06-02 20:05:51', '2026-06-02 20:05:51'),
(1035, 'mbetz@allenmatkins.com', NULL, 'subscribed', '2026-06-02 20:06:11', '2026-06-02 20:06:11'),
(1036, 'svrubley@allenedmonds.com', NULL, 'subscribed', '2026-06-02 20:08:17', '2026-06-02 20:08:17'),
(1037, 'talbero@alliancemat.com', NULL, 'subscribed', '2026-06-02 20:08:19', '2026-06-02 20:08:19'),
(1038, 'dek@ajrose.com', NULL, 'subscribed', '2026-06-02 20:11:14', '2026-06-02 20:11:14'),
(1039, 'alexanderc@allsteeloffice.com', NULL, 'subscribed', '2026-06-02 20:14:51', '2026-06-02 20:14:51'),
(1040, 'cmjpcjbnfo9jojgwtq3v@outlook.com', NULL, 'subscribed', '2026-06-02 20:14:51', '2026-06-02 20:14:51'),
(1041, 'acherney@airliteplastics.com', NULL, 'subscribed', '2026-06-02 20:14:51', '2026-06-02 20:14:51'),
(1042, 'cthao1@outlook.com', NULL, 'subscribed', '2026-06-02 20:22:41', '2026-06-02 20:22:41'),
(1043, 'mmaxted24@gmail.com', NULL, 'subscribed', '2026-06-02 20:34:58', '2026-06-02 20:34:58'),
(1044, 'patjacobsen25@gmail.com', NULL, 'subscribed', '2026-06-02 20:35:02', '2026-06-02 20:35:02'),
(1045, 'mfortunato@ampcopgh.com', NULL, 'subscribed', '2026-06-02 20:51:59', '2026-06-02 20:51:59'),
(1046, 'jfowler@ancira.com', NULL, 'subscribed', '2026-06-02 20:53:55', '2026-06-02 20:53:55'),
(1047, 'jdaigle@amicoglobal.com', NULL, 'subscribed', '2026-06-02 20:55:03', '2026-06-02 20:55:03'),
(1048, 'cmarsh@american-usa.com', NULL, 'subscribed', '2026-06-02 20:57:39', '2026-06-02 20:57:39'),
(1049, 'brian.schain@apollomech.com', NULL, 'subscribed', '2026-06-02 20:57:48', '2026-06-02 20:57:48'),
(1050, 'bobby@anonymouscontent.com', NULL, 'subscribed', '2026-06-02 20:57:59', '2026-06-02 20:57:59'),
(1051, 'lauri@ammf.com', NULL, 'subscribed', '2026-06-02 21:02:03', '2026-06-02 21:02:03'),
(1052, 'macosta@angstrom-usa.com', NULL, 'subscribed', '2026-06-02 21:02:34', '2026-06-02 21:02:34'),
(1053, 'marina.raynal@androsna.com', NULL, 'subscribed', '2026-06-02 21:07:17', '2026-06-02 21:07:17'),
(1054, 'lsperling@amphenolrf.com', NULL, 'subscribed', '2026-06-02 21:07:42', '2026-06-02 21:07:42'),
(1055, 'itsr@amaxinsurance.com', NULL, 'subscribed', '2026-06-02 21:12:42', '2026-06-02 21:12:42'),
(1056, 'yoan.tyll@airswift.com', NULL, 'subscribed', '2026-06-02 21:19:01', '2026-06-02 21:19:01'),
(1057, 'wmartinez@aireko.com', NULL, 'subscribed', '2026-06-02 21:19:04', '2026-06-02 21:19:04'),
(1058, 'soncan@aircomech.com', NULL, 'subscribed', '2026-06-02 21:19:16', '2026-06-02 21:19:16'),
(1059, 'zoggie.45@gmail.com', NULL, 'subscribed', '2026-06-02 21:27:30', '2026-06-02 21:27:30'),
(1060, 'rlongcrier@aircommcorp.com', NULL, 'subscribed', '2026-06-02 21:27:37', '2026-06-02 21:27:37'),
(1061, 'benjamin.falk@aptim.com', NULL, 'subscribed', '2026-06-02 21:31:23', '2026-06-02 21:31:23'),
(1062, 'anisimova_elena@hotmail.com', NULL, 'subscribed', '2026-06-02 21:34:55', '2026-06-02 21:34:55'),
(1063, 'lsidor@apexcos.com', NULL, 'subscribed', '2026-06-02 21:34:57', '2026-06-02 21:34:57'),
(1064, 'halexandre@arbonne.com', NULL, 'subscribed', '2026-06-02 21:38:55', '2026-06-02 21:38:55'),
(1065, 'jclark@aquaflo.com', NULL, 'subscribed', '2026-06-02 21:38:57', '2026-06-02 21:38:57'),
(1066, 'jcameron@arbonne.com', NULL, 'subscribed', '2026-06-02 21:39:12', '2026-06-02 21:39:12'),
(1067, 'bapslady@yahoo.com', NULL, 'subscribed', '2026-06-02 21:41:49', '2026-06-02 21:41:49'),
(1068, 'tbelbin@aramsco.com', NULL, 'subscribed', '2026-06-02 21:42:05', '2026-06-02 21:42:05'),
(1069, 'michael.mower@artech.com', NULL, 'subscribed', '2026-06-02 21:45:10', '2026-06-02 21:45:10'),
(1070, 'ldevora@aramsco.com', NULL, 'subscribed', '2026-06-02 21:45:11', '2026-06-02 21:45:11'),
(1071, 'nivesh.singh@artech.com', NULL, 'subscribed', '2026-06-02 21:45:24', '2026-06-02 21:45:24'),
(1072, 'cholmes@aramsco.com', NULL, 'subscribed', '2026-06-02 21:50:06', '2026-06-02 21:50:06'),
(1073, 'bobrossgj@gmail.com', NULL, 'subscribed', '2026-06-02 21:57:22', '2026-06-02 21:57:22'),
(1074, 'vjmorrissey02@gmail.com', NULL, 'subscribed', '2026-06-02 22:38:53', '2026-06-02 22:38:53'),
(1075, 'pinevalleyauto@hotmail.com', NULL, 'subscribed', '2026-06-02 23:11:04', '2026-06-02 23:11:04'),
(1076, 'amrady@sbcglobal.net', NULL, 'subscribed', '2026-06-02 23:18:06', '2026-06-02 23:18:06'),
(1077, 'DGAGLIANO@KOLBESTRIPING.COM', NULL, 'subscribed', '2026-06-02 23:18:18', '2026-06-02 23:18:18'),
(1078, 'cathyf@americu.org', NULL, 'subscribed', '2026-06-02 23:22:48', '2026-06-02 23:22:48'),
(1079, 'bjohnson@andrettikarting.com', NULL, 'subscribed', '2026-06-02 23:22:52', '2026-06-02 23:22:52'),
(1080, 'bertha.rodriguez@amports.com', NULL, 'subscribed', '2026-06-02 23:22:57', '2026-06-02 23:22:57'),
(1081, 'dnesterov@amphenolrf.com', NULL, 'subscribed', '2026-06-02 23:26:07', '2026-06-02 23:26:07'),
(1082, 'gcook@amsofusa.com', NULL, 'subscribed', '2026-06-02 23:26:08', '2026-06-02 23:26:08'),
(1083, 'jcervantes@andersonprocess.com', NULL, 'subscribed', '2026-06-02 23:26:30', '2026-06-02 23:26:30'),
(1084, 'hudsone@aleroninc.com', NULL, 'subscribed', '2026-06-02 23:30:02', '2026-06-02 23:30:02'),
(1085, 'afanni@paytomorrow.com', NULL, 'subscribed', '2026-06-02 23:30:03', '2026-06-02 23:30:03'),
(1086, 'ikoschalk@amtrim.com', NULL, 'subscribed', '2026-06-02 23:35:00', '2026-06-02 23:35:00'),
(1087, 'josie.aquino@alignaero.com', NULL, 'subscribed', '2026-06-02 23:40:12', '2026-06-02 23:40:12'),
(1088, 'jcarr@allendistribution.com', NULL, 'subscribed', '2026-06-02 23:40:13', '2026-06-02 23:40:13'),
(1089, 'jpittman@allendistribution.com', NULL, 'subscribed', '2026-06-02 23:40:14', '2026-06-02 23:40:14'),
(1090, 'corey.layman@amarr.com', NULL, 'subscribed', '2026-06-02 23:45:05', '2026-06-02 23:45:05'),
(1091, 'chipc@amalie.com', NULL, 'subscribed', '2026-06-02 23:45:08', '2026-06-02 23:45:08'),
(1092, 'bgomez@americantextile.com', NULL, 'subscribed', '2026-06-02 23:45:14', '2026-06-02 23:45:14'),
(1093, 'lhuneycutt@arli.com', NULL, 'subscribed', '2026-06-02 23:48:46', '2026-06-02 23:48:46'),
(1094, 'kndavis@arrowexterminators.com', NULL, 'subscribed', '2026-06-02 23:48:49', '2026-06-02 23:48:49'),
(1095, 'lynn.overcash@arli.com', NULL, 'subscribed', '2026-06-02 23:49:25', '2026-06-02 23:49:25'),
(1096, 'amelia.v.gonzalez@gmail.com', NULL, 'subscribed', '2026-06-02 23:55:35', '2026-06-02 23:55:35'),
(1097, 'shanfriedman1@gmail.com', NULL, 'subscribed', '2026-06-02 23:55:37', '2026-06-02 23:55:37'),
(1098, 'vinh.tran@kingcounty.gov', NULL, 'subscribed', '2026-06-02 23:59:20', '2026-06-02 23:59:20'),
(1099, 'dave.destiche@amerhart.com', NULL, 'subscribed', '2026-06-03 00:02:18', '2026-06-03 00:02:18'),
(1100, 'craig.makholm@amerhart.com', NULL, 'subscribed', '2026-06-03 00:02:26', '2026-06-03 00:02:26'),
(1101, 'ccballif@yahoo.com', NULL, 'subscribed', '2026-06-03 00:07:47', '2026-06-03 00:07:47'),
(1102, 'mmcgonigle@arbonne.com', NULL, 'subscribed', '2026-06-03 00:13:23', '2026-06-03 00:13:23'),
(1103, 'outis16@icloud.com', NULL, 'subscribed', '2026-06-03 00:13:31', '2026-06-03 00:13:31'),
(1104, 'rpitpit@arbonne.com', NULL, 'subscribed', '2026-06-03 00:27:07', '2026-06-03 00:27:07'),
(1105, 'rrheil@arandell.com', NULL, 'subscribed', '2026-06-03 00:27:11', '2026-06-03 00:27:11'),
(1106, 'Fabiolaescobedo@aol.com', NULL, 'subscribed', '2026-06-03 00:27:11', '2026-06-03 00:27:11'),
(1107, 'sarah@apiofnh.com', NULL, 'subscribed', '2026-06-03 00:32:39', '2026-06-03 00:32:39'),
(1108, 'saripj@api.org', NULL, 'subscribed', '2026-06-03 00:34:20', '2026-06-03 00:34:20'),
(1109, 'peter.divelbiss@ariesgl.com', NULL, 'subscribed', '2026-06-03 00:57:21', '2026-06-03 00:57:21'),
(1110, 'patricia.watkins@ariesgl.com', NULL, 'subscribed', '2026-06-03 01:08:24', '2026-06-03 01:08:24'),
(1111, 'JULIE@CASONROOFING.COM', NULL, 'subscribed', '2026-06-03 01:16:35', '2026-06-03 01:16:35'),
(1112, 'ckrimer@nationalepayment.com', NULL, 'subscribed', '2026-06-03 01:21:52', '2026-06-03 01:21:52'),
(1113, 'mkemp@aireco.com', NULL, 'subscribed', '2026-06-03 01:39:04', '2026-06-03 01:39:04'),
(1114, 'gdelgado@alitho.com', NULL, 'subscribed', '2026-06-03 01:39:44', '2026-06-03 01:39:44'),
(1115, 'zachary.fuller@comcast.net', NULL, 'subscribed', '2026-06-03 01:50:02', '2026-06-03 01:50:02'),
(1116, 'tina.wallach1@aol.com', NULL, 'subscribed', '2026-06-03 01:50:03', '2026-06-03 01:50:03'),
(1117, 'william.medbery@yahoo.com', NULL, 'subscribed', '2026-06-03 02:26:45', '2026-06-03 02:26:45'),
(1118, 'kkirkpatrick@crdist.com', NULL, 'subscribed', '2026-06-03 02:51:17', '2026-06-03 02:51:17'),
(1119, 'manal.shop93@gmail.com', NULL, 'subscribed', '2026-06-03 03:17:32', '2026-06-03 03:17:32'),
(1120, 'marcel.cylkowski@gmail.com', NULL, 'subscribed', '2026-06-03 03:17:48', '2026-06-03 03:17:48'),
(1121, 'qhwh4499@gmail.com', NULL, 'subscribed', '2026-06-03 03:30:59', '2026-06-03 03:30:59'),
(1122, 'lmatasa62@gmail.com', NULL, 'subscribed', '2026-06-03 03:56:23', '2026-06-03 03:56:23'),
(1123, 'globugsis@gmail.com', NULL, 'subscribed', '2026-06-03 04:26:39', '2026-06-03 04:26:39'),
(1124, 'jennaericson@gmail.com', NULL, 'subscribed', '2026-06-03 04:44:47', '2026-06-03 04:44:47'),
(1125, 'muellernicholas@web.de', NULL, 'subscribed', '2026-06-03 04:46:16', '2026-06-03 04:46:16'),
(1126, 'shomarimosi@gmail.com', NULL, 'subscribed', '2026-06-03 04:48:10', '2026-06-03 04:48:10'),
(1127, 'ricese@hotmail.com', NULL, 'subscribed', '2026-06-03 05:07:08', '2026-06-03 05:07:08'),
(1128, 'neuromaniac@gmail.com', NULL, 'subscribed', '2026-06-03 05:29:40', '2026-06-03 05:29:40'),
(1129, 'yaelbelle@gmail.com', NULL, 'subscribed', '2026-06-03 05:30:39', '2026-06-03 05:30:39'),
(1130, 'jenna.alice017@gmail.com', NULL, 'subscribed', '2026-06-03 06:03:30', '2026-06-03 06:03:30'),
(1131, 'lauren_l_hsu@yahoo.com', NULL, 'subscribed', '2026-06-03 06:16:08', '2026-06-03 06:16:08'),
(1132, 'cthemrun@gmail.com', NULL, 'subscribed', '2026-06-03 06:44:37', '2026-06-03 06:44:37'),
(1133, 'michelle@rizosfamily.com', NULL, 'subscribed', '2026-06-03 06:59:43', '2026-06-03 06:59:43'),
(1134, 'mollari@gmail.com', NULL, 'subscribed', '2026-06-03 07:16:27', '2026-06-03 07:16:27'),
(1135, 'taragilbert76@gmail.com', NULL, 'subscribed', '2026-06-03 07:16:28', '2026-06-03 07:16:28'),
(1136, 'jgord14@hotmail.com', NULL, 'subscribed', '2026-06-03 07:34:57', '2026-06-03 07:34:57'),
(1137, 'cheryl_hopfer@icloud.com', NULL, 'subscribed', '2026-06-03 07:36:50', '2026-06-03 07:36:50'),
(1138, 'atinas@sfsu.edu', NULL, 'subscribed', '2026-06-03 07:53:29', '2026-06-03 07:53:29'),
(1139, 'sarahfrenke@gmail.com', NULL, 'subscribed', '2026-06-03 07:53:30', '2026-06-03 07:53:30'),
(1140, 'corynnehein@gmail.com', NULL, 'subscribed', '2026-06-03 08:08:57', '2026-06-03 08:08:57'),
(1141, 'amber.christine.harris@gmail.com', NULL, 'subscribed', '2026-06-03 08:09:39', '2026-06-03 08:09:39'),
(1142, 'gwinl10@hotmail.com', NULL, 'subscribed', '2026-06-03 08:10:10', '2026-06-03 08:10:10'),
(1143, 'greglee26@gmail.com', NULL, 'subscribed', '2026-06-03 08:26:57', '2026-06-03 08:26:57'),
(1144, 'fqeewaxl@mailtb.com', NULL, 'subscribed', '2026-06-03 08:26:58', '2026-06-03 08:26:58'),
(1145, 'amy.stalkup@gmail.com', NULL, 'subscribed', '2026-06-03 08:49:32', '2026-06-03 08:49:32'),
(1146, 'oganashirian8195@outlook.com', NULL, 'subscribed', '2026-06-03 08:50:01', '2026-06-03 08:50:01'),
(1147, 'annalore.rodman@gmail.com', NULL, 'subscribed', '2026-06-03 08:50:19', '2026-06-03 08:50:19'),
(1148, 'sydneyleholt@gmail.com', NULL, 'subscribed', '2026-06-03 09:06:38', '2026-06-03 09:06:38'),
(1149, 'aliciab12345@gmail.com', NULL, 'subscribed', '2026-06-03 09:06:38', '2026-06-03 09:06:38'),
(1150, 'lucianacloward@gmail.com', NULL, 'subscribed', '2026-06-03 09:06:39', '2026-06-03 09:06:39'),
(1151, 'marissa.hermann@gmail.com', NULL, 'subscribed', '2026-06-03 09:44:42', '2026-06-03 09:44:42'),
(1152, 'aprilabigail@gmail.com', NULL, 'subscribed', '2026-06-03 09:45:58', '2026-06-03 09:45:58'),
(1153, 'tiaramccarver@yahoo.com', NULL, 'subscribed', '2026-06-03 09:49:18', '2026-06-03 09:49:18'),
(1154, 'reilag@gmail.com', NULL, 'subscribed', '2026-06-03 10:32:57', '2026-06-03 10:32:57'),
(1155, 'virginia.m.roberson@gmail.com', NULL, 'subscribed', '2026-06-03 10:32:58', '2026-06-03 10:32:58'),
(1156, 'ccwhite590@gmail.com', NULL, 'subscribed', '2026-06-03 10:32:59', '2026-06-03 10:32:59'),
(1157, 'kiana301@yahoo.com', NULL, 'subscribed', '2026-06-03 11:10:59', '2026-06-03 11:10:59'),
(1158, 'brittanymecouch@gmail.com', NULL, 'subscribed', '2026-06-03 11:12:39', '2026-06-03 11:12:39'),
(1159, 'sandaff4@me.com', NULL, 'subscribed', '2026-06-03 12:34:11', '2026-06-03 12:34:11'),
(1160, 'drsnap37@gmail.com', NULL, 'subscribed', '2026-06-03 12:34:11', '2026-06-03 12:34:11'),
(1161, 'softball_qt_298@hotmail.com', NULL, 'subscribed', '2026-06-03 12:34:12', '2026-06-03 12:34:12'),
(1162, 'gmneher@yahoo.com', NULL, 'subscribed', '2026-06-03 13:58:36', '2026-06-03 13:58:36'),
(1163, 'osnaidysg@gmail.com', NULL, 'subscribed', '2026-06-03 13:58:42', '2026-06-03 13:58:42'),
(1164, 'kylievenn@gmail.com', NULL, 'subscribed', '2026-06-03 14:00:42', '2026-06-03 14:00:42'),
(1165, 'pcorbiere@tente.com', NULL, 'subscribed', '2026-06-03 14:37:00', '2026-06-03 14:37:00'),
(1166, 'markus.lorberau@mondigroup.com', NULL, 'subscribed', '2026-06-03 14:37:01', '2026-06-03 14:37:01'),
(1167, 'nicole.schoeni@valora.com', NULL, 'subscribed', '2026-06-03 14:37:12', '2026-06-03 14:37:12'),
(1168, 'ustinelock7638@outlook.com', NULL, 'subscribed', '2026-06-03 14:44:32', '2026-06-03 14:44:32'),
(1169, 'yildiz.yildirim@melecs.com', NULL, 'subscribed', '2026-06-03 14:44:34', '2026-06-03 14:44:34'),
(1170, 'phanikumar.somisetty@attocube.com', NULL, 'subscribed', '2026-06-03 14:45:40', '2026-06-03 14:45:40'),
(1171, 'sascha.helbling@sg.ch', NULL, 'subscribed', '2026-06-03 14:51:22', '2026-06-03 14:51:22'),
(1172, 'robin.luo@te.com', NULL, 'subscribed', '2026-06-03 14:51:22', '2026-06-03 14:51:22'),
(1173, 'sophia.jahn@syntegon.com', NULL, 'subscribed', '2026-06-03 14:51:22', '2026-06-03 14:51:22'),
(1174, 'roland.grueter@sonepar.de', NULL, 'subscribed', '2026-06-03 14:58:54', '2026-06-03 14:58:54'),
(1175, 'mamie.yang@mdpi.com', NULL, 'subscribed', '2026-06-03 15:29:34', '2026-06-03 15:29:34'),
(1176, 'neslihan.kurt@wipo.int', NULL, 'subscribed', '2026-06-03 15:31:14', '2026-06-03 15:31:14'),
(1177, 'm.jarczak@evva.com', NULL, 'subscribed', '2026-06-03 15:32:15', '2026-06-03 15:32:15'),
(1178, 'axhussa@yahoo.com', NULL, 'subscribed', '2026-06-03 15:36:52', '2026-06-03 15:36:52'),
(1179, 'adrienne.zhang@mdpi.com', NULL, 'subscribed', '2026-06-03 15:43:03', '2026-06-03 15:43:03'),
(1180, 'davidg619@yahoo.com', NULL, 'subscribed', '2026-06-03 15:43:12', '2026-06-03 15:43:12'),
(1181, 'tiffany.yu@mdpi.com', NULL, 'subscribed', '2026-06-03 15:50:12', '2026-06-03 15:50:12'),
(1182, 'sherry.zhang@mdpi.com', NULL, 'subscribed', '2026-06-03 15:51:07', '2026-06-03 15:51:07'),
(1183, 'amontances@yahoo.com', NULL, 'subscribed', '2026-06-03 15:58:49', '2026-06-03 15:58:49'),
(1184, 'xbhelper@hotmail.com', NULL, 'subscribed', '2026-06-03 16:52:45', '2026-06-03 16:52:45'),
(1185, 'ryan.is.gray@gmail.com', NULL, 'subscribed', '2026-06-03 16:53:33', '2026-06-03 16:53:33'),
(1186, 'jtluchs@gmail.com', NULL, 'subscribed', '2026-06-03 16:53:48', '2026-06-03 16:53:48'),
(1187, 'mbrewick@gmail.com', NULL, 'subscribed', '2026-06-03 17:45:05', '2026-06-03 17:45:05'),
(1188, 'jtorresdc@gmail.com', NULL, 'subscribed', '2026-06-03 17:45:41', '2026-06-03 17:45:41'),
(1189, 'mauriamobley19@gmail.com', NULL, 'subscribed', '2026-06-03 17:48:24', '2026-06-03 17:48:24'),
(1190, 'bodysnatchers66@yahoo.com', NULL, 'subscribed', '2026-06-03 18:04:16', '2026-06-03 18:04:16'),
(1191, 'varlakova@gmail.com', NULL, 'subscribed', '2026-06-03 18:14:39', '2026-06-03 18:14:39'),
(1192, 'contact.aj1984@gmail.com', NULL, 'subscribed', '2026-06-03 18:14:56', '2026-06-03 18:14:56'),
(1193, 'ryanbish220@gmail.com', NULL, 'subscribed', '2026-06-03 18:15:31', '2026-06-03 18:15:31'),
(1194, 'danni.song@mdpi.com', NULL, 'subscribed', '2026-06-03 18:24:15', '2026-06-03 18:24:15'),
(1195, 'd.zajaczkowska@evva.com', NULL, 'subscribed', '2026-06-03 18:24:15', '2026-06-03 18:24:15'),
(1196, 'dora.wan@mdpi.com', NULL, 'subscribed', '2026-06-03 18:24:16', '2026-06-03 18:24:16'),
(1197, 'gabriel.girard@swisspor.com', NULL, 'subscribed', '2026-06-03 18:29:27', '2026-06-03 18:29:27'),
(1198, 'bruno.zhang@mdpi.com', NULL, 'subscribed', '2026-06-03 18:34:07', '2026-06-03 18:34:07'),
(1199, 'danna.an@mdpi.com', NULL, 'subscribed', '2026-06-03 18:34:14', '2026-06-03 18:34:14'),
(1200, 'ajones@nhf.org.jm', NULL, 'subscribed', '2026-06-03 18:43:06', '2026-06-03 18:43:06'),
(1201, 'gjohnson@nhf.org.jm', NULL, 'subscribed', '2026-06-03 18:43:07', '2026-06-03 18:43:07'),
(1202, 'gajohnson@nhf.org.jm', NULL, 'subscribed', '2026-06-03 18:43:08', '2026-06-03 18:43:08'),
(1203, 'berenise.zavala1994@gmail.com', NULL, 'subscribed', '2026-06-03 19:03:46', '2026-06-03 19:03:46'),
(1204, 'lidia.ostapczuk@dekra.com', NULL, 'subscribed', '2026-06-03 19:10:30', '2026-06-03 19:10:30'),
(1205, 'martin.milovanovic@gw-world.com', NULL, 'subscribed', '2026-06-03 19:10:31', '2026-06-03 19:10:31'),
(1206, 'maciej.gala@strabag.com', NULL, 'subscribed', '2026-06-03 19:10:39', '2026-06-03 19:10:39'),
(1207, 'cynthiasmith@yahoo.com', NULL, 'subscribed', '2026-06-03 19:16:07', '2026-06-03 19:16:07'),
(1208, 'rdwyman@gmail.com', NULL, 'subscribed', '2026-06-03 19:28:22', '2026-06-03 19:28:22'),
(1209, 'cheftanya26@gmail.com', NULL, 'subscribed', '2026-06-03 19:28:24', '2026-06-03 19:28:24'),
(1210, 'paul@access2interpreters.com', NULL, 'subscribed', '2026-06-03 19:48:34', '2026-06-03 19:48:34'),
(1211, 'tgardner@accesstca.com', NULL, 'subscribed', '2026-06-03 19:53:19', '2026-06-03 19:53:19'),
(1212, 'tisley@accorporation.com', NULL, 'subscribed', '2026-06-03 19:53:25', '2026-06-03 19:53:25'),
(1213, 'sheena.kelch@accesssmt.com', NULL, 'subscribed', '2026-06-03 19:55:39', '2026-06-03 19:55:39'),
(1214, 'translations@access2interpreters.com', NULL, 'subscribed', '2026-06-03 19:56:50', '2026-06-03 19:56:50'),
(1215, 'v.licolli@avalonflooring.com', NULL, 'subscribed', '2026-06-03 19:56:51', '2026-06-03 19:56:51'),
(1216, 'chris.pryor@applebuscompany.com', NULL, 'subscribed', '2026-06-03 20:01:15', '2026-06-03 20:01:15'),
(1217, 'afrodella@bdg.net', NULL, 'subscribed', '2026-06-03 20:04:05', '2026-06-03 20:04:05'),
(1218, 'cstevens@aquaflo.com', NULL, 'subscribed', '2026-06-03 20:07:44', '2026-06-03 20:07:44'),
(1219, 'kpizano0@gmail.com', NULL, 'subscribed', '2026-06-03 20:10:59', '2026-06-03 20:10:59'),
(1220, 'raleigh_davis@americanchemistry.com', NULL, 'subscribed', '2026-06-03 20:11:05', '2026-06-03 20:11:05'),
(1221, 'rdelgado@americhem.com', NULL, 'subscribed', '2026-06-03 20:17:46', '2026-06-03 20:17:46'),
(1222, 'pbachinski@americanbathgroup.com', NULL, 'subscribed', '2026-06-03 20:22:39', '2026-06-03 20:22:39'),
(1223, 'mlemieux@americas-gold.com', NULL, 'subscribed', '2026-06-03 20:22:41', '2026-06-03 20:22:41'),
(1224, 'pvandekerckhove@americhem.com', NULL, 'subscribed', '2026-06-03 20:23:31', '2026-06-03 20:23:31'),
(1225, 'larrylanglois@videotron.ca', NULL, 'subscribed', '2026-06-03 20:32:50', '2026-06-03 20:32:50'),
(1226, 'jennifer.zimmerman@ahfproducts.com', NULL, 'subscribed', '2026-06-03 20:47:51', '2026-06-03 20:47:51'),
(1227, 'jluther@asmodeena.com', NULL, 'subscribed', '2026-06-03 20:48:25', '2026-06-03 20:48:25'),
(1228, 'justin.friend@ahfproducts.com', NULL, 'subscribed', '2026-06-03 20:48:43', '2026-06-03 20:48:43'),
(1229, 'lbarnes@acandt.com', NULL, 'subscribed', '2026-06-03 20:51:44', '2026-06-03 20:51:44'),
(1230, 'michelleg@amelicor.com', NULL, 'subscribed', '2026-06-03 20:51:44', '2026-06-03 20:51:44'),
(1231, 'fred.reitz@ahfproducts.com', NULL, 'subscribed', '2026-06-03 20:55:35', '2026-06-03 20:55:35'),
(1232, 'brian.elliott@ahfproducts.com', NULL, 'subscribed', '2026-06-03 20:55:36', '2026-06-03 20:55:36'),
(1233, 'jujutyty@gmail.com', NULL, 'subscribed', '2026-06-03 20:59:57', '2026-06-03 20:59:57'),
(1234, 'ted_otoole@sbcglobal.net', NULL, 'subscribed', '2026-06-03 21:37:09', '2026-06-03 21:37:09'),
(1235, 'drichardson@heidrick.com', NULL, 'subscribed', '2026-06-03 21:39:25', '2026-06-03 21:39:25'),
(1236, 'tiffany.parker1111@gmail.com', NULL, 'subscribed', '2026-06-03 21:57:12', '2026-06-03 21:57:12'),
(1237, 'jaye@staycvr.com', NULL, 'subscribed', '2026-06-03 21:57:13', '2026-06-03 21:57:13'),
(1238, 'aroane@arccorp.com', NULL, 'subscribed', '2026-06-03 22:07:22', '2026-06-03 22:07:22'),
(1239, 'seven@accuratebox.com', NULL, 'subscribed', '2026-06-03 22:12:58', '2026-06-03 22:12:58'),
(1240, 'ryan@accuenergy.com', NULL, 'subscribed', '2026-06-03 22:13:00', '2026-06-03 22:13:00'),
(1241, 'robert.macintyre@acilearning.com', NULL, 'subscribed', '2026-06-03 22:13:00', '2026-06-03 22:13:00'),
(1242, 'aamason@actconstruction.com', NULL, 'subscribed', '2026-06-03 22:17:10', '2026-06-03 22:17:10'),
(1243, 'ccanonico@ardurra.com', NULL, 'subscribed', '2026-06-03 22:21:11', '2026-06-03 22:21:11'),
(1244, 'akyle@arrow.ca', NULL, 'subscribed', '2026-06-03 22:21:12', '2026-06-03 22:21:12'),
(1245, 'angela@arkaexpress.com', NULL, 'subscribed', '2026-06-03 22:21:28', '2026-06-03 22:21:28'),
(1246, 'dnaiser@ardurra.com', NULL, 'subscribed', '2026-06-03 22:25:18', '2026-06-03 22:25:18'),
(1247, 'teresa.ito@acpro.com', NULL, 'subscribed', '2026-06-03 22:25:20', '2026-06-03 22:25:20'),
(1248, 'tjoost@acscorporate.com', NULL, 'subscribed', '2026-06-03 22:25:31', '2026-06-03 22:25:31'),
(1249, 'cory.morrison@arpis.com', NULL, 'subscribed', '2026-06-03 22:29:36', '2026-06-03 22:29:36'),
(1250, 'tchance@actconstruction.com', NULL, 'subscribed', '2026-06-03 22:34:48', '2026-06-03 22:34:48'),
(1251, 'juliet@managementsvs.net', NULL, 'subscribed', '2026-06-03 22:35:50', '2026-06-03 22:35:50'),
(1252, 'mweglarz@accuratetechnologies.com', NULL, 'subscribed', '2026-06-03 22:45:20', '2026-06-03 22:45:20'),
(1253, 'mwaida@aconinvestments.com', NULL, 'subscribed', '2026-06-03 22:45:20', '2026-06-03 22:45:20'),
(1254, 'pknivett@accuratetechnologies.com', NULL, 'subscribed', '2026-06-03 22:45:28', '2026-06-03 22:45:28'),
(1255, 'marshalls@acmetool.com', NULL, 'subscribed', '2026-06-03 22:51:11', '2026-06-03 22:51:11'),
(1256, 'mreasoner@acrescap.com', NULL, 'subscribed', '2026-06-03 22:55:35', '2026-06-03 22:55:35'),
(1257, 'mia.farias@aceindustries.com', NULL, 'subscribed', '2026-06-03 22:55:36', '2026-06-03 22:55:36'),
(1258, 'mjoosten@acrow.com', NULL, 'subscribed', '2026-06-03 22:55:36', '2026-06-03 22:55:36'),
(1259, 'goofin33@gmail.com', NULL, 'subscribed', '2026-06-03 23:14:39', '2026-06-03 23:14:39'),
(1260, 'joshua.martinez2028@icloud.com', NULL, 'subscribed', '2026-06-03 23:14:40', '2026-06-03 23:14:40'),
(1261, 'brandon.burnett2@aol.com', NULL, 'subscribed', '2026-06-03 23:35:37', '2026-06-03 23:35:37'),
(1262, 'mrobinson@wittconstruction.com', NULL, 'subscribed', '2026-06-03 23:36:30', '2026-06-03 23:36:30'),
(1263, 'cheryl_hopfer@yahoo.com', NULL, 'subscribed', '2026-06-03 23:55:27', '2026-06-03 23:55:27'),
(1264, 'awarren@gmail.com', NULL, 'subscribed', '2026-06-03 23:55:33', '2026-06-03 23:55:33'),
(1265, 'lorettamae1953@gmail.com', NULL, 'subscribed', '2026-06-04 00:03:53', '2026-06-04 00:03:53'),
(1266, 'mpjorfi@arborgen.com', NULL, 'subscribed', '2026-06-04 00:08:45', '2026-06-04 00:08:45'),
(1267, 'maalbers@asmodeena.com', NULL, 'subscribed', '2026-06-04 00:14:43', '2026-06-04 00:14:43'),
(1268, 'lgibboney@acbb.com', NULL, 'subscribed', '2026-06-04 00:14:45', '2026-06-04 00:14:45'),
(1269, 'mjohns@bergmannpc.com', NULL, 'subscribed', '2026-06-04 00:15:40', '2026-06-04 00:15:40'),
(1270, 'kimphillips70@gmail.com', NULL, 'subscribed', '2026-06-04 00:26:21', '2026-06-04 00:26:21'),
(1271, 'mbunting@agrilandfs.com', NULL, 'subscribed', '2026-06-04 00:36:30', '2026-06-04 00:36:30'),
(1272, 'mdoersam@aeroglen.com', NULL, 'subscribed', '2026-06-04 00:36:32', '2026-06-04 00:36:32'),
(1273, 'abyington@agcm.com', NULL, 'subscribed', '2026-06-04 00:37:15', '2026-06-04 00:37:15'),
(1274, 'nathan.leyendecker@ahbeck.com', NULL, 'subscribed', '2026-06-04 00:42:12', '2026-06-04 00:42:12'),
(1275, 'plingg@agvalley.com', NULL, 'subscribed', '2026-06-04 00:42:12', '2026-06-04 00:42:12'),
(1276, 'nicole_miller@agrilandfs.com', NULL, 'subscribed', '2026-06-04 00:42:57', '2026-06-04 00:42:57'),
(1277, 'matt.ewald@ahbeck.com', NULL, 'subscribed', '2026-06-04 00:47:49', '2026-06-04 00:47:49'),
(1278, 'luke@agamerica.com', NULL, 'subscribed', '2026-06-04 00:47:49', '2026-06-04 00:47:49'),
(1279, 'lash@afbinternational.com', NULL, 'subscribed', '2026-06-04 00:48:25', '2026-06-04 00:48:25'),
(1280, 'dralphwright@hotmail.com', NULL, 'subscribed', '2026-06-04 00:53:57', '2026-06-04 00:53:57'),
(1281, 'violanteloans@gmail.com', NULL, 'subscribed', '2026-06-04 00:53:59', '2026-06-04 00:53:59'),
(1282, 'jason.armstrong@accesssmt.com', NULL, 'subscribed', '2026-06-04 01:13:15', '2026-06-04 01:13:15'),
(1283, 'jbriede@arccorp.com', NULL, 'subscribed', '2026-06-04 01:13:37', '2026-06-04 01:13:37'),
(1284, 'fsacramone@benchmark-ny.com', NULL, 'subscribed', '2026-06-04 01:14:11', '2026-06-04 01:14:11'),
(1285, 'jallan@accorporation.com', NULL, 'subscribed', '2026-06-04 01:24:56', '2026-06-04 01:24:56'),
(1286, 'ifreeman@asocorp.com', NULL, 'subscribed', '2026-06-04 01:25:06', '2026-06-04 01:25:06'),
(1287, 'tmangelsdorf@agsecorp.com', NULL, 'subscribed', '2026-06-04 01:30:03', '2026-06-04 01:30:03'),
(1288, 'ssose@afd-inc.com', NULL, 'subscribed', '2026-06-04 01:30:07', '2026-06-04 01:30:07'),
(1289, 'sbellois@afd-inc.com', NULL, 'subscribed', '2026-06-04 01:31:07', '2026-06-04 01:31:07'),
(1290, 'victor.rodriguez@ahbeck.com', NULL, 'subscribed', '2026-06-04 01:36:12', '2026-06-04 01:36:12'),
(1291, 'wschenk@afbinternational.com', NULL, 'subscribed', '2026-06-04 01:36:20', '2026-06-04 01:36:20'),
(1292, 'sworley@agleader.com', NULL, 'subscribed', '2026-06-04 01:36:24', '2026-06-04 01:36:24'),
(1293, 'nasimgivian@gmail.com', NULL, 'subscribed', '2026-06-04 01:42:45', '2026-06-04 01:42:45'),
(1294, 'chaseyaklin@gmail.com', NULL, 'subscribed', '2026-06-04 01:53:01', '2026-06-04 01:53:01'),
(1295, 'loretta55@comcast.net', NULL, 'subscribed', '2026-06-04 01:53:07', '2026-06-04 01:53:07'),
(1296, 'mikeander1234@gmail.com', NULL, 'subscribed', '2026-06-04 02:10:55', '2026-06-04 02:10:55'),
(1297, 'eliana.munoz@alexim.com', NULL, 'subscribed', '2026-06-04 02:11:56', '2026-06-04 02:11:56'),
(1298, 'emily.mcbride@airtindi.com', NULL, 'subscribed', '2026-06-04 02:12:01', '2026-06-04 02:12:01'),
(1299, 'perkyjmb@yahoo.com', NULL, 'subscribed', '2026-06-04 02:30:51', '2026-06-04 02:30:51'),
(1300, 'quintjnr@gmail.com', NULL, 'subscribed', '2026-06-04 02:31:04', '2026-06-04 02:31:04'),
(1301, 'kmchisholm1960@gmail.com', NULL, 'subscribed', '2026-06-04 03:08:44', '2026-06-04 03:08:44'),
(1302, 'bsistrunk77@gmail.com', NULL, 'subscribed', '2026-06-04 03:36:07', '2026-06-04 03:36:07'),
(1303, 'tomadamski@aol.com', NULL, 'subscribed', '2026-06-04 03:44:12', '2026-06-04 03:44:12'),
(1304, 'jmjamesfuller@aol.com', NULL, 'subscribed', '2026-06-04 04:15:44', '2026-06-04 04:15:44'),
(1305, 'JEN@NILCOINC.COM', NULL, 'subscribed', '2026-06-04 04:34:43', '2026-06-04 04:34:43'),
(1306, 'yvtru0ng.v@gmail.com', NULL, 'subscribed', '2026-06-04 04:45:14', '2026-06-04 04:45:14'),
(1307, 'porcuelaine@gmail.com', NULL, 'subscribed', '2026-06-04 05:07:22', '2026-06-04 05:07:22'),
(1308, 'aaguirre@hypernetworksinc.com', NULL, 'subscribed', '2026-06-04 05:10:12', '2026-06-04 05:10:12'),
(1309, 'LISASUTHERLAND@COMCAST.NET', NULL, 'subscribed', '2026-06-04 05:35:43', '2026-06-04 05:35:43'),
(1310, 'dawsonk422@gmail.com', NULL, 'subscribed', '2026-06-04 06:11:59', '2026-06-04 06:11:59'),
(1311, 'shannonchipotle@yahoo.com', NULL, 'subscribed', '2026-06-04 06:37:46', '2026-06-04 06:37:46'),
(1312, 'kristiaw@gmail.com', NULL, 'subscribed', '2026-06-04 06:37:46', '2026-06-04 06:37:46'),
(1313, 'jimmy9476@gmail.com', NULL, 'subscribed', '2026-06-04 06:38:22', '2026-06-04 06:38:22'),
(1314, 'lajoie15@up.edu', NULL, 'subscribed', '2026-06-04 07:05:18', '2026-06-04 07:05:18'),
(1315, 'epatch1104@gmail.com', NULL, 'subscribed', '2026-06-04 07:06:02', '2026-06-04 07:06:02'),
(1316, 'dolcecc641@gmail.com', NULL, 'subscribed', '2026-06-04 07:25:25', '2026-06-04 07:25:25'),
(1317, 'beth.patrino15@gmail.com', NULL, 'subscribed', '2026-06-04 07:25:43', '2026-06-04 07:25:43'),
(1318, 'james_wilbourn@hotmail.com', NULL, 'subscribed', '2026-06-04 07:53:08', '2026-06-04 07:53:08'),
(1319, 'cbvinyl@yahoo.com', NULL, 'subscribed', '2026-06-04 07:53:14', '2026-06-04 07:53:14'),
(1320, 'barbara.williams@natplan.com', NULL, 'subscribed', '2026-06-04 09:10:12', '2026-06-04 09:10:12'),
(1321, 'barbara.williams@financialfocusllc.com', NULL, 'subscribed', '2026-06-04 09:10:12', '2026-06-04 09:10:12'),
(1322, 'kvcrqtslrlniy@outlook.com', NULL, 'subscribed', '2026-06-04 09:11:39', '2026-06-04 09:11:39'),
(1323, 'mslinsky@gmail.com', NULL, 'subscribed', '2026-06-04 10:06:29', '2026-06-04 10:06:29'),
(1324, 'casinocogs@aol.com', NULL, 'subscribed', '2026-06-04 10:06:57', '2026-06-04 10:06:57'),
(1325, 'ditzaleigh@yahoo.com', NULL, 'subscribed', '2026-06-04 12:42:47', '2026-06-04 12:42:47'),
(1326, 'paul@karanfasteners.com', NULL, 'subscribed', '2026-06-04 12:43:37', '2026-06-04 12:43:37'),
(1327, 'rrss81@frontiernet.net', NULL, 'subscribed', '2026-06-04 13:26:40', '2026-06-04 13:26:40'),
(1328, 'ibrahimgueler64@gmail.com', NULL, 'subscribed', '2026-06-04 13:26:41', '2026-06-04 13:26:41'),
(1329, 'stjepan.ligenza@hotmail.com', NULL, 'subscribed', '2026-06-04 13:27:52', '2026-06-04 13:27:52'),
(1330, 'jeremiahmurlless@gmail.com', NULL, 'subscribed', '2026-06-04 13:49:39', '2026-06-04 13:49:39'),
(1331, 'louie.sarte@att.net', NULL, 'subscribed', '2026-06-04 13:50:21', '2026-06-04 13:50:21'),
(1332, 'rnfb32@gmail.com', NULL, 'subscribed', '2026-06-04 13:59:30', '2026-06-04 13:59:30'),
(1333, 'willhalas@gmail.com', NULL, 'subscribed', '2026-06-04 14:12:21', '2026-06-04 14:12:21'),
(1334, 'alexandra.fregez@vossloh.com', NULL, 'subscribed', '2026-06-04 14:45:42', '2026-06-04 14:45:42'),
(1335, 'tomas.pinedo@kws.com', NULL, 'subscribed', '2026-06-04 14:51:24', '2026-06-04 14:51:24'),
(1336, 'tanja.rettig@kws.com', NULL, 'subscribed', '2026-06-04 14:51:24', '2026-06-04 14:51:24'),
(1337, 'thomas.maeder@haerter.com', NULL, 'subscribed', '2026-06-04 14:52:02', '2026-06-04 14:52:02'),
(1338, 'tina.laubheimer@suedpack.com', NULL, 'subscribed', '2026-06-04 14:57:52', '2026-06-04 14:57:52'),
(1339, 'monika.kloiber-maitz@kws.com', NULL, 'subscribed', '2026-06-04 14:58:10', '2026-06-04 14:58:10'),
(1340, 'nicolas.roperch@kws.com', NULL, 'subscribed', '2026-06-04 15:03:17', '2026-06-04 15:03:17'),
(1341, 'philip.muenker@bilsing-automation.com', NULL, 'subscribed', '2026-06-04 15:03:33', '2026-06-04 15:03:33'),
(1342, 'devinstravelmail@gmail.com', NULL, 'subscribed', '2026-06-04 15:26:27', '2026-06-04 15:26:27'),
(1343, 'rwbriggs@scs.unr.edu', NULL, 'subscribed', '2026-06-04 15:27:45', '2026-06-04 15:27:45'),
(1344, 'johan.ohlund@pacific-ocean.com', NULL, 'subscribed', '2026-06-04 15:49:40', '2026-06-04 15:49:40'),
(1345, 'angela.pferdt@gmail.com', NULL, 'subscribed', '2026-06-04 15:50:44', '2026-06-04 15:50:44'),
(1346, 'ingrid.wittkamm@falke.com', NULL, 'subscribed', '2026-06-04 16:28:19', '2026-06-04 16:28:19'),
(1347, 'george.musat@kws.com', NULL, 'subscribed', '2026-06-04 16:28:37', '2026-06-04 16:28:37'),
(1348, 'h.bissel@hannover.creditreform.de', NULL, 'subscribed', '2026-06-04 16:28:37', '2026-06-04 16:28:37'),
(1349, 'petra.wiedemann@alpenverein.de', NULL, 'subscribed', '2026-06-04 16:34:32', '2026-06-04 16:34:32'),
(1350, 'meitzenberger@schueco.com', NULL, 'subscribed', '2026-06-04 16:34:35', '2026-06-04 16:34:35'),
(1351, 'pietro.mangarelli@css.ch', NULL, 'subscribed', '2026-06-04 16:34:38', '2026-06-04 16:34:38'),
(1352, 'marie-jose.conceicao@serto.com', NULL, 'subscribed', '2026-06-04 16:41:30', '2026-06-04 16:41:30'),
(1353, 'india.hr@ktr.com', NULL, 'subscribed', '2026-06-04 16:48:09', '2026-06-04 16:48:09'),
(1354, 'austin.brackinmachine@gmail.com', NULL, 'subscribed', '2026-06-04 17:04:21', '2026-06-04 17:04:21'),
(1355, 'inwarrior1@aol.com', NULL, 'subscribed', '2026-06-04 17:13:40', '2026-06-04 17:13:40'),
(1356, 'benmccusker8@gmail.com', NULL, 'subscribed', '2026-06-04 17:26:13', '2026-06-04 17:26:13'),
(1357, 'sararowo@gmail.com', NULL, 'subscribed', '2026-06-04 17:38:55', '2026-06-04 17:38:55'),
(1358, 'ajj_03@yahoo.com', NULL, 'subscribed', '2026-06-04 17:39:50', '2026-06-04 17:39:50'),
(1359, 'cubert507@yahoo.com', NULL, 'subscribed', '2026-06-04 18:15:53', '2026-06-04 18:15:53'),
(1360, 'ferdinand.hamedinger@schwarzmueller.com', NULL, 'subscribed', '2026-06-04 18:15:54', '2026-06-04 18:15:54'),
(1361, 'david.mccoy410@gmail.com', NULL, 'subscribed', '2026-06-04 18:15:58', '2026-06-04 18:15:58'),
(1362, 'flavio.piras@zueblin.de', NULL, 'subscribed', '2026-06-04 18:25:38', '2026-06-04 18:25:38'),
(1363, 'ann-kathrin.bohne@kws.com', NULL, 'subscribed', '2026-06-04 18:28:48', '2026-06-04 18:28:48'),
(1364, 'laura.carnevali@kenteurope.com', NULL, 'subscribed', '2026-06-04 18:32:47', '2026-06-04 18:32:47'),
(1365, 'andy.liu@mdpi.com', NULL, 'subscribed', '2026-06-04 18:33:09', '2026-06-04 18:33:09'),
(1366, 'severine.ambrus@rts.ch', NULL, 'subscribed', '2026-06-04 18:38:09', '2026-06-04 18:38:09'),
(1367, 'stephan.engels@sportscheck.com', NULL, 'subscribed', '2026-06-04 18:38:09', '2026-06-04 18:38:09'),
(1368, 'sven.wlodarczyk@rkw-group.com', NULL, 'subscribed', '2026-06-04 18:47:13', '2026-06-04 18:47:13'),
(1369, 'ulrich.buehler@tgw-group.com', NULL, 'subscribed', '2026-06-04 18:48:19', '2026-06-04 18:48:19'),
(1370, 'sandeep_patil@hotmail.com', NULL, 'subscribed', '2026-06-04 19:51:52', '2026-06-04 19:51:52'),
(1371, 'hchadderdon@albanyairport.com', NULL, 'subscribed', '2026-06-04 19:54:01', '2026-06-04 19:54:01'),
(1372, 'gmorgan@alexanders.net', NULL, 'subscribed', '2026-06-04 19:54:06', '2026-06-04 19:54:06'),
(1373, 'ewallace@alfredwilliams.com', NULL, 'subscribed', '2026-06-04 19:59:36', '2026-06-04 19:59:36'),
(1374, 'fchase@airmar.com', NULL, 'subscribed', '2026-06-04 19:59:52', '2026-06-04 19:59:52'),
(1375, 'gmiller@alfredmiller.com', NULL, 'subscribed', '2026-06-04 20:00:12', '2026-06-04 20:00:12'),
(1376, 'lancepattock56@gmail.com', NULL, 'subscribed', '2026-06-04 20:04:50', '2026-06-04 20:04:50'),
(1377, 'driftprodigy09@gmail.com', NULL, 'subscribed', '2026-06-04 20:05:04', '2026-06-04 20:05:04'),
(1378, 'howard.wang@accuenergy.com', NULL, 'subscribed', '2026-06-04 20:08:20', '2026-06-04 20:08:20'),
(1379, 'jon.dautrich@acpro.com', NULL, 'subscribed', '2026-06-04 20:08:44', '2026-06-04 20:08:44'),
(1380, 'jgreen@acecompressorservices.com', NULL, 'subscribed', '2026-06-04 20:19:03', '2026-06-04 20:19:03'),
(1381, 'jim.johnson@acpro.com', NULL, 'subscribed', '2026-06-04 20:19:03', '2026-06-04 20:19:03'),
(1382, 'brandon.lumm@aceservinc.com', NULL, 'subscribed', '2026-06-04 20:34:55', '2026-06-04 20:34:55'),
(1383, 'bscott@aceindustries.com', NULL, 'subscribed', '2026-06-04 20:35:08', '2026-06-04 20:35:08'),
(1384, 'darbyg@acmetool.com', NULL, 'subscribed', '2026-06-04 20:35:15', '2026-06-04 20:35:15'),
(1385, 'rromero29@cox.net', NULL, 'subscribed', '2026-06-04 20:38:15', '2026-06-04 20:38:15'),
(1386, 'chris.young@acilearning.com', NULL, 'subscribed', '2026-06-04 20:42:18', '2026-06-04 20:42:18'),
(1387, 'loannat@alaskancopper.com', NULL, 'subscribed', '2026-06-04 20:42:32', '2026-06-04 20:42:32'),
(1388, 'andrew.webb@acpro.com', NULL, 'subscribed', '2026-06-04 20:46:13', '2026-06-04 20:46:13'),
(1389, 'amyrichbourg@gmail.com', NULL, 'subscribed', '2026-06-04 20:46:13', '2026-06-04 20:46:13'),
(1390, 'angela.boyer@aclines.com', NULL, 'subscribed', '2026-06-04 20:46:13', '2026-06-04 20:46:13'),
(1391, 'ckoziol@acscorporate.com', NULL, 'subscribed', '2026-06-04 20:49:46', '2026-06-04 20:49:46'),
(1392, 'cjmurray@actconstruction.com', NULL, 'subscribed', '2026-06-04 20:49:48', '2026-06-04 20:49:48'),
(1393, 'annamknull@gmail.com', NULL, 'subscribed', '2026-06-04 20:53:11', '2026-06-04 20:53:11'),
(1394, 'ccruickshankjr54@gmail.com', NULL, 'subscribed', '2026-06-04 20:53:12', '2026-06-04 20:53:12'),
(1395, 'jboulanger11@verizon.net', NULL, 'subscribed', '2026-06-04 21:00:11', '2026-06-04 21:00:11'),
(1396, 's_pavlin75@hotmail.com', NULL, 'subscribed', '2026-06-04 21:01:12', '2026-06-04 21:01:12'),
(1397, 'htr.remus@gmail.com', NULL, 'subscribed', '2026-06-04 21:12:26', '2026-06-04 21:12:26'),
(1398, 'vtsardoulias@alco.com', NULL, 'subscribed', '2026-06-04 21:20:02', '2026-06-04 21:20:02'),
(1399, 'tchala@alaffia.com', NULL, 'subscribed', '2026-06-04 21:20:30', '2026-06-04 21:20:30'),
(1400, 'processing@managementsvs.net', NULL, 'subscribed', '2026-06-04 21:24:39', '2026-06-04 21:24:39'),
(1401, 'fabian.urban@freenet.de', NULL, 'subscribed', '2026-06-04 21:28:54', '2026-06-04 21:28:54'),
(1402, 'zsolt.koleszar@airtindi.com', NULL, 'subscribed', '2026-06-04 21:40:02', '2026-06-04 21:40:02'),
(1403, 'ybouchard-latour@alfid.com', NULL, 'subscribed', '2026-06-04 21:40:26', '2026-06-04 21:40:26'),
(1404, 'evalenza180@yahoo.com', NULL, 'subscribed', '2026-06-04 21:50:21', '2026-06-04 21:50:21'),
(1405, 'kimmieonacloud@aol.com', NULL, 'subscribed', '2026-06-04 22:09:16', '2026-06-04 22:09:16'),
(1406, 'tjfoleyjr@yahoo.com', NULL, 'subscribed', '2026-06-04 22:09:18', '2026-06-04 22:09:18'),
(1407, 'nbilgere23@gmail.com', NULL, 'subscribed', '2026-06-04 23:00:11', '2026-06-04 23:00:11'),
(1408, 'ehusman@asurea.com', NULL, 'subscribed', '2026-06-05 00:03:11', '2026-06-05 00:03:11'),
(1409, 'sevar.khasanova@hyatt.com', NULL, 'subscribed', '2026-06-05 00:07:30', '2026-06-05 00:07:30'),
(1410, 'al.smith93@yahoo.com', NULL, 'subscribed', '2026-06-05 00:08:01', '2026-06-05 00:08:01'),
(1411, 'dennis_tario_ii@aspensquare.com', NULL, 'subscribed', '2026-06-05 00:13:36', '2026-06-05 00:13:36'),
(1412, 'garrick@asgllc.com', NULL, 'subscribed', '2026-06-05 00:18:05', '2026-06-05 00:18:05'),
(1413, 'gthomas@asurea.com', NULL, 'subscribed', '2026-06-05 00:18:06', '2026-06-05 00:18:06'),
(1414, 'nopaydue@comcast.net', NULL, 'subscribed', '2026-06-05 00:34:20', '2026-06-05 00:34:20'),
(1415, 'nlane@atcoflex.com', NULL, 'subscribed', '2026-06-05 00:42:40', '2026-06-05 00:42:40'),
(1416, 'ziga86@gmail.com', NULL, 'subscribed', '2026-06-05 00:42:41', '2026-06-05 00:42:41'),
(1417, 'neil@asgllc.com', NULL, 'subscribed', '2026-06-05 00:42:43', '2026-06-05 00:42:43'),
(1418, 'maprieur@atatitle.com', NULL, 'subscribed', '2026-06-05 00:48:28', '2026-06-05 00:48:28'),
(1419, 'kpayton@atcoflex.com', NULL, 'subscribed', '2026-06-05 00:48:36', '2026-06-05 00:48:36'),
(1420, 'kmiller@associatedpackaging.com', NULL, 'subscribed', '2026-06-05 00:48:40', '2026-06-05 00:48:40'),
(1421, 'jtaylor@associatedpackaging.com', NULL, 'subscribed', '2026-06-05 00:53:01', '2026-06-05 00:53:01'),
(1422, 'katieb@asgllc.com', NULL, 'subscribed', '2026-06-05 00:53:09', '2026-06-05 00:53:09'),
(1423, 'crosshairs@crosshairsgunsmithing.com', NULL, 'subscribed', '2026-06-05 00:56:56', '2026-06-05 00:56:56'),
(1424, 'blicklance@gmail.com', NULL, 'subscribed', '2026-06-05 01:01:59', '2026-06-05 01:01:59'),
(1425, 'hpenajr@sbcglobal.net', NULL, 'subscribed', '2026-06-05 01:06:37', '2026-06-05 01:06:37'),
(1426, 'hill9890@aol.com', NULL, 'subscribed', '2026-06-05 01:16:55', '2026-06-05 01:16:55'),
(1427, 'kcmiam2018@gmail.com', NULL, 'subscribed', '2026-06-05 01:24:46', '2026-06-05 01:24:46'),
(1428, 'bawchia@gmail.com', NULL, 'subscribed', '2026-06-05 01:25:46', '2026-06-05 01:25:46'),
(1429, 'incredibleed7@gmail.com', NULL, 'subscribed', '2026-06-05 01:28:35', '2026-06-05 01:28:35'),
(1430, 'nekrospike@hotmail.com', NULL, 'subscribed', '2026-06-05 01:28:37', '2026-06-05 01:28:37'),
(1431, 'lynn.samuel@autotrader.com', NULL, 'subscribed', '2026-06-05 01:38:35', '2026-06-05 01:38:35'),
(1432, 'lauren.murphy@autotrader.com', NULL, 'subscribed', '2026-06-05 01:38:37', '2026-06-05 01:38:37'),
(1433, 'ncorreale@attorneygeneral.gov', NULL, 'subscribed', '2026-06-05 01:38:59', '2026-06-05 01:38:59'),
(1434, 'purchasing11@automann.com', NULL, 'subscribed', '2026-06-05 01:44:23', '2026-06-05 01:44:23'),
(1435, 'nancypurcell@automaticspring.com', NULL, 'subscribed', '2026-06-05 01:44:23', '2026-06-05 01:44:23'),
(1436, 'purchasing2@automann.com', NULL, 'subscribed', '2026-06-05 01:44:40', '2026-06-05 01:44:40'),
(1437, 'maliks@atlashxm.com', NULL, 'subscribed', '2026-06-05 01:51:10', '2026-06-05 01:51:10'),
(1438, 'm.grossman@avairpros.com', NULL, 'subscribed', '2026-06-05 01:51:29', '2026-06-05 01:51:29'),
(1439, 'cjones@associatedpackaging.com', NULL, 'subscribed', '2026-06-05 01:55:53', '2026-06-05 01:55:53'),
(1440, 'cmartin@asurea.com', NULL, 'subscribed', '2026-06-05 01:56:05', '2026-06-05 01:56:05'),
(1441, 'hmthomp3890@gmail.com', NULL, 'subscribed', '2026-06-05 02:03:46', '2026-06-05 02:03:46'),
(1442, 'alysiaw88@gmail.com', NULL, 'subscribed', '2026-06-05 03:12:27', '2026-06-05 03:12:27'),
(1443, 'markalcc@gmail.com', NULL, 'subscribed', '2026-06-05 03:12:46', '2026-06-05 03:12:46'),
(1444, 'd.wepy@aol.com', NULL, 'subscribed', '2026-06-05 04:01:04', '2026-06-05 04:01:04'),
(1445, 'kathy@klempel.me', NULL, 'subscribed', '2026-06-05 04:47:10', '2026-06-05 04:47:10'),
(1446, 'khantkyaw.mkk@gmail.com', NULL, 'subscribed', '2026-06-05 05:14:45', '2026-06-05 05:14:45'),
(1447, 'nicoledimattina1984@yahoo.com', NULL, 'subscribed', '2026-06-05 05:39:57', '2026-06-05 05:39:57'),
(1448, 'cassierae2323@gmail.com', NULL, 'subscribed', '2026-06-05 06:10:09', '2026-06-05 06:10:09'),
(1449, 'jconti78@yahoo.com', NULL, 'subscribed', '2026-06-05 07:07:15', '2026-06-05 07:07:15'),
(1450, 'dmbfan19788@gmail.com', NULL, 'subscribed', '2026-06-05 07:07:52', '2026-06-05 07:07:52'),
(1451, 'kailuajac@gmail.com', NULL, 'subscribed', '2026-06-05 07:37:31', '2026-06-05 07:37:31'),
(1452, 'johnnyhutt@hotmail.com', NULL, 'subscribed', '2026-06-05 08:24:01', '2026-06-05 08:24:01'),
(1453, 'cjarnes1@gmail.com', NULL, 'subscribed', '2026-06-05 08:24:02', '2026-06-05 08:24:02'),
(1454, 'mjoseph170@yahoo.com', NULL, 'subscribed', '2026-06-05 08:42:27', '2026-06-05 08:42:27'),
(1455, 'crawfordtina5@gmail.com', NULL, 'subscribed', '2026-06-05 08:42:45', '2026-06-05 08:42:45'),
(1456, 'blkyllo@yahoo.com', NULL, 'subscribed', '2026-06-05 08:42:45', '2026-06-05 08:42:45'),
(1457, 'kdilbeck829@aol.com', NULL, 'subscribed', '2026-06-05 09:18:20', '2026-06-05 09:18:20'),
(1458, 'pricewh6@gmail.com', NULL, 'subscribed', '2026-06-05 09:18:21', '2026-06-05 09:18:21'),
(1459, 'ericvhill@me.com', NULL, 'subscribed', '2026-06-05 09:20:43', '2026-06-05 09:20:43'),
(1460, 'krystalzentner@gmail.com', NULL, 'subscribed', '2026-06-05 09:51:12', '2026-06-05 09:51:12'),
(1461, 'alfredjmurphy@gmail.com', NULL, 'subscribed', '2026-06-05 09:51:12', '2026-06-05 09:51:12'),
(1462, 'cmrivera51@gmail.com', NULL, 'subscribed', '2026-06-05 10:41:47', '2026-06-05 10:41:47'),
(1463, 'dancer93555@yahoo.com', NULL, 'subscribed', '2026-06-05 10:47:20', '2026-06-05 10:47:20'),
(1464, 'crystal.pnw@outlook.com', NULL, 'subscribed', '2026-06-05 11:06:22', '2026-06-05 11:06:22'),
(1465, 'smvasquez@hotmail.com', NULL, 'subscribed', '2026-06-05 11:06:23', '2026-06-05 11:06:23'),
(1466, 'dtorres128@gmail.com', NULL, 'subscribed', '2026-06-05 11:06:53', '2026-06-05 11:06:53'),
(1467, 'bbarland@hotmail.com', NULL, 'subscribed', '2026-06-05 11:21:25', '2026-06-05 11:21:25'),
(1468, 'elenapilipenko@aol.com', NULL, 'subscribed', '2026-06-05 11:21:26', '2026-06-05 11:21:26'),
(1469, 'jbugroane@bellsouth.net', NULL, 'subscribed', '2026-06-05 11:51:47', '2026-06-05 11:51:47'),
(1470, 'agentl.inc@gmail.com', NULL, 'subscribed', '2026-06-05 11:52:06', '2026-06-05 11:52:06'),
(1471, 'kbibb10@gmail.com', NULL, 'subscribed', '2026-06-05 12:13:24', '2026-06-05 12:13:24'),
(1472, 'mdlujan@me.com', NULL, 'subscribed', '2026-06-05 12:14:22', '2026-06-05 12:14:22'),
(1473, 'lisa.hanks@gmail.com', NULL, 'subscribed', '2026-06-05 12:15:00', '2026-06-05 12:15:00'),
(1474, 'hlogic1@comcast.net', NULL, 'subscribed', '2026-06-05 12:24:25', '2026-06-05 12:24:25'),
(1475, 'planoyang@gmail.com', NULL, 'subscribed', '2026-06-05 12:24:28', '2026-06-05 12:24:28'),
(1476, 'pjansen19@sbcglobal.net', NULL, 'subscribed', '2026-06-05 12:57:22', '2026-06-05 12:57:22'),
(1477, 'kyuyung_kim@hotmail.com', NULL, 'subscribed', '2026-06-05 12:57:31', '2026-06-05 12:57:31'),
(1478, 'mmorency21@gmail.com', NULL, 'subscribed', '2026-06-05 13:39:42', '2026-06-05 13:39:42'),
(1479, 'dragonfly4684@yahoo.com', NULL, 'subscribed', '2026-06-05 13:39:55', '2026-06-05 13:39:55'),
(1480, 'ammiller4355@yahoo.com', NULL, 'subscribed', '2026-06-05 13:42:22', '2026-06-05 13:42:22'),
(1481, 'dean.betz@harlandclarke.com', NULL, 'subscribed', '2026-06-05 14:27:45', '2026-06-05 14:27:45'),
(1482, 'petertest@alphait.no', NULL, 'subscribed', '2026-06-05 14:43:28', '2026-06-05 14:43:28'),
(1483, 'anne.fournier@rts.ch', NULL, 'subscribed', '2026-06-05 14:50:53', '2026-06-05 14:50:53'),
(1484, 'daniel.laengle@blum.com', NULL, 'subscribed', '2026-06-05 14:52:58', '2026-06-05 14:52:58'),
(1485, 'danielgarnica@hoffmann-group.com', NULL, 'subscribed', '2026-06-05 14:53:08', '2026-06-05 14:53:08'),
(1486, 'es@omya.com', NULL, 'subscribed', '2026-06-05 14:53:23', '2026-06-05 14:53:23'),
(1487, 'jaustberg@alphait.no', NULL, 'subscribed', '2026-06-05 14:57:26', '2026-06-05 14:57:26'),
(1488, 'ann.adly@eg.nestle.com', NULL, 'subscribed', '2026-06-05 14:59:09', '2026-06-05 14:59:09'),
(1489, 'suzette.plott@yahoo.com', NULL, 'subscribed', '2026-06-05 15:01:30', '2026-06-05 15:01:30'),
(1490, 'anna.blumenberg@meyerwerft.de', NULL, 'subscribed', '2026-06-05 15:01:31', '2026-06-05 15:01:31'),
(1491, 'jana.nelting@zaf.hamburg.de', NULL, 'subscribed', '2026-06-05 15:05:57', '2026-06-05 15:05:57'),
(1492, 'justin.ebel@eberspaecher.com', NULL, 'subscribed', '2026-06-05 15:06:28', '2026-06-05 15:06:28'),
(1493, 'peter.nilsen@alphait.no', NULL, 'subscribed', '2026-06-05 15:12:13', '2026-06-05 15:12:13'),
(1494, 'pnilsen@alphait.no', NULL, 'subscribed', '2026-06-05 15:12:15', '2026-06-05 15:12:15'),
(1495, 'peter@alphait.no', NULL, 'subscribed', '2026-06-05 15:12:46', '2026-06-05 15:12:46'),
(1496, 'czarkowskibetsy8@gmail.com', NULL, 'subscribed', '2026-06-05 15:34:38', '2026-06-05 15:34:38'),
(1497, 'sparklbun@aol.com', NULL, 'subscribed', '2026-06-05 15:46:55', '2026-06-05 15:46:55'),
(1498, 'belindajsquarcia@hotmail.com', NULL, 'subscribed', '2026-06-05 15:47:04', '2026-06-05 15:47:04'),
(1499, 'jorn@alpha-as.no', NULL, 'subscribed', '2026-06-05 16:00:15', '2026-06-05 16:00:15'),
(1500, 'bransonjc1997@gmail.com', NULL, 'subscribed', '2026-06-05 16:29:47', '2026-06-05 16:29:47'),
(1501, 'mswinney@brenntag.com', NULL, 'subscribed', '2026-06-05 16:33:02', '2026-06-05 16:33:02'),
(1502, 'catina.eller@wirtgen-group.com', NULL, 'subscribed', '2026-06-05 16:33:20', '2026-06-05 16:33:20'),
(1503, 'piera.bufalo@alfer.com', NULL, 'subscribed', '2026-06-05 16:37:36', '2026-06-05 16:37:36'),
(1504, 'richard.senti@hoval.com', NULL, 'subscribed', '2026-06-05 16:37:39', '2026-06-05 16:37:39'),
(1505, 'frans.thoeene@stromerbike.com', NULL, 'subscribed', '2026-06-05 16:47:21', '2026-06-05 16:47:21'),
(1506, 'ibrahim.basoglu@egoproducts.com', NULL, 'subscribed', '2026-06-05 16:47:47', '2026-06-05 16:47:47'),
(1507, 'jf.duret@visilab.ch', NULL, 'subscribed', '2026-06-05 16:47:47', '2026-06-05 16:47:47'),
(1508, 'ashwin35007@gmail.com', NULL, 'subscribed', '2026-06-05 17:01:18', '2026-06-05 17:01:18'),
(1509, 'rebekahpeck1111@gmail.com', NULL, 'subscribed', '2026-06-05 17:01:18', '2026-06-05 17:01:18'),
(1510, 'czarro@prefcap.com', NULL, 'subscribed', '2026-06-05 17:02:36', '2026-06-05 17:02:36'),
(1511, 'matus.kocner@zeppelin.com', NULL, 'subscribed', '2026-06-05 17:19:48', '2026-06-05 17:19:48'),
(1512, 'monika.doengi@impra.de', NULL, 'subscribed', '2026-06-05 17:19:58', '2026-06-05 17:19:58'),
(1513, 'mzippel1@gema.de', NULL, 'subscribed', '2026-06-05 17:20:01', '2026-06-05 17:20:01'),
(1514, 'ute.smentek@justiz.hamburg.de', NULL, 'subscribed', '2026-06-05 17:24:21', '2026-06-05 17:24:21'),
(1515, 'm.t.pejovic@greiner-gpi.com', NULL, 'subscribed', '2026-06-05 17:25:07', '2026-06-05 17:25:07'),
(1516, 'sanel.hadziosmanovic@lisec.com', NULL, 'subscribed', '2026-06-05 17:25:09', '2026-06-05 17:25:09'),
(1517, 'michael.otto@protectionone.de', NULL, 'subscribed', '2026-06-05 17:29:01', '2026-06-05 17:29:01'),
(1518, 'kevin.willsher@saurer.com', NULL, 'subscribed', '2026-06-05 17:38:14', '2026-06-05 17:38:14'),
(1519, 'k.lom@geze.com', NULL, 'subscribed', '2026-06-05 17:38:48', '2026-06-05 17:38:48'),
(1520, 'juergen.pfaffenbichler@lisec.com', NULL, 'subscribed', '2026-06-05 17:38:58', '2026-06-05 17:38:58'),
(1521, 'knightlois248@yahoo.com', NULL, 'subscribed', '2026-06-05 18:09:38', '2026-06-05 18:09:38'),
(1522, 'hwesley5173@yahoo.com', NULL, 'subscribed', '2026-06-05 18:12:07', '2026-06-05 18:12:07'),
(1523, 'thorens@ebu.ch', NULL, 'subscribed', '2026-06-05 18:24:22', '2026-06-05 18:24:22');
INSERT INTO `newsletters` (`id`, `email`, `name`, `status`, `created_at`, `updated_at`) VALUES
(1524, 'tory.hayden@walter-tools.com', NULL, 'subscribed', '2026-06-05 18:24:23', '2026-06-05 18:24:23'),
(1525, 'sascha.quiram@de.bertrandt.com', NULL, 'subscribed', '2026-06-05 18:24:25', '2026-06-05 18:24:25'),
(1526, 'andrea.haebecke@de.bertrandt.com', NULL, 'subscribed', '2026-06-05 18:29:03', '2026-06-05 18:29:03'),
(1527, 'isabelle.gibert@romande-energie.ch', NULL, 'subscribed', '2026-06-05 18:29:13', '2026-06-05 18:29:13'),
(1528, 'couchkim3800@gmail.com', NULL, 'subscribed', '2026-06-05 18:29:27', '2026-06-05 18:29:27'),
(1529, 'jenny.kaschner@walter-tools.com', NULL, 'subscribed', '2026-06-05 18:33:22', '2026-06-05 18:33:22'),
(1530, 'judith.steckhan@de.bertrandt.com', NULL, 'subscribed', '2026-06-05 18:33:23', '2026-06-05 18:33:23'),
(1531, 'j.gonzalez@mediacompany.com', NULL, 'subscribed', '2026-06-05 18:33:40', '2026-06-05 18:33:40'),
(1532, 'kristin.neugebauer@de.bertrandt.com', NULL, 'subscribed', '2026-06-05 18:38:15', '2026-06-05 18:38:15'),
(1533, 'm.weier@mediacompany.com', NULL, 'subscribed', '2026-06-05 18:38:18', '2026-06-05 18:38:18'),
(1534, 'marphipps02@gmail.com', NULL, 'subscribed', '2026-06-05 18:38:36', '2026-06-05 18:38:36'),
(1535, 'irena.papa@fujielectric-europe.com', NULL, 'subscribed', '2026-06-05 18:41:59', '2026-06-05 18:41:59'),
(1536, 'lawrenceclan07@gmail.com', NULL, 'subscribed', '2026-06-05 19:11:03', '2026-06-05 19:11:03'),
(1537, 'bbygrlmissy1@gmail.com', NULL, 'subscribed', '2026-06-05 19:20:55', '2026-06-05 19:20:55'),
(1538, 'jimmyalaniz63@gmail.com', NULL, 'subscribed', '2026-06-05 19:28:57', '2026-06-05 19:28:57'),
(1539, 'gharo@avery.com', NULL, 'subscribed', '2026-06-05 19:48:25', '2026-06-05 19:48:25'),
(1540, 'jeannie.olondo@autotrader.com', NULL, 'subscribed', '2026-06-05 19:48:27', '2026-06-05 19:48:27'),
(1541, 'wjohnson@atwoods.com', NULL, 'subscribed', '2026-06-05 19:52:19', '2026-06-05 19:52:19'),
(1542, 'twise@auntieannes.com', NULL, 'subscribed', '2026-06-05 19:56:09', '2026-06-05 19:56:09'),
(1543, 'sbaier@atlasinsuranceagency.com', NULL, 'subscribed', '2026-06-05 19:56:35', '2026-06-05 19:56:35'),
(1544, 'andrewclouse@gmail.com', NULL, 'subscribed', '2026-06-05 20:01:02', '2026-06-05 20:01:02'),
(1545, 'tim.micinski@atlasied.com', NULL, 'subscribed', '2026-06-05 20:04:30', '2026-06-05 20:04:30'),
(1546, 'jason.chen@avermedia.com', NULL, 'subscribed', '2026-06-05 20:04:32', '2026-06-05 20:04:32'),
(1547, 'jaspreet.singh@autobahnfreight.com', NULL, 'subscribed', '2026-06-05 20:04:46', '2026-06-05 20:04:46'),
(1548, 'j.aveleyra@avairpros.com', NULL, 'subscribed', '2026-06-05 20:08:31', '2026-06-05 20:08:31'),
(1549, 'jsullivan@auipartners.com', NULL, 'subscribed', '2026-06-05 20:23:09', '2026-06-05 20:23:09'),
(1550, 'jruiz@atwoods.com', NULL, 'subscribed', '2026-06-05 20:23:10', '2026-06-05 20:23:10'),
(1551, 'jon.duffin@atlasied.com', NULL, 'subscribed', '2026-06-05 20:24:20', '2026-06-05 20:24:20'),
(1552, 'jonnyd@autowares.com', NULL, 'subscribed', '2026-06-05 20:29:23', '2026-06-05 20:29:23'),
(1553, 'deanmega99@gmail.com', NULL, 'subscribed', '2026-06-05 20:29:25', '2026-06-05 20:29:25'),
(1554, 'eileen.lieboff@assemblyglobal.com', NULL, 'subscribed', '2026-06-05 20:32:35', '2026-06-05 20:32:35'),
(1555, 'lalbornoz@axiombuilders.ca', NULL, 'subscribed', '2026-06-05 20:32:35', '2026-06-05 20:32:35'),
(1556, 'jdemorest@asarco.com', NULL, 'subscribed', '2026-06-05 20:32:50', '2026-06-05 20:32:50'),
(1557, 'lfeltinton@batteriesplus.com', NULL, 'subscribed', '2026-06-05 20:35:22', '2026-06-05 20:35:22'),
(1558, 'alexandrialee94@yahoo.com', NULL, 'subscribed', '2026-06-05 20:35:29', '2026-06-05 20:35:29'),
(1559, 'luis_prior@atlantic.ca', NULL, 'subscribed', '2026-06-05 20:35:32', '2026-06-05 20:35:32'),
(1560, 'michael.langer@assemblyglobal.com', NULL, 'subscribed', '2026-06-05 20:38:31', '2026-06-05 20:38:31'),
(1561, 'rfigueroa@asarco.com', NULL, 'unsubscribed', '2026-06-05 20:38:31', '2026-06-05 20:38:47'),
(1562, 'pcastaneda@asarco.com', NULL, 'subscribed', '2026-06-05 20:38:33', '2026-06-05 20:38:33'),
(1563, 'julius.beard@awc-inc.com', NULL, 'subscribed', '2026-06-05 20:41:03', '2026-06-05 20:41:03'),
(1564, 'jkuehn@attorneygeneral.gov', NULL, 'subscribed', '2026-06-05 20:44:28', '2026-06-05 20:44:28'),
(1565, 'jesslyn.maron@autotrader.com', NULL, 'subscribed', '2026-06-05 20:44:40', '2026-06-05 20:44:40'),
(1566, 'mevans@atlasoil.com', NULL, 'subscribed', '2026-06-05 20:46:46', '2026-06-05 20:46:46'),
(1567, 'gladyssm@atsinc.com', NULL, 'subscribed', '2026-06-05 20:50:50', '2026-06-05 20:50:50'),
(1568, 'heather.nuckles@assemblyglobal.com', NULL, 'subscribed', '2026-06-05 20:50:51', '2026-06-05 20:50:51'),
(1569, 'joecalboy@gmail.com', NULL, 'subscribed', '2026-06-05 20:56:52', '2026-06-05 20:56:52'),
(1570, 'lumbeegurl_22@yahoo.com', NULL, 'subscribed', '2026-06-05 20:56:54', '2026-06-05 20:56:54'),
(1571, 'jacquelina7@dejoya.us', NULL, 'subscribed', '2026-06-05 20:56:55', '2026-06-05 20:56:55'),
(1572, 'david.su@avermedia.com', NULL, 'subscribed', '2026-06-05 21:08:07', '2026-06-05 21:08:07'),
(1573, 'demetrius.deloach@autotrader.com', NULL, 'subscribed', '2026-06-05 21:08:08', '2026-06-05 21:08:08'),
(1574, 'patrick.perez@ayagoldsilver.com', NULL, 'subscribed', '2026-06-05 21:11:00', '2026-06-05 21:11:00'),
(1575, 'alex.chan@barfieldinc.com', NULL, 'subscribed', '2026-06-05 21:11:01', '2026-06-05 21:11:01'),
(1576, 'psmith@bandiflorida.com', NULL, 'subscribed', '2026-06-05 21:11:01', '2026-06-05 21:11:01'),
(1577, 'salvarez@bal.com', NULL, 'subscribed', '2026-06-05 21:14:11', '2026-06-05 21:14:11'),
(1578, 'sophiai@bachrachgroup.com', NULL, 'subscribed', '2026-06-05 21:14:42', '2026-06-05 21:14:42'),
(1579, 'agabrilska@badgerminingcorp.com', NULL, 'subscribed', '2026-06-05 21:16:52', '2026-06-05 21:16:52'),
(1580, 'obi.chukwumah@b1bank.com', NULL, 'subscribed', '2026-06-05 21:17:13', '2026-06-05 21:17:13'),
(1581, 'danielles@atstraffic.ca', NULL, 'subscribed', '2026-06-05 21:20:07', '2026-06-05 21:20:07'),
(1582, 'cstehling@auipartners.com', NULL, 'subscribed', '2026-06-05 21:22:37', '2026-06-05 21:22:37'),
(1583, 'david.kao@avermedia.com', NULL, 'subscribed', '2026-06-05 21:22:45', '2026-06-05 21:22:45'),
(1584, 's.berg@bankwithchoice.com', NULL, 'subscribed', '2026-06-05 21:26:11', '2026-06-05 21:26:11'),
(1585, 'rreed@bagatelos.com', NULL, 'subscribed', '2026-06-05 21:26:14', '2026-06-05 21:26:14'),
(1586, 'masonwesterhold@gmail.com', NULL, 'subscribed', '2026-06-05 21:28:48', '2026-06-05 21:28:48'),
(1587, 'ehopper@atwoods.com', NULL, 'subscribed', '2026-06-05 21:28:49', '2026-06-05 21:28:49'),
(1588, 'jenn.leon@compass.com', NULL, 'subscribed', '2026-06-05 21:46:15', '2026-06-05 21:46:15'),
(1589, 'timcook152@gmail.com', NULL, 'subscribed', '2026-06-05 21:55:59', '2026-06-05 21:55:59'),
(1590, 'lolaarc@gmail.com', NULL, 'subscribed', '2026-06-05 21:56:03', '2026-06-05 21:56:03'),
(1591, 'kjjdxtdk8@outlook.com', NULL, 'subscribed', '2026-06-05 21:56:06', '2026-06-05 21:56:06'),
(1592, 'glennkoko98@gmail.com', NULL, 'subscribed', '2026-06-05 22:06:24', '2026-06-05 22:06:24'),
(1593, 'jasont@bankwithchoice.com', NULL, 'subscribed', '2026-06-05 22:19:54', '2026-06-05 22:19:54'),
(1594, 'jcoppola@bachrachgroup.com', NULL, 'subscribed', '2026-06-05 22:19:59', '2026-06-05 22:19:59'),
(1595, 'jason.sandel@aztecwell.com', NULL, 'subscribed', '2026-06-05 22:20:34', '2026-06-05 22:20:34'),
(1596, 'rcsimpson9@msn.com', NULL, 'subscribed', '2026-06-05 22:22:56', '2026-06-05 22:22:56'),
(1597, 'jhertz@baileycompany.com', NULL, 'subscribed', '2026-06-05 22:25:53', '2026-06-05 22:25:53'),
(1598, 'jhan@axisinsurance.ca', NULL, 'subscribed', '2026-06-05 22:25:54', '2026-06-05 22:25:54'),
(1599, 'jbailey@baileycompany.com', NULL, 'subscribed', '2026-06-05 22:26:46', '2026-06-05 22:26:46'),
(1600, 'phyllis.taylor1983@gmail.com', NULL, 'subscribed', '2026-06-05 22:29:28', '2026-06-05 22:29:28'),
(1601, 'ikellknowles@yahoo.com', NULL, 'subscribed', '2026-06-05 22:32:22', '2026-06-05 22:32:22'),
(1602, 'jvillar@axiosindustrial.com', NULL, 'subscribed', '2026-06-05 22:32:23', '2026-06-05 22:32:23'),
(1603, 'deborahmartin601@gmail.com', NULL, 'subscribed', '2026-06-05 22:32:25', '2026-06-05 22:32:25'),
(1604, 'paultatalovich@yahoo.com', NULL, 'subscribed', '2026-06-05 22:35:32', '2026-06-05 22:35:32'),
(1605, 'brodstrom@avtechtyee.com', NULL, 'subscribed', '2026-06-05 22:39:40', '2026-06-05 22:39:40'),
(1606, 'bryan.wang@avermedia.com', NULL, 'subscribed', '2026-06-05 22:39:43', '2026-06-05 22:39:43'),
(1607, 'jroe@axiomstrategies.com', NULL, 'subscribed', '2026-06-05 22:41:47', '2026-06-05 22:41:47'),
(1608, 'elroy.winding@att.net', NULL, 'subscribed', '2026-06-05 22:46:39', '2026-06-05 22:46:39'),
(1609, 'rfichera@barnhillcontracting.com', NULL, 'subscribed', '2026-06-05 22:48:32', '2026-06-05 22:48:32'),
(1610, 'normand.robert@avantis.coop', NULL, 'subscribed', '2026-06-05 22:48:33', '2026-06-05 22:48:33'),
(1611, 'kknokapp32@gmail.com', NULL, 'subscribed', '2026-06-05 22:48:45', '2026-06-05 22:48:45'),
(1612, 'jasonne@atsinc.com', NULL, 'subscribed', '2026-06-05 22:50:56', '2026-06-05 22:50:56'),
(1613, 'jean-claude.grenier@avantis.coop', NULL, 'subscribed', '2026-06-05 22:51:06', '2026-06-05 22:51:06'),
(1614, 'sbrown@ballymore.com', NULL, 'subscribed', '2026-06-05 22:53:09', '2026-06-05 22:53:09'),
(1615, 'stephane.dube@avantis.coop', NULL, 'subscribed', '2026-06-05 22:53:22', '2026-06-05 22:53:22'),
(1616, 'kevin.walter@axcelis.com', NULL, 'subscribed', '2026-06-05 22:57:14', '2026-06-05 22:57:14'),
(1617, 'braga.lai@avermedia.com', NULL, 'subscribed', '2026-06-05 22:57:37', '2026-06-05 22:57:37'),
(1618, 'brandon.allen@avengerlogistics.com', NULL, 'subscribed', '2026-06-05 22:57:45', '2026-06-05 22:57:45'),
(1619, 'cordovamotors915@gmail.com', NULL, 'subscribed', '2026-06-05 23:09:10', '2026-06-05 23:09:10'),
(1620, 'riccardo.delbosco@bba.ca', NULL, 'subscribed', '2026-06-05 23:31:46', '2026-06-05 23:31:46'),
(1621, 'stoussaint@beztak.com', NULL, 'subscribed', '2026-06-05 23:31:55', '2026-06-05 23:31:55'),
(1622, 'sdouglas@barnhillcontracting.com', NULL, 'subscribed', '2026-06-05 23:32:18', '2026-06-05 23:32:18'),
(1623, 'sbeznos@beztak.com', NULL, 'subscribed', '2026-06-05 23:35:32', '2026-06-05 23:35:32'),
(1624, 'maxwellplease@gmail.com', NULL, 'subscribed', '2026-06-05 23:42:57', '2026-06-05 23:42:57'),
(1625, 'pyeattk@bayltd.com', NULL, 'subscribed', '2026-06-05 23:46:58', '2026-06-05 23:46:58'),
(1626, 'ramirezl@bayltd.com', NULL, 'subscribed', '2026-06-05 23:47:03', '2026-06-05 23:47:03'),
(1627, 'Mary.mensch1@gmail.com', NULL, 'subscribed', '2026-06-05 23:52:35', '2026-06-05 23:52:35'),
(1628, 'tsellers@bankwithsouthern.com', NULL, 'subscribed', '2026-06-05 23:56:39', '2026-06-05 23:56:39'),
(1629, 'tmchugh@badgerliquor.com', NULL, 'subscribed', '2026-06-05 23:56:43', '2026-06-05 23:56:43'),
(1630, 'toni.aucoin@b1bank.com', NULL, 'subscribed', '2026-06-05 23:56:49', '2026-06-05 23:56:49'),
(1631, 'fastmarion67@gmail.com', NULL, 'subscribed', '2026-06-06 00:00:26', '2026-06-06 00:00:26'),
(1632, 'annutterback@gmail.com', NULL, 'subscribed', '2026-06-06 00:00:27', '2026-06-06 00:00:27'),
(1633, 'vsmith@bankwithsouthern.com', NULL, 'subscribed', '2026-06-06 00:00:46', '2026-06-06 00:00:46'),
(1634, 'jowhitt14@gmail.com', NULL, 'subscribed', '2026-06-06 00:04:05', '2026-06-06 00:04:05'),
(1635, 'abaker@axiomstrategies.com', NULL, 'subscribed', '2026-06-06 00:04:29', '2026-06-06 00:04:29'),
(1636, 'cj.johnson@bankwithchoice.com', NULL, 'subscribed', '2026-06-06 00:07:11', '2026-06-06 00:07:11'),
(1637, 'clementina.diaz@barfieldinc.com', NULL, 'subscribed', '2026-06-06 00:07:15', '2026-06-06 00:07:15'),
(1638, 'supdike@barbizon.com', NULL, 'subscribed', '2026-06-06 00:09:06', '2026-06-06 00:09:06'),
(1639, 'stevej@bachrachgroup.com', NULL, 'subscribed', '2026-06-06 00:09:07', '2026-06-06 00:09:07'),
(1640, 'ademaria@bankatpeoples.com', NULL, 'subscribed', '2026-06-06 00:09:09', '2026-06-06 00:09:09'),
(1641, 'watkinsk@ballardspahr.com', NULL, 'subscribed', '2026-06-06 00:11:37', '2026-06-06 00:11:37'),
(1642, 'hhull@jor-mac.com', NULL, 'subscribed', '2026-06-06 00:17:52', '2026-06-06 00:17:52'),
(1643, 'marksalinas8884@gmail.com', NULL, 'subscribed', '2026-06-06 00:17:55', '2026-06-06 00:17:55'),
(1644, 'croberts@bankwithsouthern.com', NULL, 'subscribed', '2026-06-06 00:20:56', '2026-06-06 00:20:56'),
(1645, 'clowe@aztecwell.com', NULL, 'subscribed', '2026-06-06 00:20:57', '2026-06-06 00:20:57'),
(1646, 'dana.scott@azcentral.com', NULL, 'subscribed', '2026-06-06 00:21:08', '2026-06-06 00:21:08'),
(1647, 'benoit.lasalle@ayagoldsilver.com', NULL, 'subscribed', '2026-06-06 00:24:25', '2026-06-06 00:24:25'),
(1648, 'cguerra@bandiflorida.com', NULL, 'subscribed', '2026-06-06 00:24:38', '2026-06-06 00:24:38'),
(1649, 'parkswhite_thelma@yahoo.com', NULL, 'subscribed', '2026-06-06 00:35:16', '2026-06-06 00:35:16'),
(1650, 'michikins@hotmail.com', NULL, 'subscribed', '2026-06-06 00:42:41', '2026-06-06 00:42:41'),
(1651, 'majpayne15@yahoo.com', NULL, 'subscribed', '2026-06-06 00:50:33', '2026-06-06 00:50:33'),
(1652, 'sach.nj2@gmail.com', NULL, 'subscribed', '2026-06-06 01:10:59', '2026-06-06 01:10:59'),
(1653, 'pskrzypek@belbrandsusa.com', NULL, 'subscribed', '2026-06-06 01:22:17', '2026-06-06 01:22:17'),
(1654, 'pthurston@becknellindustrial.com', NULL, 'subscribed', '2026-06-06 01:22:19', '2026-06-06 01:22:19'),
(1655, 'abe1818@me.com', NULL, 'subscribed', '2026-06-06 01:22:42', '2026-06-06 01:22:42'),
(1656, 'mharlan@bankofthesierra.com', NULL, 'subscribed', '2026-06-06 01:28:38', '2026-06-06 01:28:38'),
(1657, 'mferrara@bakenjoy.com', NULL, 'subscribed', '2026-06-06 01:28:43', '2026-06-06 01:28:43'),
(1658, 'mescoto-morales@bakercommodities.com', NULL, 'subscribed', '2026-06-06 01:28:44', '2026-06-06 01:28:44'),
(1659, 'nroca@beechnut.com', NULL, 'subscribed', '2026-06-06 01:30:41', '2026-06-06 01:30:41'),
(1660, 'nleonard@bearingservice.com', NULL, 'subscribed', '2026-06-06 01:30:43', '2026-06-06 01:30:43'),
(1661, 'ndunand-zaloum@belbrandsusa.com', NULL, 'subscribed', '2026-06-06 01:34:09', '2026-06-06 01:34:09'),
(1662, 'melanie.fivella@bedrosians.com', NULL, 'subscribed', '2026-06-06 01:35:01', '2026-06-06 01:35:01'),
(1663, 'creed954@outlook.com', NULL, 'subscribed', '2026-06-06 01:36:52', '2026-06-06 01:36:52'),
(1664, 'phebenyc@gmail.com', NULL, 'subscribed', '2026-06-06 01:37:20', '2026-06-06 01:37:20'),
(1665, 'mvardion@beconinc.com', NULL, 'subscribed', '2026-06-06 01:39:17', '2026-06-06 01:39:17'),
(1666, 'rickeyrecon2013@yahoo.com', NULL, 'subscribed', '2026-06-06 01:40:02', '2026-06-06 01:40:02'),
(1667, 'mark.bourg@b1bank.com', NULL, 'subscribed', '2026-06-06 01:42:27', '2026-06-06 01:42:27'),
(1668, 'm.haug@bankwithchoice.com', NULL, 'subscribed', '2026-06-06 01:42:36', '2026-06-06 01:42:36'),
(1669, 'gapcap1@gmail.com', NULL, 'subscribed', '2026-06-06 01:49:39', '2026-06-06 01:49:39'),
(1670, 'randy@bass-spot.com', NULL, 'subscribed', '2026-06-06 01:49:40', '2026-06-06 01:49:40'),
(1671, 'howcanibesoawesome@hotmail.com', NULL, 'subscribed', '2026-06-06 01:56:32', '2026-06-06 01:56:32'),
(1672, 'jasruiz87@gmail.com', NULL, 'subscribed', '2026-06-06 03:39:49', '2026-06-06 03:39:49'),
(1673, 'josephfourmyle@gmail.com', NULL, 'subscribed', '2026-06-06 05:26:33', '2026-06-06 05:26:33'),
(1674, 'dw_langley@yahoo.com', NULL, 'subscribed', '2026-06-06 06:57:00', '2026-06-06 06:57:00'),
(1675, 'mark@therogos.com', NULL, 'subscribed', '2026-06-06 06:57:12', '2026-06-06 06:57:12'),
(1676, 'rleung1@msn.com', NULL, 'subscribed', '2026-06-06 06:58:36', '2026-06-06 06:58:36'),
(1677, 'brendablainrn@yahoo.com', NULL, 'subscribed', '2026-06-06 07:27:26', '2026-06-06 07:27:26'),
(1678, 'derekmatthews@hotmail.com', NULL, 'subscribed', '2026-06-06 07:27:27', '2026-06-06 07:27:27'),
(1679, 'sales.shelly@gmail.com', NULL, 'subscribed', '2026-06-06 07:27:27', '2026-06-06 07:27:27'),
(1680, '67miata@comcast.net', NULL, 'subscribed', '2026-06-06 07:58:04', '2026-06-06 07:58:04'),
(1681, 'mariafer26talani@gmail.com', NULL, 'subscribed', '2026-06-06 07:59:34', '2026-06-06 07:59:34'),
(1682, 'jacksontb98@gmail.com', NULL, 'subscribed', '2026-06-06 08:51:46', '2026-06-06 08:51:46'),
(1683, 'stayproductions@mac.com', NULL, 'subscribed', '2026-06-06 08:51:50', '2026-06-06 08:51:50'),
(1684, 'kazzdan82@gmail.com', NULL, 'subscribed', '2026-06-06 08:51:50', '2026-06-06 08:51:50'),
(1685, 'elkinservices707@gmail.com', NULL, 'subscribed', '2026-06-06 09:19:14', '2026-06-06 09:19:14'),
(1686, 'techgrl16@yahoo.com', NULL, 'subscribed', '2026-06-06 09:20:08', '2026-06-06 09:20:08'),
(1687, 'aprilhulse512@gmail.com', NULL, 'subscribed', '2026-06-06 09:36:15', '2026-06-06 09:36:15'),
(1688, 'jwmontoya@aol.com', NULL, 'subscribed', '2026-06-06 09:37:10', '2026-06-06 09:37:10'),
(1689, 'taniaguardiola17@gmail.com', NULL, 'subscribed', '2026-06-06 09:39:27', '2026-06-06 09:39:27'),
(1690, 'marilyndsantos@msn.com', NULL, 'subscribed', '2026-06-06 09:59:36', '2026-06-06 09:59:36'),
(1691, 'olgaduranjimenez@yahoo.es', NULL, 'subscribed', '2026-06-06 09:59:57', '2026-06-06 09:59:57'),
(1692, 'ihansterx4i@yahoo.com', NULL, 'subscribed', '2026-06-06 11:05:34', '2026-06-06 11:05:34'),
(1693, 'memjos@outlook.com', NULL, 'subscribed', '2026-06-06 11:05:35', '2026-06-06 11:05:35'),
(1694, 'obsdrnate@hotmail.com', NULL, 'subscribed', '2026-06-06 11:06:59', '2026-06-06 11:06:59'),
(1695, 'lrwsam7@aol.com', NULL, 'subscribed', '2026-06-06 11:20:18', '2026-06-06 11:20:18'),
(1696, 'panlasigui@cox.net', NULL, 'subscribed', '2026-06-06 11:38:19', '2026-06-06 11:38:19'),
(1697, 'jtiesi@hotmail.com', NULL, 'subscribed', '2026-06-06 11:48:38', '2026-06-06 11:48:38'),
(1698, 'mg.phillips@comcast.net', NULL, 'subscribed', '2026-06-06 11:48:38', '2026-06-06 11:48:38'),
(1699, 'stevenadennis@gmail.com', NULL, 'subscribed', '2026-06-06 11:48:39', '2026-06-06 11:48:39'),
(1700, 'rickmac2@comcast.net', NULL, 'subscribed', '2026-06-06 11:59:00', '2026-06-06 11:59:00'),
(1701, 'cjklaw@yahoo.com', NULL, 'subscribed', '2026-06-06 12:21:44', '2026-06-06 12:21:44'),
(1702, 'markhampton1957@gmail.com', NULL, 'subscribed', '2026-06-06 12:34:42', '2026-06-06 12:34:42'),
(1703, 'steveandrenee@gmail.com', NULL, 'subscribed', '2026-06-06 12:52:39', '2026-06-06 12:52:39'),
(1704, 'octaviomoney99@gmail.com', NULL, 'subscribed', '2026-06-06 13:19:49', '2026-06-06 13:19:49'),
(1705, 'tiffanyol@spokaneschools.org', NULL, 'subscribed', '2026-06-06 13:19:57', '2026-06-06 13:19:57'),
(1706, 'justin.dempe@gmail.com', NULL, 'subscribed', '2026-06-06 13:46:39', '2026-06-06 13:46:39'),
(1707, 'popipupa020@gmail.com', NULL, 'subscribed', '2026-06-06 15:23:26', '2026-06-06 15:23:26'),
(1708, 'bxsasjkvitdz@outlook.com', NULL, 'subscribed', '2026-06-06 16:11:30', '2026-06-06 16:11:30'),
(1709, 'adelalopezpintormayordomo@gmail.com', NULL, 'subscribed', '2026-06-06 17:15:58', '2026-06-06 17:15:58'),
(1710, 'bekkkka32@yahoo.com', NULL, 'subscribed', '2026-06-06 17:15:58', '2026-06-06 17:15:58'),
(1711, 'astevens82@gmail.com', NULL, 'subscribed', '2026-06-06 17:20:23', '2026-06-06 17:20:23'),
(1712, 'lori.alaska@lorill.us', NULL, 'subscribed', '2026-06-06 19:10:05', '2026-06-06 19:10:05'),
(1713, 'angeles.rodri97@gmail.com', NULL, 'subscribed', '2026-06-06 19:10:09', '2026-06-06 19:10:09'),
(1714, 'carol.salazar.email@gmail.com', NULL, 'subscribed', '2026-06-06 19:10:09', '2026-06-06 19:10:09'),
(1715, 'lkeller@ryderins.ca', NULL, 'subscribed', '2026-06-06 21:06:24', '2026-06-06 21:06:24'),
(1716, 'srouse@ryderins.ca', NULL, 'subscribed', '2026-06-06 21:07:04', '2026-06-06 21:07:04'),
(1717, 'ospearing@ryderins.ca', NULL, 'subscribed', '2026-06-06 21:16:04', '2026-06-06 21:16:04'),
(1718, 'csyvlen@ryderins.ca', NULL, 'subscribed', '2026-06-06 21:16:07', '2026-06-06 21:16:07'),
(1719, 'xnpnybguzo534@hotmail.com', NULL, 'subscribed', '2026-06-06 21:25:24', '2026-06-06 21:25:24'),
(1720, 'info@rbr-global.com', NULL, 'subscribed', '2026-06-06 21:43:17', '2026-06-06 21:43:17'),
(1721, 'dswink2369@comcast.net', NULL, 'subscribed', '2026-06-06 21:56:58', '2026-06-06 21:56:58'),
(1722, 'shawn_gontek@yahoo.com', NULL, 'subscribed', '2026-06-06 23:11:38', '2026-06-06 23:11:38'),
(1723, 'shaquanagilbert0@gmail.com', NULL, 'subscribed', '2026-06-07 00:09:13', '2026-06-07 00:09:13'),
(1724, 'moneshathompson7@gmail.com', NULL, 'subscribed', '2026-06-07 01:40:56', '2026-06-07 01:40:56'),
(1725, 'johnson.rafeal@gmail.com', NULL, 'subscribed', '2026-06-07 01:40:59', '2026-06-07 01:40:59'),
(1726, 'justinward261@gmail.com', NULL, 'subscribed', '2026-06-07 02:07:03', '2026-06-07 02:07:03'),
(1727, 'baisryan1984@gmail.com', NULL, 'subscribed', '2026-06-07 02:07:04', '2026-06-07 02:07:04'),
(1728, 'lauren-jayne@live.co.uk', NULL, 'subscribed', '2026-06-07 02:47:32', '2026-06-07 02:47:32'),
(1729, 'bluetip1595@gmail.com', NULL, 'subscribed', '2026-06-07 02:49:02', '2026-06-07 02:49:02'),
(1730, 'spurgeonkristen@gmail.com', NULL, 'subscribed', '2026-06-07 03:21:30', '2026-06-07 03:21:30'),
(1731, 'ashantefranklin@gmail.com', NULL, 'subscribed', '2026-06-07 03:55:42', '2026-06-07 03:55:42'),
(1732, 'davidlee11760@yahoo.com', NULL, 'subscribed', '2026-06-07 03:56:14', '2026-06-07 03:56:14'),
(1733, 'owenruffino@gmail.com', NULL, 'subscribed', '2026-06-07 04:34:55', '2026-06-07 04:34:55'),
(1734, 'alexandersandra6363@yahoo.com', NULL, 'subscribed', '2026-06-07 05:31:17', '2026-06-07 05:31:17'),
(1735, 'meghs6071@gmail.com', NULL, 'subscribed', '2026-06-07 06:25:26', '2026-06-07 06:25:26'),
(1736, 'bethany@foundmyanimal.com', NULL, 'subscribed', '2026-06-07 06:25:37', '2026-06-07 06:25:37'),
(1737, 'rpecjr@yahoo.com', NULL, 'subscribed', '2026-06-07 06:51:07', '2026-06-07 06:51:07'),
(1738, 'hlwhiteside70@gmail.com', NULL, 'subscribed', '2026-06-07 06:51:20', '2026-06-07 06:51:20'),
(1739, 'dchapman20@optonline.net', NULL, 'subscribed', '2026-06-07 06:51:53', '2026-06-07 06:51:53'),
(1740, 'brnyorimi@gmail.com', NULL, 'subscribed', '2026-06-07 07:58:29', '2026-06-07 07:58:29'),
(1741, 'dan76smith@gmail.com', NULL, 'subscribed', '2026-06-07 08:38:47', '2026-06-07 08:38:47'),
(1742, 'totalbeauty@hotmail.com', NULL, 'subscribed', '2026-06-07 08:38:55', '2026-06-07 08:38:55'),
(1743, 'pinnixh@gmail.com', NULL, 'subscribed', '2026-06-07 08:39:15', '2026-06-07 08:39:15'),
(1744, 'mags1178@gmail.com', NULL, 'subscribed', '2026-06-07 09:03:37', '2026-06-07 09:03:37'),
(1745, 'mcpo212211@gmail.com', NULL, 'subscribed', '2026-06-07 09:03:42', '2026-06-07 09:03:42'),
(1746, 'cynbrody@aol.com', NULL, 'subscribed', '2026-06-07 09:05:41', '2026-06-07 09:05:41'),
(1747, 'ralph.effner@gmail.com', NULL, 'subscribed', '2026-06-07 09:41:15', '2026-06-07 09:41:15'),
(1748, 'hnh2000@sbcglobal.net', NULL, 'subscribed', '2026-06-07 11:24:08', '2026-06-07 11:24:08'),
(1749, 'redssmokeshop01@gmail.com', NULL, 'subscribed', '2026-06-07 11:44:46', '2026-06-07 11:44:46'),
(1750, 'doclevy76@hotmail.com', NULL, 'subscribed', '2026-06-07 12:38:54', '2026-06-07 12:38:54'),
(1751, 'jhunstable@gmail.com', NULL, 'subscribed', '2026-06-07 12:38:54', '2026-06-07 12:38:54'),
(1752, 'kimchahal@gmail.com', NULL, 'subscribed', '2026-06-07 13:29:27', '2026-06-07 13:29:27'),
(1753, 'sjjsantos@comcast.net', NULL, 'subscribed', '2026-06-07 13:41:36', '2026-06-07 13:41:36'),
(1754, 'karicassidydiercks@gmail.com', NULL, 'subscribed', '2026-06-07 14:00:57', '2026-06-07 14:00:57'),
(1755, 'dickfmn@gmail.com', NULL, 'subscribed', '2026-06-07 14:19:58', '2026-06-07 14:19:58'),
(1756, 'ray2turnage@yahoo.com', NULL, 'subscribed', '2026-06-07 14:20:21', '2026-06-07 14:20:21'),
(1757, 'shannon@thienemanhomesinc.com', NULL, 'subscribed', '2026-06-07 14:34:51', '2026-06-07 14:34:51'),
(1758, 'gretchengbrown@gmail.com', NULL, 'subscribed', '2026-06-07 14:35:31', '2026-06-07 14:35:31'),
(1759, 'lauriescattini@aol.com', NULL, 'subscribed', '2026-06-07 14:48:19', '2026-06-07 14:48:19'),
(1760, 'dunmeadc@yahoo.com', NULL, 'subscribed', '2026-06-07 15:23:21', '2026-06-07 15:23:21'),
(1761, 'ivandurazo@gmail.com', NULL, 'subscribed', '2026-06-07 15:24:22', '2026-06-07 15:24:22'),
(1762, 'dariusvaug_1@yahoo.com', NULL, 'subscribed', '2026-06-07 18:25:54', '2026-06-07 18:25:54'),
(1763, 'haridaskartha@yahoo.com', NULL, 'subscribed', '2026-06-07 18:26:31', '2026-06-07 18:26:31'),
(1764, 'mhou85@gmail.com', NULL, 'subscribed', '2026-06-07 18:29:19', '2026-06-07 18:29:19'),
(1765, 'cmedcroft@yahoo.com', NULL, 'subscribed', '2026-06-07 19:09:59', '2026-06-07 19:09:59'),
(1766, 'familyc805@gmail.com', NULL, 'subscribed', '2026-06-07 19:10:01', '2026-06-07 19:10:01'),
(1767, 'wrightlogan@gmail.com', NULL, 'subscribed', '2026-06-07 19:10:08', '2026-06-07 19:10:08'),
(1768, 'jrollins5151@gmail.com', NULL, 'subscribed', '2026-06-07 19:59:28', '2026-06-07 19:59:28'),
(1769, 'dogsheep16@gmail.com', NULL, 'subscribed', '2026-06-07 19:59:36', '2026-06-07 19:59:36'),
(1770, 'lucmorrison28@gmail.com', NULL, 'subscribed', '2026-06-07 20:02:20', '2026-06-07 20:02:20'),
(1771, 'tinanmatt420@gmail.com', NULL, 'subscribed', '2026-06-07 21:32:56', '2026-06-07 21:32:56'),
(1772, 'randyalane@gmail.com', NULL, 'subscribed', '2026-06-08 00:19:49', '2026-06-08 00:19:49'),
(1773, 'lian.althuijzen@home.nl', NULL, 'subscribed', '2026-06-08 01:55:46', '2026-06-08 01:55:46'),
(1774, 'lalne1@yahoo.com', NULL, 'subscribed', '2026-06-08 01:56:27', '2026-06-08 01:56:27'),
(1775, 'mchittwood@msn.com', NULL, 'subscribed', '2026-06-08 02:20:57', '2026-06-08 02:20:57'),
(1776, 'lizzy103@proton.me', NULL, 'subscribed', '2026-06-08 02:52:35', '2026-06-08 02:52:35'),
(1777, 'robbykim@hctc.net', NULL, 'subscribed', '2026-06-08 02:53:02', '2026-06-08 02:53:02'),
(1778, 'mjbnijstad@gmail.com', NULL, 'subscribed', '2026-06-08 03:05:24', '2026-06-08 03:05:24'),
(1779, 'tgjameyson@gmail.com', NULL, 'subscribed', '2026-06-08 03:35:09', '2026-06-08 03:35:09'),
(1780, 'jeffm@mietznergroup.com', NULL, 'subscribed', '2026-06-08 03:42:41', '2026-06-08 03:42:41'),
(1781, 'hearmeout@gmail.com', NULL, 'subscribed', '2026-06-08 03:56:06', '2026-06-08 03:56:06'),
(1782, 'kameron.wood42@gmail.com', NULL, 'subscribed', '2026-06-08 04:35:03', '2026-06-08 04:35:03'),
(1783, 'teaganrodkewich@gmail.com', NULL, 'subscribed', '2026-06-08 04:35:06', '2026-06-08 04:35:06'),
(1784, 'harvey.ubeda@gmail.com', NULL, 'subscribed', '2026-06-08 04:35:21', '2026-06-08 04:35:21'),
(1785, 'townsend2321@gmail.com', NULL, 'subscribed', '2026-06-08 04:54:56', '2026-06-08 04:54:56'),
(1786, 'joys4joyce@comcast.net', NULL, 'subscribed', '2026-06-08 05:12:02', '2026-06-08 05:12:02'),
(1787, 'deeron93@yahoo.com', NULL, 'subscribed', '2026-06-08 05:32:25', '2026-06-08 05:32:25'),
(1788, 'sz19970806@gmail.com', NULL, 'subscribed', '2026-06-08 05:45:19', '2026-06-08 05:45:19'),
(1789, 'lindsey.maayeh@gmail.com', NULL, 'subscribed', '2026-06-08 06:04:07', '2026-06-08 06:04:07'),
(1790, 'rrkelly123@comcast.net', NULL, 'subscribed', '2026-06-08 06:21:53', '2026-06-08 06:21:53'),
(1791, 'stemcenter@aol.com', NULL, 'subscribed', '2026-06-08 06:21:54', '2026-06-08 06:21:54'),
(1792, 'mamcmahon@gmail.com', NULL, 'subscribed', '2026-06-08 06:47:05', '2026-06-08 06:47:05'),
(1793, 'ehbrannan@gmail.com', NULL, 'subscribed', '2026-06-08 07:00:00', '2026-06-08 07:00:00'),
(1794, 'gperriman@yahoo.com', NULL, 'subscribed', '2026-06-08 07:12:18', '2026-06-08 07:12:18'),
(1795, 'synnove.soraa@gmail.com', NULL, 'subscribed', '2026-06-08 07:12:31', '2026-06-08 07:12:31'),
(1796, 'kotelinvestments@gmail.com', NULL, 'subscribed', '2026-06-08 07:48:32', '2026-06-08 07:48:32'),
(1797, 'wknight561@gmail.com', NULL, 'subscribed', '2026-06-08 07:48:46', '2026-06-08 07:48:46'),
(1798, 'nfrederick2@gmail.com', NULL, 'subscribed', '2026-06-08 08:39:50', '2026-06-08 08:39:50'),
(1799, 'anitasaur@t-online.de', NULL, 'subscribed', '2026-06-08 08:39:55', '2026-06-08 08:39:55'),
(1800, 'scottyp5150@gmail.com', NULL, 'subscribed', '2026-06-08 09:41:13', '2026-06-08 09:41:13'),
(1801, 'traveling.ink@comcast.net', NULL, 'subscribed', '2026-06-08 10:33:18', '2026-06-08 10:33:18'),
(1802, 'doylecrew@telus.net', NULL, 'subscribed', '2026-06-08 10:33:18', '2026-06-08 10:33:18'),
(1803, 'jyciriaco@gmail.com', NULL, 'subscribed', '2026-06-08 12:51:50', '2026-06-08 12:51:50'),
(1804, 'ptrippet49@gmail.com', NULL, 'subscribed', '2026-06-08 12:54:11', '2026-06-08 12:54:11'),
(1805, 'rosalyn.rosenthal@me.com', NULL, 'subscribed', '2026-06-08 13:20:35', '2026-06-08 13:20:35'),
(1806, 'miguelgb82d@gmail.com', NULL, 'subscribed', '2026-06-08 13:20:36', '2026-06-08 13:20:36'),
(1807, 'firedude555@aol.com', NULL, 'subscribed', '2026-06-08 13:22:05', '2026-06-08 13:22:05'),
(1808, 'lesgjguerro@gmail.com', NULL, 'subscribed', '2026-06-08 13:34:18', '2026-06-08 13:34:18'),
(1809, 'rspence@uidaho.edu', NULL, 'subscribed', '2026-06-08 13:47:02', '2026-06-08 13:47:02'),
(1810, 'david@ledacorp.net', NULL, 'subscribed', '2026-06-08 13:48:52', '2026-06-08 13:48:52'),
(1811, 'janetb.gregory@cox.net', NULL, 'subscribed', '2026-06-08 13:59:45', '2026-06-08 13:59:45'),
(1812, 'bluumeani@gmail.com', NULL, 'subscribed', '2026-06-08 14:20:44', '2026-06-08 14:20:44'),
(1813, '4saksinbendoregon@gmail.com', NULL, 'subscribed', '2026-06-08 14:20:45', '2026-06-08 14:20:45'),
(1814, 'barry@dance90210.com', NULL, 'subscribed', '2026-06-08 14:53:06', '2026-06-08 14:53:06'),
(1815, 'elisa.singer@tsquare-usa.com', NULL, 'subscribed', '2026-06-08 14:53:14', '2026-06-08 14:53:14'),
(1816, 'juancostantini@me.com', NULL, 'subscribed', '2026-06-08 17:14:06', '2026-06-08 17:14:06'),
(1817, 'dwest3983@gmail.com', NULL, 'subscribed', '2026-06-08 18:03:08', '2026-06-08 18:03:08'),
(1818, 'kdurquiza@gmail.com', NULL, 'subscribed', '2026-06-08 19:20:56', '2026-06-08 19:20:56'),
(1819, 'meganhw71@yahoo.com', NULL, 'subscribed', '2026-06-08 19:22:11', '2026-06-08 19:22:11'),
(1820, 'karimah.harris19@gmail.com', NULL, 'subscribed', '2026-06-08 19:52:54', '2026-06-08 19:52:54'),
(1821, 'conniequinn@aol.com', NULL, 'subscribed', '2026-06-08 19:53:23', '2026-06-08 19:53:23'),
(1822, 'angjimgar14@gmail.com', NULL, 'subscribed', '2026-06-08 20:04:28', '2026-06-08 20:04:28'),
(1823, 'sarena@staycvr.com', NULL, 'subscribed', '2026-06-08 20:04:29', '2026-06-08 20:04:29'),
(1824, 'rwangner@aol.com', NULL, 'subscribed', '2026-06-08 20:04:31', '2026-06-08 20:04:31'),
(1825, 'carolinc12@yahoo.com', NULL, 'subscribed', '2026-06-08 20:10:43', '2026-06-08 20:10:43'),
(1826, 'jlperine@gmail.com', NULL, 'subscribed', '2026-06-08 20:41:39', '2026-06-08 20:41:39'),
(1827, 'mountainbrookink@gmail.com', NULL, 'subscribed', '2026-06-08 21:29:00', '2026-06-08 21:29:00'),
(1828, 'riddlejacob566@gmail.com', NULL, 'subscribed', '2026-06-08 21:29:02', '2026-06-08 21:29:02'),
(1829, 'medikate@aol.com', NULL, 'subscribed', '2026-06-08 21:30:04', '2026-06-08 21:30:04'),
(1830, 'annmvargas@aol.com', NULL, 'subscribed', '2026-06-08 21:56:34', '2026-06-08 21:56:34'),
(1831, 'bass6v6o6@gmail.com', NULL, 'subscribed', '2026-06-08 22:18:57', '2026-06-08 22:18:57'),
(1832, 'mikekathammond@gmail.com', NULL, 'subscribed', '2026-06-08 22:19:55', '2026-06-08 22:19:55'),
(1833, 'rebecatorres8@hotmail.com', NULL, 'subscribed', '2026-06-08 23:17:45', '2026-06-08 23:17:45'),
(1834, 'marykbarr@gmail.com', NULL, 'subscribed', '2026-06-08 23:38:17', '2026-06-08 23:38:17'),
(1835, 'kimmie51170@gmail.com', NULL, 'subscribed', '2026-06-09 01:26:06', '2026-06-09 01:26:06'),
(1836, 'MARGARET.BURRIS1@GMAIL.COM', NULL, 'subscribed', '2026-06-09 02:49:01', '2026-06-09 02:49:01'),
(1837, 'kpsp32@yahoo.com', NULL, 'subscribed', '2026-06-09 03:22:26', '2026-06-09 03:22:26'),
(1838, 'YUKI.MORGAN@MIKUNI-AMERICA.COM', NULL, 'subscribed', '2026-06-09 03:40:37', '2026-06-09 03:40:37'),
(1839, 'MARYM@PUMPINGSOLUTIONS.NET', NULL, 'subscribed', '2026-06-09 04:10:59', '2026-06-09 04:10:59'),
(1840, 'mynewemailnow8@yahoo.com', NULL, 'subscribed', '2026-06-09 06:00:11', '2026-06-09 06:00:11'),
(1841, 'dskerr48@gmail.com', NULL, 'subscribed', '2026-06-09 07:17:09', '2026-06-09 07:17:09'),
(1842, 'kathyannhein@gmail.com', NULL, 'subscribed', '2026-06-09 07:17:16', '2026-06-09 07:17:16'),
(1843, 'ginaemoss@gmail.com', NULL, 'subscribed', '2026-06-09 07:17:21', '2026-06-09 07:17:21'),
(1844, 'sisnerosjohnny47@gmail.com', NULL, 'subscribed', '2026-06-09 08:03:07', '2026-06-09 08:03:07'),
(1845, 'tanya.grunina@gmail.com', NULL, 'subscribed', '2026-06-09 08:03:28', '2026-06-09 08:03:28'),
(1846, 'gypseajill@gmail.com', NULL, 'subscribed', '2026-06-09 08:05:59', '2026-06-09 08:05:59'),
(1847, 'kimd888@aol.com', NULL, 'subscribed', '2026-06-09 09:19:44', '2026-06-09 09:19:44'),
(1848, 'mrobe26@yahoo.com', NULL, 'subscribed', '2026-06-09 09:21:12', '2026-06-09 09:21:12'),
(1849, 'kimberlystewart1228@yahoo.com', NULL, 'subscribed', '2026-06-09 09:21:15', '2026-06-09 09:21:15'),
(1850, 'cessali.fox@gmail.com', NULL, 'subscribed', '2026-06-10 18:09:52', '2026-06-10 18:09:52'),
(1851, 'dogquest@cox.net', NULL, 'subscribed', '2026-06-10 18:48:17', '2026-06-10 18:48:17'),
(1852, 'eguchi1974@gmail.com', NULL, 'subscribed', '2026-06-10 18:48:25', '2026-06-10 18:48:25'),
(1853, 'bluedenimtrip@gmail.com', NULL, 'subscribed', '2026-06-10 18:50:38', '2026-06-10 18:50:38'),
(1854, 'donnak720@yahoo.com', NULL, 'subscribed', '2026-06-10 19:26:48', '2026-06-10 19:26:48'),
(1855, 'sallychamplin@gmail.com', NULL, 'subscribed', '2026-06-10 19:46:00', '2026-06-10 19:46:00'),
(1856, 'billbinnsmachineshop@hotmail.com', NULL, 'subscribed', '2026-06-10 19:48:00', '2026-06-10 19:48:00'),
(1857, 'james.mihm@gmail.com', NULL, 'subscribed', '2026-06-10 20:00:27', '2026-06-10 20:00:27'),
(1858, 'PAT.LOSEY@COVENANTSCHOOLS.COM', NULL, 'subscribed', '2026-06-10 20:00:31', '2026-06-10 20:00:31'),
(1859, 'DOZE329@GMAIL.COM', NULL, 'subscribed', '2026-06-10 20:02:16', '2026-06-10 20:02:16'),
(1860, 'utxdoni@gmail.com', NULL, 'subscribed', '2026-06-10 20:13:23', '2026-06-10 20:13:23'),
(1861, 'juniotribe@msn.com', NULL, 'subscribed', '2026-06-10 20:27:31', '2026-06-10 20:27:31'),
(1862, 'amber_wageman@yahoo.com', NULL, 'subscribed', '2026-06-10 22:04:58', '2026-06-10 22:04:58'),
(1863, 'scottr@hrdlawyers.com', NULL, 'subscribed', '2026-06-10 22:22:06', '2026-06-10 22:22:06'),
(1864, 'smw822@gmail.com', NULL, 'subscribed', '2026-06-10 22:22:09', '2026-06-10 22:22:09'),
(1865, 'pearsontodd@msn.com', NULL, 'subscribed', '2026-06-10 22:39:17', '2026-06-10 22:39:17'),
(1866, 'biggayjohndj@gmail.com', NULL, 'subscribed', '2026-06-10 23:59:47', '2026-06-10 23:59:47'),
(1867, 'jesseb@stoughtontrailers.com', NULL, 'subscribed', '2026-06-11 00:35:26', '2026-06-11 00:35:26'),
(1868, 'amorrell@mrocorp.com', NULL, 'subscribed', '2026-06-11 00:35:27', '2026-06-11 00:35:27'),
(1869, 'hmichna@mrocorp.com', NULL, 'subscribed', '2026-06-11 00:36:26', '2026-06-11 00:36:26'),
(1870, 'aginasfam@gmail.com', NULL, 'subscribed', '2026-06-11 00:55:46', '2026-06-11 00:55:46'),
(1871, 'romeroodj@gmail.com', NULL, 'subscribed', '2026-06-11 01:17:37', '2026-06-11 01:17:37'),
(1872, 'becky052386@gmail.com', NULL, 'subscribed', '2026-06-11 01:35:55', '2026-06-11 01:35:55'),
(1873, 'VICKI@HIDDENBROOKFARMKY.COM', NULL, 'subscribed', '2026-06-11 01:47:49', '2026-06-11 01:47:49'),
(1874, 'SPERKINS@WINOOSKIHOUSING.ORG', NULL, 'subscribed', '2026-06-11 02:03:39', '2026-06-11 02:03:39'),
(1875, 'stanley@stanleyre.com', NULL, 'subscribed', '2026-06-11 02:15:22', '2026-06-11 02:15:22'),
(1876, 'marusiajeunon@hotmail.com', NULL, 'subscribed', '2026-06-11 02:15:35', '2026-06-11 02:15:35'),
(1877, 'kvance.devs@gmail.com', NULL, 'subscribed', '2026-06-11 02:45:07', '2026-06-11 02:45:07'),
(1878, 'Accounting@crossbid.com', NULL, 'subscribed', '2026-06-11 03:57:07', '2026-06-11 03:57:07'),
(1879, 'malekshwaky@gmail.com', NULL, 'subscribed', '2026-06-11 05:47:16', '2026-06-11 05:47:16'),
(1880, 'usarmyboy1990@gmail.com', NULL, 'subscribed', '2026-06-11 06:32:55', '2026-06-11 06:32:55'),
(1881, 'woodalljuliana@gmail.com', NULL, 'subscribed', '2026-06-11 06:33:08', '2026-06-11 06:33:08'),
(1882, 'garyelmore64@yahoo.com', NULL, 'subscribed', '2026-06-11 07:05:34', '2026-06-11 07:05:34'),
(1883, 'manuelconcrete@gmail.com', NULL, 'subscribed', '2026-06-11 07:33:35', '2026-06-11 07:33:35'),
(1884, 'jachansen@hotmail.com', NULL, 'subscribed', '2026-06-11 09:06:05', '2026-06-11 09:06:05'),
(1885, 'michaelfselby@gmail.com', NULL, 'subscribed', '2026-06-11 09:06:19', '2026-06-11 09:06:19'),
(1886, 'alex.cohen1@me.com', NULL, 'subscribed', '2026-06-11 09:43:55', '2026-06-11 09:43:55'),
(1887, 'mollyepon@gmail.com', NULL, 'subscribed', '2026-06-11 09:46:18', '2026-06-11 09:46:18'),
(1888, 'khadejakal@yahoo.com', NULL, 'subscribed', '2026-06-11 10:07:38', '2026-06-11 10:07:38'),
(1889, 'saulsilverstein@gmail.com', NULL, 'subscribed', '2026-06-11 10:09:45', '2026-06-11 10:09:45'),
(1890, 'kriskoch302@gmail.com', NULL, 'subscribed', '2026-06-11 10:10:31', '2026-06-11 10:10:31'),
(1891, 'mikiemikes@yahoo.com', NULL, 'subscribed', '2026-06-11 10:34:41', '2026-06-11 10:34:41'),
(1892, 'angeldelarosap@icloud.com', NULL, 'subscribed', '2026-06-11 10:35:44', '2026-06-11 10:35:44'),
(1893, 'dawnlmccormick@gmail.com', NULL, 'subscribed', '2026-06-11 10:38:06', '2026-06-11 10:38:06'),
(1894, 'konstlaw@gmail.com', NULL, 'subscribed', '2026-06-11 10:55:10', '2026-06-11 10:55:10'),
(1895, 'dana_rysavy@yahoo.com', NULL, 'subscribed', '2026-06-11 10:55:18', '2026-06-11 10:55:18'),
(1896, 'jacob@athletebynature.com', NULL, 'subscribed', '2026-06-11 10:55:34', '2026-06-11 10:55:34'),
(1897, 'pautott@yahoo.co.uk', NULL, 'subscribed', '2026-06-11 11:10:45', '2026-06-11 11:10:45'),
(1898, 'dpo.scott.1971@gmail.com', NULL, 'subscribed', '2026-06-11 11:11:10', '2026-06-11 11:11:10'),
(1899, 'bycsuczkhacj@outlook.com', NULL, 'subscribed', '2026-06-11 11:19:03', '2026-06-11 11:19:03'),
(1900, 'luv2scrapinmt@icloud.com', NULL, 'subscribed', '2026-06-11 11:19:34', '2026-06-11 11:19:34'),
(1901, 'djlaval@comcast.net', NULL, 'subscribed', '2026-06-11 11:46:54', '2026-06-11 11:46:54'),
(1902, 'crestyjello@gmail.com', NULL, 'subscribed', '2026-06-11 11:46:54', '2026-06-11 11:46:54'),
(1903, 'jdezurick@msn.com', NULL, 'subscribed', '2026-06-11 12:04:54', '2026-06-11 12:04:54'),
(1904, 'voosh19@aol.com', NULL, 'subscribed', '2026-06-11 12:24:59', '2026-06-11 12:24:59'),
(1905, 'nwammer@comcast.net', NULL, 'subscribed', '2026-06-11 12:25:44', '2026-06-11 12:25:44'),
(1906, 'claudnov97@yahoo.com', NULL, 'subscribed', '2026-06-11 12:42:34', '2026-06-11 12:42:34'),
(1907, 'k_olion@yahoo.com', NULL, 'subscribed', '2026-06-11 13:31:18', '2026-06-11 13:31:18'),
(1908, 'hateemail@cox.net', NULL, 'subscribed', '2026-06-11 13:32:42', '2026-06-11 13:32:42'),
(1909, 'adrieljabreu3@gmail.com', NULL, 'subscribed', '2026-06-11 13:45:07', '2026-06-11 13:45:07'),
(1910, 'elenahowells@gmail.com', NULL, 'subscribed', '2026-06-11 13:45:32', '2026-06-11 13:45:32'),
(1911, 'whiterick@aol.com', NULL, 'subscribed', '2026-06-11 14:10:33', '2026-06-11 14:10:33'),
(1912, 'slidetherear@yahoo.com', NULL, 'subscribed', '2026-06-11 14:20:16', '2026-06-11 14:20:16'),
(1913, 'cali67@msn.com', NULL, 'subscribed', '2026-06-11 14:21:30', '2026-06-11 14:21:30'),
(1914, 'amazon@servifone.com', NULL, 'subscribed', '2026-06-11 14:39:55', '2026-06-11 14:39:55'),
(1915, 'rducharme@gci.com', NULL, 'subscribed', '2026-06-11 14:39:55', '2026-06-11 14:39:55'),
(1916, 'almazt2010@gmail.com', NULL, 'subscribed', '2026-06-11 15:15:28', '2026-06-11 15:15:28'),
(1917, 'safarireef@yahoo.com', NULL, 'subscribed', '2026-06-11 15:39:03', '2026-06-11 15:39:03'),
(1918, 'ewidess@gmail.com', NULL, 'subscribed', '2026-06-11 15:39:07', '2026-06-11 15:39:07'),
(1919, 'mary.engelhardt6@gmail.com', NULL, 'subscribed', '2026-06-11 16:11:17', '2026-06-11 16:11:17'),
(1920, 'davinaaterry@gmail.com', NULL, 'subscribed', '2026-06-11 16:27:39', '2026-06-11 16:27:39'),
(1921, 'imoto121@yahoo.com', NULL, 'subscribed', '2026-06-11 18:34:18', '2026-06-11 18:34:18'),
(1922, 'romo.veronica7@gmail.com', NULL, 'subscribed', '2026-06-11 19:18:31', '2026-06-11 19:18:31'),
(1923, 'c_bosshardt@msn.com', NULL, 'subscribed', '2026-06-11 19:18:40', '2026-06-11 19:18:40'),
(1924, 'eliasfadoua@gmail.com', NULL, 'subscribed', '2026-06-11 20:04:24', '2026-06-11 20:04:24'),
(1925, 'richardwalters@prodigy.net', NULL, 'subscribed', '2026-06-11 20:05:53', '2026-06-11 20:05:53'),
(1926, 'mmontalvo1990@gmail.com', NULL, 'subscribed', '2026-06-11 20:43:19', '2026-06-11 20:43:19'),
(1927, 'janaiwoods1@gmail.com', NULL, 'subscribed', '2026-06-11 20:43:28', '2026-06-11 20:43:28'),
(1928, 'rszieber@gmail.com', NULL, 'subscribed', '2026-06-11 21:28:11', '2026-06-11 21:28:11'),
(1929, 'k_alvarez10@yahoo.com', NULL, 'subscribed', '2026-06-11 21:28:54', '2026-06-11 21:28:54'),
(1930, 'missmaya79@aol.com', NULL, 'subscribed', '2026-06-11 21:29:00', '2026-06-11 21:29:00'),
(1931, 'sarah.c.coffey@gmail.com', NULL, 'subscribed', '2026-06-11 22:50:14', '2026-06-11 22:50:14'),
(1932, 'jignasa@tahimcpas.com', NULL, 'subscribed', '2026-06-11 22:50:24', '2026-06-11 22:50:24'),
(1933, 'tamimay@comcast.net', NULL, 'subscribed', '2026-06-12 00:38:17', '2026-06-12 00:38:17'),
(1934, 'allyecunningham@gmail.com', NULL, 'subscribed', '2026-06-12 00:58:53', '2026-06-12 00:58:53'),
(1935, 'PAMPEREDPAWSGROOMING01@GMAIL.COM', NULL, 'subscribed', '2026-06-12 03:00:48', '2026-06-12 03:00:48'),
(1936, 'lbmllc@lbmhvac.com', NULL, 'subscribed', '2026-06-12 03:41:37', '2026-06-12 03:41:37'),
(1937, 'MONIQUEA@MIMBELA.COM', NULL, 'subscribed', '2026-06-12 03:41:48', '2026-06-12 03:41:48'),
(1938, 'april@sign-mart.com', NULL, 'subscribed', '2026-06-12 04:36:55', '2026-06-12 04:36:55'),
(1939, 'ibrent.melbye@gmail.com', NULL, 'subscribed', '2026-06-12 04:37:07', '2026-06-12 04:37:07'),
(1940, 'Joanne@tobelikeme.org', NULL, 'subscribed', '2026-06-12 04:38:43', '2026-06-12 04:38:43'),
(1941, 'tonetaupule@gmail.com', NULL, 'subscribed', '2026-06-12 07:02:03', '2026-06-12 07:02:03'),
(1942, 'stratosview@gmail.com', NULL, 'subscribed', '2026-06-12 07:02:47', '2026-06-12 07:02:47'),
(1943, 'cmono1212@hotmail.com', NULL, 'subscribed', '2026-06-12 07:50:02', '2026-06-12 07:50:02'),
(1944, 'sales@glorybe.com', NULL, 'subscribed', '2026-06-12 08:55:39', '2026-06-12 08:55:39'),
(1945, 'airbob67@hotmail.com', NULL, 'subscribed', '2026-06-12 08:55:40', '2026-06-12 08:55:40'),
(1946, 'minnixj@gmail.com', NULL, 'subscribed', '2026-06-12 09:14:33', '2026-06-12 09:14:33'),
(1947, 'zeldainsd@yahoo.com', NULL, 'subscribed', '2026-06-12 09:14:33', '2026-06-12 09:14:33'),
(1948, 'datjtran.us@gmail.com', NULL, 'subscribed', '2026-06-12 09:14:34', '2026-06-12 09:14:34'),
(1949, 'riedmayer@hotmail.com', NULL, 'subscribed', '2026-06-12 09:43:02', '2026-06-12 09:43:02'),
(1950, 'ep8008@msn.com', NULL, 'subscribed', '2026-06-12 10:04:44', '2026-06-12 10:04:44'),
(1951, 'sgunge@gmail.com', NULL, 'subscribed', '2026-06-12 10:07:18', '2026-06-12 10:07:18'),
(1952, 'steve56barrow@gmail.com', NULL, 'subscribed', '2026-06-12 10:32:13', '2026-06-12 10:32:13'),
(1953, 'victor1@hx2design.com', NULL, 'subscribed', '2026-06-12 10:34:16', '2026-06-12 10:34:16'),
(1954, 'jlutz@uvic.ca', NULL, 'subscribed', '2026-06-12 10:46:49', '2026-06-12 10:46:49'),
(1955, 'bettyannmichael@yahoo.com', NULL, 'subscribed', '2026-06-12 10:59:33', '2026-06-12 10:59:33'),
(1956, 'njlogan1029@gmail.com', NULL, 'subscribed', '2026-06-12 11:00:34', '2026-06-12 11:00:34'),
(1957, 's.lstevens@yahoo.com', NULL, 'subscribed', '2026-06-12 11:11:52', '2026-06-12 11:11:52'),
(1958, 'partiesonthego@yahoo.com', NULL, 'subscribed', '2026-06-12 11:13:26', '2026-06-12 11:13:26'),
(1959, 'sbzilonka@gmail.com', NULL, 'subscribed', '2026-06-12 11:22:54', '2026-06-12 11:22:54'),
(1960, 'tandejenkins@gmail.com', NULL, 'subscribed', '2026-06-12 11:45:56', '2026-06-12 11:45:56'),
(1961, 'lacielou1022@gmail.com', NULL, 'subscribed', '2026-06-12 11:45:58', '2026-06-12 11:45:58'),
(1962, 'test@test.com', NULL, 'subscribed', '2026-06-12 14:15:55', '2026-06-12 14:15:55'),
(1963, 'mass@test.com', NULL, 'subscribed', '2026-06-12 14:16:21', '2026-06-12 14:16:21'),
(1964, 'julieaknott@msn.com', NULL, 'subscribed', '2026-06-12 14:30:46', '2026-06-12 14:30:46'),
(1965, 'cab158@hotmail.com', NULL, 'subscribed', '2026-06-12 14:51:07', '2026-06-12 14:51:07'),
(1966, 'kdmiller159@yahoo.com', NULL, 'subscribed', '2026-06-12 15:12:49', '2026-06-12 15:12:49'),
(1967, 'brookst45@comcast.net', NULL, 'subscribed', '2026-06-12 15:12:53', '2026-06-12 15:12:53'),
(1968, 'ajpisamf@earthlink.net', NULL, 'subscribed', '2026-06-12 15:36:04', '2026-06-12 15:36:04'),
(1969, 'cristi.berens@icloud.com', NULL, 'subscribed', '2026-06-12 15:36:22', '2026-06-12 15:36:22'),
(1970, 'masakikomcom@gmail.com', NULL, 'subscribed', '2026-06-12 15:36:48', '2026-06-12 15:36:48'),
(1971, 'ixwwfsa204@outlook.com', NULL, 'subscribed', '2026-06-12 16:07:04', '2026-06-12 16:07:04'),
(1972, 'splits48@yahoo.com', NULL, 'subscribed', '2026-06-12 16:07:22', '2026-06-12 16:07:22'),
(1973, 'adamchuk.2004@outlook.com', NULL, 'subscribed', '2026-06-12 16:09:37', '2026-06-12 16:09:37'),
(1974, 'mary.c.oluoch@gmail.com', NULL, 'subscribed', '2026-06-12 16:18:50', '2026-06-12 16:18:50'),
(1975, 'pacificar@hotmail.com', NULL, 'subscribed', '2026-06-12 16:18:50', '2026-06-12 16:18:50'),
(1976, 'domnadudko1999@outlook.com', NULL, 'subscribed', '2026-06-12 16:28:46', '2026-06-12 16:28:46');

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

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

CREATE TABLE `pages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `content` longtext DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `template` varchar(60) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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`, `name`, `content`, `user_id`, `image`, `template`, `description`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Homepage', '<shortcode>[hero-banners title=\"Your Rental Journey, Redefined\" subtitle=\"Discover the perfect car for any occasion. Rent exactly what you want, where you want it, for as long as you need.\" quantity=\"3\" content_1=\"High quality at a low cost.\" content_2=\"Premium services\" content_3=\"24/7 roadside support.\" background_image=\"hero-banner.jpg\"][/hero-banners]</shortcode><shortcode>[car-advance-search link_need_help=\"/faqs\" top=\"-124\" bottom=\"0\" left=\"0\" right=\"0\" url=\"/cars\" background_color=\"rgb(255, 255, 255)\" tabs=\"all,new_car,used_car\" default_tab=\"all\"][/car-advance-search]</shortcode><shortcode>[cars style=\"style-latest\" title=\"Most Viewed Rental Vehicles\" subtitle=\"The world\'s leading car brands\" number_rows=\"2\" limit=\"12\" button_label=\"View More\" button_url=\"/cars\" is_for_sale=\"0\"][/cars]</shortcode><shortcode>[cars style=\"style-latest\" title=\"Most Viewed Classified Vehicles\" subtitle=\"The world\'s leading car brands\" number_rows=\"2\" limit=\"12\" button_label=\"View More\" button_url=\"/car-classified\" is_for_sale=\"1\"][/cars]</shortcode><shortcode>[car-services title=\"Services\" limit=\"12\" enable_lazy_loading=\"no\"][/car-services]</shortcode><shortcode>[car-types title=\"Browse by Type\" sub_title=\"Find the perfect ride for any occasion\" redirect_url=\"/cars\"][/car-types]</shortcode><shortcode>[why-us sub_title=\"HOW IT WORKS\" title=\"Presenting Your New Go-To Car {{BR}} Rental Experience\" card_image_1=\"icons/car-location.png\" card_title_1=\"Choose a Location\" card_content_1=\"Select the ideal destination to begin your journey with ease\" card_image_2=\"icons/car-selected.png\" card_title_2=\"Choose Your Vehicle\" card_content_2=\"Browse our fleet and find the perfect car for your needs\" card_image_3=\"icons/car.png\" card_title_3=\"Verification\" card_content_3=\"Review your information and confirm your booking\" card_image_4=\"icons/car-key.png\" card_title_4=\"Begin Your Journey\" card_content_4=\"Start your adventure with confidence and ease\" quantity=\"4\"][/why-us]</shortcode><shortcode>[cars style=\"style-feature\" title=\"Featured Listings\" subtitle=\"Find the perfect ride for any occasion\" limit=\"12\" button_label=\"View More\" button_url=\"/cars\"][/cars]</shortcode><shortcode>[featured-block style=\"style-1\" title=\"Get a great deal for your vehicle sell to us now\" subtitle=\"Trusted Expertise\" description=\"Get the best value for your vehicle with our transparent and straightforward selling process\" button_label=\"Get Started Now\" button_url=\"/cars\" quantity=\"3\" content_1=\"Experienced Professionals You Can Trust\" content_2=\"Clear and Transparent Pricing, No Hidden Fees\" content_3=\"Genuine Spares Parts\" image_1=\"img-1.png\" image_2=\"img-2.png\" image_3=\"img-3.png\" image_4=\"img-4.png\" image_5=\"img-5.png\" enable_lazy_loading=\"no\"][/featured-block]</shortcode><shortcode>[cars-by-locations title=\"Available Car Rentals\" main_content=\"Choose the location that suits your journey and start exploring today\" button_label=\"View More\" button_url=\"/cars\" city_ids=\"4,11,18,19\"][/cars-by-locations]</shortcode><shortcode>[testimonials title=\"What they say about us?\" subtitle=\"Testimonials\" testimonial_ids=\"1,2,3,4\"][/testimonials]</shortcode><shortcode>[blog-posts style=\"style-3\" title=\"Car Reviews\" subtitle=\"Expert insights and honest evaluations to help you choose the perfect car\" category_ids=\"1,2,3,4,5,6\" limit=\"12\" button_label=\"Keep Reading\" link_label=\"View More\" link_url=\"/blog\"][/blog-posts]</shortcode><shortcode>[install-apps style=\"style-3\" title=\"MXCar App Is Available\" description=\"Install App\" android_app_url=\"https://play.google.com/store\" android_app_image=\"general/googleplay.png\" ios_app_url=\"https://apps.apple.com\" ios_app_image=\"general/appstore.png\" button_url=\"/\" decor_image=\"imockup-iphone-14-1.png\" background_color=\"transparent\"][/install-apps]</shortcode>', NULL, NULL, 'homepage', '', 'published', '2026-03-06 02:52:10', '2026-06-10 04:31:34'),
(2, 'Blog', NULL, NULL, NULL, 'blog-without-sidebar', '', 'published', '2026-03-06 02:52:10', '2026-04-30 10:23:56'),
(3, 'Contact', '<shortcode>[cars-by-locations title=\"Available Car Rentals\" main_content=\"Choose the location that suits your journey and start exploring today\" button_label=\"View More\" button_url=\"/cars\" city_ids=\"4,11,18,19\"][/cars-by-locations]</shortcode><shortcode>[contact-form display_fields=\"phone,email,subject,address\" mandatory_fields=\"email\" title=\"Get in Touch\" show_map=\"0,1\" map_title=\"Our location\" map_address=\"12560 Rental Rd, Memphis, TN 38118, United States\"][/contact-form]</shortcode>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:10', '2026-04-30 03:37:05'),
(4, 'Services', '<shortcode>[car-services title=\"Comprehensive Car Rental Services to Meet All Your Needs\" description=\"From daily rentals to long-term solutions, we offer a comprehensive range of vehicles and services to suit every need and budget.\" limit=\"6\" enable_lazy_loading=\"no\"][/car-services]</shortcode><shortcode>[promotion-block title=\"Best Car Rent Deals\" subtitle=\"Save 15% or more when you book and ride before 1 April 2025\" button_label=\"Find Early 2025 Deals\" button_url=\"/cars\" background_image=\"services/promotion-block-bg.jpg\" enable_lazy_loading=\"no\"][/promotion-block]</shortcode><shortcode>[featured-block style=\"style-1\" title=\"Get a great deal for your vehicle sell to us now\" subtitle=\"Get the best value for your vehicle with our transparent and straightforward selling process\" quantity=\"4\" content_1=\"Experienced Professionals You Can Trust\" content_2=\"Clear and Transparent Pricing, No Hidden Fees\" content_3=\"Genuine Spares Parts\" content_4=\"Get ready for your trip\" image_1=\"img-1.png\" image_2=\"img-2.png\" image_3=\"img-3.png\" image_4=\"img-4.png\" image_5=\"img-5.png\" enable_lazy_loading=\"no\"][/featured-block]</shortcode><shortcode>[testimonials style=\"style-1\" title=\"What they say about us?\" subtitle=\"Testimonials\" testimonial_ids=\"1,2,3,4\" enable_lazy_loading=\"no\"][/testimonials]</shortcode><shortcode>[site-statistics style=\"style-1\" quantity=\"5\" title_1=\"Global {{BR}} Branches\" data_1=\"45\" unit_1=\"+\" title_2=\"Destinations {{BR}} Collaboration\" data_2=\"29\" unit_2=\"K\" title_3=\"Years {{BR}} Experience\" data_3=\"25\" unit_3=\"+\" title_4=\"Happy {{BR}} Customers\" data_4=\"168\" unit_4=\"K\" title_5=\"User {{BR}} Account\" data_5=\"15\" unit_5=\"M\" background_color=\"transparent\" enable_lazy_loading=\"no\"][/site-statistics]</shortcode><shortcode>[blog-posts style=\"style-3\" title=\"Upcoming Cars &amp; Events\" subtitle=\"Stay ahead with the latest car releases and upcoming events\" category_ids=\"1,2,3,4,5\" limit=\"10\" button_label=\"Keep Reading\"][/blog-posts]</shortcode>', NULL, NULL, 'full-width', '', 'published', '2026-03-06 02:52:10', '2026-04-30 03:36:42'),
(5, 'Pricing', '<shortcode>[pricing title=\"Membership Plans\" button_label_monthly=\"Monthly Price\" button_label_yearly=\"Annual Price\" quantity=\"4\" name_1=\"Basic\" description_1=\"For most businesses that want to optimize web queries\" monthly_price_1=\"19\" yearly_price_1=\"348\" features_1=\"+ Access to standard vehicles \\\\n + 24/7 customer support \\\\n + Basic insurance coverage \\\\n + Online booking \\\\n + Standard roadside assistance \\\\n + One free vehicle per month\" button_label_1=\"Get Started Now\" button_url_1=\"/upgrade-to-vendor\" name_2=\"Standard\" description_2=\"For most businesses that want to optimize web queries\" monthly_price_2=\"29\" yearly_price_2=\"348\" features_2=\"+ All Basic Plan features \\\\n + Access to premium vehicles \\\\n + Flexible rental terms \\\\n + GPS included \\\\n + Free additional driver \\\\n + Unlimited vehicle swaps\" button_label_2=\"Get Started Now\" button_url_2=\"/upgrade-to-vendor\" name_3=\"Premium\" description_3=\"For most businesses that want to optimize web queries\" monthly_price_3=\"49\" yearly_price_3=\"585\" features_3=\"+ All Standard Plan features \\\\n + Luxury vehicle options \\\\n + Complimentary upgrades \\\\n + Enhanced insurance coverage \\\\n + Free airport pickup, drop off \\\\n + Exclusive deals and offers\" button_label_3=\"Get Started Now\" button_url_3=\"/upgrade-to-vendor\" name_4=\"VIP\" description_4=\"For most businesses that want to optimize web queries\" monthly_price_4=\"99\" yearly_price_4=\"1185\" features_4=\"+ All Premium Plan features \\\\n + VIP transfer service \\\\n + Personal concierge \\\\n + Unlimited mileage \\\\n + Luxury vehicle upgrades \\\\n + 24/7 account manager\" button_label_4=\"Get Started Now\" button_url_4=\"/upgrade-to-vendor\" enable_lazy_loading=\"no\"][/pricing]</shortcode><shortcode>[faqs title=\"Frequently Asked Questions\" description=\"Any questions? We would be happy to help you.\" faq_category_ids=\"1,2,3,4,5\" limit=\"10\" button_secondary_label=\"Contact Us\" button_secondary_url=\"/contact\" enable_lazy_loading=\"no\"][/faqs]</shortcode>', NULL, NULL, 'full-width', '', 'published', '2026-03-06 02:52:10', '2026-04-30 03:36:27'),
(6, 'About Us', '[why-us sub_title=\"HOW IT WORKS\" title=\"Presenting Your New Go-To Car {{BR}} Rental Experience\" quantity=\"4\" card_image_1=\"about-us/car-location.png\" card_title_1=\"Choose a Location\" card_content_1=\"Select the ideal destination to begin your dream journey with ease. Select your dream car next.\" card_image_2=\"about-us/money.png\" card_title_2=\"Transparent Pricing\" card_content_2=\"Enjoy upfront pricing with no surprises, ensuring you know exactly what you are paying for.\" card_image_3=\"about-us/convenient.png\" card_title_3=\"Convenient Booking\" card_content_3=\"Benefit from a variety of rental options, including short-term, long-term, and weekend specials\" card_image_4=\"about-us/supporter.png\" card_title_4=\"24/7 Customer Support\" card_content_4=\"Get assistance whenever you need it with our support team available around the clock.\"][/why-us]\n\n[team title=\"Meet Our Agents\" subtitle=\"Awesome Teams\" team_ids=\"1,2,3,5\"][/team]\n\n[featured-block style=\"style-1\" title=\"Get started with us today.\" subtitle=\"Our Mission\" description=\"Our mission is to make car rental easy, accessible, and affordable for everyone. We believe that renting a car should be a hassle-free experience, and we are dedicated to ensuring that every customer finds the perfect vehicle for their journey.\" button_label=\"Get Started Now\" button_url=\"/contact\" quantity=\"4\" content_1=\"Explore a wide range of flexible rental options to suit your needs\" content_2=\"Comprehensive insurance coverage for complete peace of mind\" content_3=\"24/7 customer support for assistance anytime, anywhere\" content_4=\"Seamlessly easy paperwork\" image_1=\"about-us/img-2-1.png\" image_2=\"about-us/img-2-2.png\" image_3=\"about-us/img-2-3.png\" image_4=\"about-us/img-2-4.png\" image_5=\"img-5.png\" enable_lazy_loading=\"no\"][/featured-block]\n\n[site-statistics style=\"style-1\" quantity=\"5\" title_1=\"Global {{BR}} Branches\" data_1=\"45\" unit_1=\"+\" title_2=\"Destinations {{BR}} Collaboration\" data_2=\"29\" unit_2=\"K\" title_3=\"Years {{BR}} Experience\" data_3=\"25\" unit_3=\"+\" title_4=\"Happy {{BR}} Customers\" data_4=\"168\" unit_4=\"K\" title_5=\"User {{BR}} Account\" data_5=\"15\" unit_5=\"M\" enable_lazy_loading=\"no\"][/site-statistics]\n\n[testimonials style=\"style-1\" title=\"What they say about us?\" subtitle=\"Testimonials\" testimonial_ids=\"1,2,3,4\" enable_lazy_loading=\"no\"][/testimonials]\n\n[blog-posts style=\"style-3\" title=\"Upcoming Cars & Events\" subtitle=\"Stay ahead with the latest car releases and upcoming events\" category_ids=\"1,2,3,4,5\" limit=\"10\" button_label=\"Keep Reading\"][/blog-posts]', NULL, NULL, 'full-width', '', 'published', '2026-03-06 02:52:10', '2026-05-11 08:05:36'),
(7, 'Car Rentals', '<shortcode>[banner tag=\"Find cars for rent near you\" title=\"Find Your Perfect Car\" subtitle=\"Search and find your best car rental with easy way\" background_image=\"car.jpg\" enable_caching=\"yes\" enable_lazy_loading=\"no\"][/banner]</shortcode><shortcode>[car-list title=\"Our Vehicle Fleet\" subtitle=\"Turning dreams into reality with versatile vehicles.\" enable_filter=\"yes\" default_layout=\"grid\" layout_col=\"3\" cars_per_page=\"20\" is_for_sale=\"0\" enable_caching=\"yes\"][/car-list]</shortcode>', NULL, NULL, 'homepage', '', 'published', '2026-03-06 02:52:10', '2026-04-30 10:20:33'),
(8, 'Car List 2', '[banner title=&quot;Find Your Perfect Car&quot; subtitle=&quot;Search and find your best car rental with easy way&quot; tag=&quot;Find cars for sale and for rent near you&quot; background_image=&quot;backgrounds/banner6.jpg&quot;][/banner][car-advance-search button_search_name=&quot;Find a Vehicle&quot; link_need_help=&quot;/faqs&quot; top=&quot;-124&quot; bottom=&quot;0&quot; left=&quot;0&quot; right=&quot;0&quot; tabs=&quot;all,new_car,used_car&quot;][/car-advance-search][car-list title=&quot;Our Vehicle Fleet&quot; subtitle=&quot;Turning dreams into reality with versatile vehicles.&quot; enable_filter=&quot;no&quot; default_layout=&quot;grid&quot; layout_col=&quot;4&quot;][/car-list][brands title=&quot;&quot; subtitle=&quot;&quot; brand_ids=&quot;&quot; button_label=&quot;&quot; button_url=&quot;&quot;][/brands]', NULL, NULL, 'homepage', NULL, 'published', '2026-03-06 02:52:10', '2026-03-06 02:52:10'),
(9, 'Car List 3', '[banner title=&quot;Find Your Perfect Car&quot; subtitle=&quot;Search and find your best car rental with easy way&quot; tag=&quot;Find cars for sale and for rent near you&quot; background_image=&quot;backgrounds/banner6.jpg&quot;][/banner][car-list title=&quot;Our Vehicle Fleet&quot; subtitle=&quot;Turning dreams into reality with versatile vehicles.&quot; enable_filter=&quot;no&quot; default_layout=&quot;grid&quot; layout_col=&quot;3&quot;][/car-list][brands title=&quot;&quot; subtitle=&quot;&quot; brand_ids=&quot;&quot; button_label=&quot;&quot; button_url=&quot;&quot;][/brands]', NULL, NULL, 'homepage', NULL, 'published', '2026-03-06 02:52:10', '2026-03-06 02:52:10'),
(10, 'Car List 4', '[banner title=&quot;Find Your Perfect Car&quot; subtitle=&quot;Search and find your best car rental with easy way&quot; tag=&quot;Find cars for sale and for rent near you&quot; background_image=&quot;backgrounds/banner6.jpg&quot;][/banner][car-advance-search button_search_name=&quot;Find a Vehicle&quot; link_need_help=&quot;/faqs&quot; top=&quot;-124&quot; bottom=&quot;0&quot; left=&quot;0&quot; right=&quot;0&quot; tabs=&quot;all,new_car,used_car&quot;][/car-advance-search][car-list title=&quot;Our Vehicle Fleet&quot; subtitle=&quot;Turning dreams into reality with versatile vehicles.&quot; enable_filter=&quot;yes&quot; default_layout=&quot;list&quot; layout_col=&quot;4&quot;][/car-list][brands title=&quot;&quot; subtitle=&quot;&quot; brand_ids=&quot;&quot; button_label=&quot;&quot; button_url=&quot;&quot;][/brands]', NULL, NULL, 'homepage', NULL, 'published', '2026-03-06 02:52:10', '2026-03-06 02:52:10'),
(11, 'Agencies', '<shortcode>[team title=\"Meet Our Agents\" subtitle=\"Awesome Teams\" team_ids=\"1,2,3,4,5,6,7,8\"][/team]</shortcode>', NULL, NULL, 'full-width', '', 'published', '2026-03-06 02:52:10', '2026-04-30 03:37:52'),
(12, 'FAQs', '<shortcode>[faq-categories title=\"Frequently Asked Questions\" description=\"Any questions? We would be happy to help you.\"][/faq-categories]</shortcode><shortcode>[faqs title=\"Frequently Asked Questions\" description=\"Any questions? We would be happy to help you.\" faq_category_ids=\"1,2,3,4,5\" limit=\"10\" button_secondary_label=\"Contact Us\" button_secondary_url=\"/contact\" enable_lazy_loading=\"no\"][/faqs]</shortcode><shortcode>[site-statistics quantity=\"5\" title_1=\"Global {{BR}} Branches\" data_1=\"45\" unit_1=\"+\" title_2=\"Destinations {{BR}} Collaboration\" data_2=\"29\" unit_2=\"K\" title_3=\"Years {{BR}} Experience\" data_3=\"20\" unit_3=\"+\" title_4=\"Happy {{BR}} Customers\" data_4=\"168\" unit_4=\"K\" title_5=\"User {{BR}} Account\" data_5=\"15\" unit_5=\"M\"][/site-statistics]</shortcode>', NULL, NULL, 'full-width', '', 'published', '2026-03-06 02:52:10', '2026-04-30 03:38:34'),
(13, 'Brands', '<shortcode>[brands title=\"Brands\" style=\"style-3\" brand_ids=\"\"][/brands]</shortcode>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:10', '2026-04-30 03:45:09'),
(14, 'Car Dealers', '<shortcode>[car-dealers title=\"Our Trusted Car Dealers\" subtitle=\"Find the best car dealers with excellent service and competitive prices\" limit=\"12\" show_car_count=\"yes\" button_label=\"View All Dealers\" button_url=\"/car-dealers\"][/car-dealers]</shortcode>', NULL, NULL, 'full-width', '', 'published', '2026-03-06 02:52:10', '2026-04-30 03:35:22'),
(16, 'Copyright Notices', '<h1 data-section-id=\"5ne3rt\" data-start=\"73\" data-end=\"91\">Copyright Notice</h1><p data-start=\"93\" data-end=\"285\">Welcome to <span class=\"hover:entity-accent entity-underline inline cursor-pointer align-baseline whitespace-normal\">MXCar</span>. This Copyright Notice explains the ownership and permitted use of the content, materials, and intellectual property available on our platform.</p><h2 data-section-id=\"5wae2u\" data-start=\"287\" data-end=\"310\">Ownership of Content</h2><p data-start=\"312\" data-end=\"398\">Unless otherwise stated, all content available on MXCar, including but not limited to:</p><ul data-start=\"400\" data-end=\"620\"><li data-section-id=\"1g7230w\" data-start=\"400\" data-end=\"429\">Website design and layout</li><li data-section-id=\"f7fvk\" data-start=\"430\" data-end=\"465\">Logos, trademarks, and branding</li><li data-section-id=\"1ol7ty7\" data-start=\"466\" data-end=\"503\">Vehicle listings and descriptions</li><li data-section-id=\"al2wk4\" data-start=\"504\" data-end=\"543\">Images, graphics, videos, and icons</li><li data-section-id=\"4zmhc1\" data-start=\"544\" data-end=\"579\">Text, software, and source code</li><li data-section-id=\"19gpr1d\" data-start=\"580\" data-end=\"620\">Databases and platform functionality</li></ul><p data-start=\"622\" data-end=\"764\">are the exclusive property of MXCar and/or its licensors and are protected by applicable copyright, trademark, and intellectual property laws.</p><h2 data-section-id=\"vs3ep0\" data-start=\"766\" data-end=\"782\">Permitted Use</h2><p data-start=\"784\" data-end=\"792\">You may:</p><ul data-start=\"794\" data-end=\"969\"><li data-section-id=\"12rai7w\" data-start=\"794\" data-end=\"855\">Browse and use the website for personal and lawful purposes</li><li data-section-id=\"ren7gh\" data-start=\"856\" data-end=\"899\">View vehicle listings and related content</li><li data-section-id=\"4rcsqc\" data-start=\"900\" data-end=\"969\">Print or download limited portions for personal, non-commercial use</li></ul><p data-start=\"971\" data-end=\"983\">You may not:</p><ul data-start=\"985\" data-end=\"1318\"><li data-section-id=\"1g917wa\" data-start=\"985\" data-end=\"1071\">Copy, reproduce, distribute, or republish website content without written permission</li><li data-section-id=\"1sciqd2\" data-start=\"1072\" data-end=\"1126\">Modify or create derivative works from our materials</li><li data-section-id=\"rry6p6\" data-start=\"1127\" data-end=\"1189\">Use our branding, trademarks, or logos without authorization</li><li data-section-id=\"taq6u2\" data-start=\"1190\" data-end=\"1241\">Scrape, extract, or misuse data from the platform</li><li data-section-id=\"par01j\" data-start=\"1242\" data-end=\"1318\">Upload or share copyrighted materials without proper rights or permissions</li></ul><h2 data-section-id=\"ymj1r3\" data-start=\"1320\" data-end=\"1345\">User-Generated Content</h2><p data-start=\"1347\" data-end=\"1431\">Users who upload vehicle listings, photos, reviews, or other materials confirm that:</p><ul data-start=\"1433\" data-end=\"1537\"><li data-section-id=\"ojj6j2\" data-start=\"1433\" data-end=\"1473\">They own the rights to the content, or</li><li data-section-id=\"9tmbje\" data-start=\"1474\" data-end=\"1537\">They have obtained proper authorization to use and publish it</li></ul><p data-start=\"1539\" data-end=\"1755\">By submitting content to MXCar, users grant MXCar a non-exclusive, worldwide, royalty-free license to use, display, reproduce, and distribute such content for platform operations, marketing, and promotional purposes.</p><h2 data-section-id=\"tp5ej0\" data-start=\"1757\" data-end=\"1776\">Trademark Notice</h2><p data-start=\"1778\" data-end=\"1947\">“MXCar” and related logos, service marks, and branding elements are trademarks or registered trademarks of MXCar. Unauthorized use of these marks is strictly prohibited.</p><h2 data-section-id=\"1197199\" data-start=\"1949\" data-end=\"1981\">Copyright Infringement Claims</h2><p data-start=\"1983\" data-end=\"2165\">MXCar respects the intellectual property rights of others. If you believe that any content on our platform infringes your copyright, please contact us with the following information:</p><ul data-start=\"2167\" data-end=\"2395\"><li data-section-id=\"9vp4a\" data-start=\"2167\" data-end=\"2207\">Your full name and contact information</li><li data-section-id=\"ntyh17\" data-start=\"2208\" data-end=\"2245\">Description of the copyrighted work</li><li data-section-id=\"199ey5x\" data-start=\"2246\" data-end=\"2305\">URL or exact location of the allegedly infringing content</li><li data-section-id=\"1t27lds\" data-start=\"2306\" data-end=\"2343\">Proof of ownership or authorization</li><li data-section-id=\"zakb9k\" data-start=\"2344\" data-end=\"2395\">A statement confirming the accuracy of your claim</li></ul><h2 data-section-id=\"d0jpe1\" data-start=\"2397\" data-end=\"2419\">Contact Information</h2><p data-start=\"2421\" data-end=\"2488\">For copyright-related concerns or permissions requests, contact us:</p><p data-start=\"2490\" data-end=\"2596\"><strong data-start=\"2490\" data-end=\"2500\">Email:</strong> <a class=\"decorated-link cursor-pointer\" data-start=\"2501\" data-end=\"2518\" rel=\"noopener\">biz@miracuves.com<span class=\"ms-0.5 inline-block align-middle leading-none\" aria-hidden=\"true\"><svg class=\"block h-[0.75em] w-[0.75em] stroke-current stroke-[0.75]\" xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" aria-hidden=\"true\" data-rtl-flip=\"\"><use href=\"/cdn/assets/sprites-core-86c0e697.svg#304883\" fill=\"currentColor\"></use></svg></span></a><br><strong data-start=\"2521\" data-end=\"2531\">Phone:</strong> +1 (800) 123-4567<br><strong data-start=\"2552\" data-end=\"2566\">Live Chat:</strong> Available on our website 24/7</p><h2 data-section-id=\"cwutav\" data-start=\"2598\" data-end=\"2623\">Changes to This Notice</h2><p data-start=\"2625\" data-end=\"2800\">MXCar reserves the right to update or modify this Copyright Notice at any time without prior notice. Continued use of the platform constitutes acceptance of the updated terms.</p>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:10', '2026-05-11 08:45:57'),
(17, 'Terms of Use', '<h1>Terms of Use</h1><p>Welcome to MXCar. These Terms of Use govern your access to and use of the MXCar website, mobile applications, and related services. By accessing or using our platform, you agree to comply with these terms.</p><h2>Acceptance of Terms</h2><p>By using MXCar, you confirm that:</p><ul><li>You are at least 18 years old or legally capable of entering into binding agreements</li><li>You agree to follow all applicable laws and regulations</li><li>You accept these Terms of Use and our related policies</li></ul><p>If you do not agree with these terms, please discontinue use of the platform.</p><h2>Services Provided</h2><p>MXCar provides services related to:</p><ul><li>Car rentals</li><li>Vehicle buying and selling</li><li>Vehicle listings and marketplace services</li><li>Customer support and communication tools</li></ul><p>We reserve the right to modify, suspend, or discontinue any part of the services at any time without prior notice.</p><h2>User Accounts</h2><p>To access certain features, you may need to create an account. You are responsible for:</p><ul><li>Maintaining the confidentiality of your account credentials</li><li>Providing accurate and updated information</li><li>All activities conducted under your account</li></ul><p>MXCar reserves the right to suspend or terminate accounts that violate these terms.</p><h2>Vehicle Listings and Information</h2><p>Users who post vehicle listings are solely responsible for the accuracy, legality, and authenticity of their content.</p><p>MXCar does not guarantee:</p><ul><li>Accuracy of listings</li><li>Vehicle condition or availability</li><li>Pricing accuracy</li><li>Seller or buyer conduct</li></ul><p>Users should independently verify all vehicle information before completing transactions.</p><h2>Rental Terms</h2><p>When renting a vehicle through MXCar, users agree to:</p><ul><li>Provide valid identification and required documentation</li><li>Return vehicles on time and in agreed condition</li><li>Comply with traffic laws and rental agreements</li><li>Accept responsibility for damages, fines, or violations incurred during the rental period</li></ul><p>Additional rental-specific conditions may apply depending on the vehicle owner or rental provider.</p><h2>Prohibited Activities</h2><p>Users may not:</p><ul><li>Use the platform for unlawful purposes</li><li>Upload false, misleading, or fraudulent information</li><li>Attempt unauthorized access to systems or accounts</li><li>Upload malicious code, viruses, or harmful content</li><li>Interfere with platform functionality or security</li><li>Scrape or copy website content without authorization</li></ul><p>Violation of these rules may result in account suspension, legal action, or permanent bans.</p><h2>Intellectual Property</h2><p>All platform content including logos, designs, text, software, graphics, and branding are owned by MXCar or its licensors and protected under intellectual property laws.</p><p>Users may not reproduce, distribute, or exploit platform materials without written permission.</p><h2>Payments and Transactions</h2><p>Users agree to provide accurate payment information for any purchases or rentals made through MXCar.</p><p>MXCar reserves the right to:</p><ul><li>Refuse or cancel transactions</li><li>Investigate suspicious activities</li><li>Apply service fees or taxes where applicable</li></ul><p>Third-party payment processors may handle financial transactions securely.</p><h2>Disclaimer of Warranties</h2><p>MXCar provides services on an “as is” and “as available” basis without warranties of any kind.</p><p>We do not guarantee:</p><ul><li>Continuous or error-free service</li><li>Accuracy of content or listings</li><li>Availability of vehicles</li><li>Compatibility with all devices or browsers</li></ul><p>Use of the platform is at your own risk.</p><h2>Limitation of Liability</h2><p>To the maximum extent permitted by law, MXCar shall not be liable for:</p><ul><li>Indirect or consequential damages</li><li>Loss of profits or business opportunities</li><li>Vehicle disputes between users</li><li>Unauthorized account access</li><li>Service interruptions or technical failures</li></ul><h2>Termination</h2><p>MXCar may suspend or terminate access to the platform at any time for violations of these Terms of Use or harmful conduct.</p><p>Users may also discontinue use of the platform at any time.</p><h2>Changes to Terms</h2><p>We reserve the right to update these Terms of Use periodically. Continued use of MXCar after updates constitutes acceptance of the revised terms.</p><h2>Contact Information</h2><p>For questions regarding these Terms of Use, please contact us:</p><p><strong>Email:</strong> <a href=\"mailto:biz@miracuves.com\">biz@miracuves.com</a><br><strong>Phone:</strong> +1 (800) 123-4567<br><strong>Live Chat:</strong> Available on our website 24/7</p><hr><p>© 2026 MXCar. All Rights Reserved.</p>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:10', '2026-05-11 08:47:43'),
(18, 'Privacy Notice', '<h1>Privacy Notice</h1><p>Welcome to MXCar. Your privacy is important to us. This Privacy Notice explains how MXCar collects, uses, stores, and protects your personal information when you use our website, applications, and related services.</p><p>By using MXCar, you agree to the practices described in this Privacy Notice.</p><h2>Information We Collect</h2><p>We may collect the following types of information:</p><h3>Personal Information</h3><ul><li>Full name</li><li>Email address</li><li>Phone number</li><li>Billing and payment details</li><li>Driver’s license or identification documents</li><li>Address and location information</li></ul><h3>Account Information</h3><ul><li>Login credentials</li><li>Account preferences</li><li>Transaction history</li><li>Saved vehicles and rental activity</li></ul><h3>Technical Information</h3><ul><li>IP address</li><li>Browser type and device information</li><li>Operating system</li><li>Website usage data and analytics</li><li>Cookies and tracking technologies</li></ul><h3>Vehicle and Transaction Information</h3><ul><li>Vehicle listings and uploaded images</li><li>Rental bookings and purchase details</li><li>Communication between users and support teams</li></ul><h2>How We Use Your Information</h2><p>MXCar may use your information to:</p><ul><li>Provide and manage our services</li><li>Process bookings, rentals, and purchases</li><li>Verify identities and prevent fraud</li><li>Improve website performance and user experience</li><li>Send notifications, updates, and promotional communications</li><li>Respond to customer service requests</li><li>Comply with legal obligations</li></ul><h2>Sharing of Information</h2><p>We may share information with:</p><ul><li>Vehicle owners, sellers, buyers, or rental providers involved in transactions</li><li>Payment processors and financial institutions</li><li>Service providers assisting with hosting, analytics, communication, or security</li><li>Legal authorities when required by law or to protect our rights</li></ul><p>We do not sell your personal information to third parties.</p><h2>Cookies and Tracking Technologies</h2><p>MXCar uses cookies and similar technologies to:</p><ul><li>Remember user preferences</li><li>Analyze website traffic and performance</li><li>Improve functionality and security</li><li>Personalize content and user experience</li></ul><p>Users may control cookie settings through their browser preferences.</p><h2>Data Security</h2><p>We implement reasonable technical and organizational measures to protect your information from unauthorized access, loss, misuse, or disclosure.</p><p>However, no online platform can guarantee complete security, and users share information at their own risk.</p><h2>Data Retention</h2><p>We retain personal information only as long as necessary for:</p><ul><li>Providing services</li><li>Legal and regulatory compliance</li><li>Dispute resolution</li><li>Security and fraud prevention</li></ul><p>Information may be deleted or anonymized when no longer required.</p><h2>Your Rights</h2><p>Depending on your jurisdiction, you may have rights to:</p><ul><li>Access your personal data</li><li>Correct inaccurate information</li><li>Request deletion of your information</li><li>Restrict or object to certain processing activities</li><li>Withdraw consent for marketing communications</li></ul><p>Requests may be submitted using the contact information below.</p><h2>Third-Party Links</h2><p>MXCar may contain links to third-party websites or services. We are not responsible for the privacy practices or content of external sites.</p><p>Users should review third-party privacy policies independently.</p><h2>Children’s Privacy</h2><p>MXCar services are not intended for individuals under the age of 18. We do not knowingly collect personal information from minors.</p><h2>Changes to This Privacy Notice</h2><p>We may update this Privacy Notice periodically to reflect legal, technical, or operational changes. Updated versions will be posted on this page with a revised effective date.</p><h2>Contact Information</h2><p>If you have questions or concerns regarding this Privacy Notice or your personal data, please contact us:</p><p><strong>Email:</strong> <a href=\"mailto:biz@miracuves.com\">biz@miracuves.com</a><br><strong>Phone:</strong> +1 (800) 123-4567<br><strong>Live Chat:</strong> Available on our website 24/7</p><hr><p>© 2026 MXCar. All Rights Reserved.</p>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:10', '2026-05-11 08:48:28'),
(19, 'Lost &amp; Found', '<h1>Lost and Found Policy</h1><p>Welcome to MXCar. This Lost and Found Policy explains how MXCar handles personal belongings left behind in rental vehicles or during transactions facilitated through our platform.</p><h2>Responsibility for Personal Belongings</h2><p>Customers are responsible for checking vehicles and ensuring all personal belongings are removed before returning a rental vehicle or completing a transaction.</p><p>MXCar and vehicle owners are not liable for lost, stolen, or damaged items left inside vehicles or at associated locations.</p><h2>Reporting Lost Items</h2><p>If you believe you have left an item in a vehicle, please contact us as soon as possible with the following details:</p><ul><li>Your full name</li><li>Booking or transaction reference number</li><li>Vehicle details</li><li>Description of the lost item</li><li>Approximate date and time the item was left behind</li></ul><p>You may contact us through:</p><p><strong>Email:</strong> <a href=\"mailto:biz@miracuves.com\">biz@miracuves.com</a><br><strong>Phone:</strong> +1 (800) 123-4567<br><strong>Live Chat:</strong> Available on our website 24/7</p><h2>Recovery Process</h2><p>Once a report is received:</p><ol><li>MXCar or the vehicle owner will attempt to locate the item.</li><li>If the item is found, arrangements may be made for pickup or shipping.</li><li>Shipping or handling costs may be the responsibility of the customer.</li></ol><p>Recovery and return times may vary depending on the location and availability of the item.</p><h2>Unclaimed Items</h2><p>Items that remain unclaimed for an extended period may be:</p><ul><li>Disposed of</li><li>Donated</li><li>Handed over to local authorities</li></ul><p>in accordance with applicable laws and operational policies.</p><h2>Prohibited or Illegal Items</h2><p>If prohibited, suspicious, or illegal items are discovered, MXCar reserves the right to report them to law enforcement authorities without prior notice.</p><h2>Limitation of Liability</h2><p>MXCar does not guarantee the recovery or return of lost items and shall not be held responsible for:</p><ul><li>Loss or theft of personal belongings</li><li>Damage to recovered items</li><li>Delays in item recovery or shipping</li></ul><p>Users acknowledge that all recovery efforts are made on a best-effort basis.</p><h2>Changes to This Policy</h2><p>MXCar reserves the right to modify or update this Lost and Found Policy at any time without prior notice.</p><p>Continued use of our services constitutes acceptance of the updated policy.</p><hr><p>© 2026 MXCar. All Rights Reserved.</p>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:10', '2026-05-11 08:48:58'),
(21, 'Vehicle Leasing Options', '<p><strong>Welcome to MXCar!</strong> Renting a car with us is easy, fast, and convenient. Whether you\\\'re going on a weekend getaway, need a car for business, or are planning a road trip, MXCar makes renting a car seamless. Here’s how it works:</p><h3>1. <strong>Browse &amp; Select Your Car</strong></h3><ul><li><strong>Browse Our Fleet:</strong> Start by browsing our diverse fleet of cars. Whether you\\\'re looking for a compact car, an SUV, or a luxury vehicle, we have a variety of options to suit your needs.</li><li><strong>Filter Your Choices:</strong> Use our search filters to select the type of vehicle, pick-up location, rental dates, and any additional features you may need, such as GPS or a child car seat.</li><li><strong>Check Availability:</strong> View real-time availability and pricing for your selected car. If your desired car is unavailable, you’ll see alternative options.</li></ul><hr><h3>2. <strong>Make a Reservation</strong></h3><ul><li><strong>Select Your Rental Period:</strong> Choose the dates and times you need the car, from daily rentals to weekly or monthly bookings.</li><li><strong>Add Extras:</strong> You can add optional extras such as additional drivers, insurance, or GPS systems at this stage.</li><li><strong>Review Your Booking:</strong> Review your booking details, including the car type, rental period, and total cost.</li><li><strong>Secure Payment:</strong> Confirm your reservation by entering your payment details through our secure payment gateway. We accept all major credit cards, debit cards, and payment systems like PayPal.</li><li><strong>Get Confirmation:</strong> Once your payment is processed, you\\\'ll receive an instant email confirmation with all the details of your reservation, including a unique booking reference number.</li></ul><hr><h3>3. <strong>Pick Up Your Car</strong></h3><ul><li><strong>Locate Your Pick-Up Location:</strong> You’ll find your car ready for you at the designated pick-up location. We offer several convenient locations, including major airports, city centers, and train stations.</li><li><strong>Present Your ID &amp; License:</strong> When you arrive, we’ll need to verify your identity. Please bring a valid driver’s license and the credit card used for the booking.</li><li><strong>Car Inspection:</strong> Before you drive off, we will conduct a quick inspection of the car with you, noting any pre-existing damage. You’ll also receive instructions on how to operate the vehicle, including key features and emergency procedures.</li><li><strong>Sign the Rental Agreement:</strong> Sign the rental agreement, which will outline the terms and conditions of your rental. If you have any questions about the agreement, our staff is happy to assist you.</li></ul><hr><h3>4. <strong>Enjoy Your Ride</strong></h3><ul><li><strong>Drive with Confidence:</strong> Once you’re all set, you’re free to enjoy your trip! Feel free to use the car for your travel needs, whether it\\\'s for business, leisure, or exploration.</li><li><strong>24/7 Roadside Assistance:</strong> If you encounter any issues during your rental, we offer 24/7 roadside assistance to help with breakdowns, flat tires, or emergencies.</li><li><strong>Fuel Policy:</strong> Our cars are provided with a full tank of fuel. You can return the vehicle with a full tank or pay for the fuel used during your rental period. Please note, if the car is returned with less than a full tank, you may be charged a refueling fee.</li></ul><hr><h3>5. <strong>Return the Car</strong></h3><ul><li><strong>Return Location:</strong> Return the car to the same location where you picked it up, or select a different return location if available. For airport rentals, simply drop the car off at the designated MXCar area.</li><li><strong>Car Inspection &amp; Check-Out:</strong> Upon return, we will conduct a brief inspection of the vehicle to ensure there’s no damage or additional issues. Please remember to return the car on time to avoid any late fees.</li><li><strong>Final Payment (If Necessary):</strong> Any remaining balance (such as extra mileage charges or fuel costs) will be settled at the time of return. You can pay with your credit/debit card or any other available payment method.</li><li><strong>Get Your Final Receipt:</strong> Once everything is checked, we\\’ll send you a final receipt by email, outlining the charges and any deposits returned. If applicable, we’ll also issue any refunds for unused services.</li></ul><hr><h3>6. <strong>Enjoy Our Loyalty Program (Optional)</strong></h3><ul><li><strong>Earn Points with Every Rental:</strong> If you\\\'re a member of the <strong>MXCar Loyalty Program</strong>, you can earn points with every booking to redeem for discounts, free upgrades, and other special offers.</li><li><strong>Exclusive Deals &amp; Offers:</strong> Sign up for exclusive offers, early access to new fleet options, and seasonal promotions.</li></ul><p>&nbsp;</p><h3><strong>Need Help?</strong></h3><p>If you need assistance at any point in your rental process, our customer support team is always ready to help. We offer live chat support, email assistance, and a 24/7 customer service hotline.</p><h3><strong>Why Rent with MXCar?</strong></h3><ul><li><strong>Wide Selection:</strong> A variety of cars for all needs, from economy to luxury, compact cars to SUVs.</li><li><strong>Flexible Booking:</strong> Easily book online with flexible rental durations, from daily to monthly rentals.</li><li><strong>Transparent Pricing:</strong> No hidden fees! Our prices are clear, and all fees are explained upfront.</li><li><strong>Customer Satisfaction:</strong> We pride ourselves on excellent customer service and ensuring your rental experience is smooth and hassle-free.</li></ul><h3><strong>Get Started Today!</strong></h3><p>Ready to hit the road? <strong>Browse our fleet</strong> today, select your car, and book your next rental with MXCar! We’re here to make your car rental experience easy, safe, and enjoyable.</p><p><strong>Contact Us:</strong></p><p>If you have any questions or need more information, feel free to reach out to us:</p><ul><li><strong>Email:</strong> <a rel=\"noopener\"><span>biz@miracuves.com</span>&nbsp;</a></li><li><strong>Phone:</strong> +1 (800) 123-4567</li><li><strong>Live Chat:</strong> Available on our website 24/7</li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:10', '2026-04-30 03:47:56'),
(22, 'Long-Term Car Rentals', '<p><strong>Welcome to MXCar!</strong> Renting a car with us is easy, fast, and convenient. Whether you\\\'re going on a weekend getaway, need a car for business, or are planning a road trip, MXCar makes renting a car seamless. Here’s how it works:</p><h3>1. <strong>Browse &amp; Select Your Car</strong></h3><ul><li><strong>Browse Our Fleet:</strong> Start by browsing our diverse fleet of cars. Whether you\\\'re looking for a compact car, an SUV, or a luxury vehicle, we have a variety of options to suit your needs.</li><li><strong>Filter Your Choices:</strong> Use our search filters to select the type of vehicle, pick-up location, rental dates, and any additional features you may need, such as GPS or a child car seat.</li><li><strong>Check Availability:</strong> View real-time availability and pricing for your selected car. If your desired car is unavailable, you’ll see alternative options.</li></ul><hr><h3>2. <strong>Make a Reservation</strong></h3><ul><li><strong>Select Your Rental Period:</strong> Choose the dates and times you need the car, from daily rentals to weekly or monthly bookings.</li><li><strong>Add Extras:</strong> You can add optional extras such as additional drivers, insurance, or GPS systems at this stage.</li><li><strong>Review Your Booking:</strong> Review your booking details, including the car type, rental period, and total cost.</li><li><strong>Secure Payment:</strong> Confirm your reservation by entering your payment details through our secure payment gateway. We accept all major credit cards, debit cards, and payment systems like PayPal.</li><li><strong>Get Confirmation:</strong> Once your payment is processed, you\\\'ll receive an instant email confirmation with all the details of your reservation, including a unique booking reference number.</li></ul><hr><h3>3. <strong>Pick Up Your Car</strong></h3><ul><li><strong>Locate Your Pick-Up Location:</strong> You’ll find your car ready for you at the designated pick-up location. We offer several convenient locations, including major airports, city centers, and train stations.</li><li><strong>Present Your ID &amp; License:</strong> When you arrive, we’ll need to verify your identity. Please bring a valid driver’s license and the credit card used for the booking.</li><li><strong>Car Inspection:</strong> Before you drive off, we will conduct a quick inspection of the car with you, noting any pre-existing damage. You’ll also receive instructions on how to operate the vehicle, including key features and emergency procedures.</li><li><strong>Sign the Rental Agreement:</strong> Sign the rental agreement, which will outline the terms and conditions of your rental. If you have any questions about the agreement, our staff is happy to assist you.</li></ul><hr><h3>4. <strong>Enjoy Your Ride</strong></h3><ul><li><strong>Drive with Confidence:</strong> Once you’re all set, you’re free to enjoy your trip! Feel free to use the car for your travel needs, whether it\\\'s for business, leisure, or exploration.</li><li><strong>24/7 Roadside Assistance:</strong> If you encounter any issues during your rental, we offer 24/7 roadside assistance to help with breakdowns, flat tires, or emergencies.</li><li><strong>Fuel Policy:</strong> Our cars are provided with a full tank of fuel. You can return the vehicle with a full tank or pay for the fuel used during your rental period. Please note, if the car is returned with less than a full tank, you may be charged a refueling fee.</li></ul><hr><h3>5. <strong>Return the Car</strong></h3><ul><li><strong>Return Location:</strong> Return the car to the same location where you picked it up, or select a different return location if available. For airport rentals, simply drop the car off at the designated MXCar area.</li><li><strong>Car Inspection &amp; Check-Out:</strong> Upon return, we will conduct a brief inspection of the vehicle to ensure there’s no damage or additional issues. Please remember to return the car on time to avoid any late fees.</li><li><strong>Final Payment (If Necessary):</strong> Any remaining balance (such as extra mileage charges or fuel costs) will be settled at the time of return. You can pay with your credit/debit card or any other available payment method.</li><li><strong>Get Your Final Receipt:</strong> Once everything is checked, we\\’ll send you a final receipt by email, outlining the charges and any deposits returned. If applicable, we’ll also issue any refunds for unused services.</li></ul><hr><h3>6. <strong>Enjoy Our Loyalty Program (Optional)</strong></h3><ul><li><strong>Earn Points with Every Rental:</strong> If you\\\'re a member of the <strong>MXCar Loyalty Program</strong>, you can earn points with every booking to redeem for discounts, free upgrades, and other special offers.</li><li><strong>Exclusive Deals &amp; Offers:</strong> Sign up for exclusive offers, early access to new fleet options, and seasonal promotions.</li></ul><p>&nbsp;</p><h3><strong>Need Help?</strong></h3><p>If you need assistance at any point in your rental process, our customer support team is always ready to help. We offer live chat support, email assistance, and a 24/7 customer service hotline.</p><h3><strong>Why Rent with MXCar?</strong></h3><ul><li><strong>Wide Selection:</strong> A variety of cars for all needs, from economy to luxury, compact cars to SUVs.</li><li><strong>Flexible Booking:</strong> Easily book online with flexible rental durations, from daily to monthly rentals.</li><li><strong>Transparent Pricing:</strong> No hidden fees! Our prices are clear, and all fees are explained upfront.</li><li><strong>Customer Satisfaction:</strong> We pride ourselves on excellent customer service and ensuring your rental experience is smooth and hassle-free.</li></ul><h3><strong>Get Started Today!</strong></h3><p>Ready to hit the road? <strong>Browse our fleet</strong> today, select your car, and book your next rental with MXCar! We’re here to make your car rental experience easy, safe, and enjoyable.</p><p><strong>Contact Us:</strong></p><p>If you have any questions or need more information, feel free to reach out to us:</p><ul><li><strong>Email:</strong> <a rel=\"noopener\"><span>biz@miracuves.com</span>&nbsp;</a></li><li><strong>Phone:</strong> +1 (800) 123-4567</li><li><strong>Live Chat:</strong> Available on our website 24/7</li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:10', '2026-04-30 03:50:35');
INSERT INTO `pages` (`id`, `name`, `content`, `user_id`, `image`, `template`, `description`, `status`, `created_at`, `updated_at`) VALUES
(23, 'Car Sales and Trade-Ins', '<p><strong>Welcome to MXCar!</strong> Renting a car with us is easy, fast, and convenient. Whether you\\\'re going on a weekend getaway, need a car for business, or are planning a road trip, MXCar makes renting a car seamless. Here’s how it works:</p><h3>1. <strong>Browse &amp; Select Your Car</strong></h3><ul><li><strong>Browse Our Fleet:</strong> Start by browsing our diverse fleet of cars. Whether you\\\'re looking for a compact car, an SUV, or a luxury vehicle, we have a variety of options to suit your needs.</li><li><strong>Filter Your Choices:</strong> Use our search filters to select the type of vehicle, pick-up location, rental dates, and any additional features you may need, such as GPS or a child car seat.</li><li><strong>Check Availability:</strong> View real-time availability and pricing for your selected car. If your desired car is unavailable, you’ll see alternative options.</li></ul><hr><h3>2. <strong>Make a Reservation</strong></h3><ul><li><strong>Select Your Rental Period:</strong> Choose the dates and times you need the car, from daily rentals to weekly or monthly bookings.</li><li><strong>Add Extras:</strong> You can add optional extras such as additional drivers, insurance, or GPS systems at this stage.</li><li><strong>Review Your Booking:</strong> Review your booking details, including the car type, rental period, and total cost.</li><li><strong>Secure Payment:</strong> Confirm your reservation by entering your payment details through our secure payment gateway. We accept all major credit cards, debit cards, and payment systems like PayPal.</li><li><strong>Get Confirmation:</strong> Once your payment is processed, you\\\'ll receive an instant email confirmation with all the details of your reservation, including a unique booking reference number.</li></ul><hr><h3>3. <strong>Pick Up Your Car</strong></h3><ul><li><strong>Locate Your Pick-Up Location:</strong> You’ll find your car ready for you at the designated pick-up location. We offer several convenient locations, including major airports, city centers, and train stations.</li><li><strong>Present Your ID &amp; License:</strong> When you arrive, we’ll need to verify your identity. Please bring a valid driver’s license and the credit card used for the booking.</li><li><strong>Car Inspection:</strong> Before you drive off, we will conduct a quick inspection of the car with you, noting any pre-existing damage. You’ll also receive instructions on how to operate the vehicle, including key features and emergency procedures.</li><li><strong>Sign the Rental Agreement:</strong> Sign the rental agreement, which will outline the terms and conditions of your rental. If you have any questions about the agreement, our staff is happy to assist you.</li></ul><hr><h3>4. <strong>Enjoy Your Ride</strong></h3><ul><li><strong>Drive with Confidence:</strong> Once you’re all set, you’re free to enjoy your trip! Feel free to use the car for your travel needs, whether it\\\'s for business, leisure, or exploration.</li><li><strong>24/7 Roadside Assistance:</strong> If you encounter any issues during your rental, we offer 24/7 roadside assistance to help with breakdowns, flat tires, or emergencies.</li><li><strong>Fuel Policy:</strong> Our cars are provided with a full tank of fuel. You can return the vehicle with a full tank or pay for the fuel used during your rental period. Please note, if the car is returned with less than a full tank, you may be charged a refueling fee.</li></ul><hr><h3>5. <strong>Return the Car</strong></h3><ul><li><strong>Return Location:</strong> Return the car to the same location where you picked it up, or select a different return location if available. For airport rentals, simply drop the car off at the designated MXCar area.</li><li><strong>Car Inspection &amp; Check-Out:</strong> Upon return, we will conduct a brief inspection of the vehicle to ensure there’s no damage or additional issues. Please remember to return the car on time to avoid any late fees.</li><li><strong>Final Payment (If Necessary):</strong> Any remaining balance (such as extra mileage charges or fuel costs) will be settled at the time of return. You can pay with your credit/debit card or any other available payment method.</li><li><strong>Get Your Final Receipt:</strong> Once everything is checked, we\\’ll send you a final receipt by email, outlining the charges and any deposits returned. If applicable, we’ll also issue any refunds for unused services.</li></ul><hr><h3>6. <strong>Enjoy Our Loyalty Program (Optional)</strong></h3><ul><li><strong>Earn Points with Every Rental:</strong> If you\\\'re a member of the <strong>MXCar Loyalty Program</strong>, you can earn points with every booking to redeem for discounts, free upgrades, and other special offers.</li><li><strong>Exclusive Deals &amp; Offers:</strong> Sign up for exclusive offers, early access to new fleet options, and seasonal promotions.</li></ul><p>&nbsp;</p><h3><strong>Need Help?</strong></h3><p>If you need assistance at any point in your rental process, our customer support team is always ready to help. We offer live chat support, email assistance, and a 24/7 customer service hotline.</p><h3><strong>Why Rent with MXCar?</strong></h3><ul><li><strong>Wide Selection:</strong> A variety of cars for all needs, from economy to luxury, compact cars to SUVs.</li><li><strong>Flexible Booking:</strong> Easily book online with flexible rental durations, from daily to monthly rentals.</li><li><strong>Transparent Pricing:</strong> No hidden fees! Our prices are clear, and all fees are explained upfront.</li><li><strong>Customer Satisfaction:</strong> We pride ourselves on excellent customer service and ensuring your rental experience is smooth and hassle-free.</li></ul><h3><strong>Get Started Today!</strong></h3><p>Ready to hit the road? <strong>Browse our fleet</strong> today, select your car, and book your next rental with MXCar! We’re here to make your car rental experience easy, safe, and enjoyable.</p><p><strong>Contact Us:</strong></p><p>If you have any questions or need more information, feel free to reach out to us:</p><ul><li><strong>Email:</strong> <a rel=\"noopener\"><span>biz@miracuves.com</span>&nbsp;</a></li><li><strong>Phone:</strong> +1 (800) 123-4567</li><li><strong>Live Chat:</strong> Available on our website 24/7</li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:10', '2026-04-30 03:50:07'),
(25, 'Rent-to-Own Programs', '<p><strong>Welcome to MXCar!</strong> Renting a car with us is easy, fast, and convenient. Whether you\\\'re going on a weekend getaway, need a car for business, or are planning a road trip, MXCar makes renting a car seamless. Here’s how it works:</p><h3>1. <strong>Browse &amp; Select Your Car</strong></h3><ul><li><strong>Browse Our Fleet:</strong> Start by browsing our diverse fleet of cars. Whether you\\\'re looking for a compact car, an SUV, or a luxury vehicle, we have a variety of options to suit your needs.</li><li><strong>Filter Your Choices:</strong> Use our search filters to select the type of vehicle, pick-up location, rental dates, and any additional features you may need, such as GPS or a child car seat.</li><li><strong>Check Availability:</strong> View real-time availability and pricing for your selected car. If your desired car is unavailable, you’ll see alternative options.</li></ul><hr><h3>2. <strong>Make a Reservation</strong></h3><ul><li><strong>Select Your Rental Period:</strong> Choose the dates and times you need the car, from daily rentals to weekly or monthly bookings.</li><li><strong>Add Extras:</strong> You can add optional extras such as additional drivers, insurance, or GPS systems at this stage.</li><li><strong>Review Your Booking:</strong> Review your booking details, including the car type, rental period, and total cost.</li><li><strong>Secure Payment:</strong> Confirm your reservation by entering your payment details through our secure payment gateway. We accept all major credit cards, debit cards, and payment systems like PayPal.</li><li><strong>Get Confirmation:</strong> Once your payment is processed, you\\\'ll receive an instant email confirmation with all the details of your reservation, including a unique booking reference number.</li></ul><hr><h3>3. <strong>Pick Up Your Car</strong></h3><ul><li><strong>Locate Your Pick-Up Location:</strong> You’ll find your car ready for you at the designated pick-up location. We offer several convenient locations, including major airports, city centers, and train stations.</li><li><strong>Present Your ID &amp; License:</strong> When you arrive, we’ll need to verify your identity. Please bring a valid driver’s license and the credit card used for the booking.</li><li><strong>Car Inspection:</strong> Before you drive off, we will conduct a quick inspection of the car with you, noting any pre-existing damage. You’ll also receive instructions on how to operate the vehicle, including key features and emergency procedures.</li><li><strong>Sign the Rental Agreement:</strong> Sign the rental agreement, which will outline the terms and conditions of your rental. If you have any questions about the agreement, our staff is happy to assist you.</li></ul><hr><h3>4. <strong>Enjoy Your Ride</strong></h3><ul><li><strong>Drive with Confidence:</strong> Once you’re all set, you’re free to enjoy your trip! Feel free to use the car for your travel needs, whether it\\\'s for business, leisure, or exploration.</li><li><strong>24/7 Roadside Assistance:</strong> If you encounter any issues during your rental, we offer 24/7 roadside assistance to help with breakdowns, flat tires, or emergencies.</li><li><strong>Fuel Policy:</strong> Our cars are provided with a full tank of fuel. You can return the vehicle with a full tank or pay for the fuel used during your rental period. Please note, if the car is returned with less than a full tank, you may be charged a refueling fee.</li></ul><hr><h3>5. <strong>Return the Car</strong></h3><ul><li><strong>Return Location:</strong> Return the car to the same location where you picked it up, or select a different return location if available. For airport rentals, simply drop the car off at the designated MXCar area.</li><li><strong>Car Inspection &amp; Check-Out:</strong> Upon return, we will conduct a brief inspection of the vehicle to ensure there’s no damage or additional issues. Please remember to return the car on time to avoid any late fees.</li><li><strong>Final Payment (If Necessary):</strong> Any remaining balance (such as extra mileage charges or fuel costs) will be settled at the time of return. You can pay with your credit/debit card or any other available payment method.</li><li><strong>Get Your Final Receipt:</strong> Once everything is checked, we\\’ll send you a final receipt by email, outlining the charges and any deposits returned. If applicable, we’ll also issue any refunds for unused services.</li></ul><hr><h3>6. <strong>Enjoy Our Loyalty Program (Optional)</strong></h3><ul><li><strong>Earn Points with Every Rental:</strong> If you\\\'re a member of the <strong>MXCar Loyalty Program</strong>, you can earn points with every booking to redeem for discounts, free upgrades, and other special offers.</li><li><strong>Exclusive Deals &amp; Offers:</strong> Sign up for exclusive offers, early access to new fleet options, and seasonal promotions.</li></ul><p>&nbsp;</p><h3><strong>Need Help?</strong></h3><p>If you need assistance at any point in your rental process, our customer support team is always ready to help. We offer live chat support, email assistance, and a 24/7 customer service hotline.</p><h3><strong>Why Rent with MXCar?</strong></h3><ul><li><strong>Wide Selection:</strong> A variety of cars for all needs, from economy to luxury, compact cars to SUVs.</li><li><strong>Flexible Booking:</strong> Easily book online with flexible rental durations, from daily to monthly rentals.</li><li><strong>Transparent Pricing:</strong> No hidden fees! Our prices are clear, and all fees are explained upfront.</li><li><strong>Customer Satisfaction:</strong> We pride ourselves on excellent customer service and ensuring your rental experience is smooth and hassle-free.</li></ul><h3><strong>Get Started Today!</strong></h3><p>Ready to hit the road? <strong>Browse our fleet</strong> today, select your car, and book your next rental with MXCar! We’re here to make your car rental experience easy, safe, and enjoyable.</p><p><strong>Contact Us:</strong></p><p>If you have any questions or need more information, feel free to reach out to us:</p><ul><li><strong>Email:</strong> <a rel=\"noopener\"><span>biz@miracuves.com</span>&nbsp;</a></li><li><strong>Phone:</strong> +1 (800) 123-4567</li><li><strong>Live Chat:</strong> Available on our website 24/7</li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:10', '2026-04-30 03:48:27'),
(26, 'Fleet Management Solutions', '<p><strong>Welcome to MXCar!</strong> Renting a car with us is easy, fast, and convenient. Whether you\\\'re going on a weekend getaway, need a car for business, or are planning a road trip, MXCar makes renting a car seamless. Here’s how it works:</p><h3>1. <strong>Browse &amp; Select Your Car</strong></h3><ul><li><strong>Browse Our Fleet:</strong> Start by browsing our diverse fleet of cars. Whether you\\\'re looking for a compact car, an SUV, or a luxury vehicle, we have a variety of options to suit your needs.</li><li><strong>Filter Your Choices:</strong> Use our search filters to select the type of vehicle, pick-up location, rental dates, and any additional features you may need, such as GPS or a child car seat.</li><li><strong>Check Availability:</strong> View real-time availability and pricing for your selected car. If your desired car is unavailable, you’ll see alternative options.</li></ul><hr><h3>2. <strong>Make a Reservation</strong></h3><ul><li><strong>Select Your Rental Period:</strong> Choose the dates and times you need the car, from daily rentals to weekly or monthly bookings.</li><li><strong>Add Extras:</strong> You can add optional extras such as additional drivers, insurance, or GPS systems at this stage.</li><li><strong>Review Your Booking:</strong> Review your booking details, including the car type, rental period, and total cost.</li><li><strong>Secure Payment:</strong> Confirm your reservation by entering your payment details through our secure payment gateway. We accept all major credit cards, debit cards, and payment systems like PayPal.</li><li><strong>Get Confirmation:</strong> Once your payment is processed, you\\\'ll receive an instant email confirmation with all the details of your reservation, including a unique booking reference number.</li></ul><hr><h3>3. <strong>Pick Up Your Car</strong></h3><ul><li><strong>Locate Your Pick-Up Location:</strong> You’ll find your car ready for you at the designated pick-up location. We offer several convenient locations, including major airports, city centers, and train stations.</li><li><strong>Present Your ID &amp; License:</strong> When you arrive, we’ll need to verify your identity. Please bring a valid driver’s license and the credit card used for the booking.</li><li><strong>Car Inspection:</strong> Before you drive off, we will conduct a quick inspection of the car with you, noting any pre-existing damage. You’ll also receive instructions on how to operate the vehicle, including key features and emergency procedures.</li><li><strong>Sign the Rental Agreement:</strong> Sign the rental agreement, which will outline the terms and conditions of your rental. If you have any questions about the agreement, our staff is happy to assist you.</li></ul><hr><h3>4. <strong>Enjoy Your Ride</strong></h3><ul><li><strong>Drive with Confidence:</strong> Once you’re all set, you’re free to enjoy your trip! Feel free to use the car for your travel needs, whether it\\\'s for business, leisure, or exploration.</li><li><strong>24/7 Roadside Assistance:</strong> If you encounter any issues during your rental, we offer 24/7 roadside assistance to help with breakdowns, flat tires, or emergencies.</li><li><strong>Fuel Policy:</strong> Our cars are provided with a full tank of fuel. You can return the vehicle with a full tank or pay for the fuel used during your rental period. Please note, if the car is returned with less than a full tank, you may be charged a refueling fee.</li></ul><hr><h3>5. <strong>Return the Car</strong></h3><ul><li><strong>Return Location:</strong> Return the car to the same location where you picked it up, or select a different return location if available. For airport rentals, simply drop the car off at the designated MXCar area.</li><li><strong>Car Inspection &amp; Check-Out:</strong> Upon return, we will conduct a brief inspection of the vehicle to ensure there’s no damage or additional issues. Please remember to return the car on time to avoid any late fees.</li><li><strong>Final Payment (If Necessary):</strong> Any remaining balance (such as extra mileage charges or fuel costs) will be settled at the time of return. You can pay with your credit/debit card or any other available payment method.</li><li><strong>Get Your Final Receipt:</strong> Once everything is checked, we\\’ll send you a final receipt by email, outlining the charges and any deposits returned. If applicable, we’ll also issue any refunds for unused services.</li></ul><hr><h3>6. <strong>Enjoy Our Loyalty Program (Optional)</strong></h3><ul><li><strong>Earn Points with Every Rental:</strong> If you\\\'re a member of the <strong>MXCar Loyalty Program</strong>, you can earn points with every booking to redeem for discounts, free upgrades, and other special offers.</li><li><strong>Exclusive Deals &amp; Offers:</strong> Sign up for exclusive offers, early access to new fleet options, and seasonal promotions.</li></ul><p>&nbsp;</p><h3><strong>Need Help?</strong></h3><p>If you need assistance at any point in your rental process, our customer support team is always ready to help. We offer live chat support, email assistance, and a 24/7 customer service hotline.</p><h3><strong>Why Rent with MXCar?</strong></h3><ul><li><strong>Wide Selection:</strong> A variety of cars for all needs, from economy to luxury, compact cars to SUVs.</li><li><strong>Flexible Booking:</strong> Easily book online with flexible rental durations, from daily to monthly rentals.</li><li><strong>Transparent Pricing:</strong> No hidden fees! Our prices are clear, and all fees are explained upfront.</li><li><strong>Customer Satisfaction:</strong> We pride ourselves on excellent customer service and ensuring your rental experience is smooth and hassle-free.</li></ul><h3><strong>Get Started Today!</strong></h3><p>Ready to hit the road? <strong>Browse our fleet</strong> today, select your car, and book your next rental with MXCar! We’re here to make your car rental experience easy, safe, and enjoyable.</p><p><strong>Contact Us:</strong></p><p>If you have any questions or need more information, feel free to reach out to us:</p><ul><li><strong>Email:</strong> <a rel=\"noopener\"><span>biz@miracuves.com</span>&nbsp;</a></li><li><strong>Phone:</strong> +1 (800) 123-4567</li><li><strong>Live Chat:</strong> Available on our website 24/7</li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:10', '2026-04-30 03:43:25'),
(27, 'Affiliates', '<p>The MXCar Affiliate Program allows individuals, influencers, marketers, and businesses to earn rewards or commissions by promoting MXCar services and referring new users to the platform.</p><h2>How the Affiliate Program Works</h2><h3>Step 1: Join the Program</h3><p>Users can apply to become an affiliate partner through the MXCar platform or by contacting the partnership team.</p><h3>Step 2: Get Your Referral Link</h3><p>Approved affiliates may receive:</p><ul><li>Unique referral links</li><li>Promotional materials</li><li>Marketing resources</li></ul><h3>Step 3: Promote MXCar</h3><p>Affiliates can promote MXCar through:</p><ul><li>Websites and blogs</li><li>Social media platforms</li><li>YouTube channels</li><li>Online advertising</li><li>Email marketing</li></ul><h3>Step 4: Earn Rewards</h3><p>Affiliates may earn commissions or rewards when referred users:</p><ul><li>Register on the platform</li><li>Complete eligible bookings</li><li>Purchase qualifying services</li></ul><p>Commission structures and eligibility may vary.</p><h2>Affiliate Rules</h2><p>Affiliates must:</p><ul><li>Use ethical marketing practices</li><li>Avoid misleading promotions</li><li>Not engage in spam or fraudulent activity</li><li>Follow applicable advertising laws and regulations</li></ul><h2>Prohibited Activities</h2><p>The following activities are not allowed:</p><ul><li>Fake referrals or self-referrals</li><li>Brand impersonation</li><li>Unauthorized advertisements</li><li>Misleading claims about MXCar services</li></ul><p>Violation of affiliate rules may result in account termination and loss of commissions.</p><h2>Payments</h2><p>Affiliate earnings may be processed:</p><ul><li>Monthly or according to platform terms</li><li>Through approved payment methods</li><li>After successful verification of referrals</li></ul><h2>Program Changes</h2><p>MXCar reserves the right to:</p><ul><li>Modify commission structures</li><li>Change affiliate requirements</li><li>Suspend or terminate the affiliate program at any time</li></ul><h2>Contact Us</h2><p>For affiliate inquiries:</p><ul><li>Website: MXCar Official Website</li><li>Affiliate Email: <a href=\"mailto:affiliates@mxcar.com\">affiliates@mxcar.com</a></li><li>Support Email: <a href=\"mailto:support@mxcar.com\">support@mxcar.com</a></li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:36:50'),
(28, 'Travel Agents', '<p>MXCar welcomes partnerships with travel agents, tour operators, and travel service providers to deliver reliable transportation and travel-related services to customers.</p><h2>Partner With MXCar</h2><p>Travel agents can collaborate with MXCar to:</p><ul><li>Arrange transportation services for clients</li><li>Manage group travel bookings</li><li>Access special business pricing</li><li>Provide seamless travel experiences</li></ul><h2>Services for Travel Agents</h2><p>MXCar may offer:</p><ul><li>Car booking and transportation support</li><li>Airport transfers</li><li>Corporate travel solutions</li><li>Group transportation arrangements</li><li>Custom travel packages</li></ul><h2>Benefits of Partnership</h2><p>Travel agents partnering with MXCar may receive:</p><ul><li>Competitive pricing</li><li>Priority booking support</li><li>Dedicated assistance</li><li>Business collaboration opportunities</li><li>Promotional partnerships</li></ul><h2>Booking Process</h2><p>Travel agents can:</p><ol><li>Contact MXCar partnership support</li><li>Share travel requirements</li><li>Receive booking assistance and pricing</li><li>Confirm reservations for clients</li></ol><h2>Eligibility</h2><p>To become a travel partner, agents may need to provide:</p><ul><li>Business or agency details</li><li>Contact information</li><li>Service requirements</li><li>Valid business documentation (if required)</li></ul><h2>Responsibilities</h2><p>Travel agents are responsible for:</p><ul><li>Providing accurate client information</li><li>Ensuring timely payments</li><li>Communicating booking updates to clients</li></ul><h2>Partnership Policies</h2><p>MXCar reserves the right to:</p><ul><li>Approve or reject partnership requests</li><li>Modify pricing and service availability</li><li>Update partnership terms at any time</li></ul><h2>Contact Us</h2><p>For travel agency partnerships and inquiries:</p><ul><li>Website: MXCar Official Website</li><li>Partnership Email: <a href=\"mailto:partners@mxcar.com\">partners@mxcar.com</a></li><li>Support Email: <a href=\"mailto:support@mxcar.com\">support@mxcar.com</a></li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:34:09'),
(29, 'AARP Members', '<p>MXCar values senior customers and aims to provide a convenient, safe, and user-friendly experience for AARP members and older adults.</p><h2>Special Benefits for AARP Members</h2><p>Eligible users may receive:</p><ul><li>Exclusive discounts and promotional offers</li><li>Priority customer support</li><li>Seasonal travel and transportation deals</li><li>Special partner promotions</li></ul><p>Availability of benefits may vary by location, campaign, or eligibility requirements.</p><h2>Safe &amp; Comfortable Experience</h2><p>MXCar is committed to providing:</p><ul><li>Easy booking experience</li><li>Secure online payments</li><li>Reliable customer support</li><li>User-friendly platform access</li></ul><h2>Eligibility</h2><p>To access AARP-related offers or promotions:</p><ul><li>Users may be required to provide valid membership verification</li><li>Offers may be limited-time and subject to terms and conditions</li></ul><h2>Support for Senior Users</h2><p>MXCar support teams are available to assist with:</p><ul><li>Booking assistance</li><li>Payment issues</li><li>Account setup</li><li>Refund requests</li><li>Technical help</li></ul><h2>Important Information</h2><ul><li>Offers cannot be combined unless stated otherwise</li><li>Benefits may change or end without prior notice</li><li>Misuse of promotional programs may result in account restrictions</li></ul><h2>Contact Us</h2><p>For questions regarding senior or AARP member benefits:</p><ul><li>Website: MXCar Official Website</li><li>Support Email: <a href=\"mailto:support@mxcar.com\">support@mxcar.com</a></li><li>Customer Support: Available through the Help Center and Live Chat</li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:32:53'),
(30, 'Points Programs', '<p>The MXCar Points Program rewards users for using the platform and engaging with our services. Users can earn points through eligible activities and redeem them for rewards, discounts, or special offers.</p><h2>How the Points Program Works</h2><h3>Earn Points</h3><p>Users may earn points by:</p><ul><li>Completing bookings</li><li>Referring new users</li><li>Participating in promotions</li><li>Using MXCar services regularly</li><li>Completing special campaigns or offers</li></ul><h2>Redeem Points</h2><p>Earned points may be redeemed for:</p><ul><li>Discount coupons</li><li>Service credits</li><li>Promotional rewards</li><li>Exclusive member offers</li></ul><p>Redemption options may vary based on availability and promotional terms.</p><h2>Account Eligibility</h2><p>To participate in the Points Program:</p><ul><li>Users must have a valid MXCar account</li><li>Accounts must comply with platform policies</li><li>Fraudulent or abusive activity may result in disqualification</li></ul><h2>Points Validity</h2><ul><li>Points may have expiration dates</li><li>Expired points cannot be restored or redeemed</li><li>Users are responsible for checking their points balance and validity period</li></ul><h2>Non-Transferable</h2><p>Points:</p><ul><li>Have no cash value</li><li>Cannot be transferred between accounts</li><li>Cannot be exchanged for cash unless specifically stated</li></ul><h2>Fraud Prevention</h2><p>MXCar reserves the right to:</p><ul><li>Remove points obtained through suspicious activity</li><li>Suspend accounts involved in fraud or abuse</li><li>Modify or cancel rewards at any time</li></ul><h2>Program Changes</h2><p>MXCar may:</p><ul><li>Update earning rules</li><li>Modify redemption options</li><li>Suspend or terminate the program without prior notice</li></ul><h2>Contact Support</h2><p>For questions related to the Points Program:</p><ul><li>Website: MXCar Official Website</li><li>Support Email: <a href=\"mailto:support@mxcar.com\">support@mxcar.com</a></li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:32:03'),
(31, 'Military &amp; Veterans', '<h1>Military &amp; Veterans – MXCar</h1><p>MXCar proudly supports military personnel, veterans, and their families. We appreciate the dedication and service of those who have served the nation and aim to provide a respectful and supportive experience on our platform.</p><h2>Our Commitment</h2><p>MXCar is committed to:</p><ul><li>Supporting military members and veterans</li><li>Providing accessible transportation solutions</li><li>Offering professional and respectful customer service</li><li>Creating opportunities for veterans and military families</li></ul><h2>Special Benefits</h2><p>Depending on availability and promotional programs, MXCar may offer:</p><ul><li>Exclusive discounts</li><li>Promotional offers</li><li>Priority customer support</li><li>Partnership opportunities</li></ul><p>Terms and conditions may apply to special offers.</p><h2>Career Opportunities for Veterans</h2><p>MXCar welcomes applications from:</p><ul><li>Retired military personnel</li><li>Veterans</li><li>Military family members</li></ul><p>Potential opportunities may include:</p><ul><li>Operations roles</li><li>Customer support</li><li>Driver partnerships</li><li>Technical and administrative positions</li></ul><h2>Verification</h2><p>To access military or veteran-specific benefits, users may be asked to provide valid identification or verification documents.</p><h2>Respect &amp; Community Standards</h2><p>MXCar maintains a respectful environment for all users. Harassment, discrimination, or misuse of military status is strictly prohibited.</p><h2>Support &amp; Assistance</h2><p>Military personnel and veterans can contact our support team for assistance related to:</p><ul><li>Discounts and offers</li><li>Account support</li><li>Booking assistance</li><li>Partnership inquiries</li></ul><h2>Contact Us</h2><ul><li>Website: MXCar Official Website</li><li>Support Email: <a href=\"mailto:support@mxcar.com\">support@mxcar.com</a></li><li>Careers Email: <a href=\"mailto:careers@mxcar.com\">careers@mxcar.com</a></li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:28:36'),
(32, 'Work with us', '<p>Join MXCar and become part of a growing platform focused on innovation, customer service, and smart transportation solutions. We are always looking for talented and passionate individuals to work with us.</p><h2>Why Join MXCar?</h2><p>At MXCar, we believe in:</p><ul><li>Innovation and growth</li><li>Team collaboration</li><li>Customer-focused solutions</li><li>Professional development</li><li>Creating new opportunities</li></ul><h2>Opportunities Available</h2><p>We may offer opportunities in areas such as:</p><ul><li>Customer Support</li><li>Operations Management</li><li>Sales &amp; Marketing</li><li>Business Development</li><li>Software Development</li><li>UI/UX Design</li><li>Digital Marketing</li><li>Driver &amp; Partner Programs</li></ul><h2>Who Can Apply?</h2><p>We welcome:</p><ul><li>Freshers</li><li>Experienced professionals</li><li>Freelancers</li><li>Business partners</li><li>Service providers</li></ul><h2>Partner With Us</h2><p>Businesses and individuals can also collaborate with MXCar as:</p><ul><li>Vehicle partners</li><li>Fleet owners</li><li>Marketing partners</li><li>Affiliate partners</li><li>Local business collaborators</li></ul><h2>How to Apply</h2><p>Interested candidates or partners can contact us with:</p><ul><li>Resume/CV</li><li>Portfolio (if applicable)</li><li>Experience details</li><li>Contact information</li></ul><h2>Hiring Process</h2><p>Our general hiring process may include:</p><ol><li>Application Review</li><li>Initial Screening</li><li>Interview Process</li><li>Final Selection</li><li>Onboarding</li></ol><h2>Equal Opportunity</h2><p>MXCar values diversity and equal opportunity. We encourage applications from qualified individuals regardless of background.</p><h2>Contact Us</h2><ul><li>Website: MXCar Official Website</li><li>Careers Email: <a href=\"mailto:careers@mxcar.com\">careers@mxcar.com</a></li><li>Support Email: <a href=\"mailto:support@mxcar.com\">support@mxcar.com</a></li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:27:30'),
(33, 'Advertise with us', '<p>Partner with MXCar and promote your business to a growing audience through our platform. We offer advertising opportunities designed to help brands increase visibility, reach targeted users, and grow their business.</p><h2>Why Advertise With MXCar?</h2><p>Advertising with MXCar can help you:</p><ul><li>Reach active users and customers</li><li>Increase brand awareness</li><li>Promote products and services</li><li>Drive traffic and conversions</li><li>Target location-based audiences</li></ul><h2>Advertising Opportunities</h2><p>MXCar may offer:</p><ul><li>Homepage banner advertisements</li><li>Featured listings</li><li>Sponsored promotions</li><li>In-app advertisements</li><li>Brand collaborations</li><li>Social media promotions</li></ul><h2>Who Can Advertise?</h2><p>We welcome advertising inquiries from:</p><ul><li>Local businesses</li><li>Automotive brands</li><li>Travel &amp; tourism companies</li><li>Service providers</li><li>Technology companies</li><li>Startups and enterprises</li></ul><h2>Advertising Guidelines</h2><p>All advertisements must:</p><ul><li>Comply with applicable laws and regulations</li><li>Be accurate and non-misleading</li><li>Not contain offensive, illegal, or harmful content</li><li>Respect user privacy and platform standards</li></ul><p>MXCar reserves the right to reject or remove advertisements at its discretion.</p><h2>Custom Advertising Solutions</h2><p>We can provide customized marketing campaigns based on:</p><ul><li>Budget</li><li>Audience targeting</li><li>Campaign duration</li><li>Platform placement</li></ul><h2>Get Started</h2><p>To advertise with MXCar, contact our team with:</p><ul><li>Company details</li><li>Advertising goals</li><li>Budget range</li><li>Campaign requirements</li></ul><h2>Contact Us</h2><ul><li>Website: MXCar Official Website</li><li>Email: <a href=\"mailto:marketing@mxcar.com\">marketing@mxcar.com</a></li><li>Support: <a href=\"mailto:support@mxcar.com\">support@mxcar.com</a></li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:26:37'),
(34, 'Forum support', '<p>MXCar provides forum support to help users discuss issues, ask questions, share experiences, and receive assistance from the community and support team.</p><h2>What is Forum Support?</h2><p>The MXCar forum is a community discussion platform where users can:</p><ul><li>Ask questions</li><li>Report issues</li><li>Share feedback</li><li>Discuss bookings and services</li><li>Get help from moderators or other users</li></ul><p>Forum support systems are commonly used for customer assistance, FAQs, and community discussions. (<a href=\"https://www.msextra.com/forum-info/?utm_source=chatgpt.com\" title=\"Megasquirt Forum Introduction - Megasquirt EFI\">Megasquirt EFI</a>)</p><h2>Forum Categories</h2><p>The forum may include sections such as:</p><ul><li>General Discussions</li><li>Booking Support</li><li>Payment &amp; Refund Issues</li><li>Technical Problems</li><li>Feature Requests</li><li>Account &amp; Login Help</li><li>Announcements &amp; Updates</li></ul><h2>User Guidelines</h2><p>To maintain a safe and helpful environment, users must:</p><ul><li>Be respectful to others</li><li>Avoid abusive or offensive content</li><li>Not share false or misleading information</li><li>Avoid spam, advertisements, or unauthorized promotions</li></ul><p>Violation of forum rules may result in content removal or account suspension.</p><h2>Creating a Forum Post</h2><ol><li>Login to your MXCar account</li><li>Open the forum/support section</li><li>Select the appropriate category</li><li>Create a new topic or reply to an existing discussion</li><li>Submit your question or feedback</li></ol><h2>Community Support</h2><p>Other users and moderators may respond to forum topics to help resolve issues faster. Community forums are widely used for peer-to-peer assistance and troubleshooting. (Xbhp)</p><h2>Moderator Rights</h2><p>MXCar moderators reserve the right to:</p><ul><li>Edit or remove inappropriate content</li><li>Lock discussions</li><li>Suspend accounts violating forum rules</li></ul><h2>Privacy &amp; Security</h2><p>Users should never share:</p><ul><li>Passwords</li><li>OTPs</li><li>Payment details</li><li>Sensitive personal information</li></ul><p>Public forum posts may be visible to other users.</p><h2>Contact Support</h2><p>If your issue requires private assistance, contact MXCar directly through:</p><ul><li>Live Chat</li><li>Help Center</li><li>Email Support</li><li>Website: MXCar Official Website</li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:25:36'),
(35, 'Help Center', '<p>Welcome to the MXCar Help Center. We are here to assist you with bookings, payments, account issues, refunds, and technical support.</p><h2>Frequently Asked Questions</h2><h3>1. How do I create an account?</h3><p>Visit MXCar Official Website and register using your email address or mobile number.</p><h3>2. How can I book a service?</h3><ul><li>Login to your account</li><li>Select your preferred service or vehicle</li><li>Enter booking details</li><li>Complete payment</li><li>Receive booking confirmation</li></ul><h3>3. What payment methods are supported?</h3><p>MXCar may support:</p><ul><li>UPI</li><li>Debit/Credit Cards</li><li>Net Banking</li><li>Wallet payments</li></ul><h3>4. My payment was deducted but booking failed.</h3><p>If payment is deducted and the booking is not confirmed:</p><ul><li>Wait a few minutes for automatic confirmation</li><li>If unresolved, contact support with transaction details</li></ul><h3>5. How can I request a refund?</h3><p>Refund requests can be submitted through customer support or the help section on the platform.</p><h3>6. How do I cancel my booking?</h3><p>Users can cancel bookings from their account dashboard before the scheduled service time, subject to cancellation policies.</p><h3>7. I forgot my password.</h3><p>Use the “Forgot Password” option on the login page to reset your password securely.</p><h3>8. How do I contact customer support?</h3><p>You can contact support through:</p><ul><li>Live Chat</li><li>Contact Form</li><li>Email Support</li><li>Website Support Center</li></ul><h2>Support Categories</h2><p>The Help Center provides assistance for:</p><ul><li>Account &amp; Login Issues</li><li>Booking Problems</li><li>Payment Issues</li><li>Refund Requests</li><li>Technical Errors</li><li>Security Concerns</li></ul><h2>Live Support</h2><p>For immediate assistance, users can access live chat support directly on:<br>MXCar Support Center</p><h2>Security Tips</h2><p>To keep your account secure:</p><ul><li>Never share OTPs or passwords</li><li>Use strong passwords</li><li>Always login through the official website</li><li>Report suspicious activity immediately</li></ul><h2>Contact Information</h2><ul><li>Website: MXCar Official Website</li><li>Support: <a href=\"mailto:support@mxcar.com\">support@mxcar.com</a></li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:24:33'),
(36, 'Live chat', '<p>MXCar provides live chat support to help users quickly resolve issues related to bookings, payments, cancellations, account access, and technical problems.</p><h2>Live Chat Features</h2><p>Users can get assistance for:</p><ul><li>Booking support</li><li>Payment issues</li><li>Refund requests</li><li>Car availability</li><li>Technical problems</li><li>Account assistance</li></ul><h2>Availability</h2><ul><li>Live chat support is available directly on the website.</li><li>Support hours may vary depending on your business operations.</li></ul><h2>How to Access Live Chat</h2><ol><li>Visit MXCar Official Website</li><li>Open the support/chat icon available on the website</li><li>Start a conversation with the support team</li></ol><h2>Alternative Support Methods</h2><p>If live chat is unavailable, users may contact support through:</p><ul><li>Email support</li><li>Contact form</li><li>Customer service phone support</li></ul><h2>Response Time</h2><p>MXCar aims to respond to customer queries as quickly as possible. Response times may vary during peak hours or holidays.</p><h2>Security &amp; Privacy</h2><p>All customer conversations are handled securely and may be monitored for quality and training purposes.</p><p>According to MXCar support/help pages, the platform offers customer assistance through live chat and support channels for user issues and booking help.&nbsp;</p>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:23:34'),
(37, 'How it works', '<p>Welcome to MXCar — a smart and convenient platform designed to make vehicle booking and transportation services simple, fast, and secure.</p><h2>Step 1: Create an Account</h2><p>Users can register on MXCar using their email address or mobile number to access platform features.</p><h2>Step 2: Browse Available Services</h2><p>After login, users can:</p><ul><li>Search available cars or transport services</li><li>View pricing and service details</li><li>Select preferred booking options</li></ul><h2>Step 3: Make a Booking</h2><p>Choose your desired service and confirm the booking by providing:</p><ul><li>Pickup &amp; drop details</li><li>Date and time</li><li>Contact information</li></ul><h2>Step 4: Secure Payment</h2><p>Payments can be completed through supported online payment methods such as:</p><ul><li>UPI</li><li>Debit/Credit Cards</li><li>Net Banking</li><li>Wallets</li></ul><p>All transactions are processed through secure payment gateways.</p><h2>Step 5: Booking Confirmation</h2><p>Once payment is successful:</p><ul><li>Booking details are confirmed</li><li>Users receive confirmation notifications</li><li>Service information becomes available in the user dashboard</li></ul><h2>Step 6: Service Completion</h2><p>The assigned service/ride is completed according to the booking details.</p><h2>Step 7: Support &amp; Assistance</h2><p>If users face any issue related to:</p><ul><li>Bookings</li><li>Payments</li><li>Refunds</li><li>Technical problems</li></ul><p>They can contact support through:</p><ul><li>Website: MXCar Support</li><li>Email support system</li></ul><h2>Additional Features</h2><p>MXCar may also provide:</p><ul><li>Booking history</li><li>Real-time status tracking</li><li>Notifications &amp; updates</li><li>Promotions and offers</li><li>User profile management</li></ul><h2>Security &amp; Privacy</h2><p>MXCar uses secure technologies and encrypted connections to protect user data and transactions.</p>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:22:21'),
(38, 'Security', '<p>Effective Date: May 11, 2026</p><p>At MXCar, we value the security and privacy of our users. This Security Policy explains the measures we take to protect user data, transactions, and platform integrity.</p><h2>1. Data Protection</h2><p>MXCar implements industry-standard security measures to protect personal and business information from unauthorized access, misuse, alteration, or disclosure.</p><p>These measures may include:</p><ul><li>Encrypted HTTPS/SSL connections</li><li>Secure server infrastructure</li><li>Firewall and access control systems</li><li>Regular security monitoring and updates</li></ul><h2>2. Account Security</h2><p>Users are responsible for maintaining the confidentiality of their account credentials.</p><p>We recommend:</p><ul><li>Using strong passwords</li><li>Not sharing login credentials</li><li>Enabling two-factor authentication (if available)</li></ul><p>MXCar is not responsible for unauthorized account access caused by user negligence.</p><h2>3. Payment Security</h2><p>All payment transactions are processed through secure third-party payment gateways. MXCar does not store complete card or banking information on its servers.</p><p>Payment providers may use:</p><ul><li>PCI-DSS compliant systems</li><li>OTP verification</li><li>Fraud prevention tools</li></ul><h2>4. Secure Communication</h2><p>All sensitive data transmitted between users and the platform is encrypted using SSL/TLS technology.</p><h2>5. Unauthorized Activities</h2><p>Users must not:</p><ul><li>Attempt to hack, exploit, or disrupt the platform</li><li>Upload malicious software or scripts</li><li>Access data without authorization</li><li>Perform fraudulent activities</li></ul><p>Violation of these rules may result in account suspension and legal action.</p><h2>6. Third-Party Services</h2><p>MXCar may use trusted third-party services for:</p><ul><li>Payments</li><li>Analytics</li><li>Notifications</li><li>Cloud hosting</li></ul><p>While we work with reputable providers, MXCar is not responsible for external security breaches beyond our direct control.</p><h2>7. Security Incident Reporting</h2><p>If you discover a security vulnerability or suspicious activity, please report it immediately to:</p><ul><li>Email: <a href=\"mailto:security@mxcar.com\">security@mxcar.com</a></li><li>Website: MXCar</li></ul><p>We will investigate and take appropriate action as quickly as possible.</p><h2>8. Policy Updates</h2><p>MXCar reserves the right to modify this Security Policy at any time. Updated versions will be posted on the platform with the revised effective date.</p><h2>9. Contact Information</h2><p>For security-related concerns, contact:</p><ul><li>Website: MXCar Official Website</li><li>Email: <a href=\"mailto:support@mxcar.com\">support@mxcar.com</a></li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:21:15'),
(39, 'Refund Policy', '<p>Effective Date: May 11, 2026</p><p>At MXCar, customer satisfaction is important to us. This Refund Policy explains the conditions under which refunds may be provided for bookings, subscriptions, or services purchased through our platform.</p><h2>1. Booking Cancellation &amp; Refunds</h2><ul><li>Customers may request cancellation before the service starts.</li><li>Refund eligibility depends on the cancellation timing:<ul><li>More than 24 hours before service: Full refund</li><li>Within 24 hours of service: Partial refund may apply</li><li>After service has started/completed: No refund</li></ul></li></ul><h2>2. Failed or Duplicate Payments</h2><p>If a payment is deducted but the booking is not confirmed, or duplicate payment is made:</p><ul><li>The amount will be refunded within 5–7 business days to the original payment method.</li></ul><h2>3. Subscription Plans</h2><ul><li>Subscription or membership fees are generally non-refundable once activated.</li><li>In exceptional technical cases, MXCar may review refund requests individually.</li></ul><h2>4. Service Issues</h2><p>If you experience:</p><ul><li>Incorrect charges</li><li>Technical issues</li><li>Service not delivered</li></ul><p>You may contact support within 7 days of the transaction for review.</p><h2>5. Refund Processing Time</h2><p>Approved refunds are usually processed within:</p><ul><li>UPI/Wallets: 2–5 business days</li><li>Debit/Credit Cards &amp; Net Banking: 5–10 business days</li></ul><h2>6. Contact Us</h2><p>For refund-related queries, contact:</p><ul><li>Email: <a href=\"mailto:support@mxcar.com\">support@mxcar.com</a></li><li>Website: MXCar Support</li></ul>', NULL, NULL, 'default', '', 'published', '2026-03-06 02:52:11', '2026-05-11 08:19:29'),
(40, 'Car Classified', '<shortcode>[banner tag=\"Find cars for sale near you\" title=\"Find Your Perfect Car\" subtitle=\"Search and find your best car sale with easy way\" background_image=\"car.jpg\" enable_lazy_loading=\"no\"][/banner]</shortcode><shortcode>[car-list title=\"Our Vehicle Fleet\" subtitle=\"Turning dreams into reality with versatile vehicles.\" enable_filter=\"yes\" default_layout=\"grid\" layout_col=\"3\" cars_per_page=\"20\" is_for_sale=\"1\" enable_caching=\"yes\"][/car-list]</shortcode>', 1, NULL, 'homepage', '', 'published', '2026-04-29 17:02:55', '2026-04-30 10:18:40');

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

--
-- Table structure for table `pages_translations`
--

CREATE TABLE `pages_translations` (
  `lang_code` varchar(20) NOT NULL,
  `pages_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `content` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `password_reset_tokens`
--

CREATE TABLE `password_reset_tokens` (
  `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;

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

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

CREATE TABLE `payments` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `currency` varchar(120) DEFAULT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `charge_id` varchar(191) DEFAULT NULL,
  `payment_channel` varchar(60) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `amount` decimal(15,2) UNSIGNED NOT NULL,
  `payment_fee` decimal(15,2) DEFAULT 0.00,
  `order_id` bigint(20) UNSIGNED DEFAULT NULL,
  `status` varchar(60) DEFAULT 'pending',
  `payment_type` varchar(191) DEFAULT 'confirm',
  `customer_id` bigint(20) UNSIGNED DEFAULT NULL,
  `refunded_amount` decimal(15,2) UNSIGNED DEFAULT NULL,
  `refund_note` varchar(191) DEFAULT NULL,
  `is_authorized_hold` tinyint(1) NOT NULL DEFAULT 0,
  `authorized_amount` decimal(15,2) DEFAULT NULL,
  `captured_amount` decimal(15,2) DEFAULT NULL,
  `released_amount` decimal(15,2) DEFAULT NULL,
  `authorized_at` datetime DEFAULT NULL,
  `captured_at` datetime DEFAULT NULL,
  `released_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `customer_type` varchar(191) DEFAULT NULL,
  `metadata` mediumtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `payments` (`id`, `currency`, `user_id`, `charge_id`, `payment_channel`, `description`, `amount`, `payment_fee`, `order_id`, `status`, `payment_type`, `customer_id`, `refunded_amount`, `refund_note`, `is_authorized_hold`, `authorized_amount`, `captured_amount`, `released_amount`, `authorized_at`, `captured_at`, `released_at`, `created_at`, `updated_at`, `customer_type`, `metadata`) VALUES
(1, 'USD', 24, '1EPX9ZZ1ANZK', 'paystack', NULL, 249.00, 0.00, 1, 'completed', 'direct', 24, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-01 08:24:05', '2026-02-01 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(2, 'USD', 23, 'LZNTX4GJSB5D', 'paypal', NULL, 47.00, 0.00, 2, 'completed', 'direct', 23, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-02 08:24:05', '2026-04-07 18:22:46', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(3, 'USD', 28, 'N6J41ABAUCYZ', 'razorpay', NULL, 308.00, 0.00, 3, 'pending', 'direct', 28, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-06 08:24:05', '2026-01-06 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(4, 'USD', 23, 'BNUOUT7OGUEC', 'paystack', NULL, 186.00, 0.00, 4, 'pending', 'direct', 23, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-30 08:24:05', '2026-01-30 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(5, 'USD', 24, 'LNSVZP63GF6H', 'stripe', NULL, 224.00, 0.00, 5, 'pending', 'direct', 24, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-02 08:24:05', '2026-02-02 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(6, 'USD', 25, 'XIPQRUJVQGFH', 'bank_transfer', NULL, 396.00, 0.00, 6, 'completed', 'direct', 25, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-12 08:24:05', '2026-02-12 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(7, 'USD', 29, 'G3RFA0XE8QA6', 'paystack', NULL, 245.00, 0.00, 7, 'completed', 'direct', 29, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-24 08:24:05', '2026-01-24 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(8, 'USD', 21, 'JBQVTCQRSMSA', 'paystack', NULL, 190.00, 0.00, 8, 'pending', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-08 08:24:05', '2026-02-08 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(9, 'USD', 31, 'OY2PEGE9RQD2', 'bank_transfer', NULL, 230.00, 0.00, 9, 'completed', 'direct', 31, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-25 08:24:05', '2026-01-25 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(10, 'USD', 22, '5ZZLZIIMP52M', 'bank_transfer', NULL, 33.00, 0.00, 10, 'pending', 'direct', 22, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-16 08:24:05', '2026-01-16 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(11, 'USD', 29, 'JKZYZNYZBUZE', 'razorpay', NULL, 204.00, 0.00, 11, 'completed', 'direct', 29, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-28 08:24:05', '2026-02-28 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(12, 'USD', 25, 'K2JAVOUEBZ48', 'razorpay', NULL, 196.00, 0.00, 12, 'completed', 'direct', 25, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-17 08:24:05', '2026-02-17 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(13, 'USD', 30, 'WXYS6G7YEZSM', 'stripe', NULL, 60.00, 0.00, 13, 'pending', 'direct', 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-05 08:24:05', '2026-02-05 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(14, 'USD', 24, 'P6HZMXKUO8ZA', 'cod', NULL, 297.00, 0.00, 14, 'completed', 'direct', 24, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-24 08:24:05', '2026-02-24 08:24:05', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(15, 'USD', 21, 'KI5ZR5UITZS0', 'cod', NULL, 106.00, 0.00, 15, 'completed', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-07 08:24:06', '2026-02-07 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(16, 'USD', 25, 'SC1E0POFTZLP', 'razorpay', NULL, 195.00, 0.00, 16, 'completed', 'direct', 25, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-26 08:24:06', '2026-02-26 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(17, 'USD', 22, 'DQ4KHIJPRTGU', 'cod', NULL, 364.00, 0.00, 17, 'completed', 'direct', 22, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-20 08:24:06', '2026-01-20 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(18, 'USD', 21, '4RIDIACDEK6P', 'paypal', NULL, 400.00, 0.00, 18, 'completed', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-30 08:24:06', '2026-01-30 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(19, 'USD', 29, 'YVSEZR1R5MKU', 'bank_transfer', NULL, 342.00, 0.00, 19, 'completed', 'direct', 29, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-24 08:24:06', '2026-02-24 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(20, 'USD', 27, 'XEXMESBM03AY', 'cod', NULL, 165.00, 0.00, 20, 'completed', 'direct', 27, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-18 08:24:06', '2026-01-18 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(21, 'USD', 28, 'DRNJASV0V1VF', 'cod', NULL, 212.00, 0.00, 21, 'completed', 'direct', 28, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-27 08:24:06', '2026-01-27 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(22, 'USD', 30, '6B2M9CTCFMPV', 'bank_transfer', NULL, 270.00, 0.00, 22, 'completed', 'direct', 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-22 08:24:06', '2026-02-22 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(23, 'USD', 31, 'IGA0X0P66UPV', 'paypal', NULL, 184.00, 0.00, 23, 'pending', 'direct', 31, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-28 08:24:06', '2026-02-28 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(24, 'USD', 27, 'SILM8COCNWQN', 'paystack', NULL, 445.00, 0.00, 24, 'completed', 'direct', 27, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-23 08:24:06', '2026-01-23 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(25, 'USD', 23, 'FLDXN7M2IV2I', 'razorpay', NULL, 90.00, 0.00, 25, 'completed', 'direct', 23, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-07 08:24:06', '2026-01-07 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(26, 'USD', 21, 'IZ3W485HJKFO', 'stripe', NULL, 588.00, 0.00, 26, 'completed', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-07 08:24:06', '2026-01-07 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(27, 'USD', 29, 'EJFDJLSZFGK6', 'razorpay', NULL, 144.00, 0.00, 27, 'completed', 'direct', 29, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-23 08:24:06', '2026-02-23 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(28, 'USD', 26, 'L4DWMOYR8UWF', 'sslcommerz', NULL, 276.00, 0.00, 28, 'completed', 'direct', 26, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-19 08:24:06', '2026-02-19 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(29, 'USD', 29, '3RR2OIEUSPCL', 'paypal', NULL, 658.00, 0.00, 29, 'pending', 'direct', 29, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-01 08:24:06', '2026-03-01 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(30, 'USD', 21, 'LURDDYPJVSXJ', 'razorpay', NULL, 395.00, 0.00, 30, 'pending', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-16 08:24:06', '2026-01-16 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(31, 'USD', 22, 'H9L2BRPYBPNJ', 'bank_transfer', NULL, 249.00, 0.00, 31, 'pending', 'direct', 22, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-03 08:24:06', '2026-03-03 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(32, 'USD', 21, '6HBQOY5W4S4G', 'sslcommerz', NULL, 58.00, 0.00, 32, 'completed', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-04 08:24:06', '2026-03-04 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(33, 'USD', 30, 'LXH8PIB0ROIU', 'stripe', NULL, 390.00, 0.00, 33, 'completed', 'direct', 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-27 08:24:06', '2026-02-27 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(34, 'USD', 30, 'KG4QZXXA7X8W', 'paystack', NULL, 560.00, 0.00, 34, 'completed', 'direct', 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-03 08:24:06', '2026-03-03 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(35, 'USD', 25, 'UJA3VYDGIROG', 'stripe', NULL, 282.00, 0.00, 35, 'pending', 'direct', 25, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-01 08:24:06', '2026-03-01 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(36, 'USD', 27, 'AE5QXQPKP2U1', 'bank_transfer', NULL, 234.00, 0.00, 36, 'completed', 'direct', 27, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-02 08:24:06', '2026-03-02 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(37, 'USD', 30, '7IYXGLLGN3SG', 'sslcommerz', NULL, 340.00, 0.00, 37, 'pending', 'direct', 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-27 08:24:06', '2026-02-27 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(38, 'USD', 26, 'YUVCYAJLCCYK', 'paystack', NULL, 470.00, 0.00, 38, 'pending', 'direct', 26, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-03 08:24:06', '2026-03-03 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(39, 'USD', 21, 'YZEMTHFMWI7Z', 'cod', NULL, 248.00, 0.00, 39, 'pending', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-04 08:24:06', '2026-03-04 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(40, 'USD', 27, 'COK2IZXXKJ2E', 'razorpay', NULL, 564.00, 0.00, 40, 'completed', 'direct', 27, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-01 08:24:06', '2026-03-01 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(41, 'USD', 31, 'KKV4C1YGKCJT', 'stripe', NULL, 90.00, 0.00, 41, 'pending', 'direct', 31, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-06 08:24:06', '2026-03-06 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(42, 'USD', 27, 'OJFDWQ9O7JM9', 'stripe', NULL, 132.00, 0.00, 42, 'completed', 'direct', 27, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-28 08:24:06', '2026-02-28 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(43, 'USD', 25, 'NLJ33LBMIEQL', 'bank_transfer', NULL, 170.00, 0.00, 43, 'completed', 'direct', 25, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-05 08:24:06', '2026-03-05 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(44, 'USD', 25, 'DZ63IJO3OQUW', 'paypal', NULL, 132.00, 0.00, 44, 'pending', 'direct', 25, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-28 08:24:06', '2026-02-28 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(45, 'USD', 30, 'IABJ8DNDLUX8', 'stripe', NULL, 97.00, 0.00, 45, 'pending', 'direct', 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-03 08:24:06', '2026-03-03 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(46, 'USD', 21, 'KR2D1RTM2E6Z', 'sslcommerz', NULL, 258.00, 0.00, 46, 'completed', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-04 08:24:06', '2026-03-04 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(47, 'USD', 26, 'NFQXIPIIQOYF', 'stripe', NULL, 445.00, 0.00, 47, 'pending', 'direct', 26, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-04 08:24:06', '2026-03-04 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(48, 'USD', 21, 'QLVKM2P43RZ3', 'bank_transfer', NULL, 240.00, 0.00, 48, 'completed', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-02 08:24:06', '2026-03-02 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(49, 'USD', 29, 'FRZQ0GUXU525', 'paystack', NULL, 230.00, 0.00, 49, 'completed', 'direct', 29, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-27 08:24:06', '2026-02-27 08:24:06', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(50, 'USD', 24, 'PLGFU8Z5DJCZ', 'sslcommerz', NULL, 114.00, 0.00, 50, 'pending', 'direct', 24, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-06 08:24:07', '2026-03-06 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(51, 'USD', 21, '9EYHHHLMILJX', 'bank_transfer', NULL, 240.00, 0.00, 51, 'pending', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-25 08:24:07', '2026-03-25 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(52, 'USD', 27, 'NGJQNWQXCN6M', 'paypal', NULL, 255.00, 0.00, 52, 'pending', 'direct', 27, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-07 08:24:07', '2026-03-07 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(53, 'USD', 30, 'TUPLXEJIMZKB', 'paystack', NULL, 217.00, 0.00, 53, 'pending', 'direct', 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-10 08:24:07', '2026-03-10 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(54, 'USD', 22, 'CXDJBCCVH3TI', 'stripe', NULL, 425.00, 0.00, 54, 'pending', 'direct', 22, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-24 08:24:07', '2026-03-24 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(55, 'USD', 26, 'NYHELPTGLYCI', 'sslcommerz', NULL, 39.00, 0.00, 55, 'pending', 'direct', 26, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-26 08:24:07', '2026-03-26 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(56, 'USD', 21, 'EH77IGW9TWDP', 'sslcommerz', NULL, 365.00, 0.00, 56, 'pending', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-14 08:24:07', '2026-03-14 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(57, 'USD', 21, 'OHUI2HNADXER', 'bank_transfer', NULL, 282.00, 0.00, 57, 'pending', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-19 08:24:07', '2026-03-19 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(58, 'USD', 29, 'JQWQU7IOUEZV', 'stripe', NULL, 94.00, 0.00, 58, 'pending', 'direct', 29, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-26 08:24:07', '2026-03-26 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(59, 'USD', 31, 'K66FTID57WWS', 'cod', NULL, 230.00, 0.00, 59, 'pending', 'direct', 31, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-26 08:24:07', '2026-03-26 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(60, 'USD', 30, 'FWG6ILVDR4VX', 'paypal', NULL, 152.00, 0.00, 60, 'pending', 'direct', 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-25 08:24:07', '2026-03-25 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(61, 'USD', 31, '3W0Q1KVRLDNN', 'stripe', NULL, 594.00, 0.00, 61, 'pending', 'direct', 31, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-09 08:24:07', '2026-03-09 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(62, 'USD', 29, 'UAKX74D6PXPA', 'stripe', NULL, 350.00, 0.00, 62, 'pending', 'direct', 29, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-26 08:24:07', '2026-03-26 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(63, 'USD', 30, 'KMNV2YGE3TPJ', 'paypal', NULL, 350.00, 0.00, 63, 'pending', 'direct', 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-14 08:24:07', '2026-03-14 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(64, 'USD', 28, 'HD2CFCWMANDP', 'razorpay', NULL, 320.00, 0.00, 64, 'pending', 'direct', 28, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-13 08:24:07', '2026-03-13 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(65, 'USD', 25, 'WI50BOSRUNGS', 'bank_transfer', NULL, 208.00, 0.00, 65, 'pending', 'direct', 25, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-05 08:24:07', '2026-04-05 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(66, 'USD', 23, 'XBGWHCHBI3GN', 'stripe', NULL, 171.00, 0.00, 66, 'pending', 'direct', 23, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-17 08:24:07', '2026-03-17 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(67, 'USD', 25, 'MGE7FV8MDOP8', 'paypal', NULL, 183.00, 0.00, 67, 'pending', 'direct', 25, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-26 08:24:07', '2026-03-26 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(68, 'USD', 23, 'MPDD3VR8JXJB', 'bank_transfer', NULL, 450.00, 0.00, 68, 'pending', 'direct', 23, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-19 08:24:07', '2026-03-19 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(69, 'USD', 27, 'YZRMPRKJO6GA', 'cod', NULL, 112.00, 0.00, 69, 'pending', 'direct', 27, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-29 08:24:07', '2026-03-29 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(70, 'USD', 25, 'PWXUKZGW7XO2', 'bank_transfer', NULL, 124.00, 0.00, 70, 'pending', 'direct', 25, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-08 08:24:07', '2026-03-08 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(71, 'USD', 21, 'K4WBLZJVXTFF', 'paypal', NULL, 370.00, 0.00, 71, 'pending', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-23 08:24:07', '2026-03-23 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(72, 'USD', 23, 'KZQ45589IOS5', 'razorpay', NULL, 198.00, 0.00, 72, 'pending', 'direct', 23, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-07 08:24:07', '2026-03-07 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(73, 'USD', 21, 'TTEK6XCCEEJ8', 'sslcommerz', NULL, 195.00, 0.00, 73, 'pending', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-11 08:24:07', '2026-03-11 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(74, 'USD', 28, 'O99LYROUUUDB', 'cod', NULL, 180.00, 0.00, 74, 'pending', 'direct', 28, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-19 08:24:07', '2026-03-19 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(75, 'USD', 31, '2S0K02BXC97D', 'sslcommerz', NULL, 65.00, 0.00, 75, 'pending', 'direct', 31, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-08 08:24:07', '2026-03-08 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(76, 'USD', 27, 'QHJVJ2WK2B0O', 'bank_transfer', NULL, 245.00, 0.00, 76, 'pending', 'direct', 27, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-25 08:24:07', '2026-03-25 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(77, 'USD', 21, '7RJSNND55G3S', 'stripe', NULL, 154.00, 0.00, 77, 'pending', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-12 08:24:07', '2026-03-12 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(78, 'USD', 25, 'NYXVQZS7FMEI', 'razorpay', NULL, 372.00, 0.00, 78, 'pending', 'direct', 25, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-21 08:24:07', '2026-03-21 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(79, 'USD', 22, 'OT4STCHSG4TM', 'razorpay', NULL, 276.00, 0.00, 79, 'pending', 'direct', 22, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-16 08:24:07', '2026-03-16 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(80, 'USD', 21, 'R3MIYKP49RCJ', 'stripe', NULL, 79.00, 0.00, 80, 'pending', 'direct', 21, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-13 08:24:07', '2026-03-13 08:24:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(81, 'USD', 0, 'V64QSGQM5M', 'cod', NULL, 50.00, 0.00, 81, 'completed', 'confirm', 34, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-03-18 04:01:46', '2026-03-18 04:03:52', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(82, 'USD', 0, 'YR5OA3VCX8', 'cod', NULL, 50.00, 0.00, 82, 'pending', 'confirm', 36, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-06 04:50:31', '2026-04-06 04:50:31', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(83, 'USD', 0, 'IONQL2NHGQ', 'cod', NULL, 852.00, 0.00, 83, 'pending', 'confirm', 37, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-09 14:21:52', '2026-04-09 14:21:52', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(84, 'USD', 0, 'SSSMEJX6L8', 'cod', NULL, 2557.20, 0.00, 84, 'completed', 'confirm', 37, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-09 14:33:18', '2026-04-09 14:35:07', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(85, 'USD', 0, 'ch_3TKGNmPJeZhC0PUZ0VoqbaNP', 'stripe', NULL, 138.80, 0.00, 90, 'completed', 'confirm', 36, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-09 16:34:26', '2026-04-09 16:34:26', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(86, 'USD', 0, 'HCLVE39ES7', 'cod', NULL, 393.20, 0.00, 91, 'pending', 'confirm', 36, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-22 10:50:48', '2026-04-22 10:50:48', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(87, 'USD', 0, 'KV3MGOZFRC', 'cod', NULL, 1623.20, 0.00, 92, 'pending', 'confirm', 36, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-22 11:22:18', '2026-04-22 11:22:18', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(88, 'USD', 0, 'YUMBOQKABY', 'cod', NULL, 941.60, 0.00, 93, 'pending', 'confirm', 36, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-22 11:27:15', '2026-04-22 11:27:15', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(89, 'USD', 0, 'UEDFYUZE8D', 'cod', NULL, 260.00, 0.00, 94, 'pending', 'confirm', 36, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-22 11:33:09', '2026-04-22 11:33:09', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(90, 'USD', 0, 'F9CXXZRBP3', 'cod', NULL, 1072.40, 0.00, 95, 'pending', 'confirm', 37, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-22 14:06:51', '2026-04-22 14:06:51', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(91, 'USD', 0, 'TNT5VOMUFP', 'cod', NULL, 1148.62, 0.00, 96, 'pending', 'confirm', 36, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-04-30 07:13:22', '2026-04-30 07:13:22', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(92, 'USD', 0, 'TWJBKKSVVK', 'cod', NULL, 210.26, 0.00, 97, 'pending', 'confirm', 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-06-09 05:47:50', '2026-06-09 05:47:50', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(93, 'USD', 0, 'G9JFKXDKFG', 'cod', NULL, 123.78, 0.00, 98, 'pending', 'confirm', 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-06-09 09:40:22', '2026-06-09 09:40:22', 'Mxcar\\CarRentals\\Models\\Customer', NULL),
(94, 'USD', 0, 'ch_3TgO8wPJeZhC0PUZ0TzEabID', 'stripe', NULL, 149.73, 0.00, 100, 'completed', 'confirm', 36, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-06-09 11:48:35', '2026-06-09 11:48:35', 'Mxcar\\CarRentals\\Models\\Customer', NULL);

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

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

CREATE TABLE `payment_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `payment_method` varchar(191) NOT NULL,
  `request` longtext DEFAULT NULL,
  `response` longtext DEFAULT NULL,
  `ip_address` varchar(45) 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 `payment_logs`
--

INSERT INTO `payment_logs` (`id`, `payment_method`, `request`, `response`, `ip_address`, `created_at`, `updated_at`) VALUES
(1, 'stripe', '{\"line_items\":[{\"price_data\":{\"product_data\":{\"name\":\"BMW XM Label Red 2024\",\"metadata\":{\"pro_id\":90},\"description\":\"BMW XM Label Red 2024\",\"images\":[]},\"unit_amount\":9900,\"currency\":\"USD\"},\"quantity\":1}],\"mode\":\"payment\",\"locale\":\"en\",\"success_url\":\"https:\\/\\/mxcar.atharvatek.com\\/payment\\/stripe\\/success?session_id={CHECKOUT_SESSION_ID}\",\"cancel_url\":\"https:\\/\\/mxcar.atharvatek.com\\/payment\\/stripe\\/error\",\"metadata\":{\"order_id\":\"[90]\",\"amount\":138.8,\"currency\":\"USD\",\"customer_id\":36,\"customer_type\":\"Mxcar\\\\CarRentals\\\\Models\\\\Customer\",\"return_url\":null,\"callback_url\":null,\"payment_fee\":0}}', '{\"id\":\"cs_test_a1yw8LYbWuazQNTs4mg6wsiTMDWsfYgpzXbfD7x9FMAG9tEZ7NgL3xl5gM\",\"object\":\"checkout.session\",\"adaptive_pricing\":{\"enabled\":true},\"after_expiration\":null,\"allow_promotion_codes\":null,\"amount_subtotal\":9900,\"amount_total\":9900,\"automatic_tax\":{\"enabled\":false,\"liability\":null,\"provider\":null,\"status\":null},\"billing_address_collection\":null,\"branding_settings\":{\"background_color\":\"#ffffff\",\"border_style\":\"rounded\",\"button_color\":\"#0074d4\",\"display_name\":\"\",\"font_family\":\"default\",\"icon\":null,\"logo\":null},\"cancel_url\":\"https:\\/\\/mxcar.atharvatek.com\\/payment\\/stripe\\/error\",\"client_reference_id\":null,\"client_secret\":null,\"collected_information\":null,\"consent\":null,\"consent_collection\":null,\"created\":1775732637,\"currency\":\"usd\",\"currency_conversion\":null,\"custom_fields\":[],\"custom_text\":{\"after_submit\":null,\"shipping_address\":null,\"submit\":null,\"terms_of_service_acceptance\":null},\"customer\":null,\"customer_account\":null,\"customer_creation\":\"if_required\",\"customer_details\":null,\"customer_email\":null,\"discounts\":[],\"expires_at\":1775819037,\"integration_identifier\":null,\"invoice\":null,\"invoice_creation\":{\"enabled\":false,\"invoice_data\":{\"account_tax_ids\":null,\"custom_fields\":null,\"description\":null,\"footer\":null,\"issuer\":null,\"metadata\":[],\"rendering_options\":null}},\"livemode\":false,\"locale\":\"en\",\"metadata\":{\"amount\":\"138.8\",\"currency\":\"USD\",\"customer_id\":\"36\",\"customer_type\":\"Mxcar\\\\CarRentals\\\\Models\\\\Customer\",\"order_id\":\"[90]\",\"payment_fee\":\"0\"},\"mode\":\"payment\",\"origin_context\":null,\"payment_intent\":null,\"payment_link\":null,\"payment_method_collection\":\"if_required\",\"payment_method_configuration_details\":{\"id\":\"pmc_1TJqDwPJeZhC0PUZdjKWN1Nb\",\"parent\":null},\"payment_method_options\":{\"affirm\":[],\"card\":{\"request_three_d_secure\":\"automatic\"}},\"payment_method_types\":[\"card\",\"klarna\",\"link\",\"affirm\",\"cashapp\",\"amazon_pay\"],\"payment_status\":\"unpaid\",\"permissions\":null,\"phone_number_collection\":{\"enabled\":false},\"recovered_from\":null,\"saved_payment_method_options\":null,\"setup_intent\":null,\"shipping_address_collection\":null,\"shipping_cost\":null,\"shipping_options\":[],\"status\":\"open\",\"submit_type\":null,\"subscription\":null,\"success_url\":\"https:\\/\\/mxcar.atharvatek.com\\/payment\\/stripe\\/success?session_id={CHECKOUT_SESSION_ID}\",\"total_details\":{\"amount_discount\":0,\"amount_shipping\":0,\"amount_tax\":0},\"ui_mode\":\"hosted\",\"url\":\"https:\\/\\/checkout.stripe.com\\/c\\/pay\\/cs_test_a1yw8LYbWuazQNTs4mg6wsiTMDWsfYgpzXbfD7x9FMAG9tEZ7NgL3xl5gM#fidnandhYHdWcXxpYCc%2FJ2FgY2RwaXEnKSdpamZkaWAnPydgaycpJ2R1bE5gfCc%2FJ3VuWnFgdnFaMDRRT3RBVFVPYF9tRjVVUF9TM3c0TGc1akY2MmdES25idkpxNW1KYkBgb1MwMlRzdWpQaF93QD10ZzNtSXVTfDJpdVRNN390U2t8U0owaGBvZlNCN1ZjNkc1NV93f0lUa3d2JyknY3dqaFZgd3Ngdyc%2FcXdwYCknZ2RmbmJ3anBrYUZqaWp3Jz8nJmNjY2NjYycpJ2lkfGpwcVF8dWAnPyd2bGtiaWBabHFgaCcpJ2BrZGdpYFVpZGZgbWppYWB3dic%2FcXdwYHgl\",\"wallet_options\":null}', '157.48.249.70', '2026-04-09 16:33:57', '2026-04-09 16:33:57'),
(2, 'stripe', '{\"id\":\"cs_test_a1yw8LYbWuazQNTs4mg6wsiTMDWsfYgpzXbfD7x9FMAG9tEZ7NgL3xl5gM\"}', '{\"id\":\"cs_test_a1yw8LYbWuazQNTs4mg6wsiTMDWsfYgpzXbfD7x9FMAG9tEZ7NgL3xl5gM\",\"object\":\"checkout.session\",\"adaptive_pricing\":{\"enabled\":true},\"after_expiration\":null,\"allow_promotion_codes\":null,\"amount_subtotal\":9900,\"amount_total\":9900,\"automatic_tax\":{\"enabled\":false,\"liability\":null,\"provider\":null,\"status\":null},\"billing_address_collection\":null,\"branding_settings\":{\"background_color\":\"#ffffff\",\"border_style\":\"rounded\",\"button_color\":\"#0074d4\",\"display_name\":\"\",\"font_family\":\"default\",\"icon\":null,\"logo\":null},\"cancel_url\":\"https:\\/\\/mxcar.atharvatek.com\\/payment\\/stripe\\/error\",\"client_reference_id\":null,\"client_secret\":null,\"collected_information\":null,\"consent\":null,\"consent_collection\":null,\"created\":1775732637,\"currency\":\"usd\",\"currency_conversion\":null,\"custom_fields\":[],\"custom_text\":{\"after_submit\":null,\"shipping_address\":null,\"submit\":null,\"terms_of_service_acceptance\":null},\"customer\":null,\"customer_account\":null,\"customer_creation\":\"if_required\",\"customer_details\":{\"address\":{\"city\":null,\"country\":\"IN\",\"line1\":null,\"line2\":null,\"postal_code\":null,\"state\":null},\"business_name\":null,\"email\":\"manish@gmail.com\",\"individual_name\":null,\"name\":\"test\",\"phone\":null,\"tax_exempt\":\"none\",\"tax_ids\":[]},\"customer_email\":null,\"discounts\":[],\"expires_at\":1775819037,\"integration_identifier\":null,\"invoice\":null,\"invoice_creation\":{\"enabled\":false,\"invoice_data\":{\"account_tax_ids\":null,\"custom_fields\":null,\"description\":null,\"footer\":null,\"issuer\":null,\"metadata\":[],\"rendering_options\":null}},\"livemode\":false,\"locale\":\"en\",\"metadata\":{\"amount\":\"138.8\",\"currency\":\"USD\",\"customer_id\":\"36\",\"customer_type\":\"Mxcar\\\\CarRentals\\\\Models\\\\Customer\",\"order_id\":\"[90]\",\"payment_fee\":\"0\"},\"mode\":\"payment\",\"origin_context\":null,\"payment_intent\":\"pi_3TKGNmPJeZhC0PUZ0wwIn1HP\",\"payment_link\":null,\"payment_method_collection\":\"if_required\",\"payment_method_configuration_details\":{\"id\":\"pmc_1TJqDwPJeZhC0PUZdjKWN1Nb\",\"parent\":null},\"payment_method_options\":{\"card\":{\"request_three_d_secure\":\"automatic\"}},\"payment_method_types\":[\"card\",\"link\"],\"payment_status\":\"paid\",\"permissions\":null,\"phone_number_collection\":{\"enabled\":false},\"presentment_details\":{\"presentment_amount\":953890,\"presentment_currency\":\"inr\"},\"recovered_from\":null,\"saved_payment_method_options\":null,\"setup_intent\":null,\"shipping_address_collection\":null,\"shipping_cost\":null,\"shipping_options\":[],\"status\":\"complete\",\"submit_type\":null,\"subscription\":null,\"success_url\":\"https:\\/\\/mxcar.atharvatek.com\\/payment\\/stripe\\/success?session_id={CHECKOUT_SESSION_ID}\",\"total_details\":{\"amount_discount\":0,\"amount_shipping\":0,\"amount_tax\":0},\"ui_mode\":\"hosted\",\"url\":null,\"wallet_options\":null}', '157.48.249.70', '2026-04-09 16:34:26', '2026-04-09 16:34:26'),
(3, 'stripe', '{\"line_items\":[{\"price_data\":{\"product_data\":{\"name\":\"Porsche Taycan Turbo S Cross Turismo 2024\",\"metadata\":{\"pro_id\":99},\"description\":\"Porsche Taycan Turbo S Cross Turismo 2024\",\"images\":[]},\"unit_amount\":9000,\"currency\":\"USD\"},\"quantity\":1}],\"mode\":\"payment\",\"locale\":\"en\",\"success_url\":\"http:\\/\\/127.0.0.1:8000\\/payment\\/stripe\\/success?session_id={CHECKOUT_SESSION_ID}\",\"cancel_url\":\"http:\\/\\/127.0.0.1:8000\\/payment\\/stripe\\/error\",\"metadata\":{\"order_id\":\"[99]\",\"amount\":979.97,\"currency\":\"USD\",\"customer_id\":36,\"customer_type\":\"Mxcar\\\\CarRentals\\\\Models\\\\Customer\",\"return_url\":null,\"callback_url\":null,\"payment_fee\":0}}', '{\"id\":\"cs_test_a1IDVb6ArLGNYqaFAn4pK7ps7fzGX20BHfXoR44lUSgJUBgcFJINw46QBL\",\"object\":\"checkout.session\",\"adaptive_pricing\":{\"enabled\":true},\"after_expiration\":null,\"allow_promotion_codes\":null,\"amount_subtotal\":9000,\"amount_total\":9000,\"automatic_tax\":{\"enabled\":false,\"liability\":null,\"provider\":null,\"status\":null},\"billing_address_collection\":null,\"branding_settings\":{\"background_color\":\"#ffffff\",\"border_style\":\"rounded\",\"button_color\":\"#0074d4\",\"display_name\":\"\",\"font_family\":\"default\",\"icon\":null,\"logo\":null},\"cancel_url\":\"http:\\/\\/127.0.0.1:8000\\/payment\\/stripe\\/error\",\"client_reference_id\":null,\"client_secret\":null,\"collected_information\":null,\"consent\":null,\"consent_collection\":null,\"created\":1781005198,\"currency\":\"usd\",\"currency_conversion\":null,\"custom_fields\":[],\"custom_text\":{\"after_submit\":null,\"shipping_address\":null,\"submit\":null,\"terms_of_service_acceptance\":null},\"customer\":null,\"customer_account\":null,\"customer_creation\":\"if_required\",\"customer_details\":null,\"customer_email\":null,\"discounts\":[],\"expires_at\":1781091598,\"integration_identifier\":null,\"invoice\":null,\"invoice_creation\":{\"enabled\":false,\"invoice_data\":{\"account_tax_ids\":null,\"custom_fields\":null,\"description\":null,\"footer\":null,\"issuer\":null,\"metadata\":[],\"rendering_options\":null}},\"livemode\":false,\"locale\":\"en\",\"managed_payments\":{\"enabled\":false},\"metadata\":{\"amount\":\"979.97\",\"currency\":\"USD\",\"customer_id\":\"36\",\"customer_type\":\"Mxcar\\\\CarRentals\\\\Models\\\\Customer\",\"order_id\":\"[99]\",\"payment_fee\":\"0\"},\"mode\":\"payment\",\"origin_context\":null,\"payment_intent\":null,\"payment_link\":null,\"payment_method_collection\":\"if_required\",\"payment_method_configuration_details\":{\"id\":\"pmc_1TJqDwPJeZhC0PUZdjKWN1Nb\",\"parent\":null},\"payment_method_options\":{\"affirm\":[],\"card\":{\"request_three_d_secure\":\"automatic\"}},\"payment_method_types\":[\"card\",\"klarna\",\"link\",\"affirm\",\"cashapp\",\"amazon_pay\"],\"payment_status\":\"unpaid\",\"permissions\":null,\"phone_number_collection\":{\"enabled\":false},\"recovered_from\":null,\"saved_payment_method_options\":null,\"setup_intent\":null,\"shipping_address_collection\":null,\"shipping_cost\":null,\"shipping_options\":[],\"status\":\"open\",\"submit_type\":null,\"subscription\":null,\"success_url\":\"http:\\/\\/127.0.0.1:8000\\/payment\\/stripe\\/success?session_id={CHECKOUT_SESSION_ID}\",\"total_details\":{\"amount_discount\":0,\"amount_shipping\":0,\"amount_tax\":0},\"ui_mode\":\"hosted\",\"url\":\"https:\\/\\/checkout.stripe.com\\/c\\/pay\\/cs_test_a1IDVb6ArLGNYqaFAn4pK7ps7fzGX20BHfXoR44lUSgJUBgcFJINw46QBL#fidnandhYHdWcXxpYCc%2FJ2FgY2RwaXEnKSdpamZkaWAnPydgaycpJ2JwZGZkaGppYFNkd2xka3EnPydmamtxd2ppJyknZHVsTmB8Jz8ndW5acWB2cVowNFFPdEFUVU9gX21GNVVQX1MzdzRMZzVqRjYyZ0RLbmJ2SnE1bUpiQGBvUzAyVHN1alBoX3dAPXRnM21JdVN8Mml1VE03f3RTa3xTSjBoYG9mU0I3VmM2RzU1X3d%2FSVRrd3YnKSdjd2poVmB3c2B3Jz9xd3BgKSdnZGZuYndqcGthRmppancnPycmY2NjY2NjJyknaWR8anBxUXx1YCc%2FJ3Zsa2JpYFpscWBoJyknYGtkZ2lgVWlkZmBtamlhYHd2Jz9xd3BgeCUl\",\"wallet_options\":null}', '127.0.0.1', '2026-06-09 11:40:03', '2026-06-09 11:40:03'),
(4, 'stripe', '{\"line_items\":[{\"price_data\":{\"product_data\":{\"name\":\"Porsche Taycan Turbo S Cross Turismo 2024\",\"metadata\":{\"pro_id\":100},\"description\":\"Porsche Taycan Turbo S Cross Turismo 2024\",\"images\":[]},\"unit_amount\":9000,\"currency\":\"USD\"},\"quantity\":1}],\"mode\":\"payment\",\"locale\":\"en\",\"success_url\":\"http:\\/\\/127.0.0.1:8000\\/payment\\/stripe\\/success?session_id={CHECKOUT_SESSION_ID}\",\"cancel_url\":\"http:\\/\\/127.0.0.1:8000\\/payment\\/stripe\\/error\",\"metadata\":{\"order_id\":\"[100]\",\"amount\":149.73,\"currency\":\"USD\",\"customer_id\":36,\"customer_type\":\"Mxcar\\\\CarRentals\\\\Models\\\\Customer\",\"return_url\":null,\"callback_url\":null,\"payment_fee\":0}}', '{\"id\":\"cs_test_a1WaRHIYbXnpRC4VmIwQakCizqZRnAjEMQ0DMzsXLnHFAOzqre6hglNOHY\",\"object\":\"checkout.session\",\"adaptive_pricing\":{\"enabled\":true},\"after_expiration\":null,\"allow_promotion_codes\":null,\"amount_subtotal\":9000,\"amount_total\":9000,\"automatic_tax\":{\"enabled\":false,\"liability\":null,\"provider\":null,\"status\":null},\"billing_address_collection\":null,\"branding_settings\":{\"background_color\":\"#ffffff\",\"border_style\":\"rounded\",\"button_color\":\"#0074d4\",\"display_name\":\"\",\"font_family\":\"default\",\"icon\":null,\"logo\":null},\"cancel_url\":\"http:\\/\\/127.0.0.1:8000\\/payment\\/stripe\\/error\",\"client_reference_id\":null,\"client_secret\":null,\"collected_information\":null,\"consent\":null,\"consent_collection\":null,\"created\":1781005674,\"currency\":\"usd\",\"currency_conversion\":null,\"custom_fields\":[],\"custom_text\":{\"after_submit\":null,\"shipping_address\":null,\"submit\":null,\"terms_of_service_acceptance\":null},\"customer\":null,\"customer_account\":null,\"customer_creation\":\"if_required\",\"customer_details\":null,\"customer_email\":null,\"discounts\":[],\"expires_at\":1781092074,\"integration_identifier\":null,\"invoice\":null,\"invoice_creation\":{\"enabled\":false,\"invoice_data\":{\"account_tax_ids\":null,\"custom_fields\":null,\"description\":null,\"footer\":null,\"issuer\":null,\"metadata\":[],\"rendering_options\":null}},\"livemode\":false,\"locale\":\"en\",\"managed_payments\":{\"enabled\":false},\"metadata\":{\"amount\":\"149.73\",\"currency\":\"USD\",\"customer_id\":\"36\",\"customer_type\":\"Mxcar\\\\CarRentals\\\\Models\\\\Customer\",\"order_id\":\"[100]\",\"payment_fee\":\"0\"},\"mode\":\"payment\",\"origin_context\":null,\"payment_intent\":null,\"payment_link\":null,\"payment_method_collection\":\"if_required\",\"payment_method_configuration_details\":{\"id\":\"pmc_1TJqDwPJeZhC0PUZdjKWN1Nb\",\"parent\":null},\"payment_method_options\":{\"affirm\":[],\"card\":{\"request_three_d_secure\":\"automatic\"}},\"payment_method_types\":[\"card\",\"klarna\",\"link\",\"affirm\",\"cashapp\",\"amazon_pay\"],\"payment_status\":\"unpaid\",\"permissions\":null,\"phone_number_collection\":{\"enabled\":false},\"recovered_from\":null,\"saved_payment_method_options\":null,\"setup_intent\":null,\"shipping_address_collection\":null,\"shipping_cost\":null,\"shipping_options\":[],\"status\":\"open\",\"submit_type\":null,\"subscription\":null,\"success_url\":\"http:\\/\\/127.0.0.1:8000\\/payment\\/stripe\\/success?session_id={CHECKOUT_SESSION_ID}\",\"total_details\":{\"amount_discount\":0,\"amount_shipping\":0,\"amount_tax\":0},\"ui_mode\":\"hosted\",\"url\":\"https:\\/\\/checkout.stripe.com\\/c\\/pay\\/cs_test_a1WaRHIYbXnpRC4VmIwQakCizqZRnAjEMQ0DMzsXLnHFAOzqre6hglNOHY#fidnandhYHdWcXxpYCc%2FJ2FgY2RwaXEnKSdpamZkaWAnPydgaycpJ2JwZGZkaGppYFNkd2xka3EnPydmamtxd2ppJyknZHVsTmB8Jz8ndW5acWB2cVowNFFPdEFUVU9gX21GNVVQX1MzdzRMZzVqRjYyZ0RLbmJ2SnE1bUpiQGBvUzAyVHN1alBoX3dAPXRnM21JdVN8Mml1VE03f3RTa3xTSjBoYG9mU0I3VmM2RzU1X3d%2FSVRrd3YnKSdjd2poVmB3c2B3Jz9xd3BgKSdnZGZuYndqcGthRmppancnPycmY2NjY2NjJyknaWR8anBxUXx1YCc%2FJ3Zsa2JpYFpscWBoJyknYGtkZ2lgVWlkZmBtamlhYHd2Jz9xd3BgeCUl\",\"wallet_options\":null}', '127.0.0.1', '2026-06-09 11:47:55', '2026-06-09 11:47:55'),
(5, 'stripe', '{\"id\":\"cs_test_a1WaRHIYbXnpRC4VmIwQakCizqZRnAjEMQ0DMzsXLnHFAOzqre6hglNOHY\"}', '{\"id\":\"cs_test_a1WaRHIYbXnpRC4VmIwQakCizqZRnAjEMQ0DMzsXLnHFAOzqre6hglNOHY\",\"object\":\"checkout.session\",\"adaptive_pricing\":{\"enabled\":true},\"after_expiration\":null,\"allow_promotion_codes\":null,\"amount_subtotal\":9000,\"amount_total\":9000,\"automatic_tax\":{\"enabled\":false,\"liability\":null,\"provider\":null,\"status\":null},\"billing_address_collection\":null,\"branding_settings\":{\"background_color\":\"#ffffff\",\"border_style\":\"rounded\",\"button_color\":\"#0074d4\",\"display_name\":\"\",\"font_family\":\"default\",\"icon\":null,\"logo\":null},\"cancel_url\":\"http:\\/\\/127.0.0.1:8000\\/payment\\/stripe\\/error\",\"client_reference_id\":null,\"client_secret\":null,\"collected_information\":null,\"consent\":null,\"consent_collection\":null,\"created\":1781005674,\"currency\":\"usd\",\"currency_conversion\":null,\"custom_fields\":[],\"custom_text\":{\"after_submit\":null,\"shipping_address\":null,\"submit\":null,\"terms_of_service_acceptance\":null},\"customer\":null,\"customer_account\":null,\"customer_creation\":\"if_required\",\"customer_details\":{\"address\":{\"city\":null,\"country\":\"IN\",\"line1\":null,\"line2\":null,\"postal_code\":null,\"state\":null},\"business_name\":null,\"email\":\"user@demo.com\",\"individual_name\":null,\"name\":\"User\",\"phone\":null,\"tax_exempt\":\"none\",\"tax_ids\":[]},\"customer_email\":null,\"discounts\":[],\"expires_at\":1781092074,\"integration_identifier\":null,\"invoice\":null,\"invoice_creation\":{\"enabled\":false,\"invoice_data\":{\"account_tax_ids\":null,\"custom_fields\":null,\"description\":null,\"footer\":null,\"issuer\":null,\"metadata\":[],\"rendering_options\":null}},\"livemode\":false,\"locale\":\"en\",\"managed_payments\":{\"enabled\":false},\"metadata\":{\"amount\":\"149.73\",\"currency\":\"USD\",\"customer_id\":\"36\",\"customer_type\":\"Mxcar\\\\CarRentals\\\\Models\\\\Customer\",\"order_id\":\"[100]\",\"payment_fee\":\"0\"},\"mode\":\"payment\",\"origin_context\":null,\"payment_intent\":\"pi_3TgO8wPJeZhC0PUZ00h8Ksmb\",\"payment_link\":null,\"payment_method_collection\":\"if_required\",\"payment_method_configuration_details\":{\"id\":\"pmc_1TJqDwPJeZhC0PUZdjKWN1Nb\",\"parent\":null},\"payment_method_options\":{\"card\":{\"request_three_d_secure\":\"automatic\"}},\"payment_method_types\":[\"card\",\"link\"],\"payment_status\":\"paid\",\"permissions\":null,\"phone_number_collection\":{\"enabled\":false},\"presentment_details\":{\"presentment_amount\":892389,\"presentment_currency\":\"inr\"},\"recovered_from\":null,\"saved_payment_method_options\":null,\"setup_intent\":null,\"shipping_address_collection\":null,\"shipping_cost\":null,\"shipping_options\":[],\"status\":\"complete\",\"submit_type\":null,\"subscription\":null,\"success_url\":\"http:\\/\\/127.0.0.1:8000\\/payment\\/stripe\\/success?session_id={CHECKOUT_SESSION_ID}\",\"total_details\":{\"amount_discount\":0,\"amount_shipping\":0,\"amount_tax\":0},\"ui_mode\":\"hosted\",\"url\":null,\"wallet_options\":null}', '127.0.0.1', '2026-06-09 11:48:34', '2026-06-09 11:48:34');

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

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

CREATE TABLE `personal_access_tokens` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `tokenable_type` varchar(191) NOT NULL,
  `tokenable_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `token` varchar(64) NOT NULL,
  `abilities` text DEFAULT NULL,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `posts`
--

CREATE TABLE `posts` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `author_id` bigint(20) UNSIGNED DEFAULT NULL,
  `author_type` varchar(191) NOT NULL,
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `image` varchar(191) DEFAULT NULL,
  `views` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `format_type` varchar(30) 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 `posts`
--

INSERT INTO `posts` (`id`, `name`, `description`, `content`, `status`, `author_id`, `author_type`, `is_featured`, `image`, `views`, `format_type`, `created_at`, `updated_at`) VALUES
(1, 'Top 5 New Cars to Look Out for in 2024', 'Discover the most anticipated car models coming in 2024, featuring cutting-edge technology and stunning designs.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Luxury vehicles offer more than just premium materials and powerful engines. They represent the pinnacle of automotive engineering, combining comfort, performance, and cutting-edge technology in one package. The automotive industry continues to evolve at a rapid pace, bringing new innovations and technologies that are reshaping how we think about transportation. From advanced safety features to improved fuel efficiency, modern vehicles offer more than ever before.\" content_2=\"When it comes to choosing the right vehicle, there are many factors to consider including budget, lifestyle needs, and long-term maintenance costs. Taking the time to research and compare options can save you money and ensure you find the perfect match. Off-road vehicles are designed to handle the toughest terrains, from rocky mountain trails to sandy desert dunes. With specialized suspension systems and four-wheel drive capabilities, these vehicles open up a world of adventure.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/images-14-520x380.jpeg', 909, NULL, '2026-03-06 08:22:18', '2026-04-30 16:49:26'),
(2, 'How to Choose the Best Car Rental Service for Your Trip', 'A comprehensive guide on selecting the right car rental service based on your travel needs and budget.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"The automotive industry continues to evolve at a rapid pace, bringing new innovations and technologies that are reshaping how we think about transportation. From advanced safety features to improved fuel efficiency, modern vehicles offer more than ever before. The car rental industry has transformed significantly in recent years, offering more flexibility and convenience than ever before. From traditional agencies to peer-to-peer platforms, there are options to suit every travel style and budget.\" content_2=\"Luxury vehicles offer more than just premium materials and powerful engines. They represent the pinnacle of automotive engineering, combining comfort, performance, and cutting-edge technology in one package. The automotive industry continues to evolve at a rapid pace, bringing new innovations and technologies that are reshaping how we think about transportation. From advanced safety features to improved fuel efficiency, modern vehicles offer more than ever before.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/images-15-520x380.jpeg', 289, NULL, '2026-03-06 08:22:18', '2026-04-30 17:17:34'),
(3, 'The Evolution of Electric Vehicles: A New Era', 'Explore how electric cars are transforming the auto industry and why they are the future of transportation.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"The automotive industry continues to evolve at a rapid pace, bringing new innovations and technologies that are reshaping how we think about transportation. From advanced safety features to improved fuel efficiency, modern vehicles offer more than ever before. Luxury vehicles offer more than just premium materials and powerful engines. They represent the pinnacle of automotive engineering, combining comfort, performance, and cutting-edge technology in one package.\" content_2=\"Regular maintenance is key to keeping your vehicle running smoothly for years to come. Simple tasks like oil changes, tire rotations, and brake inspections can prevent costly repairs and extend the life of your car. Luxury vehicles offer more than just premium materials and powerful engines. They represent the pinnacle of automotive engineering, combining comfort, performance, and cutting-edge technology in one package.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/the-evolution-of-electric-vehicles-1024x585-520x380.png', 1097, NULL, '2026-03-06 08:22:18', '2026-04-30 17:18:20'),
(4, 'Leasing vs. Buying a Car: Which Is Right for You?', 'An in-depth comparison of leasing and buying a car, helping you decide which option suits your lifestyle.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"The car rental industry has transformed significantly in recent years, offering more flexibility and convenience than ever before. From traditional agencies to peer-to-peer platforms, there are options to suit every travel style and budget. The automotive industry continues to evolve at a rapid pace, bringing new innovations and technologies that are reshaping how we think about transportation. From advanced safety features to improved fuel efficiency, modern vehicles offer more than ever before.\" content_2=\"Off-road vehicles are designed to handle the toughest terrains, from rocky mountain trails to sandy desert dunes. With specialized suspension systems and four-wheel drive capabilities, these vehicles open up a world of adventure. Understanding the true cost of car ownership goes beyond the sticker price. Insurance, fuel, maintenance, and depreciation all factor into the total expense of keeping a vehicle on the road.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/car-leasing-1000x687-520x380.jpg', 2483, NULL, '2026-03-06 08:22:18', '2026-04-30 17:18:51'),
(5, 'The Ultimate Road Trip Checklist', 'Everything you need to pack and check before embarking on an unforgettable road trip adventure.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"When it comes to choosing the right vehicle, there are many factors to consider including budget, lifestyle needs, and long-term maintenance costs. Taking the time to research and compare options can save you money and ensure you find the perfect match. The automotive industry continues to evolve at a rapid pace, bringing new innovations and technologies that are reshaping how we think about transportation. From advanced safety features to improved fuel efficiency, modern vehicles offer more than ever before.\" content_2=\"Off-road vehicles are designed to handle the toughest terrains, from rocky mountain trails to sandy desert dunes. With specialized suspension systems and four-wheel drive capabilities, these vehicles open up a world of adventure. Off-road vehicles are designed to handle the toughest terrains, from rocky mountain trails to sandy desert dunes. With specialized suspension systems and four-wheel drive capabilities, these vehicles open up a world of adventure.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/19-1920x1080-520x380.jpg', 1195, NULL, '2026-03-06 08:22:18', '2026-04-30 17:19:22'),
(6, 'The Benefits of Renting a Luxury Car for Special Occasions', 'Find out why renting a luxury vehicle can make your events even more memorable and stylish.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"The car rental industry has transformed significantly in recent years, offering more flexibility and convenience than ever before. From traditional agencies to peer-to-peer platforms, there are options to suit every travel style and budget. Luxury vehicles offer more than just premium materials and powerful engines. They represent the pinnacle of automotive engineering, combining comfort, performance, and cutting-edge technology in one package.\" content_2=\"Regular maintenance is key to keeping your vehicle running smoothly for years to come. Simple tasks like oil changes, tire rotations, and brake inspections can prevent costly repairs and extend the life of your car. Off-road vehicles are designed to handle the toughest terrains, from rocky mountain trails to sandy desert dunes. With specialized suspension systems and four-wheel drive capabilities, these vehicles open up a world of adventure.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/istockphoto-1438308925-612x612-1-520x380.jpg', 1352, NULL, '2026-03-06 08:22:18', '2026-04-30 17:19:55'),
(7, 'Tips for Maintaining Your Car to Extend Its Lifespan', 'Essential tips on how to keep your car in top condition, ensuring it lasts longer and performs better.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"When it comes to choosing the right vehicle, there are many factors to consider including budget, lifestyle needs, and long-term maintenance costs. Taking the time to research and compare options can save you money and ensure you find the perfect match. Off-road vehicles are designed to handle the toughest terrains, from rocky mountain trails to sandy desert dunes. With specialized suspension systems and four-wheel drive capabilities, these vehicles open up a world of adventure.\" content_2=\"The car rental industry has transformed significantly in recent years, offering more flexibility and convenience than ever before. From traditional agencies to peer-to-peer platforms, there are options to suit every travel style and budget. Regular maintenance is key to keeping your vehicle running smoothly for years to come. Simple tasks like oil changes, tire rotations, and brake inspections can prevent costly repairs and extend the life of your car.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/brand-new-electric-vehicle-production-600nw-2287564725-520x380.webp', 2022, NULL, '2026-03-06 08:22:18', '2026-04-30 17:20:36'),
(8, 'Top Safety Features to Look for in a Family Car', 'A guide to the latest safety innovations in family vehicles and how they protect your loved ones on the road.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"The car rental industry has transformed significantly in recent years, offering more flexibility and convenience than ever before. From traditional agencies to peer-to-peer platforms, there are options to suit every travel style and budget. The car rental industry has transformed significantly in recent years, offering more flexibility and convenience than ever before. From traditional agencies to peer-to-peer platforms, there are options to suit every travel style and budget.\" content_2=\"Understanding the true cost of car ownership goes beyond the sticker price. Insurance, fuel, maintenance, and depreciation all factor into the total expense of keeping a vehicle on the road. Road trips offer a unique opportunity to explore new destinations at your own pace. With proper planning and the right vehicle, you can create unforgettable memories while discovering hidden gems along the way.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/images-18-520x380.jpeg', 361, NULL, '2026-03-06 08:22:18', '2026-04-30 17:21:40'),
(9, 'How Self-Driving Cars Are Changing the Future of Transportation', 'An overview of autonomous vehicles and the potential they have to reshape the way we travel.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Understanding the true cost of car ownership goes beyond the sticker price. Insurance, fuel, maintenance, and depreciation all factor into the total expense of keeping a vehicle on the road. Regular maintenance is key to keeping your vehicle running smoothly for years to come. Simple tasks like oil changes, tire rotations, and brake inspections can prevent costly repairs and extend the life of your car.\" content_2=\"Understanding the true cost of car ownership goes beyond the sticker price. Insurance, fuel, maintenance, and depreciation all factor into the total expense of keeping a vehicle on the road. The automotive industry continues to evolve at a rapid pace, bringing new innovations and technologies that are reshaping how we think about transportation. From advanced safety features to improved fuel efficiency, modern vehicles offer more than ever before.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/blog-smart-car-and-autonomous-selfdriving-mode-vehicle-on-metro-city-road-picture-id877349122-hero-a.jpg', 798, NULL, '2026-03-06 08:22:18', '2026-04-30 17:22:06'),
(10, 'The Best Cars for Off-Road Adventures', 'Discover the top vehicles that offer exceptional performance on rough terrains for your next outdoor adventure.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Understanding the true cost of car ownership goes beyond the sticker price. Insurance, fuel, maintenance, and depreciation all factor into the total expense of keeping a vehicle on the road. The rise of electric and hybrid vehicles represents a significant shift in the automotive landscape. With improved battery technology and expanding charging infrastructure, these eco-friendly options are becoming more practical for everyday use.\" content_2=\"The car rental industry has transformed significantly in recent years, offering more flexibility and convenience than ever before. From traditional agencies to peer-to-peer platforms, there are options to suit every travel style and budget. Luxury vehicles offer more than just premium materials and powerful engines. They represent the pinnacle of automotive engineering, combining comfort, performance, and cutting-edge technology in one package.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/mahindra-thar-1024x576-520x380.webp', 1947, NULL, '2026-03-06 08:22:18', '2026-04-30 17:22:39'),
(11, 'The Rise of Car Subscription Services', 'Learn about the growing trend of car subscription services and why more drivers are opting for this flexible alternative to car ownership.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Understanding the true cost of car ownership goes beyond the sticker price. Insurance, fuel, maintenance, and depreciation all factor into the total expense of keeping a vehicle on the road. The car rental industry has transformed significantly in recent years, offering more flexibility and convenience than ever before. From traditional agencies to peer-to-peer platforms, there are options to suit every travel style and budget.\" content_2=\"The rise of electric and hybrid vehicles represents a significant shift in the automotive landscape. With improved battery technology and expanding charging infrastructure, these eco-friendly options are becoming more practical for everyday use. Regular maintenance is key to keeping your vehicle running smoothly for years to come. Simple tasks like oil changes, tire rotations, and brake inspections can prevent costly repairs and extend the life of your car.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/images-13.jpeg', 2045, NULL, '2026-03-06 08:22:18', '2026-04-30 17:23:02'),
(12, 'Eco-Friendly Driving Tips to Reduce Your Carbon Footprint', 'Simple strategies for eco-conscious drivers to minimize their environmental impact on the road.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Safety should always be a top priority when selecting a vehicle. Modern cars come equipped with advanced features like automatic emergency braking, lane departure warning, and adaptive cruise control to help protect you and your passengers. The car rental industry has transformed significantly in recent years, offering more flexibility and convenience than ever before. From traditional agencies to peer-to-peer platforms, there are options to suit every travel style and budget.\" content_2=\"The car rental industry has transformed significantly in recent years, offering more flexibility and convenience than ever before. From traditional agencies to peer-to-peer platforms, there are options to suit every travel style and budget. Luxury vehicles offer more than just premium materials and powerful engines. They represent the pinnacle of automotive engineering, combining comfort, performance, and cutting-edge technology in one package.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/images-12-150x150.jpeg', 918, NULL, '2026-03-06 08:22:18', '2026-04-30 17:23:42'),
(13, 'The Future of Car Sharing: Convenience at Your Fingertips', 'Explore how car sharing platforms are making it easier for people to access vehicles without the commitment of ownership.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Off-road vehicles are designed to handle the toughest terrains, from rocky mountain trails to sandy desert dunes. With specialized suspension systems and four-wheel drive capabilities, these vehicles open up a world of adventure. When it comes to choosing the right vehicle, there are many factors to consider including budget, lifestyle needs, and long-term maintenance costs. Taking the time to research and compare options can save you money and ensure you find the perfect match.\" content_2=\"The rise of electric and hybrid vehicles represents a significant shift in the automotive landscape. With improved battery technology and expanding charging infrastructure, these eco-friendly options are becoming more practical for everyday use. The automotive industry continues to evolve at a rapid pace, bringing new innovations and technologies that are reshaping how we think about transportation. From advanced safety features to improved fuel efficiency, modern vehicles offer more than ever before.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/113984896-150x150.jpg', 230, NULL, '2026-03-06 08:22:18', '2026-04-30 17:24:28');
INSERT INTO `posts` (`id`, `name`, `description`, `content`, `status`, `author_id`, `author_type`, `is_featured`, `image`, `views`, `format_type`, `created_at`, `updated_at`) VALUES
(14, 'How to Get the Best Deals on Car Rentals During Holidays', 'Insider tips on how to save money and secure great deals when renting cars for your holiday travels.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Off-road vehicles are designed to handle the toughest terrains, from rocky mountain trails to sandy desert dunes. With specialized suspension systems and four-wheel drive capabilities, these vehicles open up a world of adventure. Safety should always be a top priority when selecting a vehicle. Modern cars come equipped with advanced features like automatic emergency braking, lane departure warning, and adaptive cruise control to help protect you and your passengers.\" content_2=\"Road trips offer a unique opportunity to explore new destinations at your own pace. With proper planning and the right vehicle, you can create unforgettable memories while discovering hidden gems along the way. When it comes to choosing the right vehicle, there are many factors to consider including budget, lifestyle needs, and long-term maintenance costs. Taking the time to research and compare options can save you money and ensure you find the perfect match.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/images-11-520x380.jpeg', 1428, NULL, '2026-03-06 08:22:18', '2026-04-30 17:24:56'),
(15, 'The Pros and Cons of Hybrid Vehicles', 'An analysis of the advantages and disadvantages of hybrid cars, helping you decide if they are the right choice for you.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Understanding the true cost of car ownership goes beyond the sticker price. Insurance, fuel, maintenance, and depreciation all factor into the total expense of keeping a vehicle on the road. Understanding the true cost of car ownership goes beyond the sticker price. Insurance, fuel, maintenance, and depreciation all factor into the total expense of keeping a vehicle on the road.\" content_2=\"The automotive industry continues to evolve at a rapid pace, bringing new innovations and technologies that are reshaping how we think about transportation. From advanced safety features to improved fuel efficiency, modern vehicles offer more than ever before. When it comes to choosing the right vehicle, there are many factors to consider including budget, lifestyle needs, and long-term maintenance costs. Taking the time to research and compare options can save you money and ensure you find the perfect match.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/electric-hybrid-102-6606e5cea9494-1-150x150.jpeg', 1420, NULL, '2026-03-06 08:22:18', '2026-04-30 17:25:41'),
(16, 'How to Properly Clean and Detail Your Car', 'Step-by-step instructions on cleaning your car inside and out to keep it looking brand new.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Regular maintenance is key to keeping your vehicle running smoothly for years to come. Simple tasks like oil changes, tire rotations, and brake inspections can prevent costly repairs and extend the life of your car. Understanding the true cost of car ownership goes beyond the sticker price. Insurance, fuel, maintenance, and depreciation all factor into the total expense of keeping a vehicle on the road.\" content_2=\"Off-road vehicles are designed to handle the toughest terrains, from rocky mountain trails to sandy desert dunes. With specialized suspension systems and four-wheel drive capabilities, these vehicles open up a world of adventure. Off-road vehicles are designed to handle the toughest terrains, from rocky mountain trails to sandy desert dunes. With specialized suspension systems and four-wheel drive capabilities, these vehicles open up a world of adventure.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/images-7-520x380.jpeg', 2174, NULL, '2026-03-06 08:22:18', '2026-04-30 17:26:09'),
(17, 'Car Innovations: What to Expect in the Next 5 Years', 'A look at the technological advancements expected to revolutionize cars in the near future.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Regular maintenance is key to keeping your vehicle running smoothly for years to come. Simple tasks like oil changes, tire rotations, and brake inspections can prevent costly repairs and extend the life of your car. When it comes to choosing the right vehicle, there are many factors to consider including budget, lifestyle needs, and long-term maintenance costs. Taking the time to research and compare options can save you money and ensure you find the perfect match.\" content_2=\"Luxury vehicles offer more than just premium materials and powerful engines. They represent the pinnacle of automotive engineering, combining comfort, performance, and cutting-edge technology in one package. When it comes to choosing the right vehicle, there are many factors to consider including budget, lifestyle needs, and long-term maintenance costs. Taking the time to research and compare options can save you money and ensure you find the perfect match.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/25-years-car-side-onpng-520x380.webp', 647, NULL, '2026-03-06 08:22:18', '2026-04-30 17:26:39'),
(18, 'The Ultimate Guide to Buying a Used Car', 'Everything you need to know about purchasing a used vehicle, from inspecting it to negotiating the best price.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Understanding the true cost of car ownership goes beyond the sticker price. Insurance, fuel, maintenance, and depreciation all factor into the total expense of keeping a vehicle on the road. Off-road vehicles are designed to handle the toughest terrains, from rocky mountain trails to sandy desert dunes. With specialized suspension systems and four-wheel drive capabilities, these vehicles open up a world of adventure.\" content_2=\"Road trips offer a unique opportunity to explore new destinations at your own pace. With proper planning and the right vehicle, you can create unforgettable memories while discovering hidden gems along the way. Safety should always be a top priority when selecting a vehicle. Modern cars come equipped with advanced features like automatic emergency braking, lane departure warning, and adaptive cruise control to help protect you and your passengers.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/61ve5cdifgl-ac-uf10001000-ql80-520x380.jpg', 1786, NULL, '2026-03-06 08:22:18', '2026-04-30 17:27:06'),
(19, 'How to Plan a Cross-Country Trip with a Rented Car', 'Tips on organizing a successful cross-country road trip, including how to choose the right rental car.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"Understanding the true cost of car ownership goes beyond the sticker price. Insurance, fuel, maintenance, and depreciation all factor into the total expense of keeping a vehicle on the road. Road trips offer a unique opportunity to explore new destinations at your own pace. With proper planning and the right vehicle, you can create unforgettable memories while discovering hidden gems along the way.\" content_2=\"Safety should always be a top priority when selecting a vehicle. Modern cars come equipped with advanced features like automatic emergency braking, lane departure warning, and adaptive cruise control to help protect you and your passengers. The automotive industry continues to evolve at a rapid pace, bringing new innovations and technologies that are reshaping how we think about transportation. From advanced safety features to improved fuel efficiency, modern vehicles offer more than ever before.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/4a17324c0cdc150503c394ba27d9c772.jpg', 234, NULL, '2026-03-06 08:22:18', '2026-04-30 17:27:35'),
(20, 'What You Need to Know About Car Insurance Before Renting', 'An essential guide to understanding car rental insurance and how to choose the right coverage for your trip.', '<h6>Determine Your Trip Purpose</h6><p class=\"neutral-1000\">The first step in choosing the right rental car is to clearly define the purpose of your trip. Are you traveling alone or with family? Is it a business trip or a leisure vacation? The purpose of your trip will greatly influence the type of car you need. For instance, a compact car might be ideal for a solo business trip in a busy city, while a spacious SUV or minivan would be better suited for a family road trip.</p><h6>Consider the Number of Passengers and Luggage</h6><p>The number of passengers and the amount of luggage you need to carry are crucial factors in choosing a rental car. If you\'re traveling with a large group or have plenty of baggage, a larger vehicle like an SUV or minivan will provide the space and comfort you need. On the other hand, if you\'re traveling light or with just one other person, a compact or mid-size car may be more economical and easier to maneuver.</p><h6>Think About the Terrain and Weather Conditions</h6><p>Where you’re going plays a significant role in your choice of rental car. If you\'re planning to drive in a mountainous region or during winter, a vehicle with all-wheel drive (AWD) or four-wheel drive (4WD) might be necessary for safety. For urban areas with smooth roads, a standard sedan or compact car should suffice. Additionally, consider the climate; air conditioning is essential in hot climates, while heated seats can be a nice touch in colder regions.</p><h6>Assess Your Budget</h6><p>Your budget is another crucial factor when choosing a rental car. Rental rates vary depending on the vehicle type, rental duration, and additional services or features. Set a budget before you start comparing options and stick to it. Remember to factor in additional costs like insurance, fuel, and any extras such as GPS, child seats, or toll passes.</p><h6>Check for Special Requirements or Preferences</h6><shortcode>[content-columns quantity=\"2\" content_1=\"The automotive industry continues to evolve at a rapid pace, bringing new innovations and technologies that are reshaping how we think about transportation. From advanced safety features to improved fuel efficiency, modern vehicles offer more than ever before. When it comes to choosing the right vehicle, there are many factors to consider including budget, lifestyle needs, and long-term maintenance costs. Taking the time to research and compare options can save you money and ensure you find the perfect match.\" content_2=\"Regular maintenance is key to keeping your vehicle running smoothly for years to come. Simple tasks like oil changes, tire rotations, and brake inspections can prevent costly repairs and extend the life of your car. Road trips offer a unique opportunity to explore new destinations at your own pace. With proper planning and the right vehicle, you can create unforgettable memories while discovering hidden gems along the way.\"][/content-columns]</shortcode><h6>Conclusion</h6><p>Choosing the right rental car involves more than just picking a vehicle that looks good. By considering the purpose of your trip, the number of passengers, the terrain, fuel efficiency, and your budget, you can select a car that will make your journey smooth, comfortable, and enjoyable. Take your time to compare options and book in advance to ensure you get the best vehicle for your needs. Whether you\'re hitting the open road or navigating city streets, the right rental car can make all the difference in your travel experience.</p>', 'published', 1, 'Mxcar\\ACL\\Models\\User', 1, 'blogs/images-4-1920x1080.jpeg', 1807, NULL, '2026-03-06 08:22:18', '2026-04-30 17:28:16');

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

--
-- Table structure for table `posts_translations`
--

CREATE TABLE `posts_translations` (
  `lang_code` varchar(20) NOT NULL,
  `posts_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `content` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `post_categories`
--

CREATE TABLE `post_categories` (
  `category_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `post_categories`
--

INSERT INTO `post_categories` (`category_id`, `post_id`) VALUES
(5, 1),
(8, 1),
(8, 2),
(2, 2),
(4, 3),
(6, 3),
(5, 4),
(6, 4),
(8, 5),
(4, 5),
(10, 6),
(5, 6),
(1, 7),
(5, 7),
(5, 8),
(6, 8),
(5, 9),
(7, 10),
(1, 10),
(6, 11),
(8, 11),
(8, 12),
(4, 12),
(8, 13),
(4, 13),
(4, 14),
(9, 14),
(3, 15),
(7, 15),
(5, 16),
(6, 16),
(10, 17),
(7, 17),
(5, 18),
(1, 19),
(10, 20);

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

--
-- Table structure for table `post_tags`
--

CREATE TABLE `post_tags` (
  `tag_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `post_tags`
--

INSERT INTO `post_tags` (`tag_id`, `post_id`) VALUES
(4, 1),
(3, 2),
(9, 2),
(7, 2),
(8, 3),
(3, 3),
(4, 3),
(9, 4),
(5, 4),
(7, 5),
(4, 5),
(9, 5),
(6, 6),
(4, 6),
(7, 6),
(1, 7),
(4, 7),
(9, 8),
(8, 8),
(3, 9),
(5, 9),
(4, 9),
(2, 10),
(4, 10),
(1, 10),
(2, 11),
(4, 11),
(6, 11),
(3, 12),
(5, 12),
(2, 13),
(4, 13),
(9, 13),
(2, 14),
(7, 14),
(6, 15),
(1, 15),
(10, 16),
(5, 16),
(4, 16),
(3, 17),
(1, 17),
(8, 18),
(7, 18),
(2, 18),
(6, 19),
(3, 19),
(4, 19),
(8, 20),
(7, 20),
(1, 20);

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

--
-- Table structure for table `push_notifications`
--

CREATE TABLE `push_notifications` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'general',
  `target_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `target_value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sent',
  `sent_count` int(11) NOT NULL DEFAULT 0,
  `failed_count` int(11) NOT NULL DEFAULT 0,
  `delivered_count` int(11) NOT NULL DEFAULT 0,
  `read_count` int(11) NOT NULL DEFAULT 0,
  `scheduled_at` timestamp NULL DEFAULT NULL,
  `sent_at` timestamp NULL DEFAULT NULL,
  `created_by` bigint(20) UNSIGNED DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

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

--
-- Table structure for table `push_notification_recipients`
--

CREATE TABLE `push_notification_recipients` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `push_notification_id` bigint(20) UNSIGNED NOT NULL,
  `user_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `device_token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `platform` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sent',
  `sent_at` timestamp NULL DEFAULT NULL,
  `delivered_at` timestamp NULL DEFAULT NULL,
  `read_at` timestamp NULL DEFAULT NULL,
  `clicked_at` timestamp NULL DEFAULT NULL,
  `fcm_response` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `error_message` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

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

--
-- Table structure for table `revisions`
--

CREATE TABLE `revisions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `revisionable_type` varchar(191) NOT NULL,
  `revisionable_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `key` varchar(120) NOT NULL,
  `old_value` text DEFAULT NULL,
  `new_value` 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 `revisions`
--

INSERT INTO `revisions` (`id`, `revisionable_type`, `revisionable_id`, `user_id`, `key`, `old_value`, `new_value`, `created_at`, `updated_at`) VALUES
(1, 'Mxcar\\Blog\\Models\\Post', 1, 1, 'image', 'news/1.jpg', 'blogs/images-14-520x380.jpeg', '2026-03-19 06:36:18', '2026-03-19 06:36:18'),
(2, 'Mxcar\\Blog\\Models\\Post', 2, 1, 'image', 'news/2.jpg', 'blogs/images-15-520x380.jpeg', '2026-03-19 06:37:09', '2026-03-19 06:37:09'),
(3, 'Mxcar\\Blog\\Models\\Post', 3, 1, 'image', 'news/3.jpg', 'blogs/the-evolution-of-electric-vehicles-1024x585-520x380.png', '2026-03-19 06:37:42', '2026-03-19 06:37:42'),
(4, 'Mxcar\\Blog\\Models\\Post', 4, 1, 'image', 'news/4.jpg', 'blogs/car-leasing-1000x687-520x380.jpg', '2026-03-19 06:38:20', '2026-03-19 06:38:20'),
(5, 'Mxcar\\Blog\\Models\\Post', 5, 1, 'image', 'news/5.jpg', 'blogs/19-1920x1080-520x380.jpg', '2026-03-19 06:39:13', '2026-03-19 06:39:13'),
(6, 'Mxcar\\Blog\\Models\\Post', 6, 1, 'image', 'news/6.jpg', 'blogs/istockphoto-1438308925-612x612-1-520x380.jpg', '2026-03-19 06:39:50', '2026-03-19 06:39:50'),
(7, 'Mxcar\\Blog\\Models\\Post', 7, 1, 'image', 'news/7.jpg', 'blogs/brand-new-electric-vehicle-production-600nw-2287564725-520x380.webp', '2026-03-19 06:40:17', '2026-03-19 06:40:17'),
(8, 'Mxcar\\Blog\\Models\\Post', 8, 1, 'image', 'news/8.jpg', 'blogs/images-18-520x380.jpeg', '2026-03-19 06:41:07', '2026-03-19 06:41:07'),
(9, 'Mxcar\\Blog\\Models\\Post', 9, 1, 'image', 'news/9.jpg', 'blogs/blog-smart-car-and-autonomous-selfdriving-mode-vehicle-on-metro-city-road-picture-id877349122-hero-a.jpg', '2026-03-19 06:41:34', '2026-03-19 06:41:34'),
(10, 'Mxcar\\Blog\\Models\\Post', 10, 1, 'image', 'news/10.jpg', 'blogs/mahindra-thar-1024x576-520x380.webp', '2026-03-19 06:42:06', '2026-03-19 06:42:06'),
(11, 'Mxcar\\Blog\\Models\\Post', 11, 1, 'image', 'news/11.jpg', 'blogs/images-13.jpeg', '2026-03-19 06:42:42', '2026-03-19 06:42:42'),
(12, 'Mxcar\\Blog\\Models\\Post', 12, 1, 'image', 'news/12.jpg', 'blogs/images-12-150x150.jpeg', '2026-03-19 06:43:20', '2026-03-19 06:43:20'),
(13, 'Mxcar\\Blog\\Models\\Post', 13, 1, 'image', 'news/13.jpg', 'blogs/113984896-150x150.jpg', '2026-03-19 06:43:41', '2026-03-19 06:43:41'),
(14, 'Mxcar\\Blog\\Models\\Post', 14, 1, 'image', 'news/14.jpg', 'blogs/images-11-520x380.jpeg', '2026-03-19 06:44:23', '2026-03-19 06:44:23'),
(15, 'Mxcar\\Blog\\Models\\Post', 15, 1, 'image', 'news/15.jpg', 'blogs/electric-hybrid-102-6606e5cea9494-1-150x150.jpeg', '2026-03-19 06:44:53', '2026-03-19 06:44:53'),
(16, 'Mxcar\\Blog\\Models\\Post', 16, 1, 'image', 'news/16.jpg', 'blogs/images-7-520x380.jpeg', '2026-03-19 06:45:28', '2026-03-19 06:45:28'),
(17, 'Mxcar\\Blog\\Models\\Post', 17, 1, 'image', 'news/17.jpg', 'blogs/25-years-car-side-onpng-520x380.webp', '2026-03-19 06:45:55', '2026-03-19 06:45:55'),
(18, 'Mxcar\\Blog\\Models\\Post', 18, 1, 'image', 'news/18.jpg', 'blogs/61ve5cdifgl-ac-uf10001000-ql80-520x380.jpg', '2026-03-19 06:46:24', '2026-03-19 06:46:24'),
(19, 'Mxcar\\Blog\\Models\\Post', 19, 1, 'image', 'news/19.jpg', 'blogs/4a17324c0cdc150503c394ba27d9c772.jpg', '2026-03-19 06:46:57', '2026-03-19 06:46:57'),
(20, 'Mxcar\\Blog\\Models\\Post', 20, 1, 'image', 'news/20.jpg', 'blogs/images-4-1920x1080.jpeg', '2026-03-19 06:47:49', '2026-03-19 06:47:49'),
(21, 'Mxcar\\Page\\Models\\Page', 5, 1, 'description', NULL, '', '2026-03-19 11:22:29', '2026-03-19 11:22:29'),
(22, 'Mxcar\\Page\\Models\\Page', 6, 1, 'description', NULL, '', '2026-03-19 11:27:49', '2026-03-19 11:27:49'),
(23, 'Mxcar\\Page\\Models\\Page', 4, 1, 'description', NULL, '', '2026-03-20 04:21:17', '2026-03-20 04:21:17'),
(24, 'Mxcar\\Page\\Models\\Page', 3, 1, 'template', NULL, 'default', '2026-03-20 05:18:03', '2026-03-20 05:18:03'),
(25, 'Mxcar\\Page\\Models\\Page', 3, 1, 'description', NULL, '', '2026-03-20 05:18:03', '2026-03-20 05:18:03'),
(26, 'Mxcar\\Page\\Models\\Page', 15, 1, 'description', NULL, '', '2026-03-25 09:46:06', '2026-03-25 09:46:06'),
(27, 'Mxcar\\Page\\Models\\Page', 16, 1, 'description', NULL, '', '2026-03-25 10:38:04', '2026-03-25 10:38:04'),
(28, 'Mxcar\\Page\\Models\\Page', 17, 1, 'description', NULL, '', '2026-03-25 10:41:45', '2026-03-25 10:41:45'),
(29, 'Mxcar\\Page\\Models\\Page', 18, 1, 'description', NULL, '', '2026-03-25 10:45:31', '2026-03-25 10:45:31'),
(30, 'Mxcar\\Page\\Models\\Page', 19, 1, 'description', NULL, '', '2026-03-25 10:48:07', '2026-03-25 10:48:07'),
(31, 'Mxcar\\Page\\Models\\Page', 27, 1, 'description', NULL, '', '2026-03-25 10:51:38', '2026-03-25 10:51:38'),
(32, 'Mxcar\\Page\\Models\\Page', 28, 1, 'description', NULL, '', '2026-03-25 10:54:11', '2026-03-25 10:54:11'),
(33, 'Mxcar\\Page\\Models\\Page', 29, 1, 'description', NULL, '', '2026-03-25 10:57:50', '2026-03-25 10:57:50'),
(34, 'Mxcar\\Page\\Models\\Page', 30, 1, 'description', NULL, '', '2026-03-25 10:59:59', '2026-03-25 10:59:59'),
(35, 'Mxcar\\Page\\Models\\Page', 31, 1, 'description', NULL, '', '2026-03-25 11:28:59', '2026-03-25 11:28:59'),
(36, 'Mxcar\\Page\\Models\\Page', 36, 1, 'description', NULL, '', '2026-03-25 11:29:07', '2026-03-25 11:29:07'),
(37, 'Mxcar\\Page\\Models\\Page', 37, 1, 'description', NULL, '', '2026-03-25 11:30:30', '2026-03-25 11:30:30'),
(38, 'Mxcar\\Page\\Models\\Page', 38, 1, 'description', NULL, '', '2026-03-25 11:30:53', '2026-03-25 11:30:53'),
(39, 'Mxcar\\Page\\Models\\Page', 39, 1, 'description', NULL, '', '2026-03-25 11:31:16', '2026-03-25 11:31:16'),
(40, 'Mxcar\\Page\\Models\\Page', 32, 1, 'description', NULL, '', '2026-03-25 11:31:44', '2026-03-25 11:31:44'),
(41, 'Mxcar\\Page\\Models\\Page', 33, 1, 'description', NULL, '', '2026-03-25 11:32:45', '2026-03-25 11:32:45'),
(42, 'Mxcar\\Page\\Models\\Page', 34, 1, 'description', NULL, '', '2026-03-25 11:34:08', '2026-03-25 11:34:08'),
(43, 'Mxcar\\Page\\Models\\Page', 35, 1, 'description', NULL, '', '2026-03-25 11:34:55', '2026-03-25 11:34:55'),
(44, 'Mxcar\\Page\\Models\\Page', 2, 1, 'description', NULL, '', '2026-04-21 11:56:10', '2026-04-21 11:56:10'),
(45, 'Mxcar\\Page\\Models\\Page', 12, 1, 'name', 'Faqs', 'FAQs', '2026-04-22 12:55:56', '2026-04-22 12:55:56'),
(46, 'Mxcar\\Page\\Models\\Page', 12, 1, 'description', NULL, '', '2026-04-22 12:55:56', '2026-04-22 12:55:56'),
(47, 'Mxcar\\Page\\Models\\Page', 11, 1, 'description', NULL, '', '2026-04-22 15:17:46', '2026-04-22 15:17:46'),
(48, 'Mxcar\\Page\\Models\\Page', 1, 1, 'description', NULL, '', '2026-04-28 07:09:54', '2026-04-28 07:09:54'),
(49, 'Mxcar\\Page\\Models\\Page', 7, 1, 'name', 'Car List 1', 'Car Rentals', '2026-04-30 09:00:51', '2026-04-30 09:00:51'),
(50, 'Mxcar\\Page\\Models\\Page', 7, 1, 'description', NULL, '', '2026-04-30 09:00:51', '2026-04-30 09:00:51'),
(51, 'Mxcar\\Page\\Models\\Page', 14, 1, 'description', NULL, '', '2026-04-30 09:05:22', '2026-04-30 09:05:22'),
(52, 'Mxcar\\Page\\Models\\Page', 26, 1, 'description', NULL, '', '2026-04-30 09:13:25', '2026-04-30 09:13:25'),
(53, 'Mxcar\\Page\\Models\\Page', 13, 1, 'template', NULL, 'default', '2026-04-30 09:15:09', '2026-04-30 09:15:09'),
(54, 'Mxcar\\Page\\Models\\Page', 13, 1, 'description', NULL, '', '2026-04-30 09:15:09', '2026-04-30 09:15:09'),
(55, 'Mxcar\\Page\\Models\\Page', 21, 1, 'description', NULL, '', '2026-04-30 09:17:56', '2026-04-30 09:17:56'),
(56, 'Mxcar\\Page\\Models\\Page', 25, 1, 'description', NULL, '', '2026-04-30 09:18:27', '2026-04-30 09:18:27'),
(57, 'Mxcar\\Page\\Models\\Page', 23, 1, 'description', NULL, '', '2026-04-30 09:20:07', '2026-04-30 09:20:07'),
(58, 'Mxcar\\Page\\Models\\Page', 22, 1, 'description', NULL, '', '2026-04-30 09:20:35', '2026-04-30 09:20:35'),
(59, 'Mxcar\\Page\\Models\\Page', 2, 1, 'template', 'blog-with-sidebar', 'blog-without-sidebar', '2026-04-30 15:53:56', '2026-04-30 15:53:56');

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

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

CREATE TABLE `roles` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `slug` varchar(120) NOT NULL,
  `name` varchar(120) NOT NULL,
  `permissions` text DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  `is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `created_by` bigint(20) UNSIGNED NOT NULL,
  `updated_by` bigint(20) 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 `roles`
--

INSERT INTO `roles` (`id`, `slug`, `name`, `permissions`, `description`, `is_default`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, 'admin', 'Admin', '{\"users.index\":true,\"users.create\":true,\"users.edit\":true,\"users.destroy\":true,\"roles.index\":true,\"roles.create\":true,\"roles.edit\":true,\"roles.destroy\":true,\"core.system\":true,\"core.cms\":true,\"core.manage.license\":true,\"systems.cronjob\":true,\"core.tools\":true,\"tools.data-synchronize\":true,\"media.index\":true,\"files.index\":true,\"files.create\":true,\"files.edit\":true,\"files.trash\":true,\"files.destroy\":true,\"folders.index\":true,\"folders.create\":true,\"folders.edit\":true,\"folders.trash\":true,\"folders.destroy\":true,\"settings.index\":true,\"settings.common\":true,\"settings.options\":true,\"settings.email\":true,\"settings.media\":true,\"settings.admin-appearance\":true,\"settings.cache\":true,\"settings.datatables\":true,\"settings.email.rules\":true,\"settings.phone-number\":true,\"settings.others\":true,\"menus.index\":true,\"menus.create\":true,\"menus.edit\":true,\"menus.destroy\":true,\"optimize.settings\":true,\"pages.index\":true,\"pages.create\":true,\"pages.edit\":true,\"pages.destroy\":true,\"pages.export\":true,\"pages.import\":true,\"plugins.index\":true,\"plugins.edit\":true,\"plugins.remove\":true,\"plugins.marketplace\":true,\"sitemap.settings\":true,\"core.appearance\":true,\"theme.index\":true,\"theme.activate\":true,\"theme.remove\":true,\"theme.options\":true,\"theme.custom-css\":true,\"theme.custom-js\":true,\"theme.custom-html\":true,\"theme.robots-txt\":true,\"settings.website-tracking\":true,\"widgets.index\":true,\"analytics.general\":true,\"analytics.page\":true,\"analytics.browser\":true,\"analytics.referrer\":true,\"analytics.settings\":true,\"announcements.index\":true,\"announcements.create\":true,\"announcements.edit\":true,\"announcements.destroy\":true,\"announcements.settings\":true,\"audit-log.index\":true,\"audit-log.destroy\":true,\"backups.index\":true,\"backups.create\":true,\"backups.restore\":true,\"backups.destroy\":true,\"plugins.blog\":true,\"posts.index\":true,\"posts.create\":true,\"posts.edit\":true,\"posts.destroy\":true,\"categories.index\":true,\"categories.create\":true,\"categories.edit\":true,\"categories.destroy\":true,\"tags.index\":true,\"blog.reports\":true,\"tags.create\":true,\"tags.edit\":true,\"tags.destroy\":true,\"blog.settings\":true,\"posts.export\":true,\"posts.import\":true,\"captcha.settings\":true,\"car-rentals.index\":true,\"car-rentals.cars.index\":true,\"car-rentals.cars.create\":true,\"car-rentals.cars.edit\":true,\"car-rentals.cars.destroy\":true,\"car-rentals.customers.index\":true,\"car-rentals.customers.create\":true,\"car-rentals.customers.edit\":true,\"car-rentals.customers.destroy\":true,\"car-rentals.bookings.index\":true,\"car-rentals.bookings.create\":true,\"car-rentals.bookings.edit\":true,\"car-rentals.bookings.destroy\":true,\"car-rentals.invoices.index\":true,\"car-rentals.invoices.create\":true,\"car-rentals.invoices.edit\":true,\"car-rentals.invoices.destroy\":true,\"car-rentals.reviews.index\":true,\"car-rentals.reviews.edit\":true,\"car-rentals.reviews.destroy\":true,\"car-rentals.coupons.index\":true,\"car-rentals.coupons.create\":true,\"car-rentals.coupons.edit\":true,\"car-rentals.coupons.destroy\":true,\"car-rentals.taxes.index\":true,\"car-rentals.taxes.create\":true,\"car-rentals.taxes.edit\":true,\"car-rentals.taxes.destroy\":true,\"car-rentals.attributes.index\":true,\"car-rentals.car-makes.index\":true,\"car-rentals.car-makes.create\":true,\"car-rentals.car-makes.edit\":true,\"car-rentals.car-makes.destroy\":true,\"car-rentals.car-types.index\":true,\"car-rentals.car-types.create\":true,\"car-rentals.car-types.edit\":true,\"car-rentals.car-types.destroy\":true,\"car-rentals.car-transmissions.index\":true,\"car-rentals.car-transmissions.create\":true,\"car-rentals.car-transmissions.edit\":true,\"car-rentals.car-transmissions.destroy\":true,\"car-rentals.car-fuels.index\":true,\"car-rentals.car-fuels.create\":true,\"car-rentals.car-fuels.edit\":true,\"car-rentals.car-fuels.destroy\":true,\"car-rentals.car-colors.index\":true,\"car-rentals.car-colors.create\":true,\"car-rentals.car-colors.edit\":true,\"car-rentals.car-colors.destroy\":true,\"car-rentals.car-maintenance-histories.index\":true,\"car-rentals.car-maintenance-histories.create\":true,\"car-rentals.car-maintenance-histories.edit\":true,\"car-rentals.car-maintenance-histories.destroy\":true,\"car-rentals.car-tags.index\":true,\"car-rentals.car-tags.create\":true,\"car-rentals.car-tags.edit\":true,\"car-rentals.car-tags.destroy\":true,\"car-rentals.car-categories.index\":true,\"car-rentals.car-categories.create\":true,\"car-rentals.car-categories.edit\":true,\"car-rentals.car-categories.destroy\":true,\"car-rentals.car-amenities.index\":true,\"car-rentals.car-amenities.create\":true,\"car-rentals.car-amenities.edit\":true,\"car-rentals.car-amenities.destroy\":true,\"car-rentals.services.index\":true,\"car-rentals.services.create\":true,\"car-rentals.services.edit\":true,\"car-rentals.services.destroy\":true,\"car-rentals.booking.reports.index\":true,\"car-rentals.booking.calendar.index\":true,\"car-rentals.message.index\":true,\"car-rentals.message.edit\":true,\"car-rentals.message.destroy\":true,\"contacts.index\":true,\"contacts.edit\":true,\"contacts.destroy\":true,\"contact.custom-fields\":true,\"contact.settings\":true,\"plugin.faq\":true,\"faq.index\":true,\"faq.create\":true,\"faq.edit\":true,\"faq.destroy\":true,\"faq_category.index\":true,\"faq_category.create\":true,\"faq_category.edit\":true,\"faq_category.destroy\":true,\"faqs.settings\":true,\"fob-comment.index\":true,\"fob-comment.comments.index\":true,\"fob-comment.comments.edit\":true,\"fob-comment.comments.destroy\":true,\"fob-comment.comments.reply\":true,\"fob-comment.settings\":true,\"galleries.index\":true,\"galleries.create\":true,\"galleries.edit\":true,\"galleries.destroy\":true,\"languages.index\":true,\"languages.create\":true,\"languages.edit\":true,\"languages.destroy\":true,\"translations.import\":true,\"translations.export\":true,\"property-translations.import\":true,\"property-translations.export\":true,\"page-translations.export\":true,\"page-translations.import\":true,\"plugin.location\":true,\"country.index\":true,\"country.create\":true,\"country.edit\":true,\"country.destroy\":true,\"state.index\":true,\"state.create\":true,\"state.edit\":true,\"state.destroy\":true,\"city.index\":true,\"city.create\":true,\"city.edit\":true,\"city.destroy\":true,\"newsletter.index\":true,\"newsletter.destroy\":true,\"newsletter.settings\":true,\"payment.index\":true,\"payments.settings\":true,\"payment.destroy\":true,\"payments.logs\":true,\"payments.logs.show\":true,\"payments.logs.destroy\":true,\"simple-slider.index\":true,\"simple-slider.create\":true,\"simple-slider.edit\":true,\"simple-slider.destroy\":true,\"simple-slider-item.index\":true,\"simple-slider-item.create\":true,\"simple-slider-item.edit\":true,\"simple-slider-item.destroy\":true,\"social-login.settings\":true,\"team.index\":true,\"team.create\":true,\"team.edit\":true,\"team.destroy\":true,\"testimonial.index\":true,\"testimonial.create\":true,\"testimonial.edit\":true,\"testimonial.destroy\":true,\"plugins.translation\":true,\"translations.locales\":true,\"translations.theme-translations\":true,\"translations.index\":true,\"theme-translations.export\":true,\"other-translations.export\":true,\"theme-translations.import\":true,\"other-translations.import\":true,\"api.settings\":true,\"api.sanctum-token.index\":true,\"api.sanctum-token.create\":true,\"api.sanctum-token.destroy\":true}', 'Admin users role', 1, 1, 1, '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(2, 'admin-demo', 'Admin Demo', '{\"announcements.index\":true,\"announcements.create\":true,\"media.index\":true,\"files.index\":true,\"files.create\":true,\"files.trash\":true,\"folders.index\":true,\"folders.create\":true,\"folders.trash\":true,\"pages.index\":true,\"plugins.blog\":true,\"posts.index\":true,\"posts.create\":true,\"categories.index\":true,\"categories.create\":true,\"tags.index\":true,\"tags.create\":true,\"blog.reports\":true,\"contacts.index\":true,\"contacts.edit\":true,\"galleries.index\":true,\"car-rentals.car-makes.index\":true,\"car-rentals.car-makes.create\":true,\"car-rentals.car-types.index\":true,\"car-rentals.car-types.create\":true,\"car-rentals.car-transmissions.index\":true,\"car-rentals.car-transmissions.create\":true,\"car-rentals.car-fuels.index\":true,\"car-rentals.car-fuels.create\":true,\"car-rentals.car-colors.index\":true,\"car-rentals.car-colors.create\":true,\"car-rentals.car-maintenance-histories.index\":true,\"car-rentals.car-maintenance-histories.create\":true,\"car-rentals.car-tags.index\":true,\"car-rentals.car-tags.create\":true,\"car-rentals.car-categories.index\":true,\"car-rentals.car-categories.create\":true,\"car-rentals.car-amenities.index\":true,\"car-rentals.car-amenities.create\":true,\"car-rentals.cars.index\":true,\"car-rentals.cars.create\":true,\"car-rentals.customers.index\":true,\"car-rentals.customers.create\":true,\"car-rentals.bookings.index\":true,\"car-rentals.bookings.create\":true,\"car-rentals.bookings.disputes.view\":true,\"car-rentals.bookings.claims.index\":true,\"car-rentals.bookings.claims.assign\":true,\"car-rentals.bookings.claims.resolve\":true,\"car-rentals.bookings.claims.financial\":true,\"car-rentals.invoices.index\":true,\"car-rentals.invoices.create\":true,\"car-rentals.reviews.index\":true,\"car-rentals.coupons.index\":true,\"car-rentals.coupons.create\":true,\"car-rentals.taxes.index\":true,\"car-rentals.taxes.create\":true,\"car-rentals.services.index\":true,\"car-rentals.services.create\":true,\"car-rentals.booking.reports.index\":true,\"car-rentals.booking.calendar.index\":true,\"car-rentals.message.index\":true,\"car-rentals.message.edit\":true,\"faq.index\":true,\"faq.create\":true,\"faq_category.index\":true,\"faq_category.create\":true,\"fob-comment.index\":true,\"fob-comment.comments.index\":true,\"fob-comment.comments.reply\":true,\"plugin.location\":true,\"country.index\":true,\"country.create\":true,\"state.index\":true,\"state.create\":true,\"city.index\":true,\"city.create\":true,\"newsletter.index\":true,\"payment.index\":true,\"payments.logs\":true,\"payments.logs.show\":true,\"simple-slider.index\":true,\"simple-slider.create\":true,\"simple-slider-item.index\":true,\"simple-slider-item.create\":true,\"analytics.general\":true,\"analytics.page\":true,\"analytics.browser\":true,\"analytics.referrer\":true,\"audit-log.index\":true,\"testimonial.index\":true,\"testimonial.create\":true}', '', 0, 1, 1, '2026-06-10 17:55:15', '2026-06-10 17:55:15');

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

--
-- Table structure for table `role_users`
--

CREATE TABLE `role_users` (
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `role_id` bigint(20) 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 `role_users`
--

INSERT INTO `role_users` (`user_id`, `role_id`, `created_at`, `updated_at`) VALUES
(2, 2, '2026-06-10 17:55:50', '2026-06-10 17:55:50');

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

--
-- Table structure for table `sessions`
--

CREATE TABLE `sessions` (
  `id` varchar(191) NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `payload` longtext NOT NULL,
  `last_activity` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `key` varchar(191) NOT NULL,
  `value` 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 `settings`
--

INSERT INTO `settings` (`id`, `key`, `value`, `created_at`, `updated_at`) VALUES
(1, 'media_random_hash', '81a962840c0b4f17975cd62dbe28d01e', NULL, '2026-06-10 11:18:43'),
(2, 'api_enabled', '0', NULL, '2026-06-10 11:18:43'),
(3, 'activated_plugins', '[\"language\",\"language-advanced\",\"analytics\",\"announcement\",\"audit-log\",\"backup\",\"blog\",\"captcha\",\"car-rentals\",\"contact\",\"cookie-consent\",\"faq\",\"fob-comment\",\"gallery\",\"location\",\"newsletter\",\"payment\",\"paypal\",\"paystack\",\"razorpay\",\"simple-slider\",\"social-login\",\"sslcommerz\",\"stripe\",\"team\",\"testimonial\",\"translation\"]', NULL, '2026-06-10 11:18:43'),
(4, 'theme', 'mxcar', NULL, '2026-06-10 11:18:43'),
(5, 'show_admin_bar', '1', NULL, '2026-06-10 11:18:43'),
(6, 'admin_logo', 'light.png', NULL, '2026-06-10 11:18:43'),
(7, 'admin_favicon', 'icon.png', NULL, '2026-06-10 11:18:43'),
(8, 'permalink-mxcar-blog-models-post', 'news', NULL, '2026-06-10 11:18:43'),
(9, 'permalink-mxcar-blog-models-category', 'news', NULL, '2026-06-10 11:18:43'),
(10, 'payment_cod_status', '1', NULL, '2026-06-10 11:18:43'),
(11, 'payment_cod_description', 'Please pay money directly to the postman, if you choose cash on delivery method (COD).', NULL, '2026-06-10 11:18:43'),
(12, 'payment_bank_transfer_status', '1', NULL, '2026-06-10 11:18:43'),
(13, 'payment_bank_transfer_description', 'Please send money to our bank account: ACB - 69270 213 19.', NULL, '2026-06-10 11:18:43'),
(14, 'payment_stripe_payment_type', 'stripe_checkout', NULL, '2026-06-10 11:18:43'),
(15, 'language_switcher_display', 'dropdown', NULL, '2026-06-10 11:18:43'),
(16, 'car_rentals_company_name_for_invoicing', 'MXCar', NULL, '2026-06-10 11:18:43'),
(17, 'car_rentals_company_logo_for_invoicing', 'general/logo.png', NULL, '2026-06-10 11:18:43'),
(18, 'car_rentals_company_address_for_invoicing', 'Mumbai', NULL, '2026-06-10 11:18:43'),
(19, 'car_rentals_company_email_for_invoicing', 'biz@miracuves.com', NULL, '2026-06-10 11:18:43'),
(20, 'car_rentals_company_phone_for_invoicing', '123456789', NULL, '2026-06-10 11:18:43'),
(21, 'car_rentals_enabled_review', '1', NULL, '2026-06-10 11:18:43'),
(22, 'car_rentals_enabled_multi_vendor', '1', NULL, '2026-06-10 11:18:43'),
(23, 'simple_slider_using_assets', '0', NULL, '2026-06-10 11:18:43'),
(24, 'theme-mxcar-site_title', 'MXCar', NULL, '2026-06-10 11:18:43'),
(25, 'theme-mxcar-seo_description', 'MXCar is a robust Laravel script for managing car rental businesses, featuring advanced booking, real-time vehicle availability, and customizable options for efficient operations.', NULL, '2026-06-10 11:18:43'),
(26, 'theme-mxcar-copyright', '©%Y MXCar. All Rights Reserved.', NULL, '2026-06-10 11:18:43'),
(27, 'theme-mxcar-favicon', 'icon.png', NULL, '2026-06-10 11:18:43'),
(28, 'theme-mxcar-logo', 'light.png', NULL, '2026-06-10 11:18:43'),
(29, 'theme-mxcar-logo_dark', 'dark.png', NULL, '2026-06-10 11:18:43'),
(30, 'theme-mxcar-logo_height', '76', NULL, '2026-06-10 11:18:43'),
(31, 'theme-mxcar-primary_font', 'Urbanist', NULL, '2026-06-10 11:18:43'),
(32, 'theme-mxcar-secondary_font', 'Urbanist', NULL, '2026-06-10 11:18:43'),
(33, 'theme-mxcar-primary_color', 'rgb(204, 65, 37)', NULL, '2026-06-10 11:18:43'),
(34, 'theme-mxcar-primary_color_hover', 'rgb(151, 53, 33)', NULL, '2026-06-10 11:18:43'),
(35, 'theme-mxcar-secondary_color', 'rgba(45, 74, 44, 0.6)', NULL, '2026-06-10 11:18:43'),
(36, 'theme-mxcar-heading_color', '#000000', NULL, '2026-06-10 11:18:43'),
(37, 'theme-mxcar-text_color', 'rgb(0, 0, 0)', NULL, '2026-06-10 11:18:43'),
(38, 'theme-mxcar-header_top_background_color', '#000000', NULL, '2026-06-10 11:18:43'),
(39, 'theme-mxcar-header_top_text_color', '#ffffff', NULL, '2026-06-10 11:18:43'),
(40, 'theme-mxcar-is_header_transparent', '0', NULL, '2026-06-10 11:18:43'),
(41, 'theme-mxcar-preloader_enabled', 'yes', NULL, '2026-06-10 11:18:43'),
(42, 'theme-mxcar-preloader_version', 'v2', NULL, '2026-06-10 11:18:43'),
(43, 'theme-mxcar-breadcrumb_background_image', 'car.jpg', NULL, '2026-06-10 11:18:43'),
(44, 'theme-mxcar-homepage_id', '1', NULL, '2026-06-10 11:18:43'),
(45, 'theme-mxcar-blog_page_id', '2', NULL, '2026-06-10 11:18:43'),
(46, 'theme-mxcar-blog_post_list_page_title', 'Recent Posts', NULL, '2026-06-10 11:18:43'),
(47, 'theme-mxcar-blog_post_list_page_description', 'Favorite vehicles based on customer reviews', NULL, '2026-06-10 11:18:43'),
(48, 'theme-mxcar-blog_post_gird_items_per_row', '3', NULL, '2026-06-10 11:18:43'),
(49, 'theme-mxcar-blog_post_style', 'grid', NULL, '2026-06-10 11:18:43'),
(50, 'theme-mxcar-social_links', '[[{\"key\":\"name\",\"value\":\"Facebook\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-facebook\"},{\"key\":\"url\",\"value\":\"https:\\/\\/www.facebook.com\"}],[{\"key\":\"name\",\"value\":\"X (Twitter)\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-x\"},{\"key\":\"url\",\"value\":\"https:\\/\\/x.com\"}],[{\"key\":\"name\",\"value\":\"YouTube\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-youtube\"},{\"key\":\"url\",\"value\":\"https:\\/\\/www.youtube.com\"}],[{\"key\":\"name\",\"value\":\"Instagram\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-linkedin\"},{\"key\":\"url\",\"value\":\"https:\\/\\/www.linkedin.com\"}]]', NULL, '2026-06-10 11:18:43'),
(51, 'theme-mxcar-footer_text_color', '#8e8e8e', NULL, '2026-06-10 11:18:43'),
(52, 'theme-mxcar-footer_heading_color', '#ffffff', NULL, '2026-06-10 11:18:43'),
(53, 'theme-mxcar-footer_border_color', '#5756567d', NULL, '2026-06-10 11:18:43'),
(54, 'theme-mxcar-footer_background_color', '#000000', NULL, '2026-06-10 11:18:43'),
(55, 'theme-mxcar-newsletter_popup_enable', '1', NULL, '2026-06-10 11:18:43'),
(56, 'theme-mxcar-newsletter_popup_image', 'newsletter-bg.jpg', NULL, '2026-06-10 11:18:43'),
(57, 'theme-mxcar-newsletter_popup_title', 'Special Offers', NULL, '2026-06-10 11:18:43'),
(58, 'theme-mxcar-newsletter_popup_subtitle', 'Newsletter', NULL, '2026-06-10 11:18:43'),
(59, 'theme-mxcar-newsletter_popup_description', 'Special Offer: Rent Your Car Today!', NULL, '2026-06-10 11:18:43'),
(60, 'theme-mxcar-number_of_cars_per_page', '30', NULL, '2026-06-10 11:18:43'),
(61, 'language_hide_default', '1', NULL, '2026-06-10 11:18:43'),
(62, 'language_display', 'all', NULL, '2026-06-10 11:18:43'),
(63, 'language_hide_languages', '[]', NULL, '2026-06-10 11:18:43'),
(64, 'announcement_max_width', '1210', NULL, '2026-06-10 11:18:43'),
(65, 'announcement_text_color', '#FFFFFF', NULL, '2026-06-10 11:18:43'),
(66, 'announcement_background_color', 'transparent', NULL, '2026-06-10 11:18:43'),
(67, 'announcement_text_alignment', 'start', NULL, '2026-06-10 11:18:43'),
(68, 'announcement_dismissible', '1', NULL, '2026-06-10 11:18:43'),
(69, 'announcement_font_size', '14', NULL, '2026-06-10 11:18:43'),
(70, 'announcement_font_size_unit', 'px', NULL, '2026-06-10 11:18:43'),
(71, 'announcement_placement', 'theme', NULL, '2026-06-10 11:18:43'),
(72, 'membership_authorization_at', '2026-03-16 09:08:58', NULL, '2026-06-10 11:18:43'),
(73, 'theme-mxcar-admin_logo', 'light.png', NULL, '2026-06-10 11:18:43'),
(74, 'theme-mxcar-admin_favicon', 'icon.png', NULL, '2026-06-10 11:18:43'),
(75, 'theme-mxcar-favicon_type', 'image/x-icon', NULL, '2026-06-10 11:18:43'),
(76, 'theme-mxcar-default_theme_color_mode', 'light', NULL, '2026-06-10 11:18:43'),
(77, 'theme-mxcar-hide_theme_mode_switcher', 'no', NULL, '2026-06-10 11:18:43'),
(78, 'theme-mxcar-primary_badge_background_color', '#d8f4db', NULL, '2026-06-10 11:18:43'),
(79, 'theme-mxcar-primary_button_text_color', '#000000', NULL, '2026-06-10 11:18:43'),
(80, 'admin_logo_max_height', '32', NULL, '2026-06-10 11:18:43'),
(81, 'admin_favicon_type', 'image/x-icon', NULL, '2026-06-10 11:18:43'),
(82, 'login_screen_backgrounds', '{\"1\":\"admin-login\\/2.jpg\",\"2\":\"admin-login\\/3.jpg\",\"3\":\"admin-login\\/1.jpg\"}', NULL, '2026-06-10 11:18:43'),
(83, 'admin_title', 'MXCar', NULL, '2026-06-10 11:18:43'),
(84, 'admin_appearance_locale', 'en', NULL, '2026-06-10 11:18:43'),
(85, 'rich_editor', 'ckeditor', NULL, '2026-06-10 11:18:43'),
(86, 'enable_page_visual_builder', '1', NULL, '2026-06-10 11:18:43'),
(87, 'admin_appearance_layout', 'vertical', NULL, '2026-06-10 11:18:43'),
(88, 'admin_appearance_show_menu_item_icon', '1', NULL, '2026-06-10 11:18:43'),
(89, 'admin_appearance_show_get_started', '1', NULL, '2026-06-10 11:18:43'),
(90, 'admin_appearance_container_width', 'container-fluid', NULL, '2026-06-10 11:18:43'),
(91, 'admin_primary_font', 'Inter', NULL, '2026-06-10 11:18:43'),
(92, 'admin_primary_color', '#cc4125', NULL, '2026-06-10 11:18:43'),
(93, 'admin_secondary_color', '#973521', NULL, '2026-06-10 11:18:43'),
(94, 'admin_heading_color', '#000000', NULL, '2026-06-10 11:18:43'),
(95, 'admin_text_color', '#182433', NULL, '2026-06-10 11:18:43'),
(96, 'admin_link_color', '#cc4125', NULL, '2026-06-10 11:18:43'),
(97, 'admin_link_hover_color', '#973521', NULL, '2026-06-10 11:18:43'),
(98, 'admin_appearance_custom_css', '/* --- COMPLETE SOFT UI TRANSFORMATION (FINAL POLISH) --- */\r\n\r\n:root {\r\n    --soft-ui-radius: 1rem;\r\n    --soft-ui-shadow: 0 20px 27px 0 rgba(0, 0, 0, 0.05);\r\n}\r\n\r\n/* 1. GLOBAL THEME VARIABLES (Bulletproof Light Mode) */\r\n:root,\r\nhtml[data-bs-theme=\"light\"],\r\nbody[data-bs-theme=\"light\"],\r\nhtml[data-theme=\"light\"],\r\nbody[data-theme=\"light\"],\r\nbody:not([data-bs-theme=\"dark\"]):not([data-theme=\"dark\"]) {\r\n    --soft-body-bg: #f8f9fa;       \r\n    --soft-card-bg: #ffffff;       \r\n    --soft-card-border: rgba(0, 0, 0, 0.05);\r\n    --soft-text-main: #252f40;     \r\n    --soft-text-muted: #67748e;    \r\n    --soft-input-bg: #ffffff;\r\n  	--soft-dropdown-bg: #ffffff;\r\n    \r\n    /* GLASSMORPHISM - Light Mode Navigation */\r\n    --soft-nav-bg: rgba(255, 255, 255, 0.65); \r\n    --soft-nav-text: #67748e; \r\n    --soft-nav-text-active: #252f40; \r\n    --soft-nav-icon-bg: #ffffff;\r\n    --soft-nav-icon-color: #252f40;\r\n    --soft-nav-border: rgba(255, 255, 255, 0.9); \r\n    --soft-nav-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.04); \r\n}\r\n\r\n/* Dark Mode Variables */\r\nhtml[data-bs-theme=\"dark\"],\r\nbody[data-bs-theme=\"dark\"],\r\nhtml[data-theme=\"dark\"],\r\nbody[data-theme=\"dark\"] {\r\n    --soft-body-bg: #111c26;       \r\n    --soft-card-bg: rgba(27, 37, 49, 0.6); \r\n    --soft-card-border: rgba(255, 255, 255, 0.05);\r\n    --soft-text-main: #ffffff;     \r\n    --soft-text-muted: #a0aec0;    \r\n    --soft-input-bg: rgba(0, 0, 0, 0.2);\r\n  	--soft-dropdown-bg: #1b2531;\r\n    \r\n    /* GLASSMORPHISM - Dark Mode Navigation */\r\n    --soft-nav-bg: rgba(27, 37, 49, 0.65);\r\n    --soft-nav-text: rgba(255, 255, 255, 0.7);\r\n    --soft-nav-text-active: #ffffff;\r\n    --soft-nav-icon-bg: rgba(0,0,0,0.25);\r\n    --soft-nav-icon-color: #ffffff;\r\n    --soft-nav-border: rgba(255, 255, 255, 0.05);\r\n    --soft-nav-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);\r\n}\r\n\r\n/* 2. APPLY BODY BACKGROUND */\r\nbody, \r\n.page-wrapper, \r\n#main {\r\n    background-color: var(--soft-body-bg) !important;\r\n}\r\n\r\n/* =========================================\r\n   3. THEME-AWARE FLOATING SIDEBAR \r\n========================================= */\r\n.navbar-vertical, \r\naside.navbar-vertical,\r\n.navbar-vertical.navbar-dark {\r\n    background-color: var(--soft-nav-bg) !important; \r\n    \r\n    backdrop-filter: blur(12px) saturate(200%) !important;\r\n    -webkit-backdrop-filter: blur(12px) saturate(200%) !important;\r\n    \r\n    background-image: none !important;\r\n    border: 1px solid var(--soft-nav-border) !important;\r\n    border-radius: 1rem !important;\r\n    box-shadow: var(--soft-nav-shadow) !important; \r\n    \r\n    margin: 1rem 0 1rem 1rem !important; \r\n    \r\n    min-height: calc(100vh - 2rem) !important; \r\n    height: auto !important; \r\n    overflow-y: auto !important; \r\n    overflow-x: hidden !important;\r\n    z-index: 1040 !important; /* Stack above background elements */\r\n}\r\n\r\n.navbar-vertical::-webkit-scrollbar { width: 4px; }\r\n.navbar-vertical::-webkit-scrollbar-track { background: transparent; }\r\n.navbar-vertical::-webkit-scrollbar-thumb { background: rgba(103, 116, 142, 0.2); border-radius: 10px; }\r\nhtml[data-bs-theme=\"dark\"] .navbar-vertical::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); }\r\n\r\n.navbar-vertical .navbar-brand,\r\n.navbar-brand span,\r\n.navbar-brand-text,\r\n.navbar-brand b {\r\n    color: var(--soft-nav-text-active) !important;\r\n}\r\n\r\n.navbar-vertical .nav-item {\r\n    margin: 4px 15px !important;\r\n}\r\n\r\n.navbar-vertical .nav-link,\r\n.navbar-dark .navbar-nav .nav-link {\r\n    border-radius: 0.75rem !important;\r\n    padding: 10px 15px !important;\r\n    font-weight: 500 !important;\r\n    color: var(--soft-nav-text) !important;\r\n    transition: all 0.2s ease;\r\n}\r\n\r\n.navbar-vertical .nav-link:hover,\r\n.navbar-dark .navbar-nav .nav-link:hover {\r\n    color: var(--soft-nav-text-active) !important;\r\n    background-color: rgba(203, 12, 159, 0.05) !important; \r\n}\r\n\r\n.navbar-vertical .nav-link-icon,\r\n.navbar-vertical .nav-link i,\r\n.navbar-dark .navbar-nav .nav-link i {\r\n    background: var(--soft-nav-icon-bg) !important; \r\n    color: var(--soft-nav-icon-color) !important;\r\n    width: 32px;\r\n    height: 32px;\r\n    display: inline-flex !important;\r\n    align-items: center;\r\n    justify-content: center;\r\n    border-radius: 0.5rem;\r\n    margin-right: 12px !important;\r\n    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;\r\n}\r\n\r\n.navbar-vertical .nav-item.active > .nav-link,\r\n.navbar-dark .navbar-nav .show > .nav-link,\r\n.navbar-dark .navbar-nav .active > .nav-link {\r\n    background-color: var(--soft-card-bg) !important; \r\n    color: var(--soft-nav-text-active) !important;\r\n    font-weight: 700 !important;\r\n    box-shadow: var(--soft-ui-shadow) !important; \r\n}\r\n\r\n.navbar-vertical .nav-item.active .nav-link-icon,\r\n.navbar-vertical .nav-item.active .nav-link i {\r\n    background: linear-gradient(310deg, var(--primary-color, #cb0c9f), var(--secondary-color, #7928ca)) !important;\r\n    color: #fff !important;\r\n    box-shadow: 0 4px 6px -1px rgba(203, 12, 159, 0.2) !important;\r\n}\r\n\r\n/* =========================================\r\n   4. THEME-AWARE FLOATING TOP NAVBAR \r\n========================================= */\r\nheader.navbar, \r\n.page-header, \r\n.navbar-custom,\r\nheader.navbar.navbar-dark,\r\n.navbar.sticky-top {\r\n    background-color: var(--soft-nav-bg) !important; \r\n    \r\n    backdrop-filter: blur(12px) saturate(200%) !important;\r\n    -webkit-backdrop-filter: blur(12px) saturate(200%) !important;\r\n    \r\n    border-radius: 1rem !important; \r\n    border: 1px solid var(--soft-nav-border) !important;\r\n    box-shadow: var(--soft-nav-shadow) !important; \r\n    \r\n    margin: 1rem 1.5rem 1.5rem 1.5rem !important; \r\n    padding: 0.5rem 1.5rem !important;\r\n    width: auto !important;\r\n    \r\n    /* FIX: Force Navbar to stay visually above the page content */\r\n    position: relative !important;\r\n    z-index: 1050 !important; \r\n}\r\n\r\n.page-title,\r\n.navbar .navbar-brand {\r\n    color: var(--soft-nav-text-active) !important;\r\n    font-weight: 700 !important;\r\n    font-size: 1.15rem !important;\r\n    letter-spacing: -0.025rem;\r\n}\r\n\r\n.breadcrumb-item, \r\n.breadcrumb-item a,\r\n.breadcrumb-item::before,\r\n.breadcrumb-item i,\r\n.breadcrumb-item svg,\r\n.breadcrumb i,\r\n.breadcrumb svg {\r\n    color: var(--soft-nav-text) !important;\r\n    font-size: 0.85rem !important;\r\n    font-weight: 500;\r\n    text-decoration: none;\r\n    fill: currentColor; \r\n}\r\n\r\n.breadcrumb-item.active {\r\n    color: var(--soft-nav-text-active) !important;\r\n    font-weight: 700 !important;\r\n}\r\n\r\nheader.navbar input[type=\"search\"],\r\nheader.navbar input[type=\"text\"],\r\nheader.navbar .form-control {\r\n    border-radius: 2rem !important; \r\n    background-color: var(--soft-card-bg) !important; \r\n    border: 1px solid var(--soft-card-border) !important;\r\n    color: var(--soft-nav-text-active) !important;\r\n    padding: 0.5rem 1.25rem 0.5rem 2.5rem !important; \r\n    height: 40px !important;\r\n    font-size: 0.85rem !important;\r\n    transition: all 0.2s ease;\r\n    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important; \r\n}\r\n\r\nheader.navbar input::placeholder {\r\n    color: var(--soft-nav-text) !important;\r\n    opacity: 0.8 !important;\r\n}\r\n\r\nheader.navbar input:focus {\r\n    border-color: var(--primary-color) !important;\r\n    box-shadow: 0 0 0 0.2rem rgba(203, 12, 159, 0.25) !important;\r\n}\r\n\r\nheader.navbar .btn {\r\n    border-radius: 2rem !important; \r\n    font-weight: 600 !important;\r\n    background-color: var(--soft-card-bg) !important;\r\n    color: var(--soft-nav-text-active) !important;\r\n    border: 1px solid var(--soft-card-border) !important;\r\n}\r\n\r\nheader.navbar .btn i,\r\nheader.navbar .btn svg {\r\n    color: var(--soft-nav-text-active) !important;\r\n    fill: none !important; \r\n    stroke: currentColor !important;\r\n}\r\n\r\nheader.navbar .input-group-text,\r\nheader.navbar .input-icon-addon,\r\nheader.navbar .search-input-wrapper span {\r\n    background-color: transparent !important;\r\n    border: none !important;\r\n}\r\n\r\nheader.navbar kbd, \r\nheader.navbar .badge.bg-muted,\r\n.input-icon-addon kbd {\r\n    display: inline-flex !important;\r\n    background-color: var(--soft-body-bg) !important; \r\n    color: var(--soft-nav-text-active) !important;\r\n    border: 1px solid var(--soft-card-border) !important;\r\n    border-radius: 1rem !important; \r\n    padding: 0.25rem 0.6rem !important;\r\n    font-size: 0.65rem !important;\r\n    font-weight: 700 !important;\r\n    box-shadow: none !important;\r\n}\r\n\r\nheader.navbar .nav-link,\r\nheader.navbar .nav-link i {\r\n    color: var(--soft-nav-text) !important;\r\n    transition: color 0.2s ease;\r\n    border: none !important;\r\n}\r\n\r\nheader.navbar .nav-link:hover,\r\nheader.navbar .nav-link:hover i {\r\n    color: var(--primary-color) !important;\r\n}\r\n\r\nheader.navbar .nav-link div,\r\nheader.navbar .nav-link span,\r\nheader.navbar .nav-link small,\r\nheader.navbar .nav-link .text-muted {\r\n    color: var(--soft-nav-text) !important; \r\n}\r\n\r\nheader.navbar .nav-link > div > div:first-child {\r\n    color: var(--soft-nav-text-active) !important;\r\n    font-weight: 600 !important;\r\n}\r\n\r\nheader.navbar .avatar {\r\n    border-radius: 50% !important; \r\n    border: 2px solid var(--soft-card-border) !important;\r\n}\r\n\r\nheader.navbar .dropdown-toggle::after {\r\n    display: none !important;\r\n}\r\n\r\nheader.navbar .navbar-toggler,\r\nheader.navbar .navbar-toggler i,\r\nheader.navbar .navbar-toggler svg,\r\nheader.navbar .menu-toggle svg {\r\n    color: var(--soft-nav-text-active) !important;\r\n}\r\n\r\n/* =========================================\r\n   5. DASHBOARD CARDS & STAT WIDGETS\r\n========================================= */\r\n.card {\r\n    background-color: var(--soft-card-bg); \r\n    backdrop-filter: blur(10px) saturate(180%);\r\n    border: 1px solid var(--soft-card-border);\r\n    border-radius: 1rem !important;\r\n    box-shadow: 0 20px 27px 0 rgba(0, 0, 0, 0.05) !important;\r\n    margin-bottom: 1.5rem;\r\n    transition: all 0.3s ease-in-out;\r\n}\r\n\r\n.card:hover {\r\n    transform: translateY(-5px);\r\n    box-shadow: 0 20px 27px 0 rgba(0, 0, 0, 0.1) !important;\r\n}\r\n\r\n.card .card-header {\r\n    background: transparent !important;\r\n    border-bottom: none !important;\r\n    padding: 1.25rem 1.25rem 0 !important;\r\n}\r\n\r\n.card .card-header h6, \r\n.card .card-header .card-title,\r\n.card-header > div > h4 { \r\n    font-weight: 700 !important;\r\n    color: var(--soft-text-main) !important;\r\n    margin-bottom: 0.5rem;\r\n    font-size: 1rem !important;\r\n    letter-spacing: -0.025rem;\r\n}\r\n\r\n.card .card-header p {\r\n    font-size: 0.875rem !important;\r\n    color: var(--soft-text-muted) !important;\r\n}\r\n\r\n/* =========================================\r\n   6. SLEEK SOFT UI TABLES & PROJECT CARDS \r\n========================================= */\r\n.table thead th {\r\n    background: transparent !important;\r\n    border-bottom: 1px solid var(--soft-card-border) !important;\r\n    color: var(--soft-text-muted) !important;\r\n    text-transform: uppercase;\r\n    font-size: 0.65rem !important;\r\n    font-weight: 700 !important;\r\n    letter-spacing: 0.05rem;\r\n    padding: 0.75rem 1.25rem !important;\r\n    opacity: 0.7;\r\n}\r\n\r\n.table tbody tr td {\r\n    padding: 0.75rem 1.25rem !important;\r\n    vertical-align: middle;\r\n    border-bottom: 1px solid var(--soft-card-border) !important;\r\n    font-size: 0.875rem !important;\r\n    color: var(--soft-text-main) !important;\r\n}\r\n\r\n.table tbody tr td a, \r\n.table tbody tr td .font-weight-bold {\r\n    font-weight: 600 !important;\r\n    color: var(--soft-text-main) !important;\r\n    text-decoration: none;\r\n    transition: color 0.2s ease;\r\n}\r\n\r\n.table tbody tr td a:hover {\r\n    color: var(--primary-color) !important;\r\n}\r\n\r\n.avatar, .avatar-sm, .table img {\r\n    width: 24px !important;\r\n    height: 24px !important;\r\n    border-radius: 50% !important;\r\n    border: 2px solid var(--soft-card-bg);\r\n    margin-left: -10px; \r\n    transition: all 0.2s ease;\r\n}\r\n\r\n.avatar:first-child, .table img:first-child { margin-left: 0; }\r\n.avatar:hover, .table img:hover { z-index: 10; transform: scale(1.1); }\r\n\r\n.table tbody tr:last-child td { border-bottom: none !important; }\r\n\r\n/* =========================================\r\n   7. CHARTS CONTAINERS \r\n========================================= */\r\n.bg-gradient-dark-chart {\r\n    background: linear-gradient(310deg, #141727 0%, #3a416f 100%) !important;\r\n    border-radius: 1rem !important;\r\n    padding: 1rem;\r\n}\r\n\r\n#chartjs-tooltip {\r\n    background: var(--soft-card-bg) !important;\r\n    backdrop-filter: blur(5px);\r\n    border-radius: 8px;\r\n    color: var(--soft-text-main);\r\n    box-shadow: 0 20px 27px 0 rgba(0, 0, 0, 0.05);\r\n}\r\n\r\n/* =========================================\r\n   8. SETTINGS PAGE REDESIGN (SOFT UI)\r\n========================================= */\r\n.list-group-item, \r\n.nav-pills .nav-link,\r\n.settings-nav .nav-link {\r\n    border-radius: 0.75rem !important;\r\n    margin-bottom: 0.35rem !important;\r\n    color: var(--soft-text-muted) !important;\r\n    border: none !important;\r\n    background-color: transparent !important;\r\n    font-weight: 500 !important;\r\n    padding: 0.75rem 1.25rem !important;\r\n    transition: all 0.2s ease;\r\n}\r\n\r\n.list-group-item.active, \r\n.nav-pills .nav-link.active,\r\n.settings-nav .nav-link.active {\r\n    background-color: var(--soft-card-bg) !important;\r\n    color: var(--soft-text-main) !important;\r\n    font-weight: 700 !important;\r\n    box-shadow: var(--soft-ui-shadow) !important;\r\n}\r\n\r\n.list-group-item:not(.active):hover, \r\n.nav-pills .nav-link:not(.active):hover {\r\n    background-color: rgba(203, 12, 159, 0.05) !important;\r\n    color: var(--primary-color, #cb0c9f) !important;\r\n}\r\n\r\n.image-box .preview-image-wrapper {\r\n    border-radius: 1rem !important;\r\n    border: 1px dashed var(--soft-card-border) !important;\r\n    background-color: var(--soft-body-bg) !important;\r\n    padding: 0.5rem;\r\n    transition: all 0.2s ease;\r\n}\r\n\r\n.image-box .preview-image-wrapper:hover {\r\n    border-color: var(--primary-color, #cb0c9f) !important;\r\n    background-color: var(--soft-card-bg) !important;\r\n}\r\n\r\n.image-box .btn-remove {\r\n    border-radius: 50% !important;\r\n    width: 24px !important;\r\n    height: 24px !important;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center;\r\n}\r\n\r\n.btn-primary, \r\n.card button[type=\"submit\"] {\r\n    background: linear-gradient(310deg, var(--primary-color, #cb0c9f), var(--secondary-color, #7928ca)) !important;\r\n    border: none !important;\r\n    border-radius: 2rem !important; \r\n    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08) !important;\r\n    font-weight: 600 !important;\r\n    letter-spacing: 0.5px !important;\r\n    transition: all 0.2s ease;\r\n    color: #fff !important;\r\n}\r\n\r\n.btn-primary:hover, \r\n.card button[type=\"submit\"]:hover {\r\n    transform: translateY(-2px);\r\n    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08) !important;\r\n}\r\n\r\nselect.form-select,\r\nselect.form-control,\r\n.form-control {\r\n    border-radius: 0.75rem !important;\r\n    border: 1px solid var(--soft-card-border) !important;\r\n    background-color: var(--soft-input-bg) !important;\r\n    color: var(--soft-text-main) !important;\r\n}\r\n\r\nselect.form-select:focus,\r\n.form-control:focus {\r\n    border-color: var(--primary-color, #cb0c9f) !important;\r\n    box-shadow: 0 0 0 0.2rem rgba(203, 12, 159, 0.25) !important;\r\n}\r\n\r\n/* =========================================\r\n   9. DROPDOWN MENUS (Profile & Sidebar Sub-menus)\r\n========================================= */\r\n.dropdown-menu {\r\n    /* FIX: Use the solid dropdown variable instead of the transparent card background */\r\n    background-color: var(--soft-dropdown-bg) !important;\r\n    \r\n    border: 1px solid var(--soft-card-border) !important;\r\n    border-radius: 1rem !important;\r\n    box-shadow: 0 8px 26px -4px rgba(0, 0, 0, 0.15) !important;\r\n    padding: 0.5rem !important;\r\n    \r\n    /* FIX: Make sure the dropdown itself stays above the page */\r\n    z-index: 1060 !important; \r\n}\r\n\r\n/* Clear form margins if Logout is inside a form */\r\n.dropdown-menu form {\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.dropdown-item,\r\n.dropdown-menu form button,\r\n.dropdown-menu a.text-danger {\r\n    color: var(--soft-text-main) !important;\r\n    border-radius: 0.5rem !important;\r\n    padding: 0.5rem 1rem !important;\r\n    transition: all 0.2s ease;\r\n    font-size: 0.875rem !important;\r\n    display: flex !important;\r\n    align-items: center;\r\n    width: 100% !important;\r\n    text-align: left !important;\r\n    background-color: transparent !important;\r\n    border: none !important;\r\n    box-shadow: none !important;\r\n    transform: none !important;\r\n}\r\n\r\n.dropdown-item:hover, \r\n.dropdown-item:focus,\r\n.dropdown-menu form button:hover,\r\n.dropdown-menu form button:focus,\r\n.dropdown-menu a.text-danger:hover {\r\n    background-color: rgba(203, 12, 159, 0.05) !important;\r\n    color: var(--primary-color, #cb0c9f) !important;\r\n    transform: none !important;\r\n    box-shadow: none !important;\r\n}\r\n\r\n.navbar-vertical .collapse .nav-link,\r\n.navbar-vertical .nav-item .collapse .nav-link,\r\n.navbar-vertical .sub-menu .nav-link {\r\n    color: var(--soft-nav-text) !important;\r\n}\r\n\r\n.navbar-vertical .collapse .nav-link:hover,\r\n.navbar-vertical .nav-item .collapse .nav-link:hover,\r\n.navbar-vertical .sub-menu .nav-link:hover {\r\n    color: var(--soft-nav-text-active) !important;\r\n    background-color: transparent !important; \r\n}\r\n\r\n\r\n/* =========================================\r\n   10. OFFCANVAS & NOTIFICATION PANEL FIX\r\n========================================= */\r\n/* Forces the notification slide-out to render ABOVE the floating navbar */\r\n.offcanvas,\r\n.offcanvas-end,\r\n.offcanvas-start,\r\n.offcanvas-top,\r\n.offcanvas-bottom {\r\n    z-index: 1070 !important; \r\n}\r\n\r\n/* Ensures the dark backdrop overlay also covers the navbar */\r\n.offcanvas-backdrop {\r\n    z-index: 1065 !important;\r\n}\r\n.table-actions .btn-primary, .table-actions .btn-danger { color: #ffffff !important; --tblr-btn-color-text: #ffffff !important; } .table-actions .btn-primary svg, .table-actions .btn-danger svg, .table-actions .btn-primary i, .table-actions .btn-danger i { color: #ffffff !important; }\r\n\r\n/* FIX FOR MOBILE NAVBAR HEIGHT */\r\n@media (min-width: 992px) {\r\n    .navbar-vertical,\r\n    aside.navbar-vertical,\r\n    .navbar-vertical.navbar-dark {\r\n        margin: 1rem 0 1rem 1rem !important;\r\n        min-height: calc(100vh - 2rem) !important;\r\n    }\r\n}\r\n@media (max-width: 991.98px) {\r\n    .navbar-vertical,\r\n    aside.navbar-vertical,\r\n    .navbar-vertical.navbar-dark {\r\n        margin: 1rem !important;\r\n        min-height: auto !important;\r\n    }\r\n}', NULL, '2026-06-10 11:18:43'),
(99, 'admin_appearance_custom_header_js', '', NULL, '2026-06-10 11:18:43'),
(100, 'admin_appearance_custom_body_js', '', NULL, '2026-06-10 11:18:43'),
(101, 'admin_appearance_custom_footer_js', '', NULL, '2026-06-10 11:18:43'),
(102, 'show_theme_guideline_link', '0', NULL, '2026-06-10 11:18:43'),
(103, 'admin_appearance_locale_direction', 'ltr', NULL, '2026-06-10 11:18:43'),
(104, 'theme-mxcar-newsletter_popup_tablet_image', '', NULL, '2026-06-10 11:18:43'),
(105, 'theme-mxcar-newsletter_popup_mobile_image', '', NULL, '2026-06-10 11:18:43'),
(106, 'theme-mxcar-newsletter_popup_delay', '5', NULL, '2026-06-10 11:18:43'),
(107, 'theme-mxcar-newsletter_popup_display_pages', '[\"public.index\"]', NULL, '2026-06-10 11:18:43'),
(108, 'theme-mxcar-show_site_name', '0', NULL, '2026-06-10 11:18:43'),
(109, 'theme-mxcar-site_title_separator', '-', NULL, '2026-06-10 11:18:43'),
(110, 'theme-mxcar-seo_title', '', NULL, '2026-06-10 11:18:43'),
(111, 'theme-mxcar-seo_index', '1', NULL, '2026-06-10 11:18:43'),
(112, 'theme-mxcar-seo_og_image', '', NULL, '2026-06-10 11:18:43'),
(113, 'theme-mxcar-term_and_privacy_policy_url', '', NULL, '2026-06-10 11:18:43'),
(114, 'theme-mxcar-lazy_load_images', '0', NULL, '2026-06-10 11:18:43'),
(115, 'theme-mxcar-lazy_load_placeholder_image', '', NULL, '2026-06-10 11:18:43'),
(116, 'theme-mxcar-date_format', 'M d, Y', NULL, '2026-06-10 11:18:43'),
(117, 'theme-mxcar-display_header_top', '0', NULL, '2026-06-10 11:18:43'),
(118, 'theme-mxcar-enable_sticky_header', '1', NULL, '2026-06-10 11:18:43'),
(119, 'cache_admin_menu_enable', '0', NULL, '2026-06-10 11:18:43'),
(120, 'enable_cache_site_map', '0', NULL, '2026-06-10 11:18:43'),
(121, 'cache_front_menu_enabled', '0', NULL, '2026-06-10 11:18:43'),
(122, 'cache_user_avatar_enabled', '0', NULL, '2026-06-10 11:18:43'),
(123, 'shortcode_cache_enabled', '1', NULL, '2026-06-10 11:18:43'),
(124, 'widget_cache_enabled', '1', NULL, '2026-06-10 11:18:43'),
(125, 'plugin_cache_enabled', '0', NULL, '2026-06-10 11:18:43'),
(126, 'cache_time_site_map', '60', NULL, '2026-06-10 11:18:43'),
(127, 'shortcode_cache_ttl', '1800', NULL, '2026-06-10 11:18:43'),
(128, 'widget_cache_ttl', '1800', NULL, '2026-06-10 11:18:43'),
(129, 'car_rentals_price_lock_duration_minutes', '2', NULL, '2026-06-10 11:18:43'),
(130, 'car_rentals_deposit_percentage', '20', NULL, '2026-06-10 11:18:43'),
(131, 'car_rentals_deposit_type', 'percentage', NULL, '2026-06-10 11:18:43'),
(132, 'car_rentals_deposit_fixed_amount', '20', NULL, '2026-06-10 11:18:43'),
(133, 'car_rentals_fee_name', 'Service fee', NULL, '2026-06-10 11:18:43'),
(134, 'car_rentals_fee_value', '20', NULL, '2026-06-10 11:18:43'),
(135, 'car_rentals_deposit_risk_enabled', '1', NULL, '2026-06-10 11:18:43'),
(136, 'car_rentals_deposit_risk_default_multiplier', '1', NULL, '2026-06-10 11:18:43'),
(137, 'car_rentals_deposit_risk_guest_multiplier', '1', NULL, '2026-06-10 11:18:43'),
(138, 'car_rentals_deposit_risk_unverified_multiplier', '1', NULL, '2026-06-10 11:18:43'),
(139, 'car_rentals_deposit_risk_low_history_threshold', '3', NULL, '2026-06-10 11:18:43'),
(140, 'car_rentals_deposit_risk_low_history_multiplier', '1', NULL, '2026-06-10 11:18:43'),
(141, 'car_rentals_deposit_risk_low_rating_threshold', '3', NULL, '2026-06-10 11:18:43'),
(142, 'car_rentals_deposit_risk_low_rating_multiplier', '1', NULL, '2026-06-10 11:18:43'),
(143, 'car_rentals_deposit_risk_escalation_multiplier', '1', NULL, '2026-06-10 11:18:43'),
(144, 'car_rentals_deposit_risk_medium_threshold', '1', NULL, '2026-06-10 11:18:43'),
(145, 'car_rentals_deposit_risk_high_threshold', '1', NULL, '2026-06-10 11:18:43'),
(146, 'car_rentals_deposit_category_multipliers_json', '{}', NULL, '2026-06-10 11:18:43'),
(147, 'car_rentals_deposit_type_multipliers_json', '{}', NULL, '2026-06-10 11:18:43'),
(148, 'car_rentals_price_lock_expired_message', 'Price lock expired or quote changed. We refreshed your total. Please review and try again.', NULL, '2026-06-10 11:18:43'),
(149, 'payment_stripe_sort_order', '0', NULL, '2026-06-10 11:18:43'),
(150, 'payment_paypal_sort_order', '1', NULL, '2026-06-10 11:18:43'),
(151, 'payment_razorpay_sort_order', '2', NULL, '2026-06-10 11:18:43'),
(152, 'payment_paystack_sort_order', '3', NULL, '2026-06-10 11:18:43'),
(153, 'payment_sslcommerz_sort_order', '4', NULL, '2026-06-10 11:18:43'),
(154, 'payment_cod_sort_order', '5', NULL, '2026-06-10 11:18:43'),
(155, 'payment_bank_transfer_sort_order', '6', NULL, '2026-06-10 11:18:43'),
(156, 'payment_stripe_name', 'Pay online via Stripe', NULL, '2026-06-10 11:18:43'),
(157, 'payment_stripe_description', 'Payment with Stripe', NULL, '2026-06-10 11:18:43'),
(158, 'payment_stripe_logo', 'icon.png', NULL, '2026-06-10 11:18:43'),
(159, 'payment_stripe_fee', '0', NULL, '2026-06-10 11:18:43'),
(160, 'payment_stripe_fee_type', 'fixed', NULL, '2026-06-10 11:18:43'),
(161, 'payment_stripe_client_id', 'pk_test_51TJqDQPJeZhC0PUZV6r1Ib0oC37bANkgsOt0hOgEejV57QvpoUmZrE8qb6hLpVy7lpQH2zqVnyVO5mejcVG2Sf3B00ZrzLQnrs', NULL, '2026-06-10 11:18:43'),
(162, 'payment_stripe_secret', 'sk_test_51TJqDQPJeZhC0PUZp2u5SznISvuwuHpnszrEuBImw6e3RacAqcvhqrlUDA4vyJoj1vUsAS15JX5XUptJZo26SNGW00eiSIGkW7', NULL, '2026-06-10 11:18:43'),
(163, 'payment_stripe_webhook_secret', '', NULL, '2026-06-10 11:18:43'),
(164, 'payment_stripe_available_countries_checkall', '1', NULL, '2026-06-10 11:18:43'),
(165, 'payment_stripe_available_countries', '[\"AF\",\"AX\",\"AL\",\"DZ\",\"AS\",\"AD\",\"AO\",\"AI\",\"AQ\",\"AG\",\"AR\",\"AM\",\"AW\",\"AU\",\"AT\",\"AZ\",\"BS\",\"BH\",\"BD\",\"BB\",\"BY\",\"BE\",\"PW\",\"BZ\",\"BJ\",\"BM\",\"BT\",\"BO\",\"BQ\",\"BA\",\"BW\",\"BV\",\"BR\",\"IO\",\"BN\",\"BG\",\"BF\",\"BI\",\"KH\",\"CM\",\"CA\",\"CV\",\"KY\",\"CF\",\"TD\",\"CL\",\"CN\",\"CX\",\"CC\",\"CO\",\"KM\",\"CG\",\"CD\",\"CK\",\"CR\",\"HR\",\"CU\",\"CW\",\"CY\",\"CZ\",\"DK\",\"DJ\",\"DM\",\"DO\",\"EC\",\"EG\",\"SV\",\"GQ\",\"ER\",\"EE\",\"ET\",\"FK\",\"FO\",\"FJ\",\"FI\",\"FR\",\"GF\",\"PF\",\"TF\",\"GA\",\"GM\",\"GE\",\"DE\",\"GH\",\"GI\",\"GR\",\"GL\",\"GD\",\"GP\",\"GU\",\"GT\",\"GG\",\"GN\",\"GW\",\"GY\",\"HT\",\"HM\",\"HN\",\"HK\",\"HU\",\"IS\",\"IN\",\"ID\",\"IR\",\"IQ\",\"IE\",\"IM\",\"IL\",\"IT\",\"CI\",\"JM\",\"JP\",\"JE\",\"JO\",\"KZ\",\"KE\",\"KI\",\"KW\",\"XK\",\"KG\",\"LA\",\"LV\",\"LB\",\"LS\",\"LR\",\"LY\",\"LI\",\"LT\",\"LU\",\"MO\",\"MK\",\"MG\",\"MW\",\"MY\",\"MV\",\"ML\",\"MT\",\"MH\",\"MQ\",\"MR\",\"MU\",\"YT\",\"MX\",\"FM\",\"MD\",\"MC\",\"MN\",\"ME\",\"MS\",\"MA\",\"MZ\",\"MM\",\"NA\",\"NR\",\"NP\",\"NL\",\"NC\",\"NZ\",\"NI\",\"NE\",\"NG\",\"NU\",\"NF\",\"MP\",\"KP\",\"NO\",\"OM\",\"PK\",\"PS\",\"PA\",\"PG\",\"PY\",\"PE\",\"PH\",\"PN\",\"PL\",\"PT\",\"PR\",\"QA\",\"RE\",\"RO\",\"RU\",\"RW\",\"BL\",\"SH\",\"KN\",\"LC\",\"MF\",\"SX\",\"PM\",\"VC\",\"SM\",\"ST\",\"SA\",\"SN\",\"RS\",\"SC\",\"SL\",\"SG\",\"SK\",\"SI\",\"SB\",\"SO\",\"ZA\",\"GS\",\"KR\",\"SS\",\"ES\",\"LK\",\"SD\",\"SR\",\"SJ\",\"SZ\",\"SE\",\"CH\",\"SY\",\"TW\",\"TJ\",\"TZ\",\"TH\",\"TL\",\"TG\",\"TK\",\"TO\",\"TT\",\"TN\",\"TR\",\"TM\",\"TC\",\"TV\",\"UG\",\"UA\",\"AE\",\"GB\",\"US\",\"UM\",\"UY\",\"UZ\",\"VU\",\"VA\",\"VE\",\"VN\",\"VG\",\"VI\",\"WF\",\"EH\",\"WS\",\"YE\",\"ZM\",\"ZW\"]', NULL, '2026-06-10 11:18:43'),
(166, 'payment_stripe_status', '1', NULL, '2026-06-10 11:18:43'),
(167, 'car_rentals_deposit_risk_kyc_pending_multiplier', '1', NULL, '2026-06-10 11:18:43'),
(168, 'car_rentals_kyc_face_match_threshold', '0', NULL, '2026-06-10 11:18:43'),
(169, 'car_rentals_kyc_ocr_confidence_threshold', '0', NULL, '2026-06-10 11:18:43'),
(170, 'car_rentals_kyc_manual_review_risk_threshold', '0', NULL, '2026-06-10 11:18:43'),
(171, 'car_rentals_kyc_provider', 'stripe', NULL, '2026-06-10 11:18:43'),
(172, 'car_rentals_kyc_stripe_enabled', '1', NULL, '2026-06-10 11:18:43'),
(173, 'car_rentals_kyc_stripe_secret_key', 'sk_test_51TJqDQPJeZhC0PUZp2u5SznISvuwuHpnszrEuBImw6e3RacAqcvhqrlUDA4vyJoj1vUsAS15JX5XUptJZo26SNGW00eiSIGkW7', NULL, '2026-06-10 11:18:43'),
(174, 'car_rentals_kyc_stripe_publishable_key', 'pk_test_51TJqDQPJeZhC0PUZV6r1Ib0oC37bANkgsOt0hOgEejV57QvpoUmZrE8qb6hLpVy7lpQH2zqVnyVO5mejcVG2Sf3B00ZrzLQnrs', NULL, '2026-06-10 11:18:43'),
(175, 'car_rentals_kyc_stripe_webhook_secret', 'whsec_EWpxmPVjFk0LW3HXcsbJkgyqdEOjFtWA', NULL, '2026-06-10 11:18:43'),
(176, 'car_rentals_fallback_to_mock_on_provider_error', '1', NULL, '2026-06-10 11:18:43'),
(177, 'car_rentals_kyc_allow_non_biometric_fallback', '0', NULL, '2026-06-10 11:18:43'),
(178, 'car_rentals_kyc_payload_retention_days', '90', NULL, '2026-06-10 11:18:43'),
(179, 'car_rentals_eligibility_restricted_category_ids', '[\"4\",\"3\",\"2\",\"5\",\"1\"]', NULL, '2026-06-10 11:18:43'),
(180, 'theme-mxcar-theme_breadcrumb_enabled', '0', NULL, '2026-06-10 11:18:43'),
(181, 'theme-mxcar-breadcrumb_background_color', 'transparent', NULL, '2026-06-10 11:18:43'),
(182, 'theme-mxcar-breadcrumb_text_color', 'transparent', NULL, '2026-06-10 11:18:43'),
(183, 'theme-mxcar-breadcrumb_height', '', NULL, '2026-06-10 11:18:43'),
(184, 'theme-mxcar-breadcrumb_simple', '0', NULL, '2026-06-10 11:18:43'),
(185, 'car_rentals_tax_enabled', '1', NULL, '2026-06-10 11:18:43'),
(186, 'car_rentals_tax_active_ids', '[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\"]', NULL, '2026-06-10 11:18:43'),
(187, 'theme-mxcar-blog_post_list_meta_display', '[\"published_date\",\"reading_time\",\"views_count\",\"author\"]', NULL, '2026-06-10 11:18:43'),
(188, 'theme-mxcar-blog_post_detail_meta_display', '[\"published_date\",\"reading_time\",\"views_count\",\"author\"]', NULL, '2026-06-10 11:18:43'),
(189, 'theme-mxcar-number_of_posts_in_a_category', '12', NULL, '2026-06-10 11:18:43'),
(190, 'theme-mxcar-number_of_posts_in_a_tag', '12', NULL, '2026-06-10 11:18:43'),
(191, 'is_completed_get_started', '1', NULL, '2026-06-10 11:18:43'),
(192, 'admin_logo_dark', 'dark.png', NULL, '2026-06-10 11:18:43'),
(193, 'theme-mxcar-car_location_filter_by', 'state', NULL, '2026-06-10 11:18:43'),
(194, 'theme-mxcar-car_location_is_display_country', '1', NULL, '2026-06-10 11:18:43'),
(195, 'theme-mxcar-car_detail_style', 'style-1', NULL, '2026-06-10 11:18:43'),
(196, 'theme-mxcar-logo_vendor_dashboard', NULL, NULL, '2026-06-10 11:18:43'),
(197, 'google_tag_manager_type', 'gtm', NULL, '2026-06-10 11:18:43'),
(198, 'custom_tracking_header_js', '', NULL, '2026-06-10 11:18:43'),
(199, 'custom_tracking_body_html', '', NULL, '2026-06-10 11:18:43'),
(200, 'gtm_debug_mode', '0', NULL, '2026-06-10 11:18:43'),
(201, 'gtm_container_id', 'GTM-N7MK3KH2', NULL, '2026-06-10 11:18:43'),
(202, 'google_tag_manager_id', '', NULL, '2026-06-10 11:18:43'),
(203, 'theme-mxcar-cookie_consent_enable', 'yes', NULL, '2026-06-10 11:18:43'),
(204, 'theme-mxcar-cookie_consent_style', 'full-width', NULL, '2026-06-10 11:18:43'),
(205, 'theme-mxcar-cookie_consent_message', 'Your experience on this site will be improved by allowing cookies.', NULL, '2026-06-10 11:18:43'),
(206, 'theme-mxcar-cookie_consent_button_text', 'Accept cookies', NULL, '2026-06-10 11:18:43'),
(207, 'theme-mxcar-cookie_consent_learn_more_url', '', NULL, '2026-06-10 11:18:43'),
(208, 'theme-mxcar-cookie_consent_learn_more_text', '', NULL, '2026-06-10 11:18:43'),
(209, 'theme-mxcar-cookie_consent_background_color', '#000', NULL, '2026-06-10 11:18:43'),
(210, 'theme-mxcar-cookie_consent_text_color', '#fff', NULL, '2026-06-10 11:18:43'),
(211, 'theme-mxcar-cookie_consent_max_width', '1170', NULL, '2026-06-10 11:18:43'),
(212, 'theme-mxcar-cookie_consent_show_reject_button', 'no', NULL, '2026-06-10 11:18:43'),
(213, 'theme-mxcar-cookie_consent_show_customize_button', 'yes', NULL, '2026-06-10 11:18:43'),
(214, 'theme-mxcar-cookie_consent_show_for_admin', 'yes', NULL, '2026-06-10 11:18:43'),
(215, 'theme-mxcar-cookie_consent_show_for_vendor', 'yes', NULL, '2026-06-10 11:18:43'),
(216, 'theme-mxcar-cookie_consent_show_for_user', 'yes', NULL, '2026-06-10 11:18:43'),
(217, 'gtm_consent_mode_enabled', '0', NULL, '2026-06-10 11:18:43'),
(218, 'auto_clear_cache_enable', '0', NULL, '2026-06-10 11:18:43'),
(219, 'cache_size_warning_enabled', '0', NULL, '2026-06-10 11:18:43'),
(220, 'cache_size_threshold_mb', '500', NULL, '2026-06-10 11:18:43'),
(222, 'consent_form_enabled', '0', NULL, '2026-06-10 11:18:43'),
(223, 'car_rentals_enabled_car_filter', '1', NULL, '2026-06-10 11:18:43'),
(224, 'car_rentals_filter_cars_by', '[\"vehicle_condition\",\"locations\",\"prices\",\"horsepower\",\"rental_types\",\"year\",\"mileage\",\"makes\",\"model_names\",\"categories\",\"colors\",\"seats\",\"doors\",\"types\",\"transmissions\",\"fuels\",\"amenities\",\"review_scores\",\"addresses\"]', NULL, '2026-06-10 11:18:43'),
(225, 'car_rentals_enable_auto_detect_visitor_currency', '1', NULL, '2026-06-10 11:18:43'),
(226, 'car_rentals_add_space_between_price_and_currency', '0', NULL, '2026-06-10 11:18:43'),
(227, 'car_rentals_thousands_separator', ',', NULL, '2026-06-10 11:18:43'),
(228, 'car_rentals_decimal_separator', '.', NULL, '2026-06-10 11:18:43'),
(229, 'car_rentals_exchange_rate_api_provider', 'none', NULL, '2026-06-10 11:18:43'),
(230, 'car_rentals_api_layer_api_key', '', NULL, '2026-06-10 11:18:43'),
(231, 'car_rentals_open_exchange_app_id', '', NULL, '2026-06-10 11:18:43'),
(232, 'car_rentals_use_exchange_rate_from_api', '0', NULL, '2026-06-10 11:18:43'),
(233, 'car_rentals_currencies_is_default', '0', NULL, '2026-06-10 11:18:43'),
(234, 'theme-mxcar-auth_left_overlay_background_image', 'bronco3-1.jpg', NULL, '2026-06-10 11:18:43'),
(235, 'payment_paypal_name', 'Pay online via Paypal', NULL, '2026-06-10 11:18:43'),
(236, 'payment_paypal_description', 'You will be redirected to PayPal to complete the payment.', NULL, '2026-06-10 11:18:43'),
(237, 'payment_paypal_logo', '', NULL, '2026-06-10 11:18:43'),
(238, 'payment_paypal_fee', '0', NULL, '2026-06-10 11:18:43'),
(239, 'payment_paypal_fee_type', 'fixed', NULL, '2026-06-10 11:18:43'),
(240, 'payment_paypal_client_id', 'sddsfsdfsdfsdfsdfsdfsdfsdf', NULL, '2026-06-10 11:18:43'),
(241, 'payment_paypal_client_secret', 'sdfsdfsdfsdfsdfsdfsdfsdf', NULL, '2026-06-10 11:18:43'),
(242, 'payment_paypal_mode', '1', NULL, '2026-06-10 11:18:43'),
(243, 'payment_paypal_available_countries_checkall', '1', NULL, '2026-06-10 11:18:43'),
(244, 'payment_paypal_available_countries', '[\"AF\",\"AX\",\"AL\",\"DZ\",\"AS\",\"AD\",\"AO\",\"AI\",\"AQ\",\"AG\",\"AR\",\"AM\",\"AW\",\"AU\",\"AT\",\"AZ\",\"BS\",\"BH\",\"BD\",\"BB\",\"BY\",\"BE\",\"PW\",\"BZ\",\"BJ\",\"BM\",\"BT\",\"BO\",\"BQ\",\"BA\",\"BW\",\"BV\",\"BR\",\"IO\",\"BN\",\"BG\",\"BF\",\"BI\",\"KH\",\"CM\",\"CA\",\"CV\",\"KY\",\"CF\",\"TD\",\"CL\",\"CN\",\"CX\",\"CC\",\"CO\",\"KM\",\"CG\",\"CD\",\"CK\",\"CR\",\"HR\",\"CU\",\"CW\",\"CY\",\"CZ\",\"DK\",\"DJ\",\"DM\",\"DO\",\"EC\",\"EG\",\"SV\",\"GQ\",\"ER\",\"EE\",\"ET\",\"FK\",\"FO\",\"FJ\",\"FI\",\"FR\",\"GF\",\"PF\",\"TF\",\"GA\",\"GM\",\"GE\",\"DE\",\"GH\",\"GI\",\"GR\",\"GL\",\"GD\",\"GP\",\"GU\",\"GT\",\"GG\",\"GN\",\"GW\",\"GY\",\"HT\",\"HM\",\"HN\",\"HK\",\"HU\",\"IS\",\"IN\",\"ID\",\"IR\",\"IQ\",\"IE\",\"IM\",\"IL\",\"IT\",\"CI\",\"JM\",\"JP\",\"JE\",\"JO\",\"KZ\",\"KE\",\"KI\",\"KW\",\"XK\",\"KG\",\"LA\",\"LV\",\"LB\",\"LS\",\"LR\",\"LY\",\"LI\",\"LT\",\"LU\",\"MO\",\"MK\",\"MG\",\"MW\",\"MY\",\"MV\",\"ML\",\"MT\",\"MH\",\"MQ\",\"MR\",\"MU\",\"YT\",\"MX\",\"FM\",\"MD\",\"MC\",\"MN\",\"ME\",\"MS\",\"MA\",\"MZ\",\"MM\",\"NA\",\"NR\",\"NP\",\"NL\",\"NC\",\"NZ\",\"NI\",\"NE\",\"NG\",\"NU\",\"NF\",\"MP\",\"KP\",\"NO\",\"OM\",\"PK\",\"PS\",\"PA\",\"PG\",\"PY\",\"PE\",\"PH\",\"PN\",\"PL\",\"PT\",\"PR\",\"QA\",\"RE\",\"RO\",\"RU\",\"RW\",\"BL\",\"SH\",\"KN\",\"LC\",\"MF\",\"SX\",\"PM\",\"VC\",\"SM\",\"ST\",\"SA\",\"SN\",\"RS\",\"SC\",\"SL\",\"SG\",\"SK\",\"SI\",\"SB\",\"SO\",\"ZA\",\"GS\",\"KR\",\"SS\",\"ES\",\"LK\",\"SD\",\"SR\",\"SJ\",\"SZ\",\"SE\",\"CH\",\"SY\",\"TW\",\"TJ\",\"TZ\",\"TH\",\"TL\",\"TG\",\"TK\",\"TO\",\"TT\",\"TN\",\"TR\",\"TM\",\"TC\",\"TV\",\"UG\",\"UA\",\"AE\",\"GB\",\"US\",\"UM\",\"UY\",\"UZ\",\"VU\",\"VA\",\"VE\",\"VN\",\"VG\",\"VI\",\"WF\",\"EH\",\"WS\",\"YE\",\"ZM\",\"ZW\"]', NULL, '2026-06-10 11:18:43'),
(245, 'payment_paypal_status', '1', NULL, '2026-06-10 11:18:43'),
(246, 'payment_paypal_enable_auto_payouts', '1', NULL, '2026-06-10 11:18:43'),
(247, 'car_rentals_enable_post_approval', '1', NULL, '2026-06-10 11:18:43'),
(248, 'car_rentals_enabled_car_rental', '1', NULL, '2026-06-10 11:18:43'),
(249, 'car_rentals_enabled_car_sale', '1', NULL, '2026-06-10 11:18:43'),
(250, 'car_rentals_booking_number_prefix', '', NULL, '2026-06-10 11:18:43'),
(251, 'car_rentals_booking_number_suffix', '', NULL, '2026-06-10 11:18:43'),
(252, 'car_rentals_rental_commission_fee', '0', NULL, '2026-06-10 11:18:43'),
(253, 'car_rentals_commission_fee_type', 'percentage', NULL, '2026-06-10 11:18:43'),
(254, 'car_rentals_enable_commission_fee_for_each_category', '0', NULL, '2026-06-10 11:18:43'),
(255, 'car_rentals_distance_unit', 'miles', NULL, '2026-06-10 11:18:43'),
(256, 'car_rentals_hide_owner_info', '0', NULL, '2026-06-10 11:18:43'),
(257, 'car_rentals_hide_owner_phone', '0', NULL, '2026-06-10 11:18:43'),
(258, 'car_rentals_hide_owner_email', '0', NULL, '2026-06-10 11:18:43'),
(259, 'car_rentals_hide_owner_whatsapp', '0', NULL, '2026-06-10 11:18:43'),
(260, 'car_rentals_enable_off_site_booking', '1', NULL, '2026-06-10 11:18:43'),
(261, 'car_rentals_enable_message_form', '1', NULL, '2026-06-10 11:18:43'),
(262, 'car_rentals_disable_one_way_rental', '0', NULL, '2026-06-10 11:18:43'),
(263, 'car_rentals_enable_car_rentals_module', '1', NULL, '2026-06-10 11:18:43'),
(264, 'car_rentals_enable_consent_form_frontend', '1', NULL, '2026-06-10 11:18:43'),
(265, 'car_rentals_enable_pricing_calendar', '1', NULL, '2026-06-10 11:18:43');

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

--
-- Table structure for table `simple_sliders`
--

CREATE TABLE `simple_sliders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `key` varchar(120) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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 `simple_sliders`
--

INSERT INTO `simple_sliders` (`id`, `name`, `key`, `description`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Home slider', 'home-slider', 'The main slider on homepage', 'published', '2026-03-06 08:24:09', '2026-03-06 08:24:09'),
(2, 'Home slider 02', 'home-slider-02', 'The slider in homepage page 2', 'published', '2026-03-06 08:24:09', '2026-03-06 08:24:09');

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

--
-- Table structure for table `simple_slider_items`
--

CREATE TABLE `simple_slider_items` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `simple_slider_id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) DEFAULT NULL,
  `image` varchar(191) NOT NULL,
  `link` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `order` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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 `simple_slider_items`
--

INSERT INTO `simple_slider_items` (`id`, `simple_slider_id`, `title`, `image`, `link`, `description`, `order`, `status`, `created_at`, `updated_at`) VALUES
(1, 1, 'Find your next vehicle today', 'sliders/banner-1.jpg', '/', 'Browse our diverse inventory and enjoy a seamless buying experience <br> with expert support every step of the way', 0, 'published', '2026-03-06 08:24:09', '2026-03-06 08:24:09'),
(2, 1, 'Discover your next ride today', 'sliders/banner-2.jpg', '/', 'Explore our wide selection and enjoy a smooth purchasing journey, <br> with expert assistance at every turn', 1, 'published', '2026-03-06 08:24:09', '2026-03-06 08:24:09'),
(3, 2, 'CAR REVIEW', 'sliders/img-1-1.jpg', '/', 'The Tucson Plug-in Hybrid is easy to drive and provides a sufficient all-electric range.', 0, 'published', '2026-03-06 08:24:09', '2026-03-06 08:24:09'),
(4, 2, 'CAR REVIEW', 'sliders/img-1.jpg', '/', 'The Tucson Plug-in Hybrid is easy to drive and provides a sufficient all-electric range.', 1, 'published', '2026-03-06 08:24:09', '2026-03-06 08:24:09');

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

--
-- Table structure for table `slugs`
--

CREATE TABLE `slugs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `key` varchar(191) NOT NULL,
  `reference_id` bigint(20) UNSIGNED NOT NULL,
  `reference_type` varchar(191) NOT NULL,
  `prefix` varchar(120) DEFAULT '',
  `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 `slugs`
--

INSERT INTO `slugs` (`id`, `key`, `reference_id`, `reference_type`, `prefix`, `created_at`, `updated_at`) VALUES
(1, 'homepage', 1, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(2, 'blog', 2, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(3, 'contact', 3, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(4, 'services', 4, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(5, 'pricing', 5, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(6, 'about-us', 6, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(7, 'car-list-1', 7, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(8, 'car-list-2', 8, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(9, 'car-list-3', 9, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(10, 'car-list-4', 10, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(11, 'agencies', 11, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(12, 'faqs', 12, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(13, 'brands', 13, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(14, 'car-dealers', 14, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(16, 'copyright-notices', 16, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(17, 'terms-of-use', 17, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(18, 'privacy-notice', 18, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(19, 'lost-found', 19, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(21, 'vehicle-leasing-options', 21, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(22, 'long-term-car-rentals', 22, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(23, 'car-sales-and-trade-ins', 23, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(25, 'rent-to-own-programs', 25, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:10', '2026-03-06 08:22:10'),
(26, 'fleet-management-solutions', 26, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(27, 'affiliates', 27, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(28, 'travel-agents', 28, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(29, 'aarp-members', 29, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(30, 'points-programs', 30, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(31, 'military-veterans', 31, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(32, 'work-with-us', 32, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(33, 'advertise-with-us', 33, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(34, 'forum-support', 34, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(35, 'help-center', 35, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(36, 'live-chat', 36, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(37, 'how-it-works', 37, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(38, 'security', 38, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(39, 'refund-policy', 39, 'Mxcar\\Page\\Models\\Page', '', '2026-03-06 08:22:11', '2026-03-06 08:22:11'),
(40, 'new-cars', 1, 'Mxcar\\Blog\\Models\\Category', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(41, 'car-rentals', 2, 'Mxcar\\Blog\\Models\\Category', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(42, 'electric-vehicles', 3, 'Mxcar\\Blog\\Models\\Category', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(43, 'car-maintenance', 4, 'Mxcar\\Blog\\Models\\Category', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(44, 'road-trips', 5, 'Mxcar\\Blog\\Models\\Category', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(45, 'luxury-cars', 6, 'Mxcar\\Blog\\Models\\Category', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(46, 'family-cars', 7, 'Mxcar\\Blog\\Models\\Category', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(47, 'off-road-vehicles', 8, 'Mxcar\\Blog\\Models\\Category', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(48, 'hybrid-cars', 9, 'Mxcar\\Blog\\Models\\Category', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(49, 'car-innovations', 10, 'Mxcar\\Blog\\Models\\Category', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(50, '2024-cars', 1, 'Mxcar\\Blog\\Models\\Tag', 'tag', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(51, 'car-leasing', 2, 'Mxcar\\Blog\\Models\\Tag', 'tag', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(52, 'self-driving-cars', 3, 'Mxcar\\Blog\\Models\\Tag', 'tag', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(53, 'eco-friendly', 4, 'Mxcar\\Blog\\Models\\Tag', 'tag', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(54, 'car-subscription', 5, 'Mxcar\\Blog\\Models\\Tag', 'tag', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(55, 'car-insurance', 6, 'Mxcar\\Blog\\Models\\Tag', 'tag', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(56, 'used-cars', 7, 'Mxcar\\Blog\\Models\\Tag', 'tag', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(57, 'car-detailing', 8, 'Mxcar\\Blog\\Models\\Tag', 'tag', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(58, 'holiday-rentals', 9, 'Mxcar\\Blog\\Models\\Tag', 'tag', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(59, 'cross-country-trips', 10, 'Mxcar\\Blog\\Models\\Tag', 'tag', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(60, 'top-5-new-cars-to-look-out-for-in-2024', 1, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(61, 'how-to-choose-the-best-car-rental-service-for-your-trip', 2, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(62, 'the-evolution-of-electric-vehicles-a-new-era', 3, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(63, 'leasing-vs-buying-a-car-which-is-right-for-you', 4, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(64, 'the-ultimate-road-trip-checklist', 5, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(65, 'the-benefits-of-renting-a-luxury-car-for-special-occasions', 6, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(66, 'tips-for-maintaining-your-car-to-extend-its-lifespan', 7, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(67, 'top-safety-features-to-look-for-in-a-family-car', 8, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(68, 'how-self-driving-cars-are-changing-the-future-of-transportation', 9, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(69, 'the-best-cars-for-off-road-adventures', 10, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(70, 'the-rise-of-car-subscription-services', 11, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(71, 'eco-friendly-driving-tips-to-reduce-your-carbon-footprint', 12, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(72, 'the-future-of-car-sharing-convenience-at-your-fingertips', 13, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(73, 'how-to-get-the-best-deals-on-car-rentals-during-holidays', 14, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(74, 'the-pros-and-cons-of-hybrid-vehicles', 15, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(75, 'how-to-properly-clean-and-detail-your-car', 16, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(76, 'car-innovations-what-to-expect-in-the-next-5-years', 17, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(77, 'the-ultimate-guide-to-buying-a-used-car', 18, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(78, 'how-to-plan-a-cross-country-trip-with-a-rented-car', 19, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(79, 'what-you-need-to-know-about-car-insurance-before-renting', 20, 'Mxcar\\Blog\\Models\\Post', 'news', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(80, 'stunning-electric-cars-of-2024', 1, 'Mxcar\\Gallery\\Models\\Gallery', 'galleries', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(81, 'top-luxury-cars-for-special-occasions', 2, 'Mxcar\\Gallery\\Models\\Gallery', 'galleries', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(82, 'family-cars-with-advanced-safety-features', 3, 'Mxcar\\Gallery\\Models\\Gallery', 'galleries', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(83, 'off-road-vehicles-in-action', 4, 'Mxcar\\Gallery\\Models\\Gallery', 'galleries', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(84, 'the-evolution-of-car-design-a-visual-journey', 5, 'Mxcar\\Gallery\\Models\\Gallery', 'galleries', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(85, 'best-road-trip-cars-of-the-year', 6, 'Mxcar\\Gallery\\Models\\Gallery', 'galleries', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(86, 'exclusive-new-car-models-unveiled', 7, 'Mxcar\\Gallery\\Models\\Gallery', 'galleries', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(87, 'iconic-cars-from-around-the-world', 8, 'Mxcar\\Gallery\\Models\\Gallery', 'galleries', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(88, 'the-future-of-electric-and-hybrid-cars', 9, 'Mxcar\\Gallery\\Models\\Gallery', 'galleries', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(89, 'luxury-car-interiors-a-closer-look', 10, 'Mxcar\\Gallery\\Models\\Gallery', 'galleries', '2026-03-06 08:22:22', '2026-03-06 08:22:22'),
(90, 'devon-lane', 1, 'Mxcar\\Team\\Models\\Team', 'teams', '2026-03-06 08:22:24', '2026-03-06 08:22:24'),
(91, 'marvin-mckinney', 2, 'Mxcar\\Team\\Models\\Team', 'teams', '2026-03-06 08:22:25', '2026-03-06 08:22:25'),
(92, 'ronald-richards', 3, 'Mxcar\\Team\\Models\\Team', 'teams', '2026-03-06 08:22:25', '2026-03-06 08:22:25'),
(93, 'cameron-williamson', 4, 'Mxcar\\Team\\Models\\Team', 'teams', '2026-03-06 08:22:25', '2026-03-06 08:22:25'),
(94, 'alicia-sanders', 5, 'Mxcar\\Team\\Models\\Team', 'teams', '2026-03-06 08:22:25', '2026-03-06 08:22:25'),
(95, 'ethan-wright', 6, 'Mxcar\\Team\\Models\\Team', 'teams', '2026-03-06 08:22:25', '2026-03-06 08:22:25'),
(96, 'isabella-johnson', 7, 'Mxcar\\Team\\Models\\Team', 'teams', '2026-03-06 08:22:25', '2026-03-06 08:22:25'),
(97, 'liam-brown', 8, 'Mxcar\\Team\\Models\\Team', 'teams', '2026-03-06 08:22:25', '2026-03-06 08:22:25'),
(98, 'toyota-camry-xle-hybrid-2024', 1, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(99, 'honda-accord-sport-20t-2024', 2, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(100, 'mercedes-benz-c300-4matic-2024', 3, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(101, 'bmw-330i-xdrive-m-sport-2024', 4, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(102, 'lexus-es-350-f-sport-2024', 5, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(103, 'toyota-rav4-prime-xse-awd-2024', 6, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(104, 'honda-cr-v-touring-hybrid-awd-2024', 7, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(105, 'bmw-x5-xdrive40i-m-sport-2024', 8, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(106, 'mercedes-benz-glc-300-4matic-2024', 9, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(107, 'lexus-rx-350-f-sport-handling-awd-2024', 10, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(108, 'audi-a4-premium-plus-quattro-2024', 11, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(109, 'mazda-cx-5-25-turbo-signature-awd-2024', 12, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(110, 'tesla-model-3-long-range-awd-2024', 13, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(111, 'porsche-macan-s-2024', 14, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(112, 'volvo-xc60-b6-ultimate-awd-2024', 15, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(113, 'genesis-g70-33t-sport-prestige-awd-2024', 16, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(114, 'subaru-outback-limited-xt-2024', 17, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(115, 'acura-mdx-type-s-advance-2024', 18, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(116, 'range-rover-evoque-p250-s-2024', 19, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(118, 'nissan-altima-sr-vc-turbo-2024', 21, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(119, 'hyundai-sonata-n-line-2024', 22, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(121, 'volkswagen-atlas-cross-sport-sel-premium-2024', 24, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(125, 'cadillac-xt5-premium-luxury-awd-2024', 28, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(127, 'alfa-romeo-stelvio-veloce-awd-2024', 30, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(128, 'mclaren-720s-spider-2024', 31, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(130, 'ford-mustang-gt-premium-2024', 33, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(131, 'porsche-911-carrera-s-2024', 34, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(132, 'audi-r8-v10-performance-2024', 35, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(133, 'lamborghini-huracan-evo-2024', 36, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(134, 'bmw-m4-competition-xdrive-2024', 37, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(135, 'maserati-ghibli-modena-2024', 38, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(136, 'bentley-continental-gt-v8-2024', 39, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(137, 'rolls-royce-ghost-black-badge-2024', 40, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(138, 'hyundai-tucson-limited-awd-2024', 41, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(139, 'kia-sportage-sx-turbo-awd-2024', 42, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(140, 'volkswagen-tiguan-sel-r-line-2024', 43, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(141, 'toyota-highlander-platinum-awd-2024', 44, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(142, 'honda-pilot-trailsport-awd-2024', 45, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(143, 'mazda-mx-5-miata-grand-touring-2024', 46, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(144, 'nissan-rogue-platinum-awd-2024', 47, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(145, 'mini-cooper-s-hardtop-2024', 48, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(146, 'dodge-challenger-rt-scat-pack-2024', 49, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(147, 'chevrolet-camaro-ss-1le-2024', 50, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(148, 'ferrari-f8-tributo-2024', 51, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(149, 'jaguar-f-pace-svr-2024', 52, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(150, 'land-rover-defender-110-x-2024', 53, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(151, 'chrysler-pacifica-pinnacle-awd-2024', 54, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(152, 'gmc-sierra-1500-denali-2024', 55, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(153, 'mitsubishi-outlander-sel-s-awc-2024', 56, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(155, 'fiat-500x-sport-awd-2024', 58, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(158, 'aston-martin-vantage-f1-edition-2024', 61, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(160, 'mclaren-artura-spider-2024', 63, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(165, 'bmw-x7-xdrive40i-m-sport-2024', 68, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(168, 'genesis-gv70-25t-sport-awd-2024', 71, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(169, 'acura-tlx-type-s-pmc-edition-2024', 72, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(170, 'infiniti-q50-red-sport-400-awd-2024', 73, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(171, 'jaguar-xf-p300-r-dynamic-s-awd-2024', 74, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(172, 'alfa-romeo-giulia-quadrifoglio-2024', 75, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(174, 'range-rover-sport-hse-dynamic-2024', 77, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(176, 'bmw-m5-competition-xdrive-2024', 79, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(178, 'tesla-model-s-plaid-2024', 81, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(179, 'lucid-air-grand-touring-performance-2024', 82, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(180, 'rivian-r1s-adventure-2024', 83, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(183, 'mercedes-maybach-s-580-4matic-2024', 86, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(184, 'bentley-bentayga-s-v8-2024', 87, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(185, 'rolls-royce-cullinan-black-badge-2024', 88, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(186, 'aston-martin-dbx707-2024', 89, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(187, 'maserati-levante-trofeo-2024', 90, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(188, 'ferrari-roma-spider-2024', 91, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(189, 'mclaren-gt-luxe-2024', 92, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(190, 'lamborghini-urus-performante-2024', 93, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(191, 'porsche-taycan-turbo-s-cross-turismo-2024', 94, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(192, 'bmw-xm-label-red-2024', 95, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(193, 'chevrolet-corvette-z06-3lz-2024', 96, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(194, 'ford-gt-heritage-edition-2024', 97, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(195, 'dodge-viper-acr-extreme-2024', 98, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(196, 'nissan-gt-r-nismo-special-edition-2024', 99, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(197, 'toyota-supra-30-premium-2024', 100, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(198, 'driver-rental-service', 1, 'Mxcar\\CarRentals\\Models\\Service', 'services', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(199, 'oil-change-service', 2, 'Mxcar\\CarRentals\\Models\\Service', 'services', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(200, 'car-wash-detailing-package', 3, 'Mxcar\\CarRentals\\Models\\Service', 'services', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(201, 'roadside-assistance', 4, 'Mxcar\\CarRentals\\Models\\Service', 'services', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(202, 'temporary-car-replacement', 5, 'Mxcar\\CarRentals\\Models\\Service', 'services', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(203, 'tire-replacement-balancing', 6, 'Mxcar\\CarRentals\\Models\\Service', 'services', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(204, 'vehicle-inspection-service', 7, 'Mxcar\\CarRentals\\Models\\Service', 'services', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(205, 'car-insurance-assistance', 8, 'Mxcar\\CarRentals\\Models\\Service', 'services', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(206, 'pick-up-drop-off-service', 9, 'Mxcar\\CarRentals\\Models\\Service', 'services', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(207, 'premium-fuel-service', 10, 'Mxcar\\CarRentals\\Models\\Service', 'services', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(208, 'sport', 1, 'Mxcar\\CarRentals\\Models\\CarCategory', 'car-categories', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(209, 'maserati', 2, 'Mxcar\\CarRentals\\Models\\CarCategory', 'car-categories', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(210, 'ferrari', 3, 'Mxcar\\CarRentals\\Models\\CarCategory', 'car-categories', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(211, 'classic', 4, 'Mxcar\\CarRentals\\Models\\CarCategory', 'car-categories', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(212, 'new', 5, 'Mxcar\\CarRentals\\Models\\CarCategory', 'car-categories', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(213, 'lexus', 1, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(214, 'mercedes', 2, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(215, 'bugatti', 3, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(216, 'jaguar', 4, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(217, 'honda', 5, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(218, 'chevrolet', 6, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(219, 'acura', 7, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(220, 'bmw', 8, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(221, 'toyota', 9, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(222, 'ford', 10, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(223, 'nissan', 11, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(224, 'opel', 12, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(225, 'bmw', 13, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(226, 'toyota', 14, 'Mxcar\\CarRentals\\Models\\CarMake', 'makes', '2026-03-06 08:24:10', '2026-03-06 08:24:10'),
(227, 'ford-bronco', 101, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-18 03:59:22', '2026-03-18 03:59:22'),
(228, 'ford-bronco-1', 101, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-03-18 03:59:22', '2026-03-18 03:59:22'),
(229, 'verna', 102, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-04-09 14:29:49', '2026-04-09 14:29:49'),
(230, 'verna-1', 102, 'Mxcar\\CarRentals\\Models\\Car', 'cars', '2026-04-09 14:29:49', '2026-04-09 14:29:49'),
(233, 'car-classified', 40, 'Mxcar\\Page\\Models\\Page', '', '2026-04-30 04:31:09', '2026-04-30 04:31:09');

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

--
-- Table structure for table `slugs_translations`
--

CREATE TABLE `slugs_translations` (
  `lang_code` varchar(20) NOT NULL,
  `slugs_id` bigint(20) UNSIGNED NOT NULL,
  `key` varchar(191) DEFAULT NULL,
  `prefix` varchar(120) DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `social_logins`
--

CREATE TABLE `social_logins` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `provider` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `provider_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `refresh_token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `token_expires_at` timestamp NULL DEFAULT NULL,
  `provider_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

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

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

CREATE TABLE `states` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `slug` varchar(120) DEFAULT NULL,
  `abbreviation` varchar(10) DEFAULT NULL,
  `country_id` bigint(20) UNSIGNED DEFAULT NULL,
  `order` tinyint(4) NOT NULL DEFAULT 0,
  `image` varchar(191) DEFAULT NULL,
  `is_default` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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 `states`
--

INSERT INTO `states` (`id`, `name`, `slug`, `abbreviation`, `country_id`, `order`, `image`, `is_default`, `status`, `created_at`, `updated_at`) VALUES
(1, 'California', 'california', 'CA', 1, 1, NULL, 1, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(2, 'New York', 'new-york', 'NY', 1, 2, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(3, 'Florida', 'florida', 'FL', 1, 3, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(4, 'Texas', 'texas', 'TX', 1, 4, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(5, 'Illinois', 'illinois', 'IL', 1, 5, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(6, 'England', 'england', 'ENG', 2, 6, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(7, 'Scotland', 'scotland', 'SCT', 2, 7, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(8, 'Ontario', 'ontario', 'ON', 3, 8, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(9, 'British Columbia', 'british-columbia', 'BC', 3, 9, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(10, 'Bavaria', 'bavaria', 'BY', 4, 10, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(11, 'Berlin', 'berlin', 'BE', 4, 11, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(12, 'Île-de-France', 'ile-de-france', 'IDF', 5, 12, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(13, 'Provence-Alpes-Côte d\'Azur', 'provence-alpes-cote-dazur', 'PACA', 5, 13, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(14, 'New South Wales', 'new-south-wales', 'NSW', 6, 14, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(15, 'Victoria', 'victoria', 'VIC', 6, 15, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(16, 'Tokyo', 'tokyo', 'TK', 7, 16, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(17, 'Osaka', 'osaka', 'OS', 7, 17, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(18, 'Lazio', 'lazio', 'LAZ', 8, 18, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(19, 'Lombardy', 'lombardy', 'LOM', 8, 19, NULL, 0, 'published', '2026-03-06 08:22:27', '2026-03-06 08:22:27'),
(20, 'Mumbai', 'mumbai', 'MH', 9, 0, 'locations/12930.jpg', 0, 'published', '2026-04-30 18:29:14', '2026-04-30 18:29:14');

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

--
-- Table structure for table `states_translations`
--

CREATE TABLE `states_translations` (
  `lang_code` varchar(20) NOT NULL,
  `states_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) DEFAULT NULL,
  `slug` varchar(120) DEFAULT NULL,
  `abbreviation` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `tags`
--

CREATE TABLE `tags` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `author_id` bigint(20) UNSIGNED DEFAULT NULL,
  `author_type` varchar(191) NOT NULL,
  `description` varchar(400) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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 `tags`
--

INSERT INTO `tags` (`id`, `name`, `author_id`, `author_type`, `description`, `status`, `created_at`, `updated_at`) VALUES
(1, '2024 Cars', 1, 'Mxcar\\ACL\\Models\\User', NULL, 'published', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(2, 'Car Leasing', 1, 'Mxcar\\ACL\\Models\\User', NULL, 'published', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(3, 'Self-Driving Cars', 1, 'Mxcar\\ACL\\Models\\User', NULL, 'published', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(4, 'Eco-Friendly', 1, 'Mxcar\\ACL\\Models\\User', NULL, 'published', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(5, 'Car Subscription', 1, 'Mxcar\\ACL\\Models\\User', NULL, 'published', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(6, 'Car Insurance', 1, 'Mxcar\\ACL\\Models\\User', NULL, 'published', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(7, 'Used Cars', 1, 'Mxcar\\ACL\\Models\\User', NULL, 'published', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(8, 'Car Detailing', 1, 'Mxcar\\ACL\\Models\\User', NULL, 'published', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(9, 'Holiday Rentals', 1, 'Mxcar\\ACL\\Models\\User', NULL, 'published', '2026-03-06 08:22:18', '2026-03-06 08:22:18'),
(10, 'Cross-Country Trips', 1, 'Mxcar\\ACL\\Models\\User', NULL, 'published', '2026-03-06 08:22:18', '2026-03-06 08:22:18');

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

--
-- Table structure for table `tags_translations`
--

CREATE TABLE `tags_translations` (
  `lang_code` varchar(20) NOT NULL,
  `tags_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `teams`
--

CREATE TABLE `teams` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `photo` varchar(191) DEFAULT NULL,
  `title` varchar(191) DEFAULT NULL,
  `location` varchar(191) DEFAULT NULL,
  `socials` varchar(191) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `phone` varchar(15) DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL,
  `website` varchar(191) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `teams`
--

INSERT INTO `teams` (`id`, `name`, `photo`, `title`, `location`, `socials`, `status`, `created_at`, `updated_at`, `content`, `phone`, `email`, `address`, `website`, `description`) VALUES
(1, 'Devon Lane', 'about-us/images-6-520x520.jfif', 'Chief Executive Officer (CEO)', 'India', '{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":null,\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}', 'published', '2026-03-06 08:22:24', '2026-03-19 11:39:30', '<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>', '01123259241', 'devonsoland111@gmail.com', '4855, 24, Ansari Road, Darya Ganj', NULL, 'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),
(2, 'Marvin McKinney', 'about-us/images-3-520x520.jfif', 'Fleet Manager', 'Thailand', '{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":null,\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}', 'published', '2026-03-06 08:22:24', '2026-03-19 11:39:46', '<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>', '6623742088', 'marvinkensy@gmail.com', '849 Sukhapibal 1 Klong Chan Bang Kapi', NULL, 'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),
(3, 'Ronald Richards', 'about-us/images-4-520x520.jfif', 'Customer Service Representative', 'Canada', '{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":null,\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}', 'published', '2026-03-06 08:22:25', '2026-03-19 11:40:00', '<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>', '4165550123', 'ronrichards@marketing.com', '123 Maple Street, Toronto, ON', NULL, 'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),
(4, 'Cameron Williamson', 'about-us/images-5-520x520.jfif', 'Finance &amp; Accounting Officer', 'Germany', '{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":null,\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}', 'published', '2026-03-06 08:22:25', '2026-03-25 10:36:03', '<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>', '49221567890', 'cameronwill@tech.com', '45 Hauptstraße, 50667 Köln', NULL, 'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),
(5, 'Alicia Sanders', 'about-us/download-3-520x520.jfif', 'Marketing Executive', 'Australia', '{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":null,\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}', 'published', '2026-03-06 08:22:25', '2026-03-19 11:40:13', '<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>', '0298765432', 'alicia.hr@company.com', '15 George St, Sydney, NSW', NULL, 'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),
(6, 'Ethan Wright', 'about-us/images-7-520x520.jfif', 'Automotive Technician/Mechanic', 'South Africa', '{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":null,\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}', 'published', '2026-03-06 08:22:25', '2026-03-25 10:36:26', '<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>', '0217896543', 'ethanwright@operations.com', '789 Beach Road, Cape Town', NULL, 'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),
(7, 'Isabella Johnson', 'about-us/download-4-520x520.jfif', 'Operations Coordinator', 'New Zealand', '{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":null,\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}', 'published', '2026-03-06 08:22:25', '2026-03-25 10:36:41', '<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>', '0498761234', 'isabella.prod@company.com', '32 Victoria St, Wellington', NULL, 'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),
(8, 'Liam Brown', 'about-us/images-2-520x520.jfif', 'HR &amp; Administration Officer', 'United Kingdom', '{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":null,\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}', 'published', '2026-03-06 08:22:25', '2026-03-25 10:36:59', '<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>', '02079461234', 'liam.legal@company.co.uk', '10 Downing Street, London', NULL, 'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally');

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

--
-- Table structure for table `teams_translations`
--

CREATE TABLE `teams_translations` (
  `lang_code` varchar(191) NOT NULL,
  `teams_id` int(11) NOT NULL,
  `name` varchar(191) NOT NULL,
  `title` varchar(191) DEFAULT NULL,
  `location` varchar(191) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `testimonials` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(120) NOT NULL,
  `content` text NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `company` varchar(120) DEFAULT NULL,
  `status` varchar(60) NOT NULL DEFAULT 'published',
  `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 `testimonials`
--

INSERT INTO `testimonials` (`id`, `name`, `content`, `image`, `company`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Guy Hawkins', '<p>Exceptional service! MXCar’s attention to detail and reliability have been instrumental in our supply chain success.</p>', 'testimonials/images.jfif', 'CEO, JAKS Shans', 'published', '2026-03-06 08:22:26', '2026-03-20 05:15:25'),
(2, 'Eleanor Pena', '<p>MXCar has consistently met and exceeded our logistics needs. Their dedication to excellence is truly commendable.</p>', 'testimonials/download-1.jfif', 'SEO, ChenTech Solutions', 'published', '2026-03-06 08:22:26', '2026-03-20 05:15:49'),
(3, 'Cody Fisher', '<p>Their team is a valuable asset to our business operations. MXCar’s efficient service has saved us time and money.</p>', 'testimonials/download-2.jfif', 'Developer, Moie Agency', 'published', '2026-03-06 08:22:26', '2026-03-20 05:16:11'),
(4, 'Albert Flores', '<p>MXCar’s attention to detail and professionalism have made them our preferred logistics partner. Highly recommended!</p>', 'testimonials/download.jfif', 'CEO, Bank of America', 'published', '2026-03-06 08:22:26', '2026-03-20 05:16:33');

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

--
-- Table structure for table `testimonials_translations`
--

CREATE TABLE `testimonials_translations` (
  `lang_code` varchar(20) NOT NULL,
  `testimonials_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `company` varchar(120) 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,
  `email` varchar(191) NOT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(120) DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `first_name` varchar(120) DEFAULT NULL,
  `last_name` varchar(120) DEFAULT NULL,
  `username` varchar(60) DEFAULT NULL,
  `avatar_id` bigint(20) UNSIGNED DEFAULT NULL,
  `super_user` tinyint(1) NOT NULL DEFAULT 0,
  `manage_supers` tinyint(1) NOT NULL DEFAULT 0,
  `permissions` text DEFAULT NULL,
  `last_login` timestamp NULL DEFAULT NULL,
  `sessions_invalidated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `users` (`id`, `email`, `phone`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `first_name`, `last_name`, `username`, `avatar_id`, `super_user`, `manage_supers`, `permissions`, `last_login`, `sessions_invalidated_at`) VALUES
(1, 'mastermcx@miracuves.com', NULL, NULL, '$2y$12$jTfRtv7rklqpvg8qvFfKjuPFQKO4HUN6VczGAMuKRYEY0EADQJV7W', 'guFgqhiF8Tpxubm13pkW3BSLkBenvgJ8bkRWEvoHqypE8b44hd3h37j2UWCf', '2026-03-06 08:22:11', '2026-06-11 09:05:09', 'Master', 'Admin', 'mastermcx', 616, 1, 1, NULL, '2026-06-11 09:05:09', NULL),
(2, 'admin@demo.com', NULL, NULL, '$2y$12$j4RGMHYCtbtYuzvDmZJ0p.iJYUV4iyas2lHmkBH/lurDrQYre7xAq', 'B8cCGshicgdKYuSxrdT9TufK9I88yJJMzMovObgawiyCVjlM3n78u4lUgt00', '2026-06-10 17:55:50', '2026-06-11 09:05:59', 'Admin', 'Demo', 'admin', NULL, 0, 0, '{\"announcements.index\":true,\"announcements.create\":true,\"media.index\":true,\"files.index\":true,\"files.create\":true,\"files.trash\":true,\"folders.index\":true,\"folders.create\":true,\"folders.trash\":true,\"pages.index\":true,\"plugins.blog\":true,\"posts.index\":true,\"posts.create\":true,\"categories.index\":true,\"categories.create\":true,\"tags.index\":true,\"tags.create\":true,\"blog.reports\":true,\"contacts.index\":true,\"contacts.edit\":true,\"galleries.index\":true,\"car-rentals.car-makes.index\":true,\"car-rentals.car-makes.create\":true,\"car-rentals.car-types.index\":true,\"car-rentals.car-types.create\":true,\"car-rentals.car-transmissions.index\":true,\"car-rentals.car-transmissions.create\":true,\"car-rentals.car-fuels.index\":true,\"car-rentals.car-fuels.create\":true,\"car-rentals.car-colors.index\":true,\"car-rentals.car-colors.create\":true,\"car-rentals.car-maintenance-histories.index\":true,\"car-rentals.car-maintenance-histories.create\":true,\"car-rentals.car-tags.index\":true,\"car-rentals.car-tags.create\":true,\"car-rentals.car-categories.index\":true,\"car-rentals.car-categories.create\":true,\"car-rentals.car-amenities.index\":true,\"car-rentals.car-amenities.create\":true,\"car-rentals.cars.index\":true,\"car-rentals.cars.create\":true,\"car-rentals.customers.index\":true,\"car-rentals.customers.create\":true,\"car-rentals.bookings.index\":true,\"car-rentals.bookings.create\":true,\"car-rentals.bookings.disputes.view\":true,\"car-rentals.bookings.claims.index\":true,\"car-rentals.bookings.claims.assign\":true,\"car-rentals.bookings.claims.resolve\":true,\"car-rentals.bookings.claims.financial\":true,\"car-rentals.invoices.index\":true,\"car-rentals.invoices.create\":true,\"car-rentals.reviews.index\":true,\"car-rentals.coupons.index\":true,\"car-rentals.coupons.create\":true,\"car-rentals.taxes.index\":true,\"car-rentals.taxes.create\":true,\"car-rentals.services.index\":true,\"car-rentals.services.create\":true,\"car-rentals.booking.reports.index\":true,\"car-rentals.booking.calendar.index\":true,\"car-rentals.message.index\":true,\"car-rentals.message.edit\":true,\"faq.index\":true,\"faq.create\":true,\"faq_category.index\":true,\"faq_category.create\":true,\"fob-comment.index\":true,\"fob-comment.comments.index\":true,\"fob-comment.comments.reply\":true,\"plugin.location\":true,\"country.index\":true,\"country.create\":true,\"state.index\":true,\"state.create\":true,\"city.index\":true,\"city.create\":true,\"newsletter.index\":true,\"payment.index\":true,\"payments.logs\":true,\"payments.logs.show\":true,\"simple-slider.index\":true,\"simple-slider.create\":true,\"simple-slider-item.index\":true,\"simple-slider-item.create\":true,\"analytics.general\":true,\"analytics.page\":true,\"analytics.browser\":true,\"analytics.referrer\":true,\"audit-log.index\":true,\"testimonial.index\":true,\"testimonial.create\":true,\"superuser\":null,\"manage_supers\":null}', '2026-06-11 09:05:59', NULL);

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

--
-- Table structure for table `user_meta`
--

CREATE TABLE `user_meta` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `key` varchar(120) DEFAULT NULL,
  `value` text DEFAULT NULL,
  `user_id` bigint(20) 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 `user_meta`
--

INSERT INTO `user_meta` (`id`, `key`, `value`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'theme_mode', 'light', 1, '2026-03-18 10:05:06', '2026-06-10 06:33:49'),
(2, 'minimal_sidebar', 'no', 1, '2026-03-20 03:48:18', '2026-04-01 11:14:57');

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

--
-- Table structure for table `user_settings`
--

CREATE TABLE `user_settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

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

--
-- Table structure for table `whatsapp_configs`
--

CREATE TABLE `whatsapp_configs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `api_version` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'v18.0',
  `phone_number_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `webhook_verify_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `api_access_token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `business_account_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

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

--
-- Table structure for table `whatsapp_message_templates`
--

CREATE TABLE `whatsapp_message_templates` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `event_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `label` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `template_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `placeholders` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

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

--
-- Table structure for table `whatsapp_sent_messages`
--

CREATE TABLE `whatsapp_sent_messages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `booking_id` bigint(20) UNSIGNED DEFAULT NULL,
  `claim_id` bigint(20) UNSIGNED DEFAULT NULL,
  `phone_number` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `event_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `template_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `provider_message_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_response` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `error_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sent_at` datetime DEFAULT NULL,
  `status_updated_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

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

--
-- Table structure for table `whatsapp_webhook_logs`
--

CREATE TABLE `whatsapp_webhook_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `phone_number` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sender_phone` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `message_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received',
  `raw_payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `error_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `linked_booking_id` bigint(20) UNSIGNED DEFAULT NULL,
  `linked_claim_id` bigint(20) UNSIGNED DEFAULT NULL,
  `linked_customer_id` bigint(20) UNSIGNED DEFAULT NULL,
  `classification_result` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

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

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

CREATE TABLE `widgets` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `widget_id` varchar(120) NOT NULL,
  `sidebar_id` varchar(120) NOT NULL,
  `theme` varchar(120) NOT NULL,
  `position` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
  `data` 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 `widgets`
--

INSERT INTO `widgets` (`id`, `widget_id`, `sidebar_id`, `theme`, `position`, `data`, `created_at`, `updated_at`) VALUES
(9, 'ContactInformationWidget', 'header_top_sidebar', 'mxcar', 1, '{\"id\":\"ContactInformationWidget\",\"quantity\":2,\"title_1\":\"+123 9898 500\",\"icon_1\":\"ti ti-phone-call\",\"url_1\":\"tel:123 9898 500\",\"title_2\":\"biz@miracuves.com\",\"icon_2\":\"ti ti-mail\",\"url_2\":\"mailto:biz@miracuves.com\"}', '2026-03-06 08:24:08', '2026-03-06 08:24:08'),
(10, 'BlogSearchWidget', 'blog_sidebar', 'mxcar', 1, '{\"id\":\"BlogSearchWidget\"}', '2026-03-06 08:24:08', '2026-03-06 08:24:08'),
(11, 'BlogPostsWidget', 'blog_sidebar', 'mxcar', 2, '{\"id\":\"BlogPostsWidget\",\"title\":\"Latest Posts\",\"category_ids\":[1,2,3,4,5],\"limit\":5}', '2026-03-06 08:24:08', '2026-03-06 08:24:08'),
(12, 'GalleriesWidget', 'blog_sidebar', 'mxcar', 3, '{\"id\":\"GalleriesWidget\",\"title\":\"Instagram Posts\",\"limit\":9}', '2026-03-06 08:24:08', '2026-03-06 08:24:08'),
(14, 'BlogPostsWidget', 'off_canvas_sidebar', 'mxcar', 1, '{\"id\":\"BlogPostsWidget\",\"title\":\"Latest Posts\",\"category_ids\":[1,2,3,4,5],\"limit\":5}', '2026-03-06 08:24:08', '2026-03-06 08:24:08'),
(15, 'SiteInformationWidget', 'off_canvas_sidebar', 'mxcar', 2, '{\"id\":\"SiteInformationWidget\",\"logo\":\"icons\\/contact.png\",\"quantity\":4,\"icon_1\":\"ti ti-map-pin\",\"description_1\":\"2356 Oakwood Drive, Suite 18, San Francisco, California 94111, US\",\"icon_2\":\"ti ti-clock-hour-3\",\"description_2\":\"Hours: 8:00 - 17:00, Mon - Sat\",\"icon_3\":\"ti ti-mail\",\"description_3\":\"biz@miracuves.com\"}', '2026-03-06 08:24:08', '2026-03-06 08:24:08'),
(92, 'SiteInformationWidget', 'footer_sidebar', 'mxcar', 0, '{\"id\":\"SiteInformationWidget\",\"logo\":\"dark.png\",\"quantity\":\"4\",\"title_1\":\"\",\"description_1\":\"2356 Oakwood Drive, Suite 18, San Francisco, California 94111, US\",\"icon_1\":\"ti ti-map-pin\",\"icon_image_1\":\"\",\"title_2\":\"\",\"description_2\":\"Hours: 8:00 - 17:00, Mon - Sat\",\"icon_2\":\"ti ti-clock-hour-3\",\"icon_image_2\":\"\",\"title_3\":\"\",\"description_3\":\"biz@miracuves.com\",\"icon_3\":\"ti ti-mail\",\"icon_image_3\":\"\",\"title_4\":\"Need help? Call us\",\"description_4\":\"<a href=\\\"tel:+1 222-555-33-99\\\">+1 222-555-33-99<\\/a>\",\"icon_4\":\"ti ti-phone\",\"icon_image_4\":\"\",\"enable_caching\":\"yes\"}', '2026-04-30 09:23:17', '2026-04-30 09:23:17'),
(93, 'Mxcar\\Widget\\Widgets\\CoreSimpleMenu', 'footer_sidebar', 'mxcar', 1, '{\"id\":\"Mxcar\\\\Widget\\\\Widgets\\\\CoreSimpleMenu\",\"name\":\"Company\",\"items\":[[{\"key\":\"label\",\"value\":\"About Us\"},{\"key\":\"url\",\"value\":\"\\/about-us\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],[{\"key\":\"label\",\"value\":\"Agencies\"},{\"key\":\"url\",\"value\":\"\\/agencies\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],[{\"key\":\"label\",\"value\":\"Copyright Notices\"},{\"key\":\"url\",\"value\":\"\\/copyright-notices\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],[{\"key\":\"label\",\"value\":\"Terms of Use\"},{\"key\":\"url\",\"value\":\"\\/terms-of-use\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],[{\"key\":\"label\",\"value\":\"Privacy Notice\"},{\"key\":\"url\",\"value\":\"\\/privacy-notice\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],[{\"key\":\"label\",\"value\":\"Lost & Found\"},{\"key\":\"url\",\"value\":\"\\/lost-found\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}]]}', '2026-04-30 09:23:17', '2026-04-30 09:23:17'),
(94, 'Mxcar\\Widget\\Widgets\\CoreSimpleMenu', 'footer_sidebar', 'mxcar', 2, '{\"id\":\"Mxcar\\\\Widget\\\\Widgets\\\\CoreSimpleMenu\",\"name\":\"Our Partners\",\"items\":{\"0\":[{\"key\":\"label\",\"value\":\"Affiliates\"},{\"key\":\"url\",\"value\":\"\\/affiliates\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],\"1\":[{\"key\":\"label\",\"value\":\"Travel Agents\"},{\"key\":\"url\",\"value\":\"\\/travel-agents\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],\"2\":[{\"key\":\"label\",\"value\":\"AARP Members\"},{\"key\":\"url\",\"value\":\"\\/aarp-members\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],\"4\":[{\"key\":\"label\",\"value\":\"Military & Veterans\"},{\"key\":\"url\",\"value\":\"\\/military-veterans\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],\"5\":[{\"key\":\"label\",\"value\":\"Work with us\"},{\"key\":\"url\",\"value\":\"\\/work-with-us\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],\"6\":[{\"key\":\"label\",\"value\":\"Advertise with us\"},{\"key\":\"url\",\"value\":\"\\/advertise-with-us\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}]}}', '2026-04-30 09:23:17', '2026-04-30 09:23:17'),
(95, 'Mxcar\\Widget\\Widgets\\CoreSimpleMenu', 'footer_sidebar', 'mxcar', 3, '{\"id\":\"Mxcar\\\\Widget\\\\Widgets\\\\CoreSimpleMenu\",\"name\":\"Support\",\"items\":[[{\"key\":\"label\",\"value\":\"Forum support\"},{\"key\":\"url\",\"value\":\"\\/forum-support\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],[{\"key\":\"label\",\"value\":\"Help Center\"},{\"key\":\"url\",\"value\":\"\\/help-center\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],[{\"key\":\"label\",\"value\":\"Live chat\"},{\"key\":\"url\",\"value\":\"\\/live-chat\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],[{\"key\":\"label\",\"value\":\"How it works\"},{\"key\":\"url\",\"value\":\"\\/how-it-works\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],[{\"key\":\"label\",\"value\":\"Security\"},{\"key\":\"url\",\"value\":\"\\/security\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],[{\"key\":\"label\",\"value\":\"Refund Policy\"},{\"key\":\"url\",\"value\":\"\\/refund-policy\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}]]}', '2026-04-30 09:23:17', '2026-04-30 09:23:17'),
(96, 'Mxcar\\Widget\\Widgets\\CoreSimpleMenu', 'footer_sidebar', 'mxcar', 4, '{\"id\":\"Mxcar\\\\Widget\\\\Widgets\\\\CoreSimpleMenu\",\"name\":\"Pages\",\"items\":[[{\"key\":\"label\",\"value\":\"FAQs\"},{\"key\":\"url\",\"value\":\"\\/faqs\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],[{\"key\":\"label\",\"value\":\"Car Dealers\"},{\"key\":\"url\",\"value\":\"\\/car-dealers\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}],[{\"key\":\"label\",\"value\":\"News\"},{\"key\":\"url\",\"value\":\"\\/blog\"},{\"key\":\"attributes\",\"value\":\"\"},{\"key\":\"is_open_new_tab\",\"value\":\"0\"}]]}', '2026-04-30 09:23:17', '2026-04-30 09:23:17'),
(97, 'NewsletterWidget', 'footer_sidebar', 'mxcar', 5, '{\"id\":\"NewsletterWidget\",\"title\":\"\",\"button_label\":\"Subscribe\",\"enable_caching\":\"yes\"}', '2026-04-30 09:23:17', '2026-04-30 09:23:17'),
(98, 'SiteCopyrightWidget', 'footer_sidebar', 'mxcar', 6, '{\"id\":\"SiteCopyrightWidget\",\"enable_caching\":\"yes\"}', '2026-04-30 09:23:17', '2026-04-30 09:23:17'),
(99, 'SocialLinksWidget', 'footer_sidebar', 'mxcar', 7, '{\"id\":\"SocialLinksWidget\",\"title\":\"\",\"enable_caching\":\"yes\"}', '2026-04-30 09:23:17', '2026-04-30 09:23:17');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `activations`
--
ALTER TABLE `activations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `activations_user_id_index` (`user_id`);

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

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

--
-- Indexes for table `announcements_translations`
--
ALTER TABLE `announcements_translations`
  ADD PRIMARY KEY (`lang_code`,`announcements_id`);

--
-- Indexes for table `audit_histories`
--
ALTER TABLE `audit_histories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `audit_histories_user_id_index` (`user_id`),
  ADD KEY `audit_histories_module_index` (`module`);

--
-- Indexes for table `cache`
--
ALTER TABLE `cache`
  ADD PRIMARY KEY (`key`),
  ADD KEY `cache_expiration_index` (`expiration`);

--
-- Indexes for table `cache_locks`
--
ALTER TABLE `cache_locks`
  ADD PRIMARY KEY (`key`),
  ADD KEY `cache_locks_expiration_index` (`expiration`);

--
-- Indexes for table `categories`
--
ALTER TABLE `categories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `categories_parent_id_index` (`parent_id`),
  ADD KEY `categories_status_index` (`status`),
  ADD KEY `categories_created_at_index` (`created_at`);

--
-- Indexes for table `categories_translations`
--
ALTER TABLE `categories_translations`
  ADD PRIMARY KEY (`lang_code`,`categories_id`),
  ADD KEY `idx_categories_trans_categories_id` (`categories_id`),
  ADD KEY `idx_categories_trans_category_lang` (`categories_id`,`lang_code`);

--
-- Indexes for table `chat_conversations`
--
ALTER TABLE `chat_conversations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `chat_conversations_session_id_index` (`session_id`),
  ADD KEY `chat_conversations_user_id_index` (`user_id`),
  ADD KEY `chat_conversations_context_type_index` (`context_type`),
  ADD KEY `chat_conversations_context_type_context_id_index` (`context_type`,`context_id`),
  ADD KEY `chat_conversations_source_index` (`source`);

--
-- Indexes for table `chat_messages`
--
ALTER TABLE `chat_messages`
  ADD PRIMARY KEY (`id`),
  ADD KEY `chat_messages_conversation_id_index` (`conversation_id`),
  ADD KEY `chat_messages_source_index` (`source`),
  ADD KEY `chat_messages_conversation_id_source_index` (`conversation_id`,`source`);

--
-- Indexes for table `chat_settings`
--
ALTER TABLE `chat_settings`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `chat_settings_key_unique` (`key`);

--
-- Indexes for table `cities`
--
ALTER TABLE `cities`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cities_slug_unique` (`slug`),
  ADD KEY `idx_cities_name` (`name`),
  ADD KEY `idx_cities_state_status` (`state_id`,`status`),
  ADD KEY `idx_cities_status` (`status`),
  ADD KEY `idx_cities_state_id` (`state_id`);

--
-- Indexes for table `cities_translations`
--
ALTER TABLE `cities_translations`
  ADD PRIMARY KEY (`lang_code`,`cities_id`),
  ADD KEY `idx_cities_trans_city_lang` (`cities_id`,`lang_code`),
  ADD KEY `idx_cities_trans_name` (`name`),
  ADD KEY `idx_cities_trans_cities_id` (`cities_id`);

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

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

--
-- Indexes for table `contact_custom_fields_translations`
--
ALTER TABLE `contact_custom_fields_translations`
  ADD PRIMARY KEY (`lang_code`,`contact_custom_fields_id`),
  ADD KEY `idx_contact_cf_trans_cf_id` (`contact_custom_fields_id`),
  ADD KEY `idx_contact_cf_trans_cf_lang` (`contact_custom_fields_id`,`lang_code`);

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

--
-- Indexes for table `contact_custom_field_options_translations`
--
ALTER TABLE `contact_custom_field_options_translations`
  ADD PRIMARY KEY (`lang_code`,`contact_custom_field_options_id`),
  ADD KEY `idx_contact_cfo_trans_cfo_id` (`contact_custom_field_options_id`),
  ADD KEY `idx_contact_cfo_trans_cfo_lang` (`contact_custom_field_options_id`,`lang_code`);

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

--
-- Indexes for table `countries`
--
ALTER TABLE `countries`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_countries_name` (`name`),
  ADD KEY `idx_countries_status` (`status`);

--
-- Indexes for table `countries_translations`
--
ALTER TABLE `countries_translations`
  ADD PRIMARY KEY (`lang_code`,`countries_id`),
  ADD KEY `idx_countries_trans_country_lang` (`countries_id`,`lang_code`),
  ADD KEY `idx_countries_trans_name` (`name`),
  ADD KEY `idx_countries_trans_countries_id` (`countries_id`);

--
-- Indexes for table `cr_bookings`
--
ALTER TABLE `cr_bookings`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cr_bookings_booking_number_unique` (`booking_number`),
  ADD UNIQUE KEY `cr_bookings_transaction_id_unique` (`transaction_id`),
  ADD KEY `cr_bookings_guest_protection_plan_id_foreign` (`guest_protection_plan_id`),
  ADD KEY `cr_bookings_host_protection_plan_id_foreign` (`host_protection_plan_id`),
  ADD KEY `cr_bookings_delivery_location_id_index` (`delivery_location_id`);

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

--
-- Indexes for table `cr_booking_claims`
--
ALTER TABLE `cr_booking_claims`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_booking_claims_booking_id_status_index` (`booking_id`,`status`),
  ADD KEY `cr_booking_claims_assignee_id_status_index` (`assignee_id`,`status`),
  ADD KEY `cr_booking_claims_status_priority_idx` (`status`,`priority`),
  ADD KEY `cr_booking_claims_resolution_due_status_idx` (`resolution_due_at`,`status`),
  ADD KEY `cr_booking_claims_escalated_status_idx` (`escalated_at`,`status`);

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

--
-- Indexes for table `cr_booking_support_actions`
--
ALTER TABLE `cr_booking_support_actions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_booking_support_actions_admin_id_foreign` (`admin_id`),
  ADD KEY `cr_booking_support_actions_booking_id_created_at_index` (`booking_id`,`created_at`);

--
-- Indexes for table `cr_cars`
--
ALTER TABLE `cr_cars`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_cars_make_id_index` (`make_id`),
  ADD KEY `cr_cars_status_index` (`status`),
  ADD KEY `cr_cars_vehicle_type_id_index` (`vehicle_type_id`),
  ADD KEY `cr_cars_vin_index` (`vin`),
  ADD KEY `cr_cars_host_protection_plan_id_foreign` (`host_protection_plan_id`),
  ADD KEY `cr_cars_telematics_device_id_index` (`telematics_device_id`);

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

--
-- Indexes for table `cr_cars_categories`
--
ALTER TABLE `cr_cars_categories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_cars_categories_cr_car_category_id_index` (`cr_car_category_id`),
  ADD KEY `cr_cars_categories_cr_car_id_index` (`cr_car_id`);

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

--
-- Indexes for table `cr_cars_translations`
--
ALTER TABLE `cr_cars_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_cars_id`),
  ADD KEY `idx_cr_cars_trans_fk` (`cr_cars_id`),
  ADD KEY `idx_cr_cars_trans_fk_lang` (`cr_cars_id`,`lang_code`);

--
-- Indexes for table `cr_car_amenities`
--
ALTER TABLE `cr_car_amenities`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_car_amenities_status_index` (`status`);

--
-- Indexes for table `cr_car_amenities_translations`
--
ALTER TABLE `cr_car_amenities_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_car_amenities_id`),
  ADD KEY `idx_cr_amenities_trans_fk` (`cr_car_amenities_id`),
  ADD KEY `idx_cr_amenities_trans_fk_lang` (`cr_car_amenities_id`,`lang_code`);

--
-- Indexes for table `cr_car_amenity_categories`
--
ALTER TABLE `cr_car_amenity_categories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_car_amenity_categories_status_index` (`status`);

--
-- Indexes for table `cr_car_amenity_categories_translations`
--
ALTER TABLE `cr_car_amenity_categories_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_car_amenity_categories_id`);

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

--
-- Indexes for table `cr_car_categories_translations`
--
ALTER TABLE `cr_car_categories_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_car_categories_id`),
  ADD KEY `idx_cr_categories_trans_fk` (`cr_car_categories_id`),
  ADD KEY `idx_cr_categories_trans_fk_lang` (`cr_car_categories_id`,`lang_code`);

--
-- Indexes for table `cr_car_colors`
--
ALTER TABLE `cr_car_colors`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_car_colors_status_index` (`status`);

--
-- Indexes for table `cr_car_colors_translations`
--
ALTER TABLE `cr_car_colors_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_car_colors_id`),
  ADD KEY `idx_cr_colors_trans_fk` (`cr_car_colors_id`),
  ADD KEY `idx_cr_colors_trans_fk_lang` (`cr_car_colors_id`,`lang_code`);

--
-- Indexes for table `cr_car_dates`
--
ALTER TABLE `cr_car_dates`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_car_dates_car_id_start_date_index` (`car_id`,`start_date`);

--
-- Indexes for table `cr_car_delivery_locations`
--
ALTER TABLE `cr_car_delivery_locations`
  ADD PRIMARY KEY (`car_id`,`location_id`),
  ADD KEY `cr_car_delivery_locations_car_id_index` (`car_id`),
  ADD KEY `cr_car_delivery_locations_location_id_index` (`location_id`);

--
-- Indexes for table `cr_car_fuels`
--
ALTER TABLE `cr_car_fuels`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_car_fuels_status_index` (`status`);

--
-- Indexes for table `cr_car_fuels_translations`
--
ALTER TABLE `cr_car_fuels_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_car_fuels_id`),
  ADD KEY `idx_cr_fuels_trans_fk` (`cr_car_fuels_id`),
  ADD KEY `idx_cr_fuels_trans_fk_lang` (`cr_car_fuels_id`,`lang_code`);

--
-- Indexes for table `cr_car_maintenance_histories`
--
ALTER TABLE `cr_car_maintenance_histories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_car_maintenance_histories_car_id_index` (`car_id`);

--
-- Indexes for table `cr_car_maintenance_histories_translations`
--
ALTER TABLE `cr_car_maintenance_histories_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_car_maintenance_histories_id`),
  ADD KEY `idx_cr_maint_hist_trans_fk` (`cr_car_maintenance_histories_id`),
  ADD KEY `idx_cr_maint_hist_trans_fk_lang` (`cr_car_maintenance_histories_id`,`lang_code`);

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

--
-- Indexes for table `cr_car_makes_translations`
--
ALTER TABLE `cr_car_makes_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_car_makes_id`),
  ADD KEY `idx_cr_makes_trans_fk` (`cr_car_makes_id`),
  ADD KEY `idx_cr_makes_trans_fk_lang` (`cr_car_makes_id`,`lang_code`);

--
-- Indexes for table `cr_car_pricing_calendar`
--
ALTER TABLE `cr_car_pricing_calendar`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cr_car_pricing_calendar_car_id_date_unique` (`car_id`,`date`),
  ADD KEY `cr_car_pricing_calendar_created_by_foreign` (`created_by`),
  ADD KEY `cr_car_pricing_calendar_car_id_date_index` (`car_id`,`date`),
  ADD KEY `cr_car_pricing_calendar_date_index` (`date`);

--
-- Indexes for table `cr_car_pricing_policies`
--
ALTER TABLE `cr_car_pricing_policies`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cr_car_pricing_policies_car_id_unique` (`car_id`),
  ADD KEY `cr_car_pricing_policies_car_id_active_index` (`car_id`,`active`),
  ADD KEY `cr_cpp_demand_reco_enabled_idx` (`demand_recommendations_enabled`),
  ADD KEY `cr_car_pricing_policies_demand_auto_apply_enabled_car_id_index` (`demand_auto_apply_enabled`,`car_id`),
  ADD KEY `cr_car_pricing_policies_demand_auto_apply_paused_until_index` (`demand_auto_apply_paused_until`);

--
-- Indexes for table `cr_car_reviews`
--
ALTER TABLE `cr_car_reviews`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_car_reviews_status_index` (`status`);

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

--
-- Indexes for table `cr_car_transmissions`
--
ALTER TABLE `cr_car_transmissions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_car_transmissions_status_index` (`status`);

--
-- Indexes for table `cr_car_transmissions_translations`
--
ALTER TABLE `cr_car_transmissions_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_car_transmissions_id`),
  ADD KEY `idx_cr_transmissions_trans_fk` (`cr_car_transmissions_id`),
  ADD KEY `idx_cr_transmissions_trans_fk_lang` (`cr_car_transmissions_id`,`lang_code`);

--
-- Indexes for table `cr_car_trip_discounts`
--
ALTER TABLE `cr_car_trip_discounts`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_car_trip_discounts_car_id_active_index` (`car_id`,`active`),
  ADD KEY `cr_car_trip_discounts_min_days_max_days_index` (`min_days`,`max_days`),
  ADD KEY `cr_car_trip_discounts_car_pricing_policy_id_priority_index` (`car_pricing_policy_id`,`priority`);

--
-- Indexes for table `cr_car_types`
--
ALTER TABLE `cr_car_types`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_car_types_status_index` (`status`);

--
-- Indexes for table `cr_car_types_translations`
--
ALTER TABLE `cr_car_types_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_car_types_id`),
  ADD KEY `idx_cr_types_trans_fk` (`cr_car_types_id`),
  ADD KEY `idx_cr_types_trans_fk_lang` (`cr_car_types_id`,`lang_code`);

--
-- Indexes for table `cr_car_views`
--
ALTER TABLE `cr_car_views`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cr_car_views_car_id_date_unique` (`car_id`,`date`),
  ADD KEY `cr_car_views_car_id_index` (`car_id`);

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

--
-- Indexes for table `cr_coupons`
--
ALTER TABLE `cr_coupons`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cr_coupons_code_unique` (`code`);

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

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

--
-- Indexes for table `cr_customer_kyc_documents`
--
ALTER TABLE `cr_customer_kyc_documents`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_customer_kyc_documents_verification_id_document_type_index` (`verification_id`,`document_type`);

--
-- Indexes for table `cr_customer_kyc_verifications`
--
ALTER TABLE `cr_customer_kyc_verifications`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_customer_kyc_verifications_customer_id_status_index` (`customer_id`,`status`);

--
-- Indexes for table `cr_customer_password_resets`
--
ALTER TABLE `cr_customer_password_resets`
  ADD KEY `cr_customer_password_resets_email_index` (`email`),
  ADD KEY `cr_customer_password_resets_token_index` (`token`);

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

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

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

--
-- Indexes for table `cr_delivery_locations`
--
ALTER TABLE `cr_delivery_locations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_delivery_locations_vendor_id_index` (`vendor_id`);

--
-- Indexes for table `cr_demand_pricing_recommendations`
--
ALTER TABLE `cr_demand_pricing_recommendations`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cr_dpr_car_date_unique` (`car_id`,`recommendation_date`),
  ADD KEY `cr_dpr_car_status_date_idx` (`car_id`,`status`,`recommendation_date`),
  ADD KEY `cr_demand_pricing_recommendations_car_id_index` (`car_id`),
  ADD KEY `cr_demand_pricing_recommendations_status_index` (`status`);

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

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

--
-- Indexes for table `cr_invoices`
--
ALTER TABLE `cr_invoices`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cr_invoices_code_unique` (`code`),
  ADD KEY `cr_invoices_reference_type_reference_id_index` (`reference_type`,`reference_id`),
  ADD KEY `cr_invoices_payment_id_index` (`payment_id`),
  ADD KEY `cr_invoices_status_index` (`status`);

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

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

--
-- Indexes for table `cr_services`
--
ALTER TABLE `cr_services`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_services_status_index` (`status`);

--
-- Indexes for table `cr_services_translations`
--
ALTER TABLE `cr_services_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_services_id`),
  ADD KEY `idx_cr_services_trans_fk` (`cr_services_id`),
  ADD KEY `idx_cr_services_trans_fk_lang` (`cr_services_id`,`lang_code`);

--
-- Indexes for table `cr_tags`
--
ALTER TABLE `cr_tags`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_tags_status_index` (`status`);

--
-- Indexes for table `cr_tags_translations`
--
ALTER TABLE `cr_tags_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_tags_id`),
  ADD KEY `idx_cr_tags_trans_fk` (`cr_tags_id`),
  ADD KEY `idx_cr_tags_trans_fk_lang` (`cr_tags_id`,`lang_code`);

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

--
-- Indexes for table `cr_taxes_translations`
--
ALTER TABLE `cr_taxes_translations`
  ADD PRIMARY KEY (`lang_code`,`cr_taxes_id`),
  ADD KEY `idx_cr_taxes_trans_fk` (`cr_taxes_id`),
  ADD KEY `idx_cr_taxes_trans_fk_lang` (`cr_taxes_id`,`lang_code`);

--
-- Indexes for table `cr_trip_messages`
--
ALTER TABLE `cr_trip_messages`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_trip_messages_booking_id_foreign` (`booking_id`),
  ADD KEY `cr_trip_messages_sender_type_sender_id_index` (`sender_type`,`sender_id`);

--
-- Indexes for table `cr_vehicle_telematics_logs`
--
ALTER TABLE `cr_vehicle_telematics_logs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cr_vehicle_telematics_logs_car_id_foreign` (`car_id`);

--
-- Indexes for table `cr_vendor_quality_scores`
--
ALTER TABLE `cr_vendor_quality_scores`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cr_vendor_quality_scores_vendor_id_unique` (`vendor_id`);

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

--
-- Indexes for table `dashboard_widget_settings`
--
ALTER TABLE `dashboard_widget_settings`
  ADD PRIMARY KEY (`id`),
  ADD KEY `dashboard_widget_settings_user_id_index` (`user_id`),
  ADD KEY `dashboard_widget_settings_widget_id_index` (`widget_id`);

--
-- Indexes for table `device_tokens`
--
ALTER TABLE `device_tokens`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `device_tokens_token_unique` (`token`),
  ADD KEY `device_tokens_user_type_user_id_index` (`user_type`,`user_id`),
  ADD KEY `device_tokens_platform_is_active_index` (`platform`,`is_active`),
  ADD KEY `device_tokens_is_active_index` (`is_active`);

--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);

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

--
-- Indexes for table `faqs_translations`
--
ALTER TABLE `faqs_translations`
  ADD PRIMARY KEY (`lang_code`,`faqs_id`),
  ADD KEY `idx_faqs_trans_faqs_id` (`faqs_id`),
  ADD KEY `idx_faqs_trans_faq_lang` (`faqs_id`,`lang_code`);

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

--
-- Indexes for table `faq_categories_translations`
--
ALTER TABLE `faq_categories_translations`
  ADD PRIMARY KEY (`lang_code`,`faq_categories_id`),
  ADD KEY `idx_faq_cat_trans_faq_cat_id` (`faq_categories_id`),
  ADD KEY `idx_faq_cat_trans_faq_cat_lang` (`faq_categories_id`,`lang_code`);

--
-- Indexes for table `fob_comments`
--
ALTER TABLE `fob_comments`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fob_comments_author_type_author_id_index` (`author_type`,`author_id`),
  ADD KEY `fob_comments_reference_type_reference_id_index` (`reference_type`,`reference_id`),
  ADD KEY `fob_comments_reply_to_index` (`reply_to`),
  ADD KEY `fob_comments_reference_url_index` (`reference_url`),
  ADD KEY `fob_comments_status_index` (`status`);

--
-- Indexes for table `galleries`
--
ALTER TABLE `galleries`
  ADD PRIMARY KEY (`id`),
  ADD KEY `galleries_user_id_index` (`user_id`);

--
-- Indexes for table `galleries_translations`
--
ALTER TABLE `galleries_translations`
  ADD PRIMARY KEY (`lang_code`,`galleries_id`),
  ADD KEY `idx_galleries_trans_galleries_id` (`galleries_id`),
  ADD KEY `idx_galleries_trans_gallery_lang` (`galleries_id`,`lang_code`);

--
-- Indexes for table `gallery_meta`
--
ALTER TABLE `gallery_meta`
  ADD PRIMARY KEY (`id`),
  ADD KEY `gallery_meta_reference_id_index` (`reference_id`);

--
-- Indexes for table `gallery_meta_translations`
--
ALTER TABLE `gallery_meta_translations`
  ADD PRIMARY KEY (`lang_code`,`gallery_meta_id`),
  ADD KEY `idx_gallery_meta_trans_gm_id` (`gallery_meta_id`),
  ADD KEY `idx_gallery_meta_trans_gm_lang` (`gallery_meta_id`,`lang_code`);

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

--
-- Indexes for table `languages`
--
ALTER TABLE `languages`
  ADD PRIMARY KEY (`lang_id`),
  ADD KEY `lang_locale_index` (`lang_locale`),
  ADD KEY `lang_code_index` (`lang_code`),
  ADD KEY `lang_is_default_index` (`lang_is_default`);

--
-- Indexes for table `language_meta`
--
ALTER TABLE `language_meta`
  ADD PRIMARY KEY (`lang_meta_id`),
  ADD KEY `language_meta_reference_id_index` (`reference_id`),
  ADD KEY `meta_code_index` (`lang_meta_code`),
  ADD KEY `meta_origin_index` (`lang_meta_origin`),
  ADD KEY `meta_reference_type_index` (`reference_type`);

--
-- Indexes for table `media_files`
--
ALTER TABLE `media_files`
  ADD PRIMARY KEY (`id`),
  ADD KEY `media_files_user_id_index` (`user_id`),
  ADD KEY `media_files_index` (`folder_id`,`user_id`,`created_at`);

--
-- Indexes for table `media_folders`
--
ALTER TABLE `media_folders`
  ADD PRIMARY KEY (`id`),
  ADD KEY `media_folders_user_id_index` (`user_id`),
  ADD KEY `media_folders_index` (`parent_id`,`user_id`,`created_at`);

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

--
-- Indexes for table `menus`
--
ALTER TABLE `menus`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `menus_slug_unique` (`slug`);

--
-- Indexes for table `menu_locations`
--
ALTER TABLE `menu_locations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `menu_locations_menu_id_created_at_index` (`menu_id`,`created_at`);

--
-- Indexes for table `menu_nodes`
--
ALTER TABLE `menu_nodes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `menu_nodes_menu_id_index` (`menu_id`),
  ADD KEY `menu_nodes_parent_id_index` (`parent_id`),
  ADD KEY `reference_id` (`reference_id`),
  ADD KEY `reference_type` (`reference_type`);

--
-- Indexes for table `meta_boxes`
--
ALTER TABLE `meta_boxes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `meta_boxes_reference_id_index` (`reference_id`);

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

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

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

--
-- Indexes for table `pages_translations`
--
ALTER TABLE `pages_translations`
  ADD PRIMARY KEY (`lang_code`,`pages_id`),
  ADD KEY `idx_pages_trans_pages_id` (`pages_id`),
  ADD KEY `idx_pages_trans_page_lang` (`pages_id`,`lang_code`);

--
-- Indexes for table `password_reset_tokens`
--
ALTER TABLE `password_reset_tokens`
  ADD PRIMARY KEY (`email`);

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

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

--
-- Indexes for table `personal_access_tokens`
--
ALTER TABLE `personal_access_tokens`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
  ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`);

--
-- Indexes for table `posts`
--
ALTER TABLE `posts`
  ADD PRIMARY KEY (`id`),
  ADD KEY `posts_status_index` (`status`),
  ADD KEY `posts_author_id_index` (`author_id`),
  ADD KEY `posts_author_type_index` (`author_type`),
  ADD KEY `posts_created_at_index` (`created_at`);

--
-- Indexes for table `posts_translations`
--
ALTER TABLE `posts_translations`
  ADD PRIMARY KEY (`lang_code`,`posts_id`),
  ADD KEY `idx_posts_trans_posts_id` (`posts_id`),
  ADD KEY `idx_posts_trans_post_lang` (`posts_id`,`lang_code`);

--
-- Indexes for table `post_categories`
--
ALTER TABLE `post_categories`
  ADD KEY `post_categories_category_id_index` (`category_id`),
  ADD KEY `post_categories_post_id_index` (`post_id`);

--
-- Indexes for table `post_tags`
--
ALTER TABLE `post_tags`
  ADD KEY `post_tags_tag_id_index` (`tag_id`),
  ADD KEY `post_tags_post_id_index` (`post_id`);

--
-- Indexes for table `push_notifications`
--
ALTER TABLE `push_notifications`
  ADD PRIMARY KEY (`id`),
  ADD KEY `push_notifications_type_created_at_index` (`type`,`created_at`),
  ADD KEY `push_notifications_status_scheduled_at_index` (`status`,`scheduled_at`),
  ADD KEY `push_notifications_created_by_index` (`created_by`);

--
-- Indexes for table `push_notification_recipients`
--
ALTER TABLE `push_notification_recipients`
  ADD PRIMARY KEY (`id`),
  ADD KEY `pnr_notification_user_index` (`push_notification_id`,`user_type`,`user_id`),
  ADD KEY `pnr_user_status_index` (`user_type`,`user_id`,`status`),
  ADD KEY `pnr_user_read_index` (`user_type`,`user_id`,`read_at`),
  ADD KEY `pnr_status_index` (`status`);

--
-- Indexes for table `revisions`
--
ALTER TABLE `revisions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `revisions_revisionable_id_revisionable_type_index` (`revisionable_id`,`revisionable_type`);

--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `roles_slug_unique` (`slug`),
  ADD KEY `roles_created_by_index` (`created_by`),
  ADD KEY `roles_updated_by_index` (`updated_by`);

--
-- Indexes for table `role_users`
--
ALTER TABLE `role_users`
  ADD PRIMARY KEY (`user_id`,`role_id`),
  ADD KEY `role_users_user_id_index` (`user_id`),
  ADD KEY `role_users_role_id_index` (`role_id`);

--
-- Indexes for table `sessions`
--
ALTER TABLE `sessions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `sessions_user_id_index` (`user_id`),
  ADD KEY `sessions_last_activity_index` (`last_activity`);

--
-- Indexes for table `settings`
--
ALTER TABLE `settings`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `settings_key_unique` (`key`);

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

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

--
-- Indexes for table `slugs`
--
ALTER TABLE `slugs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `slugs_reference_id_index` (`reference_id`),
  ADD KEY `slugs_key_index` (`key`),
  ADD KEY `slugs_prefix_index` (`prefix`),
  ADD KEY `slugs_reference_index` (`reference_id`,`reference_type`),
  ADD KEY `idx_key_prefix` (`key`,`prefix`),
  ADD KEY `idx_slugs_reference` (`reference_type`,`reference_id`);

--
-- Indexes for table `slugs_translations`
--
ALTER TABLE `slugs_translations`
  ADD PRIMARY KEY (`lang_code`,`slugs_id`),
  ADD KEY `idx_slugid_key_prefix` (`slugs_id`,`key`,`prefix`);

--
-- Indexes for table `social_logins`
--
ALTER TABLE `social_logins`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `social_logins_provider_provider_id_unique` (`provider`,`provider_id`),
  ADD KEY `social_logins_user_type_user_id_index` (`user_type`,`user_id`),
  ADD KEY `social_logins_user_id_user_type_index` (`user_id`,`user_type`);

--
-- Indexes for table `states`
--
ALTER TABLE `states`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `states_slug_unique` (`slug`),
  ADD KEY `idx_states_name` (`name`),
  ADD KEY `idx_states_status` (`status`),
  ADD KEY `idx_states_country_id` (`country_id`);

--
-- Indexes for table `states_translations`
--
ALTER TABLE `states_translations`
  ADD PRIMARY KEY (`lang_code`,`states_id`),
  ADD KEY `idx_states_trans_state_lang` (`states_id`,`lang_code`),
  ADD KEY `idx_states_trans_name` (`name`),
  ADD KEY `idx_states_trans_states_id` (`states_id`);

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

--
-- Indexes for table `tags_translations`
--
ALTER TABLE `tags_translations`
  ADD PRIMARY KEY (`lang_code`,`tags_id`),
  ADD KEY `idx_tags_trans_tags_id` (`tags_id`),
  ADD KEY `idx_tags_trans_tag_lang` (`tags_id`,`lang_code`);

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

--
-- Indexes for table `teams_translations`
--
ALTER TABLE `teams_translations`
  ADD PRIMARY KEY (`lang_code`,`teams_id`);

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

--
-- Indexes for table `testimonials_translations`
--
ALTER TABLE `testimonials_translations`
  ADD PRIMARY KEY (`lang_code`,`testimonials_id`),
  ADD KEY `idx_testimonials_trans_testimonials_id` (`testimonials_id`),
  ADD KEY `idx_testimonials_trans_testimonial_lang` (`testimonials_id`,`lang_code`);

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

--
-- Indexes for table `user_meta`
--
ALTER TABLE `user_meta`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_meta_user_id_index` (`user_id`);

--
-- Indexes for table `user_settings`
--
ALTER TABLE `user_settings`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `user_settings_user_type_user_id_key_unique` (`user_type`,`user_id`,`key`),
  ADD KEY `user_settings_user_type_user_id_index` (`user_type`,`user_id`),
  ADD KEY `user_settings_key_index` (`key`);

--
-- Indexes for table `whatsapp_configs`
--
ALTER TABLE `whatsapp_configs`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `whatsapp_configs_phone_number_id_unique` (`phone_number_id`),
  ADD KEY `whatsapp_configs_phone_number_id_index` (`phone_number_id`),
  ADD KEY `whatsapp_configs_enabled_index` (`enabled`);

--
-- Indexes for table `whatsapp_message_templates`
--
ALTER TABLE `whatsapp_message_templates`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `whatsapp_message_templates_name_unique` (`name`),
  ADD KEY `whatsapp_message_templates_event_type_index` (`event_type`),
  ADD KEY `whatsapp_message_templates_is_active_index` (`is_active`);

--
-- Indexes for table `whatsapp_sent_messages`
--
ALTER TABLE `whatsapp_sent_messages`
  ADD PRIMARY KEY (`id`),
  ADD KEY `whatsapp_sent_messages_customer_id_created_at_index` (`customer_id`,`created_at`),
  ADD KEY `whatsapp_sent_messages_booking_id_event_type_index` (`booking_id`,`event_type`),
  ADD KEY `whatsapp_sent_messages_claim_id_event_type_index` (`claim_id`,`event_type`),
  ADD KEY `whatsapp_sent_messages_status_created_at_index` (`status`,`created_at`),
  ADD KEY `whatsapp_sent_messages_event_type_created_at_index` (`event_type`,`created_at`),
  ADD KEY `whatsapp_sent_messages_provider_message_id_index` (`provider_message_id`);

--
-- Indexes for table `whatsapp_webhook_logs`
--
ALTER TABLE `whatsapp_webhook_logs`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `whatsapp_webhook_logs_message_id_unique` (`message_id`),
  ADD KEY `whatsapp_webhook_logs_phone_number_created_at_index` (`phone_number`,`created_at`),
  ADD KEY `whatsapp_webhook_logs_status_created_at_index` (`status`,`created_at`),
  ADD KEY `whatsapp_webhook_logs_linked_booking_id_created_at_index` (`linked_booking_id`,`created_at`),
  ADD KEY `whatsapp_webhook_logs_linked_claim_id_created_at_index` (`linked_claim_id`,`created_at`);

--
-- Indexes for table `widgets`
--
ALTER TABLE `widgets`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `widgets_unique_index` (`theme`,`sidebar_id`,`widget_id`,`position`);

--
-- AUTO_INCREMENT for dumped tables
--

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- AUTO_INCREMENT for table `device_tokens`
--
ALTER TABLE `device_tokens`
  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=11;

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

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

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

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

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

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

--
-- AUTO_INCREMENT for table `language_meta`
--
ALTER TABLE `language_meta`
  MODIFY `lang_meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- Constraints for dumped tables
--

--
-- Constraints for table `chat_messages`
--
ALTER TABLE `chat_messages`
  ADD CONSTRAINT `chat_messages_conversation_id_foreign` FOREIGN KEY (`conversation_id`) REFERENCES `chat_conversations` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `cr_booking_claims`
--
ALTER TABLE `cr_booking_claims`
  ADD CONSTRAINT `cr_booking_claims_assignee_id_foreign` FOREIGN KEY (`assignee_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `cr_booking_claims_booking_id_foreign` FOREIGN KEY (`booking_id`) REFERENCES `cr_bookings` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `cr_booking_support_actions`
--
ALTER TABLE `cr_booking_support_actions`
  ADD CONSTRAINT `cr_booking_support_actions_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `cr_booking_support_actions_booking_id_foreign` FOREIGN KEY (`booking_id`) REFERENCES `cr_bookings` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `cr_car_dates`
--
ALTER TABLE `cr_car_dates`
  ADD CONSTRAINT `cr_car_dates_car_id_foreign` FOREIGN KEY (`car_id`) REFERENCES `cr_cars` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `cr_car_pricing_calendar`
--
ALTER TABLE `cr_car_pricing_calendar`
  ADD CONSTRAINT `cr_car_pricing_calendar_car_id_foreign` FOREIGN KEY (`car_id`) REFERENCES `cr_cars` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `cr_car_pricing_calendar_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `cr_customers` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `cr_car_pricing_policies`
--
ALTER TABLE `cr_car_pricing_policies`
  ADD CONSTRAINT `cr_car_pricing_policies_car_id_foreign` FOREIGN KEY (`car_id`) REFERENCES `cr_cars` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `cr_car_trip_discounts`
--
ALTER TABLE `cr_car_trip_discounts`
  ADD CONSTRAINT `cr_car_trip_discounts_car_id_foreign` FOREIGN KEY (`car_id`) REFERENCES `cr_cars` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `cr_car_trip_discounts_car_pricing_policy_id_foreign` FOREIGN KEY (`car_pricing_policy_id`) REFERENCES `cr_car_pricing_policies` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `cr_demand_pricing_recommendations`
--
ALTER TABLE `cr_demand_pricing_recommendations`
  ADD CONSTRAINT `cr_demand_pricing_recommendations_car_id_foreign` FOREIGN KEY (`car_id`) REFERENCES `cr_cars` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `cr_trip_messages`
--
ALTER TABLE `cr_trip_messages`
  ADD CONSTRAINT `cr_trip_messages_booking_id_foreign` FOREIGN KEY (`booking_id`) REFERENCES `cr_bookings` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `cr_vehicle_telematics_logs`
--
ALTER TABLE `cr_vehicle_telematics_logs`
  ADD CONSTRAINT `cr_vehicle_telematics_logs_car_id_foreign` FOREIGN KEY (`car_id`) REFERENCES `cr_cars` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `cr_vendor_quality_scores`
--
ALTER TABLE `cr_vendor_quality_scores`
  ADD CONSTRAINT `cr_vendor_quality_scores_vendor_id_foreign` FOREIGN KEY (`vendor_id`) REFERENCES `cr_customers` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `whatsapp_sent_messages`
--
ALTER TABLE `whatsapp_sent_messages`
  ADD CONSTRAINT `whatsapp_sent_messages_booking_id_foreign` FOREIGN KEY (`booking_id`) REFERENCES `cr_bookings` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `whatsapp_sent_messages_claim_id_foreign` FOREIGN KEY (`claim_id`) REFERENCES `cr_booking_claims` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `whatsapp_sent_messages_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `cr_customers` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `whatsapp_webhook_logs`
--
ALTER TABLE `whatsapp_webhook_logs`
  ADD CONSTRAINT `whatsapp_webhook_logs_linked_booking_id_foreign` FOREIGN KEY (`linked_booking_id`) REFERENCES `cr_bookings` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `whatsapp_webhook_logs_linked_claim_id_foreign` FOREIGN KEY (`linked_claim_id`) REFERENCES `cr_booking_claims` (`id`) ON DELETE SET NULL;
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 */;
