-- Roz Skin Database Backup/n-- Generated: 2025-11-30 11:08:51/n-- Tables: 68/n/nSET FOREIGN_KEY_CHECKS=0;/n/n/n-- Table: addresses/nDROP TABLE IF EXISTS `addresses`;/nCREATE TABLE `addresses` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `full_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `address_line1` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `address_line2` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `state` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `postal_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'الموقع الجغرافي (lat,lng)', `latitude` decimal(10,8) DEFAULT NULL COMMENT 'خط العرض', `longitude` decimal(11,8) DEFAULT NULL COMMENT 'خط الطول', `is_default` tinyint(1) DEFAULT '0', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), CONSTRAINT `addresses_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;/n/n/n-- Table: announcements/nDROP TABLE IF EXISTS `announcements`;/nCREATE TABLE `announcements` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'عنوان العرض', `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'نص الإعلان', `background_color` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '#dc3545' COMMENT 'لون الخلفية', `text_color` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '#ffffff' COMMENT 'لون النص', `link_url` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'رابط العرض', `link_text` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'نص الرابط', `coupon_code` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'كود الكوبون (اختياري)', `is_active` tinyint(1) DEFAULT '1' COMMENT 'نشط', `start_date` datetime DEFAULT NULL COMMENT 'تاريخ البداية', `end_date` datetime DEFAULT NULL COMMENT 'تاريخ النهاية', `display_order` int DEFAULT '0' COMMENT 'ترتيب العرض', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_active` (`is_active`), KEY `idx_dates` (`start_date`,`end_date`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: announcements/nINSERT INTO `announcements` (`id`, `title`, `message`, `background_color`, `text_color`, `link_url`, `link_text`, `coupon_code`, `is_active`, `start_date`, `end_date`, `display_order`, `created_at`, `updated_at`) VALUES ('1', '🔥 عرض فلاش', 'خصم 50% على جميع المنتجات - لمدة محدودة!', '#dc3545', '#ffffff', NULL, NULL, 'FLASH50', '1', NULL, '2025-11-25 02:21:40', '0', '2025-11-18 04:21:40', '2025-11-18 04:21:40');/nINSERT INTO `announcements` (`id`, `title`, `message`, `background_color`, `text_color`, `link_url`, `link_text`, `coupon_code`, `is_active`, `start_date`, `end_date`, `display_order`, `created_at`, `updated_at`) VALUES ('2', '🔥 عرض فلاش', 'خصم 50% على جميع المنتجات - لمدة محدودة!', '#dc3545', '#ffffff', NULL, NULL, 'FLASH50', '1', NULL, '2025-11-25 02:23:38', '0', '2025-11-18 04:23:38', '2025-11-18 04:23:38');/n/n/n-- Table: beauty_bookings/nDROP TABLE IF EXISTS `beauty_bookings`;/nCREATE TABLE `beauty_bookings` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int DEFAULT NULL, `name` varchar(255) NOT NULL, `phone` varchar(20) NOT NULL, `email` varchar(255) DEFAULT NULL, `service_id` int NOT NULL, `appointment_date` date NOT NULL, `appointment_time` time NOT NULL, `status` enum('pending','confirmed','completed','cancelled') DEFAULT 'pending', `notes` text, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `service_id` (`service_id`), CONSTRAINT `beauty_bookings_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL, CONSTRAINT `beauty_bookings_ibfk_2` FOREIGN KEY (`service_id`) REFERENCES `beauty_services` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: beauty_bookings/nINSERT INTO `beauty_bookings` (`id`, `user_id`, `name`, `phone`, `email`, `service_id`, `appointment_date`, `appointment_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('1', '2', 'أحمد محمد', '01012345678', '', '3', '2025-11-13', '17:00:00', 'completed', '', '2025-11-13 00:25:02', '2025-11-18 14:55:30');/nINSERT INTO `beauty_bookings` (`id`, `user_id`, `name`, `phone`, `email`, `service_id`, `appointment_date`, `appointment_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('2', '2', 'أحمد محمد', '01012345678', '', '1', '2025-11-14', '16:00:00', 'pending', '', '2025-11-13 02:44:31', '2025-11-13 02:44:31');/nINSERT INTO `beauty_bookings` (`id`, `user_id`, `name`, `phone`, `email`, `service_id`, `appointment_date`, `appointment_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('3', '2', 'أحمد محمد', '01012345678', '', '1', '2025-11-14', '15:00:00', 'pending', '', '2025-11-13 02:52:59', '2025-11-13 02:52:59');/nINSERT INTO `beauty_bookings` (`id`, `user_id`, `name`, `phone`, `email`, `service_id`, `appointment_date`, `appointment_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('4', '1', 'Ahmed Sharara', '01098890999', '', '2', '2025-11-15', '16:00:00', 'pending', '', '2025-11-13 03:36:32', '2025-11-13 03:36:32');/nINSERT INTO `beauty_bookings` (`id`, `user_id`, `name`, `phone`, `email`, `service_id`, `appointment_date`, `appointment_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('5', '1', 'Ahmed Sharara', '01098890999', '', '1', '2025-11-15', '17:00:00', 'pending', '', '2025-11-13 06:38:47', '2025-11-13 06:38:47');/nINSERT INTO `beauty_bookings` (`id`, `user_id`, `name`, `phone`, `email`, `service_id`, `appointment_date`, `appointment_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('6', '1', 'Ahmed Sharara', '01098890999', '', '2', '2025-11-16', '14:00:00', 'pending', '', '2025-11-13 08:12:44', '2025-11-13 08:12:44');/n/n/n-- Table: beauty_services/nDROP TABLE IF EXISTS `beauty_services`;/nCREATE TABLE `beauty_services` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `description` text, `price` decimal(10,2) NOT NULL, `discount_percentage` decimal(5,2) DEFAULT '0.00', `duration` int NOT NULL, `category` varchar(100) DEFAULT NULL, `image` varchar(255) DEFAULT NULL, `additional_images` json DEFAULT NULL, `variations` json DEFAULT NULL, `available_branches` json DEFAULT NULL, `is_limited_stock` tinyint(1) DEFAULT '0', `is_free_shipping` tinyint(1) DEFAULT '1', `is_medicinal` tinyint(1) DEFAULT '0', `medicinal_leaflet` text, `usage_instructions` text, `stock_quantity` int DEFAULT '0', `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: beauty_services/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('1', 'علاج البشرة المتقدم', 'جلسات علاج شاملة لجميع أنواع البشرة باستخدام أحدث التقنيات والمنتجات الطبيعية', '500.00', '10.00', '60', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', NULL, '0', '1', '2025-11-12 07:52:25', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('2', 'المساج والاسترخاء', 'جلسات مساج علاجية تساعد على الاسترخاء والتخلص من التوتر والإرهاق اليومي', '300.00', '15.00', '45', 'massage', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', NULL, '0', '1', '2025-11-12 07:52:25', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('3', 'العناية بالشعر', 'خدمات علاج الشعر المتقدمة وتصفيف الشعر بأحدث الصيحات والمنتجات المغذية', '250.00', '0.00', '45', 'hair_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', NULL, '0', '1', '2025-11-12 07:52:25', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('5', 'علاج حب الشباب', 'برنامج علاجي متخصص لحب الشباب وندباته باستخدام تقنيات حديثة', '400.00', '20.00', '50', 'skin_treatment', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', NULL, '0', '1', '2025-11-12 07:52:25', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('7', 'تنظيف البشرة العميق (16 خطوة)', 'تنظيف عميق للبشرة من خلال 16 مرحلة متخصصة لإزالة الشوائب والخلايا الميتة وتنقية المسام', '100.00', '50.00', '60', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', 'السعر 50 ج في العروض، 100 ج السعر الطبيعي', '0', '1', '2025-11-19 09:22:57', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('8', 'تنظيف البشرة العميق الهيدروفيشيال (20 مرحلة)', 'تنظيف متقدم للبشرة باستخدام تقنية الهيدروفيشيال من خلال 20 مرحلة مع جهاز الفراكوانسي', '100.00', '0.00', '75', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', 'مع جهاز الفراكوانسي', '0', '1', '2025-11-19 09:22:57', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('9', 'وش كامل فتلة (خيط)', 'إزالة شعر الوجه بالكامل باستخدام الخيط (الفتلة) بطريقة احترافية', '30.00', '0.00', '20', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:57', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('10', 'شمع للوش كامل', 'إزالة شعر الوجه بالكامل باستخدام الشمع', '70.00', '29.00', '25', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', 'السعر 50 ج في العروض، 70 ج السعر الطبيعي', '0', '1', '2025-11-19 09:22:57', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('11', 'شنب وحواجب وماسك تنظيف', 'باقة متكاملة لتنظيف الشنب والحواجب مع ماسك تنظيف للبشرة', '50.00', '60.00', '30', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', 'يبدأ من 20 ج حسب العرض', '0', '1', '2025-11-19 09:22:57', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('12', 'تاتو حواجب', 'رسم وتحديد الحواجب بتقنية التاتو شبه الدائم', '50.00', '40.00', '45', 'makeup', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', 'السعر 30 ج في العروض، 50 ج السعر الطبيعي', '0', '1', '2025-11-19 09:22:57', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('13', 'توريد خدود', 'توريد طبيعي للخدود لإضفاء إشراقة ونضارة دائمة', '200.00', '0.00', '60', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:57', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('14', 'درما بن نضارة', 'جلسة درما بن لتحفيز الكولاجين وإعادة النضارة والحيوية للبشرة', '200.00', '50.00', '45', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '1', 'يُنصح باستشارة الطبيب قبل الاستخدام. قد يسبب احمرار مؤقت. تجنب التعرض للشمس بعد الجلسة.', 'السعر 100 ج في العروض، 200 ج السعر الطبيعي', '0', '1', '2025-11-19 09:22:57', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('15', 'درما بن حبوب وآثار حبوب', 'علاج متخصص بالدرما بن لإزالة آثار الحبوب والندبات', '150.00', '0.00', '50', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '1', 'يُنصح باستشارة الطبيب قبل الاستخدام. قد يسبب احمرار مؤقت. تجنب التعرض للشمس بعد الجلسة.', '', '0', '1', '2025-11-19 09:22:57', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('16', 'درما بن ميزوثرابي مكس', 'جلسة شاملة تجمع بين النضارة وتوحيد اللون وتصغير المسام والتفتيح', '250.00', '8.00', '60', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '1', 'يُنصح باستشارة الطبيب قبل الاستخدام. قد يسبب احمرار مؤقت. تجنب التعرض للشمس بعد الجلسة.', 'السعر 230 ج في العروض، 250 ج السعر الطبيعي', '0', '1', '2025-11-19 09:22:57', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('17', 'درما بلانديج', 'تقنية لإزالة الجلد الميت والشعر الوبري من الوجه', '50.00', '40.00', '30', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', 'السعر 30 ج في العروض، 50 ج السعر الطبيعي', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('18', 'درما بن للهالات السوداء', 'علاج متخصص بالدرما بن لتفتيح الهالات السوداء حول العين', '150.00', '33.00', '40', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '1', 'يُنصح باستشارة الطبيب قبل الاستخدام. قد يسبب احمرار مؤقت. تجنب التعرض للشمس بعد الجلسة.', 'السعر 100 ج في العروض، 150 ج السعر الطبيعي', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('19', 'توريد الشفايف (ميزوثرابي)', 'توريد طبيعي للشفايف باستخدام تقنية الميزوثرابي', '200.00', '25.00', '45', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '1', 'يُنصح باستشارة الطبيب قبل الاستخدام. قد يسبب احمرار مؤقت. تجنب التعرض للشمس بعد الجلسة.', 'السعر 150 ج في العروض، 200 ج السعر الطبيعي', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('20', 'شمع البرافين إيد ورجل', 'إزالة شعر اليدين والرجلين بالكامل باستخدام شمع البرافين', '100.00', '0.00', '60', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('21', 'سويت كامل للجسم', 'إزالة شعر الجسم بالكامل باستخدام تقنية السويت', '350.00', '0.00', '120', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('22', 'نص إيد ونص رجل سويت', 'إزالة شعر نصف اليد ونصف الرجل بتقنية السويت', '100.00', '0.00', '45', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('23', 'شمع نص إيد ونص رجل', 'إزالة شعر نصف اليد ونصف الرجل بالشمع', '150.00', '0.00', '50', 'skin_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('24', 'بيبي ليس واستشوار وغسيل وحمام كريم', 'باقة متكاملة للعناية بالشعر تشمل البيبي ليس والاستشوار والغسيل وحمام الكريم', '100.00', '30.00', '90', 'hair_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', 'السعر 70 ج في العروض، 100 ج السعر الطبيعي', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('25', 'ليس واستشوار فقط', 'فرد الشعر بالبيبي ليس مع الاستشوار', '70.00', '0.00', '60', 'hair_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('26', 'غسيل شعر', 'غسيل احترافي للشعر بمنتجات عالية الجودة', '40.00', '0.00', '20', 'hair_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('27', 'جلسة ترميم بارد', 'جلسة ترميم للشعر بدون حرارة لإصلاح التلف', '50.00', '0.00', '30', 'hair_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('28', 'جلسة ترميم بخار', 'جلسة ترميم عميقة للشعر باستخدام البخار', '100.00', '0.00', '45', 'hair_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('29', 'جلسة ترميم الشعر علاجية للهيشان والتساقط', 'علاج متخصص لمشاكل الهيشان وتساقط الشعر', '100.00', '50.00', '60', 'hair_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', 'السعر 50 ج في العروض، 100 ج السعر الطبيعي', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('30', 'جلسة علاجية للشعر (عام)', 'جلسة علاجية شاملة لجميع مشاكل الشعر', '150.00', '0.00', '60', 'hair_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('31', 'جلسة علاجية للشعر الفارغات', 'علاج متخصص لمشكلة الفراغات في الشعر', '200.00', '0.00', '75', 'hair_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('32', 'بروتين للشعر', 'علاج بروتين متقدم لفرد وتنعيم الشعر', '1000.00', '30.00', '180', 'hair_care', NULL, NULL, '{\"types\": [\"شعر قصير\", \"شعر متوسط\", \"شعر طويل\"]}', '[1, 2, 3]', '1', '1', '0', '', 'يبدأ من 700 ج حسب طول الشعر', '46', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('33', 'كفيار للشعر', 'علاج كفيار فاخر لتغذية وترميم الشعر', '1400.00', '29.00', '180', 'hair_care', NULL, NULL, '{\"types\": [\"شعر قصير\", \"شعر متوسط\", \"شعر طويل\"]}', '[1, 2, 3]', '1', '1', '0', '', 'السعر 1000 ج في العروض، 1400 ج السعر الطبيعي', '31', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('34', 'ويفي (تمويج الشعر)', 'تمويج طبيعي للشعر بتقنية الويفي', '150.00', '0.00', '90', 'hair_care', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('35', 'صبغة لون واحد', 'صبغ الشعر بلون واحد موحد', '400.00', '0.00', '120', 'hair_care', NULL, NULL, '{\"types\": [\"أسود\", \"بني\", \"كستنائي\", \"أحمر\", \"بلوند\"]}', '[1, 2, 3]', '1', '1', '0', '', '', '47', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('36', 'صبغة لونين', 'صبغ الشعر بلونين متناسقين', '650.00', '0.00', '150', 'hair_care', NULL, NULL, '{\"types\": [\"أسود\", \"بني\", \"كستنائي\", \"أحمر\", \"بلوند\"]}', '[1, 2, 3]', '1', '1', '0', '', '', '30', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('37', 'صبغة لوتين أو بلوند', 'صبغة متخصصة للألوان الفاتحة (لوتين أو بلوند)', '600.00', '0.00', '150', 'hair_care', NULL, NULL, '{\"types\": [\"أسود\", \"بني\", \"كستنائي\", \"أحمر\", \"بلوند\"]}', '[1, 2, 3]', '1', '1', '0', '', '', '16', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('38', 'رموش كلاسيك هيبر بي هيير', 'تركيب رموش كلاسيك بتقنية Hyper B Hair', '100.00', '50.00', '60', 'makeup', NULL, NULL, '{\"types\": [\"طبيعي\", \"كثيف\", \"طويل\"]}', '[1, 2, 3]', '0', '1', '0', '', 'السعر 50 ج في العروض، 100 ج السعر الطبيعي', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('39', 'رموش فوليوم', 'تركيب رموش بتقنية الفوليوم لمظهر كثيف', '200.00', '50.00', '90', 'makeup', NULL, NULL, '{\"types\": [\"طبيعي\", \"كثيف\", \"طويل\"]}', '[1, 2, 3]', '0', '1', '0', '', 'السعر 100 ج في العروض، 200 ج السعر الطبيعي', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('40', 'رموش ميجا فوليوم', 'تركيب رموش بتقنية الميجا فوليوم للكثافة القصوى', '200.00', '0.00', '120', 'makeup', NULL, NULL, '{\"types\": [\"طبيعي\", \"كثيف\", \"طويل\"]}', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('41', 'بدكير إيد', 'عناية متكاملة بأظافر اليدين', '50.00', '0.00', '30', 'nails', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('42', 'بدكير رجل', 'عناية متكاملة بأظافر القدمين', '50.00', '0.00', '30', 'nails', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('43', 'بدكير إيد ورجل ولون', 'باقة متكاملة للعناية بأظافر اليدين والقدمين مع طلاء الأظافر', '70.00', '0.00', '60', 'nails', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('44', 'تركيب أظافر + لون', 'تركيب أظافر صناعية مع طلاء بالألوان', '100.00', '0.00', '60', 'nails', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('45', 'فيك نيلز ديزين', 'رسومات وتصاميم فنية على الأظافر', '70.00', '0.00', '45', 'nails', NULL, NULL, '{\"types\": [\"أحمر\", \"وردي\", \"بيج\", \"فرنش\", \"عنابي\"]}', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('46', 'فيك نيلز جيل', 'طلاء أظافر بتقنية الجيل', '100.00', '0.00', '45', 'nails', NULL, NULL, '{\"types\": [\"أحمر\", \"وردي\", \"بيج\", \"فرنش\", \"عنابي\"]}', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('47', 'فيك نيلز الألوان العادي', 'طلاء أظافر بالألوان العادية', '50.00', '0.00', '30', 'nails', NULL, NULL, '{\"types\": [\"أحمر\", \"وردي\", \"بيج\", \"فرنش\", \"عنابي\"]}', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/nINSERT INTO `beauty_services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('48', 'استرس السنة', 'جلسة استرخاء ومساج لتخفيف التوتر والضغط', '20.00', '0.00', '30', 'massage', NULL, NULL, '[]', '[1, 2, 3]', '0', '1', '0', '', '', '0', '1', '2025-11-19 09:22:58', '2025-11-19 09:30:52');/n/n/n-- Table: bookings/nDROP TABLE IF EXISTS `bookings`;/nCREATE TABLE `bookings` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int DEFAULT NULL, `service_id` int NOT NULL, `branch_id` int DEFAULT NULL, `customer_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_phone` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `booking_date` date NOT NULL, `booking_time` time NOT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT 'pending', `notes` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `service_id` (`service_id`), CONSTRAINT `bookings_ibfk_1` FOREIGN KEY (`service_id`) REFERENCES `beauty_services` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: bookings/nINSERT INTO `bookings` (`id`, `user_id`, `service_id`, `branch_id`, `customer_name`, `customer_phone`, `booking_date`, `booking_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('1', '1', '37', '1', 'Ahmed Sharara', '01098890999', '2025-11-21', '11:00:00', 'pending', 'رقم الحجز: BK-20251119-0001\n', '2025-11-19 07:32:00', '2025-11-19 07:32:00');/nINSERT INTO `bookings` (`id`, `user_id`, `service_id`, `branch_id`, `customer_name`, `customer_phone`, `booking_date`, `booking_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('2', '7', '1', NULL, 'مستخدم تجريبي', '01000000000', '2025-01-20', '10:00:00', 'pending', 'رقم الحجز: BK-20251124-0002\nاختبار حجز خدمة من لوحة التحكم', '2025-11-24 10:12:26', '2025-11-24 10:12:26');/nINSERT INTO `bookings` (`id`, `user_id`, `service_id`, `branch_id`, `customer_name`, `customer_phone`, `booking_date`, `booking_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('3', '7', '1', NULL, 'مستخدم تجريبي', '01000000000', '2025-01-20', '10:00:00', 'pending', 'رقم الحجز: BK-20251124-0003\nاختبار حجز خدمة من لوحة التحكم', '2025-11-24 10:13:35', '2025-11-24 10:13:35');/nINSERT INTO `bookings` (`id`, `user_id`, `service_id`, `branch_id`, `customer_name`, `customer_phone`, `booking_date`, `booking_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('4', '7', '1', NULL, 'مستخدم تجريبي', '01000000000', '2025-01-20', '10:00:00', 'pending', 'رقم الحجز: BK-20251124-0004\nاختبار حجز خدمة من لوحة التحكم', '2025-11-24 10:16:13', '2025-11-24 10:16:13');/nINSERT INTO `bookings` (`id`, `user_id`, `service_id`, `branch_id`, `customer_name`, `customer_phone`, `booking_date`, `booking_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('5', '7', '1', NULL, 'مستخدم تجريبي', '01000000000', '2025-01-20', '10:00:00', 'pending', 'رقم الحجز: BK-20251124-0005\nاختبار حجز خدمة من لوحة التحكم', '2025-11-24 10:16:37', '2025-11-24 10:16:37');/nINSERT INTO `bookings` (`id`, `user_id`, `service_id`, `branch_id`, `customer_name`, `customer_phone`, `booking_date`, `booking_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('6', '7', '1', NULL, 'مستخدم تجريبي', '01000000000', '2025-01-20', '10:00:00', 'pending', 'رقم الحجز: BK-20251124-0006\nاختبار حجز خدمة من لوحة التحكم', '2025-11-24 10:22:24', '2025-11-24 10:22:24');/nINSERT INTO `bookings` (`id`, `user_id`, `service_id`, `branch_id`, `customer_name`, `customer_phone`, `booking_date`, `booking_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('7', '7', '1', NULL, 'مستخدم تجريبي', '01000000000', '2025-01-20', '10:00:00', 'pending', 'رقم الحجز: BK-20251124-0007\nاختبار حجز خدمة من لوحة التحكم', '2025-11-24 10:24:56', '2025-11-24 10:24:56');/nINSERT INTO `bookings` (`id`, `user_id`, `service_id`, `branch_id`, `customer_name`, `customer_phone`, `booking_date`, `booking_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('8', '7', '1', NULL, 'مستخدم تجريبي', '01000000000', '2025-11-25', '16:00:00', 'pending', 'رقم الحجز: BK-20251124-0008\n', '2025-11-24 10:35:16', '2025-11-24 10:35:16');/nINSERT INTO `bookings` (`id`, `user_id`, `service_id`, `branch_id`, `customer_name`, `customer_phone`, `booking_date`, `booking_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('9', '7', '1', NULL, 'مستخدم تجريبي', '01000000000', '2025-01-20', '10:00:00', 'pending', 'رقم الحجز: BK-20251124-0009\nاختبار حجز خدمة من لوحة التحكم', '2025-11-24 10:55:11', '2025-11-24 10:55:11');/nINSERT INTO `bookings` (`id`, `user_id`, `service_id`, `branch_id`, `customer_name`, `customer_phone`, `booking_date`, `booking_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('10', '7', '1', NULL, 'مستخدم تجريبي', '01000000000', '2025-01-20', '10:00:00', 'pending', 'رقم الحجز: BK-20251124-0010\nاختبار تلقائي من المحاكي', '2025-11-24 11:04:30', '2025-11-24 11:04:30');/nINSERT INTO `bookings` (`id`, `user_id`, `service_id`, `branch_id`, `customer_name`, `customer_phone`, `booking_date`, `booking_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('11', '7', '1', NULL, 'مستخدم تجريبي', '01000000000', '2025-01-20', '10:00:00', 'pending', 'رقم الحجز: BK-20251124-0011\nاختبار حجز خدمة من لوحة التحكم', '2025-11-24 11:27:51', '2025-11-24 11:27:51');/nINSERT INTO `bookings` (`id`, `user_id`, `service_id`, `branch_id`, `customer_name`, `customer_phone`, `booking_date`, `booking_time`, `status`, `notes`, `created_at`, `updated_at`) VALUES ('12', '7', '1', NULL, 'مستخدم تجريبي', '01000000000', '2025-01-20', '10:00:00', 'pending', 'رقم الحجز: BK-20251124-0012\nاختبار حجز خدمة من لوحة التحكم', '2025-11-24 12:00:05', '2025-11-24 12:00:05');/n/n/n-- Table: branches/nDROP TABLE IF EXISTS `branches`;/nCREATE TABLE `branches` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `address` text NOT NULL, `phone` varchar(20) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `working_hours` json DEFAULT NULL, `is_active` tinyint(1) DEFAULT '1', `latitude` decimal(10,8) DEFAULT NULL, `longitude` decimal(11,8) DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: branches/nINSERT INTO `branches` (`id`, `name`, `address`, `phone`, `email`, `working_hours`, `is_active`, `latitude`, `longitude`, `created_at`, `updated_at`) VALUES ('1', 'فرع القاهرة الرئيسي', 'شارع الهرم، الجيزة، القاهرة', '01012345678', 'cairo@rozskin.com', '{\"friday\": \"14:00-22:00\", \"monday\": \"9:00-19:00\", \"sunday\": \"closed\", \"tuesday\": \"9:00-19:00\", \"saturday\": \"10:00-20:00\", \"thursday\": \"9:00-19:00\", \"wednesday\": \"9:00-19:00\"}', '1', NULL, NULL, '2025-11-11 23:12:16', '2025-11-11 23:12:16');/nINSERT INTO `branches` (`id`, `name`, `address`, `phone`, `email`, `working_hours`, `is_active`, `latitude`, `longitude`, `created_at`, `updated_at`) VALUES ('2', 'فرع الإسكندرية', 'شارع الكورنيش، الإسكندرية', '01087654321', 'alex@rozskin.com', '{\"friday\": \"closed\", \"monday\": \"10:00-18:00\", \"sunday\": \"12:00-20:00\", \"tuesday\": \"10:00-18:00\", \"saturday\": \"11:00-19:00\", \"thursday\": \"10:00-18:00\", \"wednesday\": \"10:00-18:00\"}', '1', NULL, NULL, '2025-11-11 23:12:16', '2025-11-11 23:12:16');/nINSERT INTO `branches` (`id`, `name`, `address`, `phone`, `email`, `working_hours`, `is_active`, `latitude`, `longitude`, `created_at`, `updated_at`) VALUES ('3', 'فرع أسيوط', 'وسط البلد، أسيوط', '01123456789', 'asyut@rozskin.com', '{\"friday\": \"closed\", \"monday\": \"9:00-17:00\", \"sunday\": \"closed\", \"tuesday\": \"9:00-17:00\", \"saturday\": \"10:00-16:00\", \"thursday\": \"9:00-17:00\", \"wednesday\": \"9:00-17:00\"}', '1', NULL, NULL, '2025-11-11 23:12:16', '2025-11-11 23:12:16');/n/n/n-- Table: business_licenses/nDROP TABLE IF EXISTS `business_licenses`;/nCREATE TABLE `business_licenses` ( `id` int NOT NULL AUTO_INCREMENT, `document_type` enum('commercial_register','tax_card','national_id','business_address','company_registration') NOT NULL, `document_name` varchar(255) NOT NULL, `document_path` varchar(500) DEFAULT NULL, `expiry_date` date DEFAULT NULL, `is_verified` tinyint(1) DEFAULT '0', `verification_date` timestamp NULL DEFAULT NULL, `notes` text, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: cart/nDROP TABLE IF EXISTS `cart`;/nCREATE TABLE `cart` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `product_id` int NOT NULL, `quantity` int NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `unique_cart_item` (`user_id`,`product_id`), KEY `product_id` (`product_id`), CONSTRAINT `cart_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, CONSTRAINT `cart_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: cart/nINSERT INTO `cart` (`id`, `user_id`, `product_id`, `quantity`, `created_at`) VALUES ('50', '7', '8', '10', '2025-11-24 10:18:22');/nINSERT INTO `cart` (`id`, `user_id`, `product_id`, `quantity`, `created_at`) VALUES ('51', '7', '9', '4', '2025-11-24 10:41:30');/n/n/n-- Table: categories/nDROP TABLE IF EXISTS `categories`;/nCREATE TABLE `categories` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `description` text, `image` varchar(255) DEFAULT NULL, `type` enum('product','service') DEFAULT 'product', `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: categories/nINSERT INTO `categories` (`id`, `name`, `description`, `image`, `type`, `is_active`, `created_at`, `updated_at`) VALUES ('10', 'العناية بالجسم', 'Body care and wellness', 'uploads/categories/category_691fd0723b08c.png', 'product', '1', '2025-11-12 07:52:25', '2025-11-21 06:37:38');/nINSERT INTO `categories` (`id`, `name`, `description`, `image`, `type`, `is_active`, `created_at`, `updated_at`) VALUES ('12', 'الهدايا', 'Gift sets and packages', NULL, 'product', '1', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `categories` (`id`, `name`, `description`, `image`, `type`, `is_active`, `created_at`, `updated_at`) VALUES ('15', 'عناية بالبشرة', 'خدمات العناية بالبشرة والوجه', NULL, 'service', '1', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `categories` (`id`, `name`, `description`, `image`, `type`, `is_active`, `created_at`, `updated_at`) VALUES ('16', 'عناية بالشعر', 'خدمات العناية بالشعر والتصفيف', NULL, 'service', '1', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `categories` (`id`, `name`, `description`, `image`, `type`, `is_active`, `created_at`, `updated_at`) VALUES ('17', 'مساج وتدليك', 'خدمات المساج والاسترخاء', NULL, 'service', '1', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `categories` (`id`, `name`, `description`, `image`, `type`, `is_active`, `created_at`, `updated_at`) VALUES ('18', 'علاجات البشرة', 'علاجات متخصصة للبشرة', NULL, 'service', '1', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `categories` (`id`, `name`, `description`, `image`, `type`, `is_active`, `created_at`, `updated_at`) VALUES ('22', 'الأكثر طلباً', 'Most requested and popular products', 'uploads/categories/category_691fd0911b889.jpeg', 'product', '1', '2025-11-18 15:13:12', '2025-11-21 06:38:09');/n/n/n-- Table: consultation_bookings/nDROP TABLE IF EXISTS `consultation_bookings`;/nCREATE TABLE `consultation_bookings` ( `id` int NOT NULL AUTO_INCREMENT, `consultation_id` int NOT NULL, `user_id` int DEFAULT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'اسم العميل', `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'رقم الهاتف', `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'البريد الإلكتروني', `booking_date` date NOT NULL COMMENT 'تاريخ الحجز', `booking_time` time NOT NULL COMMENT 'وقت الحجز', `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'ملاحظات', `status` enum('pending','confirmed','completed','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'pending' COMMENT 'حالة الحجز', `payment_status` enum('pending','paid','refunded') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'pending' COMMENT 'حالة الدفع', `total_price` decimal(10,2) NOT NULL COMMENT 'السعر الإجمالي', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `consultation_id` (`consultation_id`), KEY `user_id` (`user_id`), KEY `idx_status` (`status`), KEY `idx_date` (`booking_date`), CONSTRAINT `consultation_bookings_ibfk_1` FOREIGN KEY (`consultation_id`) REFERENCES `consultations` (`id`) ON DELETE CASCADE, CONSTRAINT `consultation_bookings_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='جدول حجوزات الاستشارات';/n/n-- Data for table: consultation_bookings/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('1', '2', '1', 'Ahmed Sharara', '01098890999', NULL, '2025-11-26', '07:30:00', '', 'pending', 'pending', '200.00', '2025-11-21 06:13:05', '2025-11-21 06:13:05');/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('2', '3', '1', 'Ahmed Sharara', '01098890999', NULL, '2025-11-30', '08:30:00', '', 'pending', 'pending', '75.00', '2025-11-24 09:20:56', '2025-11-24 09:20:56');/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('3', '1', '1', 'Ahmed Sharara', '01098890999', NULL, '2025-01-20', '09:00:00', 'اختبار حجز استشارة من لوحة التحكم', 'pending', 'pending', '150.00', '2025-11-24 09:44:01', '2025-11-24 09:44:01');/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('4', '1', '1', 'Ahmed Sharara', '01098890999', NULL, '2025-01-20', '09:00:00', 'اختبار حجز استشارة من لوحة التحكم', 'pending', 'pending', '150.00', '2025-11-24 09:56:32', '2025-11-24 09:56:32');/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('5', '1', '7', 'مستخدم تجريبي', '01000000000', NULL, '2025-01-20', '09:00:00', 'اختبار حجز استشارة من لوحة التحكم', 'pending', 'pending', '150.00', '2025-11-24 10:12:26', '2025-11-24 10:12:26');/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('6', '1', '7', 'مستخدم تجريبي', '01000000000', NULL, '2025-01-20', '09:00:00', 'اختبار حجز استشارة من لوحة التحكم', 'pending', 'pending', '150.00', '2025-11-24 10:13:36', '2025-11-24 10:13:36');/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('7', '1', '7', 'مستخدم تجريبي', '01000000000', NULL, '2025-01-20', '09:00:00', 'اختبار حجز استشارة من لوحة التحكم', 'pending', 'pending', '150.00', '2025-11-24 10:16:14', '2025-11-24 10:16:14');/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('8', '1', '7', 'مستخدم تجريبي', '01000000000', NULL, '2025-01-20', '09:00:00', 'اختبار حجز استشارة من لوحة التحكم', 'pending', 'pending', '150.00', '2025-11-24 10:16:37', '2025-11-24 10:16:37');/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('9', '1', '7', 'مستخدم تجريبي', '01000000000', NULL, '2025-01-20', '09:00:00', 'اختبار حجز استشارة من لوحة التحكم', 'pending', 'pending', '150.00', '2025-11-24 10:22:24', '2025-11-24 10:22:24');/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('10', '1', '7', 'مستخدم تجريبي', '01000000000', NULL, '2025-01-20', '09:00:00', 'اختبار حجز استشارة من لوحة التحكم', 'pending', 'pending', '150.00', '2025-11-24 10:24:57', '2025-11-24 10:24:57');/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('11', '1', '7', 'مستخدم تجريبي', '01000000000', NULL, '2025-01-20', '09:00:00', 'اختبار حجز استشارة من لوحة التحكم', 'pending', 'pending', '150.00', '2025-11-24 10:55:12', '2025-11-24 10:55:12');/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('12', '1', '7', 'مستخدم تجريبي', '01000000000', NULL, '2025-01-20', '09:00:00', 'اختبار حجز استشارة من لوحة التحكم', 'pending', 'pending', '150.00', '2025-11-24 11:27:52', '2025-11-24 11:27:52');/nINSERT INTO `consultation_bookings` (`id`, `consultation_id`, `user_id`, `name`, `phone`, `email`, `booking_date`, `booking_time`, `notes`, `status`, `payment_status`, `total_price`, `created_at`, `updated_at`) VALUES ('13', '1', '7', 'مستخدم تجريبي', '01000000000', NULL, '2025-01-20', '09:00:00', 'اختبار حجز استشارة من لوحة التحكم', 'pending', 'pending', '150.00', '2025-11-24 12:00:06', '2025-11-24 12:00:06');/n/n/n-- Table: consultations/nDROP TABLE IF EXISTS `consultations`;/nCREATE TABLE `consultations` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'عنوان الاستشارة', `description` text COLLATE utf8mb4_unicode_ci COMMENT 'وصف الاستشارة', `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'صورة الاستشارة', `duration` int NOT NULL COMMENT 'المدة بالدقائق', `price` decimal(10,2) NOT NULL COMMENT 'السعر الأصلي', `discount_price` decimal(10,2) DEFAULT NULL COMMENT 'السعر بعد الخصم', `consultant_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'اسم المستشار', `consultant_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'لقب المستشار', `features` json DEFAULT NULL COMMENT 'مميزات الاستشارة', `is_active` tinyint(1) DEFAULT '1' COMMENT 'نشط', `order_position` int DEFAULT '0' COMMENT 'ترتيب العرض', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_active` (`is_active`), KEY `idx_order` (`order_position`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='جدول الاستشارات والمكالمات';/n/n-- Data for table: consultations/nINSERT INTO `consultations` (`id`, `title`, `description`, `image`, `duration`, `price`, `discount_price`, `consultant_name`, `consultant_title`, `features`, `is_active`, `order_position`, `created_at`, `updated_at`) VALUES ('1', 'استشارة جلدية متخصصة', 'استشارة مع أخصائي جلدية لتحديد نوع بشرتك والمنتجات المناسبة لك', NULL, '30', '200.00', '150.00', 'د. سارة أحمد', 'أخصائي أمراض جلدية', '[\"تحليل نوع البشرة\", \"توصيات منتجات\", \"خطة عناية شخصية\", \"متابعة لمدة شهر\"]', '1', '1', '2025-11-21 02:13:19', '2025-11-21 02:13:19');/nINSERT INTO `consultations` (`id`, `title`, `description`, `image`, `duration`, `price`, `discount_price`, `consultant_name`, `consultant_title`, `features`, `is_active`, `order_position`, `created_at`, `updated_at`) VALUES ('2', 'استشارة تغذية للبشرة', 'استشارة تغذية متخصصة لتحسين صحة البشرة من الداخل', 'uploads/consultations/consultation_1763686755_691fb963d7e79.png', '45', '250.00', '200.00', 'د. منى خالد', 'أخصائي تغذية علاجية', '[\"تقييم النظام الغذائي\", \"خطة غذائية مخصصة\", \"مكملات غذائية\", \"متابعة أسبوعية\"]', '1', '2', '2025-11-21 02:13:19', '2025-11-21 02:59:15');/nINSERT INTO `consultations` (`id`, `title`, `description`, `image`, `duration`, `price`, `discount_price`, `consultant_name`, `consultant_title`, `features`, `is_active`, `order_position`, `created_at`, `updated_at`) VALUES ('3', 'مكالمة سريعة - استشارة عامة', 'مكالمة سريعة للإجابة على أسئلتك حول العناية بالبشرة', 'uploads/consultations/consultation_1763685566_691fb4be1d7ca.jpeg', '15', '100.00', '75.00', 'فريق روز سكين', 'خبراء العناية بالبشرة', '[\"استشارة سريعة\", \"إجابات فورية\", \"توصيات منتجات\"]', '1', '3', '2025-11-21 02:13:19', '2025-11-21 02:39:26');/n/n/n-- Table: coupons/nDROP TABLE IF EXISTS `coupons`;/nCREATE TABLE `coupons` ( `id` int NOT NULL AUTO_INCREMENT, `code` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `discount_type` enum('percentage','fixed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'percentage', `discount_value` decimal(10,2) NOT NULL, `usage_limit` int DEFAULT NULL, `usage_count` int DEFAULT '0', `expiry_date` date DEFAULT NULL, `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `show_in_banner` tinyint(1) DEFAULT '0' COMMENT 'عرض في شريط الإعلانات', `banner_text` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'نص الإعلان', `banner_color` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '#dc3545' COMMENT 'لون الشريط', PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: coupons/nINSERT INTO `coupons` (`id`, `code`, `discount_type`, `discount_value`, `usage_limit`, `usage_count`, `expiry_date`, `is_active`, `created_at`, `updated_at`, `show_in_banner`, `banner_text`, `banner_color`) VALUES ('1', 'A1', 'percentage', '2.00', NULL, '0', '2025-11-19', '1', '2025-11-15 08:19:32', '2025-11-15 08:19:39', '0', NULL, '#dc3545');/nINSERT INTO `coupons` (`id`, `code`, `discount_type`, `discount_value`, `usage_limit`, `usage_count`, `expiry_date`, `is_active`, `created_at`, `updated_at`, `show_in_banner`, `banner_text`, `banner_color`) VALUES ('2', 'FLASH50', 'percentage', '50.00', NULL, '0', '2025-11-25', '1', '2025-11-18 04:17:21', '2025-11-18 04:27:46', '1', '🔥 عرض فلاش! خصم 50% على جميع المنتجات - لمدة محدودة', '#dc3545');/nINSERT INTO `coupons` (`id`, `code`, `discount_type`, `discount_value`, `usage_limit`, `usage_count`, `expiry_date`, `is_active`, `created_at`, `updated_at`, `show_in_banner`, `banner_text`, `banner_color`) VALUES ('3', '23467', 'percentage', '55.00', NULL, '0', '2025-11-25', '1', '2025-11-18 04:28:06', '2025-11-18 04:28:06', '0', NULL, '#dc3545');/n/n/n-- Table: device_pins/nDROP TABLE IF EXISTS `device_pins`;/nCREATE TABLE `device_pins` ( `id` int NOT NULL AUTO_INCREMENT, `device_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `pin_number` tinyint NOT NULL, `pin_gpio` tinyint NOT NULL, `pin_type` enum('relay','sensor','led','button','pwm') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'relay', `pin_mode` enum('OUTPUT','INPUT') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'OUTPUT', `pin_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `pin_location` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pin_icon` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'fa-plug', `is_active` tinyint(1) DEFAULT '1', `current_state` tinyint(1) DEFAULT '0', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `unique_device_pin` (`device_id`,`pin_gpio`), KEY `idx_device_pins` (`device_id`,`is_active`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: device_pins/nINSERT INTO `device_pins` (`id`, `device_id`, `pin_number`, `pin_gpio`, `pin_type`, `pin_mode`, `pin_name`, `pin_location`, `pin_icon`, `is_active`, `current_state`, `created_at`) VALUES ('1', 'ESP01', '1', '16', 'relay', 'OUTPUT', 'إضاءة غرفة النوم', 'غرفة النوم', 'fa-lightbulb', '1', '1', '2025-11-21 12:45:18');/nINSERT INTO `device_pins` (`id`, `device_id`, `pin_number`, `pin_gpio`, `pin_type`, `pin_mode`, `pin_name`, `pin_location`, `pin_icon`, `is_active`, `current_state`, `created_at`) VALUES ('2', 'ESP01', '2', '5', 'relay', 'OUTPUT', 'إضاءة الصالة', 'الصالة', 'fa-lightbulb', '1', '0', '2025-11-21 12:45:18');/nINSERT INTO `device_pins` (`id`, `device_id`, `pin_number`, `pin_gpio`, `pin_type`, `pin_mode`, `pin_name`, `pin_location`, `pin_icon`, `is_active`, `current_state`, `created_at`) VALUES ('3', 'ESP01', '3', '4', 'relay', 'OUTPUT', 'إضاءة المطبخ', 'المطبخ', 'fa-lightbulb', '1', '0', '2025-11-21 12:45:18');/nINSERT INTO `device_pins` (`id`, `device_id`, `pin_number`, `pin_gpio`, `pin_type`, `pin_mode`, `pin_name`, `pin_location`, `pin_icon`, `is_active`, `current_state`, `created_at`) VALUES ('4', 'ESP01', '4', '0', 'relay', 'OUTPUT', 'مروحة غرفة النوم', 'غرفة النوم', 'fa-fan', '1', '1', '2025-11-21 12:45:18');/nINSERT INTO `device_pins` (`id`, `device_id`, `pin_number`, `pin_gpio`, `pin_type`, `pin_mode`, `pin_name`, `pin_location`, `pin_icon`, `is_active`, `current_state`, `created_at`) VALUES ('5', 'ESP01', '5', '2', 'led', 'OUTPUT', 'LED الحالة', 'اللوحة', 'fa-circle', '1', '0', '2025-11-21 12:45:18');/nINSERT INTO `device_pins` (`id`, `device_id`, `pin_number`, `pin_gpio`, `pin_type`, `pin_mode`, `pin_name`, `pin_location`, `pin_icon`, `is_active`, `current_state`, `created_at`) VALUES ('6', 'ESP01', '6', '14', 'relay', 'OUTPUT', 'إضاءة المدخل', 'المدخل', 'fa-door-open', '1', '0', '2025-11-21 12:45:18');/nINSERT INTO `device_pins` (`id`, `device_id`, `pin_number`, `pin_gpio`, `pin_type`, `pin_mode`, `pin_name`, `pin_location`, `pin_icon`, `is_active`, `current_state`, `created_at`) VALUES ('7', 'ESP01', '7', '12', 'sensor', 'INPUT', 'حساس الحرارة', 'الصالة', 'fa-thermometer-half', '1', '1', '2025-11-21 12:45:18');/nINSERT INTO `device_pins` (`id`, `device_id`, `pin_number`, `pin_gpio`, `pin_type`, `pin_mode`, `pin_name`, `pin_location`, `pin_icon`, `is_active`, `current_state`, `created_at`) VALUES ('8', 'ESP01', '8', '13', 'sensor', 'INPUT', 'حساس الحركة', 'المدخل', 'fa-walking', '1', '0', '2025-11-21 12:45:18');/nINSERT INTO `device_pins` (`id`, `device_id`, `pin_number`, `pin_gpio`, `pin_type`, `pin_mode`, `pin_name`, `pin_location`, `pin_icon`, `is_active`, `current_state`, `created_at`) VALUES ('9', 'ESP01', '9', '15', 'relay', 'OUTPUT', 'إضاءة خارجية', 'الحديقة', 'fa-tree', '1', '1', '2025-11-21 12:45:18');/n/n/n-- Table: fawry_applications/nDROP TABLE IF EXISTS `fawry_applications`;/nCREATE TABLE `fawry_applications` ( `id` int NOT NULL AUTO_INCREMENT, `application_status` enum('draft','submitted','under_review','approved','rejected') DEFAULT 'draft', `business_name` varchar(255) NOT NULL, `business_type` varchar(100) DEFAULT NULL, `owner_name` varchar(255) NOT NULL, `owner_phone` varchar(20) NOT NULL, `owner_email` varchar(255) DEFAULT NULL, `business_address` text, `commercial_register_number` varchar(100) DEFAULT NULL, `tax_card_number` varchar(100) DEFAULT NULL, `national_id_number` varchar(20) DEFAULT NULL, `application_data` json DEFAULT NULL, `submission_date` timestamp NULL DEFAULT NULL, `review_notes` text, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: identity_profiles/nDROP TABLE IF EXISTS `identity_profiles`;/nCREATE TABLE `identity_profiles` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `profile_image` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` int DEFAULT NULL, `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `product_id` (`product_id`), CONSTRAINT `identity_profiles_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;/n/n/n-- Table: inventory_alerts/nDROP TABLE IF EXISTS `inventory_alerts`;/nCREATE TABLE `inventory_alerts` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `alert_type` enum('low_stock','out_of_stock') NOT NULL, `current_quantity` int NOT NULL, `threshold_quantity` int NOT NULL, `is_resolved` tinyint(1) DEFAULT '0', `resolved_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_product_id` (`product_id`), KEY `idx_is_resolved` (`is_resolved`), CONSTRAINT `inventory_alerts_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: inventory_movements/nDROP TABLE IF EXISTS `inventory_movements`;/nCREATE TABLE `inventory_movements` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `movement_type` enum('in','out','adjustment','return') NOT NULL, `quantity` int NOT NULL, `previous_quantity` int NOT NULL, `new_quantity` int NOT NULL, `reference_type` varchar(50) DEFAULT NULL, `reference_id` int DEFAULT NULL, `notes` text, `created_by` int DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_product_id` (`product_id`), KEY `idx_movement_type` (`movement_type`), KEY `idx_created_at` (`created_at`), CONSTRAINT `inventory_movements_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: iot_commands/nDROP TABLE IF EXISTS `iot_commands`;/nCREATE TABLE `iot_commands` ( `id` int NOT NULL AUTO_INCREMENT, `device_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `action` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `payload` json DEFAULT NULL, `priority` tinyint DEFAULT '5', `status` enum('pending','sent','executed','failed','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'pending', `sent_at` datetime DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `executed_at` timestamp NULL DEFAULT NULL, `created_by` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `error_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `idx_device_id` (`device_id`), KEY `idx_status` (`status`), KEY `idx_created_at` (`created_at`), CONSTRAINT `iot_commands_ibfk_1` FOREIGN KEY (`device_id`) REFERENCES `iot_devices` (`device_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: iot_commands/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('1', 'ESP01', 'turn_on', NULL, '5', 'sent', '2025-11-21 09:34:48', '2025-11-21 10:49:35', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('2', 'ESP01', 'turn_off', NULL, '5', 'sent', '2025-11-21 09:34:51', '2025-11-21 10:49:36', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('3', 'ESP01', 'turn_on', NULL, '5', 'sent', '2025-11-21 09:34:54', '2025-11-21 10:49:38', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('4', 'ESP01', 'toggle', NULL, '5', 'sent', '2025-11-21 09:34:57', '2025-11-21 10:53:00', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('5', 'ESP01', 'toggle', NULL, '5', 'sent', '2025-11-21 09:35:00', '2025-11-21 10:53:04', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('6', 'ESP01', 'turn_on', NULL, '5', 'sent', '2025-11-21 09:35:39', '2025-11-21 11:35:37', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('7', 'ESP01', 'turn_off', NULL, '5', 'sent', '2025-11-21 09:35:58', '2025-11-21 11:35:56', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('8', 'ESP01', 'pulse', '{\"duration\": 1000}', '5', 'sent', '2025-11-21 09:36:07', '2025-11-21 11:36:06', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('9', 'ESP01', 'pulse', '{\"duration\": 1000}', '5', 'sent', '2025-11-21 09:36:16', '2025-11-21 11:36:14', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('10', 'ESP01', 'turn_on', NULL, '5', 'sent', '2025-11-21 09:37:04', '2025-11-21 11:37:01', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('11', 'ESP01', 'turn_off', NULL, '5', 'sent', '2025-11-21 09:37:10', '2025-11-21 11:37:09', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('12', 'ESP01', 'blink', NULL, '5', 'sent', '2025-11-21 09:39:24', '2025-11-21 11:39:23', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('13', 'ESP01', 'pulse', '{\"duration\": 1000}', '5', 'sent', '2025-11-21 09:40:06', '2025-11-21 11:40:04', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('14', 'ESP01', 'test_led', NULL, '5', 'sent', '2025-11-21 09:40:31', '2025-11-21 11:40:30', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('15', 'ESP01', 'turn_on', NULL, '5', 'sent', '2025-11-21 09:48:15', '2025-11-21 11:48:13', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('16', 'ESP01', 'toggle', NULL, '5', 'sent', '2025-11-21 10:08:51', '2025-11-21 12:08:49', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('17', 'ESP01', 'turn_on', NULL, '5', 'sent', '2025-11-21 10:09:00', '2025-11-21 12:08:58', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('18', 'ESP01', 'turn_on', NULL, '5', 'sent', '2025-11-21 10:09:12', '2025-11-21 12:09:11', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('19', 'ESP01', 'turn_off', NULL, '5', 'sent', '2025-11-21 10:09:15', '2025-11-21 12:09:14', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('20', 'ESP01', 'get_status', NULL, '5', 'sent', '2025-11-21 10:10:01', '2025-11-21 12:09:58', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('21', 'ESP01', 'blink', NULL, '5', 'sent', '2025-11-21 10:10:49', '2025-11-21 12:10:47', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('22', 'ESP01', 'turn_on', NULL, '5', 'sent', '2025-11-21 11:40:04', '2025-11-21 12:16:26', NULL, 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('23', 'ESP01', 'pin_control', '{\"gpio\": 15, \"state\": 1}', '5', 'executed', '2025-11-21 12:45:42', '2025-11-21 14:45:40', '2025-11-21 14:45:42', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('24', 'ESP01', 'pin_control', '{\"gpio\": 16, \"state\": 1}', '5', 'executed', '2025-11-21 12:45:51', '2025-11-21 14:45:51', '2025-11-21 14:45:51', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('25', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'executed', '2025-11-21 12:47:36', '2025-11-21 14:47:34', '2025-11-21 14:47:36', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('26', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 0}', '5', 'executed', '2025-11-21 12:47:41', '2025-11-21 14:47:40', '2025-11-21 14:47:41', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('27', 'ESP01', 'pin_control', '{\"gpio\": 0, \"state\": 1}', '5', 'executed', '2025-11-21 12:47:43', '2025-11-21 14:47:43', '2025-11-21 14:47:43', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('28', 'ESP01', 'pin_control', '{\"gpio\": 4, \"state\": 1}', '5', 'executed', '2025-11-21 12:47:46', '2025-11-21 14:47:44', '2025-11-21 14:47:47', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('29', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'executed', '2025-11-21 12:47:55', '2025-11-21 14:47:55', '2025-11-21 14:47:56', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('30', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'executed', '2025-11-21 12:48:03', '2025-11-21 14:48:01', '2025-11-21 14:48:04', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('31', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 0}', '5', 'executed', '2025-11-21 12:48:16', '2025-11-21 14:48:16', '2025-11-21 14:48:16', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('32', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'executed', '2025-11-21 12:48:31', '2025-11-21 14:48:30', '2025-11-21 14:48:31', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('33', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'executed', '2025-11-21 12:48:38', '2025-11-21 14:48:36', '2025-11-21 14:48:38', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('34', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'executed', '2025-11-21 12:48:40', '2025-11-21 14:48:40', '2025-11-21 14:48:40', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('35', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 0}', '5', 'executed', '2025-11-21 12:48:46', '2025-11-21 14:48:45', '2025-11-21 14:48:46', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('36', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'executed', '2025-11-21 12:53:33', '2025-11-21 14:53:32', '2025-11-21 14:53:33', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('37', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 0}', '5', 'executed', '2025-11-21 12:53:37', '2025-11-21 14:53:36', '2025-11-21 14:53:37', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('38', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'executed', '2025-11-21 12:53:41', '2025-11-21 14:53:41', '2025-11-21 14:53:42', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('39', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 0}', '5', 'executed', '2025-11-21 12:53:46', '2025-11-21 14:53:45', '2025-11-21 14:53:46', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('40', 'ESP01', 'pin_control', '{\"gpio\": 12, \"state\": 1}', '5', 'executed', '2025-11-21 12:53:55', '2025-11-21 14:53:53', '2025-11-21 14:53:55', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('41', 'ESP01', 'pin_control', '{\"gpio\": 12, \"state\": 1}', '5', 'executed', '2025-11-21 12:53:57', '2025-11-21 14:53:56', '2025-11-21 14:53:57', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('42', 'ESP01', 'pin_control', '{\"gpio\": 15, \"state\": 1}', '5', 'executed', '2025-11-21 13:03:43', '2025-11-21 15:03:42', '2025-11-21 15:03:44', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('43', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'executed', '2025-11-21 13:03:48', '2025-11-21 15:03:47', '2025-11-21 15:03:48', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('44', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 0}', '5', 'executed', '2025-11-21 13:03:52', '2025-11-21 15:03:51', '2025-11-21 15:03:52', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('45', 'ESP01', 'pin_control', '{\"gpio\": 14, \"state\": 1}', '5', 'executed', '2025-11-21 14:02:37', '2025-11-21 16:02:36', '2025-11-21 16:02:37', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('46', 'ESP01', 'pin_control', '{\"gpio\": 0, \"state\": 1}', '5', 'executed', '2025-11-21 14:02:41', '2025-11-21 16:02:41', '2025-11-21 16:02:42', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('47', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'executed', '2025-11-21 14:02:44', '2025-11-21 16:02:42', '2025-11-21 16:02:44', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('48', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 0}', '5', 'executed', '2025-11-21 14:02:46', '2025-11-21 16:02:43', '2025-11-21 16:02:46', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('49', 'ESP01', 'pin_control', '{\"gpio\": 4, \"state\": 1}', '5', 'executed', '2025-11-21 14:02:48', '2025-11-21 16:02:46', '2025-11-21 16:02:48', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('50', 'ESP01', 'pin_control', '{\"gpio\": 4, \"state\": 0}', '5', 'executed', '2025-11-21 14:02:50', '2025-11-21 16:02:47', '2025-11-21 16:02:51', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('51', 'ESP01', 'pin_control', '{\"gpio\": 4, \"state\": 1}', '5', 'executed', '2025-11-21 14:02:53', '2025-11-21 16:02:50', '2025-11-21 16:02:53', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('52', 'ESP01', 'pin_control', '{\"gpio\": 4, \"state\": 0}', '5', 'executed', '2025-11-21 14:02:55', '2025-11-21 16:02:52', '2025-11-21 16:02:55', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('53', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'executed', '2025-11-21 14:02:57', '2025-11-21 16:02:54', '2025-11-21 16:02:57', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('54', 'ESP01', 'pin_control', '{\"gpio\": 16, \"state\": 1}', '5', 'executed', '2025-11-21 14:03:01', '2025-11-21 16:03:00', '2025-11-21 16:03:02', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('55', 'ESP01', 'pin_control', '{\"gpio\": 5, \"state\": 1}', '5', 'executed', '2025-11-21 14:03:04', '2025-11-21 16:03:01', '2025-11-21 16:03:04', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('56', 'ESP01', 'pin_control', '{\"gpio\": 0, \"state\": 1}', '5', 'executed', '2025-11-21 14:06:21', '2025-11-21 16:06:19', '2025-11-21 16:06:21', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('57', 'ESP01', 'pin_control', '{\"gpio\": 0, \"state\": 0}', '5', 'executed', '2025-11-21 14:06:26', '2025-11-21 16:06:24', '2025-11-21 16:06:26', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('58', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 0}', '5', 'executed', '2025-11-21 14:06:53', '2025-11-21 16:06:53', '2025-11-21 16:06:53', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('59', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'executed', '2025-11-21 14:07:00', '2025-11-21 16:06:59', '2025-11-21 16:07:00', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('60', 'ESP01', 'pin_control', '{\"gpio\": 0, \"state\": 1}', '5', 'executed', '2025-11-21 14:07:06', '2025-11-21 16:07:06', '2025-11-21 16:07:06', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('61', 'ESP01', 'pin_control', '{\"gpio\": 5, \"state\": 0}', '5', 'executed', '2025-11-21 14:07:08', '2025-11-21 16:07:08', '2025-11-21 16:07:08', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('62', 'ESP01', 'pin_control', '{\"gpio\": 14, \"state\": 0}', '5', 'executed', '2025-11-21 14:07:11', '2025-11-21 16:07:09', '2025-11-21 16:07:11', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('63', 'ESP01', 'pin_control', '{\"gpio\": 15, \"state\": 0}', '5', 'executed', '2025-11-21 14:07:13', '2025-11-21 16:07:10', '2025-11-21 16:07:14', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('64', 'ESP01', 'pin_control', '{\"gpio\": 16, \"state\": 0}', '5', 'executed', '2025-11-21 14:07:16', '2025-11-21 16:07:11', '2025-11-21 16:07:16', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('65', 'ESP01', 'pin_control', '{\"gpio\": 15, \"state\": 0}', '5', 'executed', '2025-11-21 14:07:18', '2025-11-21 16:07:17', '2025-11-21 16:07:18', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('66', 'ESP01', 'pin_control', '{\"gpio\": 15, \"state\": 1}', '5', 'executed', '2025-11-21 14:07:23', '2025-11-21 16:07:21', '2025-11-21 16:07:23', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('67', 'ESP01', 'pin_control', '{\"gpio\": 16, \"state\": 1}', '5', 'executed', '2025-11-21 14:07:25', '2025-11-21 16:07:24', '2025-11-21 16:07:25', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('68', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 0}', '5', 'executed', '2025-11-21 14:07:38', '2025-11-21 16:07:35', '2025-11-21 16:07:38', 'admin', NULL);/nINSERT INTO `iot_commands` (`id`, `device_id`, `action`, `payload`, `priority`, `status`, `sent_at`, `created_at`, `executed_at`, `created_by`, `error_message`) VALUES ('69', 'ESP01', 'pin_control', '{\"gpio\": 2, \"state\": 1}', '5', 'pending', NULL, '2025-11-21 16:42:02', NULL, 'admin', NULL);/n/n/n-- Table: iot_device_templates/nDROP TABLE IF EXISTS `iot_device_templates`;/nCREATE TABLE `iot_device_templates` ( `id` int NOT NULL AUTO_INCREMENT, `device_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `device_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `category` enum('lighting','control','security','entertainment','climate','sensors','other') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'other', `default_price` decimal(10,2) NOT NULL, `installation_cost` decimal(10,2) DEFAULT '0.00', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `image_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `specifications` json DEFAULT NULL, `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_category` (`category`), KEY `idx_device_type` (`device_type`), KEY `idx_is_active` (`is_active`) ) ENGINE=InnoDB AUTO_INCREMENT=104 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: iot_device_templates/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('1', 'مصباح ذكي LED', 'smart_bulb', 'lighting', '150.00', '20.00', 'مصباح LED ذكي قابل للتحكم عبر التطبيق', NULL, NULL, '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('2', 'شريط LED ذكي', 'led_strip', 'lighting', '200.00', '50.00', 'شريط إضاءة LED ملون قابل للتحكم', NULL, NULL, '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('3', 'مفتاح إضاءة ذكي', 'smart_switch', 'lighting', '180.00', '30.00', 'مفتاح ذكي للتحكم بالإضاءة', NULL, NULL, '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('4', 'مساعد صوتي', 'voice_assistant', 'control', '500.00', '0.00', 'مساعد صوتي ذكي (Alexa/Google Home)', NULL, NULL, '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('5', 'لوحة تحكم مركزية', 'control_panel', 'control', '800.00', '100.00', 'لوحة تحكم مركزية للمنزل الذكي', NULL, NULL, '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('6', 'كاميرا مراقبة', 'security_camera', 'security', '600.00', '80.00', 'كاميرا مراقبة ذكية بدقة عالية', NULL, NULL, '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('7', 'قفل ذكي', 'smart_lock', 'security', '800.00', '100.00', 'قفل باب ذكي بصمة وكود', NULL, NULL, '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('8', 'جرس باب ذكي', 'smart_doorbell', 'security', '450.00', '50.00', 'جرس باب بكاميرا وإشعارات', NULL, NULL, '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('9', 'حساس حركة', 'motion_sensor', 'sensors', '120.00', '20.00', 'حساس كشف الحركة', NULL, NULL, '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('10', 'ثيرموستات ذكي', 'smart_thermostat', 'climate', '700.00', '100.00', 'منظم حرارة ذكي', NULL, NULL, '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('11', 'تلفاز ذكي', 'smart_tv', 'entertainment', '3000.00', '100.00', 'تلفاز ذكي 55 بوصة', NULL, NULL, '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('12', 'سماعات ذكية', 'smart_speaker', 'entertainment', '350.00', '0.00', 'سماعات صوتية ذكية', NULL, NULL, '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('97', 'Arduino Uno', 'Microcontroller', 'control', '350.00', '100.00', 'متحكم دقيق Arduino Uno - مثالي للمشاريع المتوسطة', NULL, NULL, '1', '2025-11-22 11:24:29', '2025-11-22 11:24:29');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('98', 'Arduino Mega', 'Microcontroller', 'control', '550.00', '150.00', 'متحكم دقيق Arduino Mega - للمشاريع الكبيرة مع منافذ إضافية', NULL, NULL, '1', '2025-11-22 11:24:29', '2025-11-22 11:24:29');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('99', 'Arduino Nano', 'Microcontroller', 'control', '200.00', '80.00', 'متحكم دقيق Arduino Nano - صغير الحجم للمشاريع المدمجة', NULL, NULL, '1', '2025-11-22 11:24:29', '2025-11-22 11:24:29');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('100', 'ESP8266', 'WiFi Module', 'control', '150.00', '100.00', 'وحدة ESP8266 مع WiFi مدمج - مثالية لمشاريع IoT', NULL, NULL, '1', '2025-11-22 11:24:29', '2025-11-22 11:24:29');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('101', 'ESP32', 'WiFi/Bluetooth Module', 'control', '250.00', '120.00', 'وحدة ESP32 مع WiFi و Bluetooth - قوية ومتعددة الاستخدامات', NULL, NULL, '1', '2025-11-22 11:24:29', '2025-11-22 11:24:29');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('102', 'NodeMCU ESP8266', 'Development Board', 'control', '180.00', '100.00', 'لوحة تطوير NodeMCU مع ESP8266 - سهلة البرمجة', NULL, NULL, '1', '2025-11-22 11:24:29', '2025-11-22 11:24:29');/nINSERT INTO `iot_device_templates` (`id`, `device_name`, `device_type`, `category`, `default_price`, `installation_cost`, `description`, `image_url`, `specifications`, `is_active`, `created_at`, `updated_at`) VALUES ('103', 'ESP32-CAM', 'Camera Module', 'security', '300.00', '150.00', 'وحدة ESP32 مع كاميرا مدمجة - للمراقبة والتصوير', NULL, NULL, '1', '2025-11-22 11:24:29', '2025-11-22 11:24:29');/n/n/n-- Table: iot_devices/nDROP TABLE IF EXISTS `iot_devices`;/nCREATE TABLE `iot_devices` ( `id` int NOT NULL AUTO_INCREMENT, `device_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `device_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `device_type` enum('esp8266','esp32','arduino','other') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'esp8266', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pin_config` json DEFAULT NULL, `is_online` tinyint(1) DEFAULT '0', `status` enum('online','offline') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'offline', `is_active` tinyint(1) DEFAULT '1', `last_seen` timestamp NULL DEFAULT NULL, `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `firmware_version` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `device_id` (`device_id`), KEY `idx_device_id` (`device_id`), KEY `idx_online` (`is_online`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: iot_devices/nINSERT INTO `iot_devices` (`id`, `device_id`, `device_name`, `device_type`, `description`, `location`, `pin_config`, `is_online`, `status`, `is_active`, `last_seen`, `ip_address`, `firmware_version`, `created_at`, `updated_at`) VALUES ('1', 'ESP01', 'Lamp Controller', 'esp8266', 'Controls living room lamp', 'Living Room', '{\"led_pin\": 2, \"relay_pin\": 5}', '1', 'online', '1', '2025-11-21 16:29:36', '192.168.1.123', NULL, '2025-11-21 09:16:41', '2025-11-21 16:29:36');/n/n/n-- Table: iot_logs/nDROP TABLE IF EXISTS `iot_logs`;/nCREATE TABLE `iot_logs` ( `id` int NOT NULL AUTO_INCREMENT, `device_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `log_type` enum('info','warning','error','command','status') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'info', `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `data` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_device_log` (`device_id`,`log_type`), KEY `idx_created_at` (`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=116 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: iot_logs/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('1', 'ESP01', 'command', 'Command sent: turn_on', '{\"action\": \"turn_on\", \"command_id\": \"1\"}', '2025-11-21 10:49:35');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('2', 'ESP01', 'command', 'Command sent: turn_off', '{\"action\": \"turn_off\", \"command_id\": \"2\"}', '2025-11-21 10:49:36');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('3', 'ESP01', 'command', 'Command sent: turn_on', '{\"action\": \"turn_on\", \"command_id\": \"3\"}', '2025-11-21 10:49:38');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('4', 'ESP01', 'command', 'Command sent: toggle', '{\"action\": \"toggle\", \"command_id\": \"4\"}', '2025-11-21 10:53:00');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('5', 'ESP01', 'command', 'Command sent: toggle', '{\"action\": \"toggle\", \"command_id\": \"5\"}', '2025-11-21 10:53:04');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('6', 'ESP01', 'command', 'Command sent: turn_on', '{\"action\": \"turn_on\", \"command_id\": \"6\"}', '2025-11-21 11:35:37');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('7', 'ESP01', 'command', 'Command sent: turn_off', '{\"action\": \"turn_off\", \"command_id\": \"7\"}', '2025-11-21 11:35:56');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('8', 'ESP01', 'command', 'Command sent: pulse', '{\"action\": \"pulse\", \"command_id\": \"8\"}', '2025-11-21 11:36:07');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('9', 'ESP01', 'command', 'Command sent: pulse', '{\"action\": \"pulse\", \"command_id\": \"9\"}', '2025-11-21 11:36:14');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('10', 'ESP01', 'command', 'Command sent: turn_on', '{\"action\": \"turn_on\", \"command_id\": \"10\"}', '2025-11-21 11:37:01');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('11', 'ESP01', 'command', 'Command sent: turn_off', '{\"action\": \"turn_off\", \"command_id\": \"11\"}', '2025-11-21 11:37:09');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('12', 'ESP01', 'command', 'Command sent: blink', '{\"action\": \"blink\", \"command_id\": \"12\"}', '2025-11-21 11:39:23');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('13', 'ESP01', 'command', 'Command sent: pulse', '{\"action\": \"pulse\", \"command_id\": \"13\"}', '2025-11-21 11:40:04');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('14', 'ESP01', 'command', 'Command sent: test_led', '{\"action\": \"test_led\", \"command_id\": \"14\"}', '2025-11-21 11:40:30');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('15', 'ESP01', 'command', 'Command sent: turn_on', '{\"action\": \"turn_on\", \"command_id\": \"15\"}', '2025-11-21 11:48:13');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('16', 'ESP01', 'command', 'Command sent: toggle', '{\"action\": \"toggle\", \"command_id\": \"16\"}', '2025-11-21 12:08:49');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('17', 'ESP01', 'command', 'Command sent: turn_on', '{\"action\": \"turn_on\", \"command_id\": \"17\"}', '2025-11-21 12:08:59');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('18', 'ESP01', 'command', 'Command sent: turn_on', '{\"action\": \"turn_on\", \"command_id\": \"18\"}', '2025-11-21 12:09:11');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('19', 'ESP01', 'command', 'Command sent: turn_off', '{\"action\": \"turn_off\", \"command_id\": \"19\"}', '2025-11-21 12:09:14');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('20', 'ESP01', 'command', 'Command sent: get_status', '{\"action\": \"get_status\", \"command_id\": \"20\"}', '2025-11-21 12:09:58');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('21', 'ESP01', 'command', 'Command sent: blink', '{\"action\": \"blink\", \"command_id\": \"21\"}', '2025-11-21 12:10:47');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('22', 'ESP01', 'command', 'Command sent: turn_on', '{\"action\": \"turn_on\", \"command_id\": \"22\"}', '2025-11-21 12:16:26');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('23', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"23\"}', '2025-11-21 14:45:40');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('24', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"23\"}', '2025-11-21 14:45:42');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('25', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"24\"}', '2025-11-21 14:45:51');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('26', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"24\"}', '2025-11-21 14:45:51');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('27', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"25\"}', '2025-11-21 14:47:34');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('28', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"25\"}', '2025-11-21 14:47:36');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('29', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"26\"}', '2025-11-21 14:47:40');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('30', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"26\"}', '2025-11-21 14:47:41');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('31', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"27\"}', '2025-11-21 14:47:43');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('32', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"27\"}', '2025-11-21 14:47:43');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('33', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"28\"}', '2025-11-21 14:47:44');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('34', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"28\"}', '2025-11-21 14:47:47');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('35', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"29\"}', '2025-11-21 14:47:55');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('36', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"29\"}', '2025-11-21 14:47:56');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('37', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"30\"}', '2025-11-21 14:48:01');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('38', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"30\"}', '2025-11-21 14:48:04');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('39', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"31\"}', '2025-11-21 14:48:16');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('40', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"31\"}', '2025-11-21 14:48:16');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('41', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"32\"}', '2025-11-21 14:48:30');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('42', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"32\"}', '2025-11-21 14:48:31');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('43', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"33\"}', '2025-11-21 14:48:36');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('44', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"33\"}', '2025-11-21 14:48:38');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('45', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"34\"}', '2025-11-21 14:48:40');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('46', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"34\"}', '2025-11-21 14:48:40');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('47', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"35\"}', '2025-11-21 14:48:45');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('48', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"35\"}', '2025-11-21 14:48:46');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('49', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"36\"}', '2025-11-21 14:53:32');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('50', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"36\"}', '2025-11-21 14:53:33');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('51', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"37\"}', '2025-11-21 14:53:36');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('52', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"37\"}', '2025-11-21 14:53:37');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('53', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"38\"}', '2025-11-21 14:53:41');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('54', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"38\"}', '2025-11-21 14:53:42');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('55', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"39\"}', '2025-11-21 14:53:45');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('56', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"39\"}', '2025-11-21 14:53:46');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('57', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"40\"}', '2025-11-21 14:53:53');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('58', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"40\"}', '2025-11-21 14:53:55');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('59', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"41\"}', '2025-11-21 14:53:56');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('60', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"41\"}', '2025-11-21 14:53:57');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('61', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"42\"}', '2025-11-21 15:03:43');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('62', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"42\"}', '2025-11-21 15:03:44');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('63', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"43\"}', '2025-11-21 15:03:47');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('64', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"43\"}', '2025-11-21 15:03:48');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('65', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"44\"}', '2025-11-21 15:03:51');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('66', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"44\"}', '2025-11-21 15:03:52');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('67', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"45\"}', '2025-11-21 16:02:36');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('68', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"45\"}', '2025-11-21 16:02:37');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('69', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"46\"}', '2025-11-21 16:02:41');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('70', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"46\"}', '2025-11-21 16:02:42');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('71', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"47\"}', '2025-11-21 16:02:42');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('72', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"48\"}', '2025-11-21 16:02:43');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('73', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"47\"}', '2025-11-21 16:02:44');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('74', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"49\"}', '2025-11-21 16:02:46');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('75', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"48\"}', '2025-11-21 16:02:46');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('76', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"50\"}', '2025-11-21 16:02:47');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('77', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"49\"}', '2025-11-21 16:02:48');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('78', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"51\"}', '2025-11-21 16:02:50');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('79', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"50\"}', '2025-11-21 16:02:51');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('80', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"52\"}', '2025-11-21 16:02:52');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('81', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"51\"}', '2025-11-21 16:02:53');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('82', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"53\"}', '2025-11-21 16:02:54');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('83', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"52\"}', '2025-11-21 16:02:55');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('84', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"53\"}', '2025-11-21 16:02:57');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('85', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"54\"}', '2025-11-21 16:03:00');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('86', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"55\"}', '2025-11-21 16:03:01');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('87', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"54\"}', '2025-11-21 16:03:02');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('88', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"55\"}', '2025-11-21 16:03:04');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('89', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"56\"}', '2025-11-21 16:06:19');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('90', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"56\"}', '2025-11-21 16:06:21');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('91', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"57\"}', '2025-11-21 16:06:24');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('92', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"57\"}', '2025-11-21 16:06:26');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('93', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"58\"}', '2025-11-21 16:06:53');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('94', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"58\"}', '2025-11-21 16:06:53');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('95', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"59\"}', '2025-11-21 16:06:59');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('96', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"59\"}', '2025-11-21 16:07:00');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('97', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"60\"}', '2025-11-21 16:07:06');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('98', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"60\"}', '2025-11-21 16:07:06');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('99', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"61\"}', '2025-11-21 16:07:08');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('100', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"61\"}', '2025-11-21 16:07:08');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('101', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"62\"}', '2025-11-21 16:07:09');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('102', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"63\"}', '2025-11-21 16:07:10');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('103', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"62\"}', '2025-11-21 16:07:11');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('104', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"64\"}', '2025-11-21 16:07:12');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('105', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"63\"}', '2025-11-21 16:07:14');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('106', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"64\"}', '2025-11-21 16:07:16');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('107', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"65\"}', '2025-11-21 16:07:17');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('108', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"65\"}', '2025-11-21 16:07:18');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('109', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"66\"}', '2025-11-21 16:07:21');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('110', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"66\"}', '2025-11-21 16:07:23');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('111', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"67\"}', '2025-11-21 16:07:24');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('112', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"67\"}', '2025-11-21 16:07:25');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('113', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"68\"}', '2025-11-21 16:07:36');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('114', 'ESP01', 'info', 'Command executed successfully', '{\"error\": null, \"status\": \"executed\", \"command_id\": \"68\"}', '2025-11-21 16:07:38');/nINSERT INTO `iot_logs` (`id`, `device_id`, `log_type`, `message`, `data`, `created_at`) VALUES ('115', 'ESP01', 'command', 'Command sent: pin_control', '{\"action\": \"pin_control\", \"command_id\": \"69\"}', '2025-11-21 16:42:02');/n/n/n-- Table: iot_project_devices/nDROP TABLE IF EXISTS `iot_project_devices`;/nCREATE TABLE `iot_project_devices` ( `id` int NOT NULL AUTO_INCREMENT, `room_id` int NOT NULL, `device_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `device_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `device_model` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `quantity` int DEFAULT '1', `unit_price` decimal(10,2) NOT NULL, `installation_cost` decimal(10,2) DEFAULT '0.00', `total_price` decimal(10,2) NOT NULL, `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_room_id` (`room_id`), KEY `idx_device_type` (`device_type`), CONSTRAINT `iot_project_devices_ibfk_1` FOREIGN KEY (`room_id`) REFERENCES `iot_project_rooms` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: iot_project_devices/nINSERT INTO `iot_project_devices` (`id`, `room_id`, `device_type`, `device_name`, `device_model`, `quantity`, `unit_price`, `installation_cost`, `total_price`, `notes`, `created_at`) VALUES ('1', '1', 'led_strip', 'شريط LED ذكي', '', '1', '200.00', '50.00', '250.00', '', '2025-11-22 06:57:26');/n/n/n-- Table: iot_project_rooms/nDROP TABLE IF EXISTS `iot_project_rooms`;/nCREATE TABLE `iot_project_rooms` ( `id` int NOT NULL AUTO_INCREMENT, `project_id` int NOT NULL, `room_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `room_type` enum('bedroom','living_room','kitchen','bathroom','office','garage','garden','other') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'bedroom', `area_sqm` decimal(6,2) DEFAULT NULL, `floor_number` int DEFAULT '1', `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_project_id` (`project_id`), KEY `idx_room_type` (`room_type`), CONSTRAINT `iot_project_rooms_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `iot_projects` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: iot_project_rooms/nINSERT INTO `iot_project_rooms` (`id`, `project_id`, `room_name`, `room_type`, `area_sqm`, `floor_number`, `notes`, `created_at`) VALUES ('1', '1', 'غرفة نوم رئيسية ذكية', 'bedroom', '2.00', '1', '', '2025-11-22 06:44:19');/nINSERT INTO `iot_project_rooms` (`id`, `project_id`, `room_name`, `room_type`, `area_sqm`, `floor_number`, `notes`, `created_at`) VALUES ('2', '1', 'غرفة نوم رئيسية ذكية', 'bedroom', '2.00', '1', '', '2025-11-22 06:44:19');/n/n/n-- Table: iot_projects/nDROP TABLE IF EXISTS `iot_projects`;/nCREATE TABLE `iot_projects` ( `id` int NOT NULL AUTO_INCREMENT, `customer_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `customer_phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `customer_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `project_type` enum('house','apartment','villa','office','other') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'house', `status` enum('new','in_progress','completed','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'new', `total_cost` decimal(10,2) DEFAULT '0.00', `discount_percentage` decimal(5,2) DEFAULT '0.00', `discount_amount` decimal(10,2) DEFAULT '0.00', `final_cost` decimal(10,2) DEFAULT '0.00', `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `created_by` int DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_customer_phone` (`customer_phone`), KEY `idx_status` (`status`), KEY `idx_created_at` (`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: iot_projects/nINSERT INTO `iot_projects` (`id`, `customer_name`, `customer_phone`, `customer_email`, `project_type`, `status`, `total_cost`, `discount_percentage`, `discount_amount`, `final_cost`, `notes`, `created_at`, `updated_at`, `created_by`) VALUES ('1', 'شراره', '0512345678', 'sharara3310@gmail.com', 'house', 'new', '250.00', '0.00', '0.00', '250.00', '', '2025-11-22 06:39:54', '2025-11-22 07:01:26', NULL);/n/n/n-- Table: iot_room_templates/nDROP TABLE IF EXISTS `iot_room_templates`;/nCREATE TABLE `iot_room_templates` ( `id` int NOT NULL AUTO_INCREMENT, `room_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `room_type` enum('bedroom','living_room','kitchen','bathroom','office','garage','garden','other') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'bedroom', `default_devices` json DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `estimated_cost` decimal(10,2) DEFAULT NULL, `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_room_type` (`room_type`), KEY `idx_is_active` (`is_active`) ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: iot_room_templates/nINSERT INTO `iot_room_templates` (`id`, `room_name`, `room_type`, `default_devices`, `description`, `estimated_cost`, `is_active`, `created_at`, `updated_at`) VALUES ('1', 'غرفة نوم رئيسية ذكية', 'bedroom', NULL, 'غرفة نوم مجهزة بالكامل بأجهزة ذكية', '3500.00', '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_room_templates` (`id`, `room_name`, `room_type`, `default_devices`, `description`, `estimated_cost`, `is_active`, `created_at`, `updated_at`) VALUES ('2', 'صالة معيشة ذكية', 'living_room', NULL, 'صالة معيشة مع نظام ترفيه وإضاءة ذكية', '8000.00', '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_room_templates` (`id`, `room_name`, `room_type`, `default_devices`, `description`, `estimated_cost`, `is_active`, `created_at`, `updated_at`) VALUES ('3', 'مطبخ ذكي', 'kitchen', NULL, 'مطبخ مجهز بأجهزة ذكية', '4500.00', '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/nINSERT INTO `iot_room_templates` (`id`, `room_name`, `room_type`, `default_devices`, `description`, `estimated_cost`, `is_active`, `created_at`, `updated_at`) VALUES ('4', 'مكتب منزلي ذكي', 'office', NULL, 'مكتب منزلي بنظام تحكم ذكي', '3000.00', '1', '2025-11-22 06:01:30', '2025-11-22 06:01:30');/n/n/n-- Table: iot_schedules/nDROP TABLE IF EXISTS `iot_schedules`;/nCREATE TABLE `iot_schedules` ( `id` int NOT NULL AUTO_INCREMENT, `device_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `schedule_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `action` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `payload` json DEFAULT NULL, `cron_expression` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) DEFAULT '1', `last_run` datetime DEFAULT NULL, `next_run` datetime DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_device_schedule` (`device_id`,`is_active`), KEY `idx_next_run` (`next_run`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;/n/n/n-- Table: iot_sensors_data/nDROP TABLE IF EXISTS `iot_sensors_data`;/nCREATE TABLE `iot_sensors_data` ( `id` int NOT NULL AUTO_INCREMENT, `device_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `sensor_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `value` decimal(10,2) DEFAULT NULL, `unit` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `raw_data` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_device_sensor` (`device_id`,`sensor_type`), KEY `idx_created_at` (`created_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;/n/n/n-- Table: iot_settings/nDROP TABLE IF EXISTS `iot_settings`;/nCREATE TABLE `iot_settings` ( `id` int NOT NULL AUTO_INCREMENT, `setting_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `setting_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `wifi_ssid` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'YOUR_WIFI_NAME', `wifi_password` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'YOUR_WIFI_PASSWORD', `server_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'localhost', PRIMARY KEY (`id`), UNIQUE KEY `setting_key` (`setting_key`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: iot_settings/nINSERT INTO `iot_settings` (`id`, `setting_key`, `setting_value`, `description`, `updated_at`, `wifi_ssid`, `wifi_password`, `server_ip`) VALUES ('1', 'wifi_ssid', 'Hidden Network', 'WiFi Network Name', '2025-11-21 11:08:14', 'YOUR_WIFI_NAME', 'YOUR_WIFI_PASSWORD', 'localhost');/nINSERT INTO `iot_settings` (`id`, `setting_key`, `setting_value`, `description`, `updated_at`, `wifi_ssid`, `wifi_password`, `server_ip`) VALUES ('2', 'wifi_password', 'STROX2020', 'WiFi Password', '2025-11-21 11:08:14', 'YOUR_WIFI_NAME', 'YOUR_WIFI_PASSWORD', 'localhost');/nINSERT INTO `iot_settings` (`id`, `setting_key`, `setting_value`, `description`, `updated_at`, `wifi_ssid`, `wifi_password`, `server_ip`) VALUES ('3', 'server_url', 'http://192.168.1.121/KL/backend/api/esp_control.php', 'Server API URL', '2025-11-21 11:10:00', 'YOUR_WIFI_NAME', 'YOUR_WIFI_PASSWORD', 'localhost');/nINSERT INTO `iot_settings` (`id`, `setting_key`, `setting_value`, `description`, `updated_at`, `wifi_ssid`, `wifi_password`, `server_ip`) VALUES ('4', 'server_port', '80', 'Server Port (80 for HTTP, 443 for HTTPS)', '2025-11-21 10:59:54', 'YOUR_WIFI_NAME', 'YOUR_WIFI_PASSWORD', 'localhost');/nINSERT INTO `iot_settings` (`id`, `setting_key`, `setting_value`, `description`, `updated_at`, `wifi_ssid`, `wifi_password`, `server_ip`) VALUES ('5', 'poll_interval', '3000', 'Polling interval in milliseconds', '2025-11-21 10:59:54', 'YOUR_WIFI_NAME', 'YOUR_WIFI_PASSWORD', 'localhost');/nINSERT INTO `iot_settings` (`id`, `setting_key`, `setting_value`, `description`, `updated_at`, `wifi_ssid`, `wifi_password`, `server_ip`) VALUES ('6', 'relay_pin', '5', 'Default relay pin (GPIO5/D1)', '2025-11-21 10:59:54', 'YOUR_WIFI_NAME', 'YOUR_WIFI_PASSWORD', 'localhost');/nINSERT INTO `iot_settings` (`id`, `setting_key`, `setting_value`, `description`, `updated_at`, `wifi_ssid`, `wifi_password`, `server_ip`) VALUES ('7', 'led_pin', '2', 'Default LED pin (GPIO2/D4)', '2025-11-21 14:31:23', 'Hidden Network', 'STROX2020', '192.168.1.121');/nINSERT INTO `iot_settings` (`id`, `setting_key`, `setting_value`, `description`, `updated_at`, `wifi_ssid`, `wifi_password`, `server_ip`) VALUES ('8', 'test_led_pin', '2', 'Built-in test LED (GPIO2)', '2025-11-21 10:59:54', 'YOUR_WIFI_NAME', 'YOUR_WIFI_PASSWORD', 'localhost');/nINSERT INTO `iot_settings` (`id`, `setting_key`, `setting_value`, `description`, `updated_at`, `wifi_ssid`, `wifi_password`, `server_ip`) VALUES ('9', 'serial_baud', '115200', 'Serial Monitor Baud Rate', '2025-11-21 10:59:54', 'YOUR_WIFI_NAME', 'YOUR_WIFI_PASSWORD', 'localhost');/n/n/n-- Table: manifest_orders/nDROP TABLE IF EXISTS `manifest_orders`;/nCREATE TABLE `manifest_orders` ( `id` int NOT NULL AUTO_INCREMENT, `manifest_id` int NOT NULL, `order_id` int NOT NULL, PRIMARY KEY (`id`), KEY `manifest_id` (`manifest_id`), KEY `order_id` (`order_id`), CONSTRAINT `manifest_orders_ibfk_1` FOREIGN KEY (`manifest_id`) REFERENCES `shipping_manifests` (`id`) ON DELETE CASCADE, CONSTRAINT `manifest_orders_ibfk_2` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: manifest_orders/nINSERT INTO `manifest_orders` (`id`, `manifest_id`, `order_id`) VALUES ('1', '1', '1');/nINSERT INTO `manifest_orders` (`id`, `manifest_id`, `order_id`) VALUES ('2', '2', '5');/nINSERT INTO `manifest_orders` (`id`, `manifest_id`, `order_id`) VALUES ('3', '2', '4');/nINSERT INTO `manifest_orders` (`id`, `manifest_id`, `order_id`) VALUES ('4', '2', '3');/nINSERT INTO `manifest_orders` (`id`, `manifest_id`, `order_id`) VALUES ('5', '2', '2');/nINSERT INTO `manifest_orders` (`id`, `manifest_id`, `order_id`) VALUES ('6', '3', '5');/nINSERT INTO `manifest_orders` (`id`, `manifest_id`, `order_id`) VALUES ('7', '3', '4');/nINSERT INTO `manifest_orders` (`id`, `manifest_id`, `order_id`) VALUES ('8', '3', '3');/nINSERT INTO `manifest_orders` (`id`, `manifest_id`, `order_id`) VALUES ('9', '3', '2');/n/n/n-- Table: material_alerts/nDROP TABLE IF EXISTS `material_alerts`;/nCREATE TABLE `material_alerts` ( `id` int NOT NULL AUTO_INCREMENT, `material_type` enum('raw','packaging','wrapping') NOT NULL, `material_id` int NOT NULL, `alert_type` enum('low_stock','out_of_stock','expiring_soon','expired') NOT NULL, `current_quantity` decimal(10,3) NOT NULL, `threshold_quantity` decimal(10,3) DEFAULT NULL, `expiry_date` date DEFAULT NULL, `is_resolved` tinyint(1) DEFAULT '0', `resolved_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_material` (`material_type`,`material_id`), KEY `idx_is_resolved` (`is_resolved`), KEY `idx_alert_type` (`alert_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: material_movements/nDROP TABLE IF EXISTS `material_movements`;/nCREATE TABLE `material_movements` ( `id` int NOT NULL AUTO_INCREMENT, `material_type` enum('raw','packaging','wrapping') NOT NULL, `material_id` int NOT NULL, `movement_type` enum('in','out','adjustment','production','return') NOT NULL, `quantity` decimal(10,3) NOT NULL, `previous_quantity` decimal(10,3) NOT NULL, `new_quantity` decimal(10,3) NOT NULL, `reference_type` varchar(50) DEFAULT NULL COMMENT 'purchase_order, production_batch, adjustment', `reference_id` int DEFAULT NULL, `notes` text, `created_by` int DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_material` (`material_type`,`material_id`), KEY `idx_movement_type` (`movement_type`), KEY `idx_created_at` (`created_at`), KEY `created_by` (`created_by`), CONSTRAINT `material_movements_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: messages/nDROP TABLE IF EXISTS `messages`;/nCREATE TABLE `messages` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `is_read` tinyint(1) DEFAULT '0', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: messages/nINSERT INTO `messages` (`id`, `name`, `email`, `phone`, `message`, `is_read`, `created_at`, `updated_at`) VALUES ('1', 'أحمد محمد', 'ahmed@example.com', '01012345678', 'أريد الاستفسار عن منتجات العناية بالبشرة المتوفرة لديكم', '1', '2025-11-15 08:19:52', '2025-11-15 08:20:04');/nINSERT INTO `messages` (`id`, `name`, `email`, `phone`, `message`, `is_read`, `created_at`, `updated_at`) VALUES ('2', 'فاطمة علي', 'fatma@example.com', '01098765432', 'هل يمكنني إلغاء طلبي رقم #123؟', '1', '2025-11-15 08:19:52', '2025-11-15 08:19:52');/nINSERT INTO `messages` (`id`, `name`, `email`, `phone`, `message`, `is_read`, `created_at`, `updated_at`) VALUES ('3', 'محمود حسن', 'mahmoud@example.com', '01123456789', 'متى سيتم توصيل طلبي؟ لقد مر 3 أيام', '0', '2025-11-15 08:19:52', '2025-11-15 08:19:52');/n/n/n-- Table: offers/nDROP TABLE IF EXISTS `offers`;/nCREATE TABLE `offers` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'عنوان العرض', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'وصف العرض', `discount_type` enum('percentage','fixed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'percentage' COMMENT 'نوع الخصم', `discount_value` decimal(10,2) NOT NULL COMMENT 'قيمة الخصم', `image` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'صورة العرض', `start_date` datetime NOT NULL COMMENT 'تاريخ البداية', `end_date` datetime NOT NULL COMMENT 'تاريخ النهاية', `is_active` tinyint(1) DEFAULT '1' COMMENT 'حالة العرض', `product_ids` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'معرفات المنتجات المشمولة (JSON)', `category_ids` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'معرفات الفئات المشمولة (JSON)', `min_purchase` decimal(10,2) DEFAULT '0.00' COMMENT 'الحد الأدنى للشراء', `max_discount` decimal(10,2) DEFAULT NULL COMMENT 'الحد الأقصى للخصم', `usage_limit` int DEFAULT '0' COMMENT 'عدد مرات الاستخدام (0 = غير محدود)', `used_count` int DEFAULT '0' COMMENT 'عدد مرات الاستخدام الفعلي', `priority` int DEFAULT '0' COMMENT 'الأولوية', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_active` (`is_active`), KEY `idx_dates` (`start_date`,`end_date`), KEY `idx_priority` (`priority`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='جدول العروض والخصومات';/n/n-- Data for table: offers/nINSERT INTO `offers` (`id`, `title`, `description`, `discount_type`, `discount_value`, `image`, `start_date`, `end_date`, `is_active`, `product_ids`, `category_ids`, `min_purchase`, `max_discount`, `usage_limit`, `used_count`, `priority`, `created_at`, `updated_at`) VALUES ('8', 'عرض الصيف الحصري 🌸', 'خصم 30% على جميع منتجات العناية بالبشرة + شحن مجاني', 'percentage', '30.00', 'uploads/offers/summer-offer.jpg', '2025-11-30 00:14:00', '2025-12-25 00:14:00', '0', NULL, NULL, '234.00', '12.00', '0', '0', '1', '2025-11-30 00:13:34', '2025-11-30 00:15:43');/nINSERT INTO `offers` (`id`, `title`, `description`, `discount_type`, `discount_value`, `image`, `start_date`, `end_date`, `is_active`, `product_ids`, `category_ids`, `min_purchase`, `max_discount`, `usage_limit`, `used_count`, `priority`, `created_at`, `updated_at`) VALUES ('9', 'عرض الصيف الحصري 🌸', 'خصم 30% على جميع منتجات العناية بالبشرة', 'percentage', '30.00', NULL, '2025-11-29 00:17:52', '2025-12-30 00:17:52', '1', NULL, NULL, '0.00', NULL, '0', '0', '1', '2025-11-30 00:17:52', '2025-11-30 00:17:52');/nINSERT INTO `offers` (`id`, `title`, `description`, `discount_type`, `discount_value`, `image`, `start_date`, `end_date`, `is_active`, `product_ids`, `category_ids`, `min_purchase`, `max_discount`, `usage_limit`, `used_count`, `priority`, `created_at`, `updated_at`) VALUES ('12', 'عرض العناية بالبشرة 💆', 'خصم 40% على جميع منتجات العناية بالبشرة الطبيعية', 'percentage', '40.00', NULL, '2025-11-29 00:25:37', '2025-12-20 00:25:37', '1', NULL, NULL, '0.00', NULL, '0', '0', '2', '2025-11-30 00:25:37', '2025-11-30 00:25:37');/nINSERT INTO `offers` (`id`, `title`, `description`, `discount_type`, `discount_value`, `image`, `start_date`, `end_date`, `is_active`, `product_ids`, `category_ids`, `min_purchase`, `max_discount`, `usage_limit`, `used_count`, `priority`, `created_at`, `updated_at`) VALUES ('13', 'شحن مجاني لجميع الطلبات 🚚', 'توصيل مجاني لكل الطلبات بدون حد أدنى', 'fixed', '0.00', NULL, '2025-11-29 00:25:37', '2025-12-15 00:25:37', '1', NULL, NULL, '0.00', NULL, '0', '0', '3', '2025-11-30 00:25:37', '2025-11-30 00:25:37');/n/n/n-- Table: order_items/nDROP TABLE IF EXISTS `order_items`;/nCREATE TABLE `order_items` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `product_id` int NOT NULL, `product_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `price` decimal(10,2) NOT NULL, `quantity` int NOT NULL, `total` decimal(10,2) NOT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_order_id` (`order_id`), KEY `idx_product_id` (`product_id`), CONSTRAINT `order_items_ibfk_1` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: order_items/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('1', '1', '1', 'Hydrating Face Cream', '1200.00', '10', '12000.00', '2025-11-15 09:06:42');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('2', '1', '2', 'Matte Lipstick', '800.00', '8', '6400.00', '2025-11-15 09:06:42');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('3', '1', '4', 'Facial Cleanser', '950.00', '7', '6650.00', '2025-11-15 09:06:42');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('4', '1', '5', 'Eyeshadow Palette', '1800.00', '7', '12600.00', '2025-11-15 09:06:42');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('5', '2', '2', 'Matte Lipstick', '800.00', '2', '1600.00', '2025-11-16 10:08:55');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('6', '3', '5', 'Eyeshadow Palette', '1800.00', '1', '1800.00', '2025-11-16 10:13:29');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('7', '4', '4', 'Facial Cleanser', '950.00', '1', '950.00', '2025-11-16 10:58:06');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('8', '5', '4', 'Facial Cleanser', '950.00', '3', '2850.00', '2025-11-16 13:35:25');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('9', '5', '5', 'Eyeshadow Palette', '1800.00', '2', '3600.00', '2025-11-16 13:35:25');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('10', '6', '8', 'سيروم الحبوب الطبيعي', '110.00', '2', '220.00', '2025-11-18 14:32:49');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('11', '6', '9', 'مجموعة العناية الفائقة', '350.00', '2', '700.00', '2025-11-18 14:32:49');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('12', '7', '8', 'سيروم الحبوب الطبيعي', '110.00', '2', '220.00', '2025-11-19 07:56:04');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('13', '7', '9', 'مجموعة العناية الفائقة', '350.00', '2', '700.00', '2025-11-19 07:56:04');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('14', '8', '9', 'مجموعة العناية الفائقة', '350.00', '1', '350.00', '2025-11-19 08:03:25');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('15', '9', '9', 'مجموعة العناية الفائقة', '350.00', '2', '700.00', '2025-11-19 08:11:08');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('16', '10', '8', 'سيروم الحبوب الطبيعي', '110.00', '2', '220.00', '2025-11-19 11:38:56');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('17', '10', '9', 'مجموعة العناية الفائقة', '350.00', '1', '350.00', '2025-11-19 11:38:56');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('18', '11', '8', 'سيروم الحبوب الطبيعي', '110.00', '5', '550.00', '2025-11-20 16:12:38');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('19', '11', '9', 'مجموعة العناية الفائقة', '350.00', '5', '1750.00', '2025-11-20 16:12:38');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('20', '12', '8', 'سيروم الحبوب الطبيعي', '110.00', '1', '110.00', '2025-11-21 15:12:23');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('21', '13', '8', 'سيروم الحبوب الطبيعي', '110.00', '1', '110.00', '2025-11-23 14:03:26');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('22', '13', '9', 'مجموعة العناية الفائقة', '350.00', '4', '1400.00', '2025-11-23 14:03:26');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('23', '14', '8', 'سيروم الحبوب الطبيعي', '110.00', '1', '110.00', '2025-11-23 14:22:00');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('24', '14', '9', 'مجموعة العناية الفائقة', '350.00', '1', '350.00', '2025-11-23 14:22:00');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('25', '15', '8', 'سيروم الحبوب الطبيعي', '110.00', '3', '330.00', '2025-11-30 01:22:22');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('26', '15', '9', 'مجموعة العناية الفائقة', '350.00', '3', '1050.00', '2025-11-30 01:22:22');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('27', '15', '13', 'تونك الشعر المقوي (Roz Hair Tonic)', '140.00', '1', '140.00', '2025-11-30 01:22:22');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('28', '15', '15', 'سيروم تقوية الأظافر (Roz Nail Serum)', '120.00', '2', '240.00', '2025-11-30 01:22:22');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('29', '16', '8', 'سيروم الحبوب الطبيعي', '110.00', '1', '110.00', '2025-11-30 12:51:04');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('30', '16', '9', 'مجموعة العناية الفائقة', '350.00', '3', '1050.00', '2025-11-30 12:51:04');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('31', '16', '11', 'سيروم روز لتفتيح البقع الداكنة', '150.00', '1', '150.00', '2025-11-30 12:51:04');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('32', '16', '12', 'تنت مورد للخدود والشفاه (Roz Tint & Hydrate)', '100.00', '4', '400.00', '2025-11-30 12:51:04');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('33', '16', '13', 'تونك الشعر المقوي (Roz Hair Tonic)', '140.00', '2', '280.00', '2025-11-30 12:51:04');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('34', '16', '14', 'سيروم روز الليلي للهالات (Roz Night Repair)', '180.00', '2', '360.00', '2025-11-30 12:51:04');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('35', '16', '15', 'سيروم تقوية الأظافر (Roz Nail Serum)', '120.00', '3', '360.00', '2025-11-30 12:51:04');/nINSERT INTO `order_items` (`id`, `order_id`, `product_id`, `product_name`, `price`, `quantity`, `total`, `created_at`) VALUES ('36', '17', '14', 'سيروم روز الليلي للهالات (Roz Night Repair)', '180.00', '1', '180.00', '2025-11-30 12:58:35');/n/n/n-- Table: orders/nDROP TABLE IF EXISTS `orders`;/nCREATE TABLE `orders` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `order_number` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `first_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `city` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `postal_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `payment_method` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'cod', `subtotal` decimal(10,2) NOT NULL DEFAULT '0.00', `shipping` decimal(10,2) NOT NULL DEFAULT '0.00', `tax` decimal(10,2) NOT NULL DEFAULT '0.00', `discount` decimal(10,2) NOT NULL DEFAULT '0.00', `total` decimal(10,2) NOT NULL DEFAULT '0.00', `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `order_number` (`order_number`), KEY `idx_user_id` (`user_id`), KEY `idx_order_number` (`order_number`), KEY `idx_status` (`status`), KEY `idx_created_at` (`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: orders/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('1', '1', 'ORD-20251115-7759', 'Ahmed Sharara', 'شراره', '01098890999', 'sharara3310@gmail.com', 'الهرم جيزة فيصل', 'القاهرة', '', '', 'cod', '37650.00', '0.00', '5647.50', '0.00', '43297.50', 'shipped', '2025-11-15 09:06:42', '2025-11-15 09:33:55');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('2', '1', 'ORD-20251116-6783', 'Ahmed', 'Sharara', '01098890999', 'sharara3310@gmail.com', 'الهرم جيزة فيصل', 'القاهرة', '', '', 'cod', '1600.00', '0.00', '240.00', '0.00', '1840.00', 'shipped', '2025-11-16 10:08:55', '2025-11-17 07:12:20');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('3', '1', 'ORD-20251116-2301', 'Ahmed', 'Sharara', '01098890999', 'sharara3310@gmail.com', 'الهرم جيزة فيصل', 'القاهرة', '', '', 'cod', '1800.00', '0.00', '270.00', '0.00', '2070.00', 'shipped', '2025-11-16 10:13:29', '2025-11-17 07:12:20');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('4', '1', 'ORD-20251116-1393', 'Ahmed', 'Sharara', '01098890999', 'sharara3310@gmail.com', 'الهرم جيزة فيصل', 'القاهرة', '', '', 'cod', '950.00', '0.00', '142.50', '0.00', '1092.50', 'out_for_delivery', '2025-11-16 10:58:06', '2025-11-17 07:40:15');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('5', '1', 'ORD-20251116-1955', 'Ahmed', 'Sharara', '01098890999', 'sharara3310@gmail.com', 'الهرم جيزة فيصل', 'القاهرة', '', '', 'cod', '6450.00', '0.00', '967.50', '0.00', '7417.50', 'out_for_delivery', '2025-11-16 13:35:25', '2025-11-17 07:40:14');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('6', '1', 'ORD-20251118-7609', 'Ahmed', 'Sharara', '01098890999', 'sharara3310@gmail.com', 'الهرم جيزة فيصل', 'القاهرة', '', '', 'cod', '920.00', '0.00', '138.00', '0.00', '1058.00', 'pending', '2025-11-18 14:32:49', '2025-11-18 14:32:49');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('7', '1', 'ORD-20251119-5395', 'Test', 'User', '01234567890', 'test@test.com', 'Test Address', 'Cairo', '', '', 'cod', '920.00', '0.00', '138.00', '0.00', '1058.00', 'pending', '2025-11-19 07:56:04', '2025-11-19 07:56:04');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('8', '1', 'ORD-20251119-2882', 'Ahmed', 'Sharara', '01098890999', 'user01098890999@rozskin.local', 'Test Address - Direct Order', 'Cairo', '', 'Test order from debug script', 'cod', '350.00', '0.00', '52.50', '0.00', '402.50', 'pending', '2025-11-19 08:03:25', '2025-11-19 08:03:25');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('9', '1', 'ORD-20251119-5419', 'Ahmed', 'Sharara', '01098890999', 'user01098890999@rozskin.local', '15, شارع فخري رستم, كوم الأخضر, الجيزة, 12574, مصر', 'البيت', '', '', 'cod', '700.00', '0.00', '105.00', '0.00', '805.00', 'pending', '2025-11-19 08:11:08', '2025-11-19 08:11:08');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('10', '1', 'ORD-20251119-3497', 'Ahmed', 'Sharara', '01098890999', 'user01098890999@rozskin.local', '15, شارع فخري رستم, كوم الأخضر, الجيزة, 12574, مصر', 'البيت', '', '', 'cod', '570.00', '0.00', '85.50', '0.00', '655.50', 'pending', '2025-11-19 11:38:56', '2025-11-19 11:38:56');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('11', '1', 'ORD-20251120-8086', 'Ahmed', 'Sharara', '01098890999', 'user01098890999@rozskin.local', '15, شارع فخري رستم, كوم الأخضر, الجيزة, 12574, مصر', 'البيت', '', '', 'cod', '2300.00', '0.00', '345.00', '0.00', '2645.00', 'pending', '2025-11-20 16:12:38', '2025-11-20 16:12:38');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('12', '1', 'ORD-20251121-4606', 'Ahmed', 'Sharara', '01098890999', 'user01098890999@rozskin.local', 'الموقع: 29.9860339, 31.1591702', 'البيت', '', '', 'cod', '110.00', '0.00', '16.50', '0.00', '126.50', 'pending', '2025-11-21 15:12:23', '2025-11-21 15:12:23');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('13', '1', 'ORD-20251123-6165', 'Ahmed', 'Sharara', '01098890999', 'user01098890999@rozskin.local', 'الموقع: 29.9860339, 31.1591702', 'البيت', '', '', 'cod', '1510.00', '0.00', '226.50', '0.00', '1736.50', 'pending', '2025-11-23 14:03:26', '2025-11-23 14:03:26');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('14', '1', 'ORD-20251123-9240', 'Ahmed', 'Sharara', '01098890999', 'user01098890999@rozskin.local', 'الموقع: 29.9860339, 31.1591702', 'البيت', '', '', 'cod', '460.00', '0.00', '69.00', '0.00', '529.00', 'pending', '2025-11-23 14:22:00', '2025-11-23 14:22:00');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('15', '1', 'ORD-20251129-2527', 'Ahmed', 'Sharara', '01098890999', 'user01098890999@rozskin.local', '15, شارع فخري رستم, كوم الأخضر, الجيزة, 12574, مصر', 'البيت', '', '', 'cod', '1760.00', '0.00', '264.00', '0.00', '2024.00', 'pending', '2025-11-30 01:22:22', '2025-11-30 01:22:22');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('16', '1', 'ORD-20251130-4678', 'Ahmed', 'Sharara', '01098890999', 'user01098890999@rozskin.local', 'الموقع: 29.9860339, 31.1591702', 'البيت', '', '', 'cod', '2710.00', '0.00', '406.50', '0.00', '3116.50', 'pending', '2025-11-30 12:51:04', '2025-11-30 12:51:04');/nINSERT INTO `orders` (`id`, `user_id`, `order_number`, `first_name`, `last_name`, `phone`, `email`, `address`, `city`, `postal_code`, `notes`, `payment_method`, `subtotal`, `shipping`, `tax`, `discount`, `total`, `status`, `created_at`, `updated_at`) VALUES ('17', '1', 'ORD-20251130-5508', 'Ahmed', 'Sharara', '01098890999', 'user01098890999@rozskin.local', 'الموقع: 29.9860339, 31.1591702', 'البيت', '', '', 'cod', '180.00', '0.00', '27.00', '0.00', '207.00', 'pending', '2025-11-30 12:58:35', '2025-11-30 12:58:35');/n/n/n-- Table: packaging_materials/nDROP TABLE IF EXISTS `packaging_materials`;/nCREATE TABLE `packaging_materials` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `type` enum('bottle','jar','cap','dropper','spray','pump','tube') NOT NULL, `size` varchar(50) DEFAULT NULL COMMENT '30ml, 50ml, 100ml', `material` varchar(50) DEFAULT NULL COMMENT 'زجاج، بلاستيك، ألومنيوم', `color` varchar(50) DEFAULT NULL, `quantity` int NOT NULL DEFAULT '0', `unit_cost` decimal(10,2) NOT NULL DEFAULT '0.00', `supplier_id` int DEFAULT NULL, `min_quantity` int DEFAULT '50', `notes` text, `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_type` (`type`), KEY `idx_supplier` (`supplier_id`), CONSTRAINT `packaging_materials_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: payment_accounts/nDROP TABLE IF EXISTS `payment_accounts`;/nCREATE TABLE `payment_accounts` ( `id` int NOT NULL AUTO_INCREMENT, `payment_method_id` int NOT NULL, `account_name` varchar(255) NOT NULL, `account_number` varchar(100) NOT NULL, `account_holder` varchar(255) DEFAULT NULL, `is_active` tinyint(1) DEFAULT '1', `daily_limit` decimal(10,2) DEFAULT '0.00', `current_daily_amount` decimal(10,2) DEFAULT '0.00', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `payment_method_id` (`payment_method_id`), CONSTRAINT `payment_accounts_ibfk_1` FOREIGN KEY (`payment_method_id`) REFERENCES `payment_methods` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: payment_accounts/nINSERT INTO `payment_accounts` (`id`, `payment_method_id`, `account_name`, `account_number`, `account_holder`, `is_active`, `daily_limit`, `current_daily_amount`, `created_at`, `updated_at`) VALUES ('1', '3', 'رقم فودافون كاش الأساسي', '01012345678', 'متجر روز سكين', '1', '10000.00', '0.00', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `payment_accounts` (`id`, `payment_method_id`, `account_name`, `account_number`, `account_holder`, `is_active`, `daily_limit`, `current_daily_amount`, `created_at`, `updated_at`) VALUES ('2', '3', 'رقم فودافون كاش الاحتياطي', '01087654321', 'متجر روز سكين', '1', '15000.00', '0.00', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `payment_accounts` (`id`, `payment_method_id`, `account_name`, `account_number`, `account_holder`, `is_active`, `daily_limit`, `current_daily_amount`, `created_at`, `updated_at`) VALUES ('3', '4', 'حساب البنك الأهلي', '1234567890123456', 'متجر روز سكين', '1', '50000.00', '0.00', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `payment_accounts` (`id`, `payment_method_id`, `account_name`, `account_number`, `account_holder`, `is_active`, `daily_limit`, `current_daily_amount`, `created_at`, `updated_at`) VALUES ('4', '4', 'حساب بنك مصر', '9876543210987654', 'متجر روز سكين', '1', '50000.00', '0.00', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/n/n/n-- Table: payment_methods/nDROP TABLE IF EXISTS `payment_methods`;/nCREATE TABLE `payment_methods` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `code` varchar(100) NOT NULL, `description` text, `is_active` tinyint(1) DEFAULT '1', `icon_class` varchar(100) DEFAULT NULL, `color_class` varchar(100) DEFAULT NULL, `integration_config` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: payment_methods/nINSERT INTO `payment_methods` (`id`, `name`, `code`, `description`, `is_active`, `icon_class`, `color_class`, `integration_config`, `created_at`, `updated_at`) VALUES ('1', 'الدفع عند الاستلام', 'cash_on_delivery', 'العميل يدفع المبلغ نقداً عند استلام الطلب من مندوب التوصيل', '1', 'fas fa-hand-holding-usd', 'text-blue-600', NULL, '2025-11-12 07:52:25', '2025-11-15 07:58:25');/nINSERT INTO `payment_methods` (`id`, `name`, `code`, `description`, `is_active`, `icon_class`, `color_class`, `integration_config`, `created_at`, `updated_at`) VALUES ('2', 'فوري', 'fawry', 'خدمة الدفع الإلكتروني المصرية عبر ماكينات فوري أو التطبيق', '0', 'fas fa-mobile-alt', 'text-orange-600', '{\"api_key\": \"fawry_api_key_here\", \"merchant_code\": \"123456789\"}', '2025-11-12 07:52:25', '2025-11-18 15:30:07');/nINSERT INTO `payment_methods` (`id`, `name`, `code`, `description`, `is_active`, `icon_class`, `color_class`, `integration_config`, `created_at`, `updated_at`) VALUES ('3', 'فودافون كاش', 'vodafone_cash', 'المحفظة الإلكترونية من فودافون للدفع السريع والآمن', '1', 'fas fa-wallet', 'text-red-600', NULL, '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `payment_methods` (`id`, `name`, `code`, `description`, `is_active`, `icon_class`, `color_class`, `integration_config`, `created_at`, `updated_at`) VALUES ('4', 'إنستا باي', 'instapay', 'خدمة التحويل البنكي الفوري من البنوك المصرية', '1', 'fas fa-university', 'text-purple-600', NULL, '2025-11-12 07:52:25', '2025-11-12 07:52:25');/n/n/n-- Table: payment_settings/nDROP TABLE IF EXISTS `payment_settings`;/nCREATE TABLE `payment_settings` ( `id` int NOT NULL AUTO_INCREMENT, `cash_on_delivery` tinyint(1) DEFAULT '1', `bank_transfer` tinyint(1) DEFAULT '0', `fawry` tinyint(1) DEFAULT '0', `bank_name` varchar(255) DEFAULT '', `bank_account` varchar(255) DEFAULT '', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: payment_settings/nINSERT INTO `payment_settings` (`id`, `cash_on_delivery`, `bank_transfer`, `fawry`, `bank_name`, `bank_account`, `created_at`) VALUES ('1', '1', '0', '1', '', '', '2025-11-15 06:19:34');/n/n/n-- Table: pin_commands/nDROP TABLE IF EXISTS `pin_commands`;/nCREATE TABLE `pin_commands` ( `id` int NOT NULL AUTO_INCREMENT, `device_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `pin_gpio` tinyint NOT NULL, `action` enum('on','off','toggle','pulse') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `duration` int DEFAULT NULL, `status` enum('pending','sent','executed','failed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'pending', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `executed_at` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_pin_commands` (`device_id`,`pin_gpio`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;/n/n/n-- Table: post_categories/nDROP TABLE IF EXISTS `post_categories`;/nCREATE TABLE `post_categories` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `icon` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `posts_count` int DEFAULT '0', `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `slug` (`slug`) ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: post_categories/nINSERT INTO `post_categories` (`id`, `name`, `slug`, `description`, `icon`, `color`, `posts_count`, `is_active`, `created_at`) VALUES ('1', 'أخبار المتجر', 'store-news', 'آخر أخبار وتحديثات المتجر', '📰', '#E57393', '0', '1', '2025-11-17 10:07:43');/nINSERT INTO `post_categories` (`id`, `name`, `slug`, `description`, `icon`, `color`, `posts_count`, `is_active`, `created_at`) VALUES ('2', 'نصائح جمالية', 'beauty-tips', 'نصائح للعناية بالبشرة والجمال', '💡', '#9B59B6', '0', '1', '2025-11-17 10:07:43');/nINSERT INTO `post_categories` (`id`, `name`, `slug`, `description`, `icon`, `color`, `posts_count`, `is_active`, `created_at`) VALUES ('3', 'عروض خاصة', 'special-offers', 'أحدث العروض والخصومات', '🔥', '#E74C3C', '0', '1', '2025-11-17 10:07:43');/nINSERT INTO `post_categories` (`id`, `name`, `slug`, `description`, `icon`, `color`, `posts_count`, `is_active`, `created_at`) VALUES ('4', 'منتجات جديدة', 'new-products', 'تعرفي على أحدث منتجاتنا', '✨', '#3498DB', '0', '1', '2025-11-17 10:07:43');/nINSERT INTO `post_categories` (`id`, `name`, `slug`, `description`, `icon`, `color`, `posts_count`, `is_active`, `created_at`) VALUES ('5', 'قصص نجاح', 'success-stories', 'تجارب عملائنا الناجحة', '⭐', '#2ECC71', '0', '1', '2025-11-17 10:07:43');/nINSERT INTO `post_categories` (`id`, `name`, `slug`, `description`, `icon`, `color`, `posts_count`, `is_active`, `created_at`) VALUES ('6', 'دليل الاستخدام', 'how-to', 'طرق استخدام المنتجات', '📚', '#F39C12', '0', '1', '2025-11-17 10:07:43');/n/n/n-- Table: post_comments/nDROP TABLE IF EXISTS `post_comments`;/nCREATE TABLE `post_comments` ( `id` int NOT NULL AUTO_INCREMENT, `post_id` int NOT NULL, `user_id` int NOT NULL, `comment` text NOT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `post_id` (`post_id`), KEY `user_id` (`user_id`), CONSTRAINT `post_comments_ibfk_1` FOREIGN KEY (`post_id`) REFERENCES `posts` (`id`) ON DELETE CASCADE, CONSTRAINT `post_comments_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: post_likes/nDROP TABLE IF EXISTS `post_likes`;/nCREATE TABLE `post_likes` ( `id` int NOT NULL AUTO_INCREMENT, `post_id` int NOT NULL, `user_id` int NOT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `unique_post_user_like` (`post_id`,`user_id`), KEY `user_id` (`user_id`), CONSTRAINT `post_likes_ibfk_1` FOREIGN KEY (`post_id`) REFERENCES `posts` (`id`) ON DELETE CASCADE, CONSTRAINT `post_likes_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: posts/nDROP TABLE IF EXISTS `posts`;/nCREATE TABLE `posts` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `excerpt` text, `content` longtext, `featured_image` varchar(255) DEFAULT NULL, `author_id` int DEFAULT NULL, `category` varchar(100) DEFAULT NULL, `tags` varchar(255) DEFAULT NULL, `status` enum('draft','published','scheduled') DEFAULT 'draft', `is_featured` tinyint(1) DEFAULT '0', `views_count` int DEFAULT '0', `likes_count` int DEFAULT '0', `comments_count` int DEFAULT '0', `published_at` datetime DEFAULT NULL, `caption` text, `image` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: posts/nINSERT INTO `posts` (`id`, `title`, `slug`, `excerpt`, `content`, `featured_image`, `author_id`, `category`, `tags`, `status`, `is_featured`, `views_count`, `likes_count`, `comments_count`, `published_at`, `caption`, `image`, `created_at`, `updated_at`) VALUES ('1', 'ابدأ يومك ببشرة نقية ومشرقة مع روتيننا اليومي البسيط والفعال. استخدم غسول روز سكين الطبيعي لتنظيف ال', 'post-1', NULL, 'ابدأ يومك ببشرة نقية ومشرقة مع روتيننا اليومي البسيط والفعال. استخدم غسول روز سكين الطبيعي لتنظيف البشرة بلطف، ثم طبق كريم الترطيب الغني بمكونات طبيعية للحفاظ على رطوبة البشرة طوال اليوم.', 'uploads/posts/skincare-routine.jpg', NULL, NULL, NULL, 'draft', '0', '0', '0', '0', NULL, 'ابدأ يومك ببشرة نقية ومشرقة مع روتيننا اليومي البسيط والفعال. استخدم غسول روز سكين الطبيعي لتنظيف البشرة بلطف، ثم طبق كريم الترطيب الغني بمكونات طبيعية للحفاظ على رطوبة البشرة طوال اليوم.', 'uploads/posts/skincare-routine.jpg', '2025-11-12 07:52:25', '2025-11-17 10:07:43');/nINSERT INTO `posts` (`id`, `title`, `slug`, `excerpt`, `content`, `featured_image`, `author_id`, `category`, `tags`, `status`, `is_featured`, `views_count`, `likes_count`, `comments_count`, `published_at`, `caption`, `image`, `created_at`, `updated_at`) VALUES ('5', 'مع ارتفاع درجات الحرارة في الصيف، تحتاج بشرتك عناية إضافية. استخدم واقي شمس يومياً ومنتجات تحتوي على', 'post-5', NULL, 'مع ارتفاع درجات الحرارة في الصيف، تحتاج بشرتك عناية إضافية. استخدم واقي شمس يومياً ومنتجات تحتوي على الألوفيرا للحفاظ على رطوبة البشرة.', 'uploads/posts/summer-skincare.jpg', NULL, NULL, NULL, 'draft', '0', '0', '0', '0', NULL, 'مع ارتفاع درجات الحرارة في الصيف، تحتاج بشرتك عناية إضافية. استخدم واقي شمس يومياً ومنتجات تحتوي على الألوفيرا للحفاظ على رطوبة البشرة.', 'uploads/posts/summer-skincare.jpg', '2025-11-12 07:52:25', '2025-11-17 10:07:43');/nINSERT INTO `posts` (`id`, `title`, `slug`, `excerpt`, `content`, `featured_image`, `author_id`, `category`, `tags`, `status`, `is_featured`, `views_count`, `likes_count`, `comments_count`, `published_at`, `caption`, `image`, `created_at`, `updated_at`) VALUES ('6', 'تعلم أسرار المكياج الدائم الذي يدوم طوال اليوم. اختر منتجات عالية الجودة واستخدم تقنيات البشرة الأسا', 'post-6', NULL, 'تعلم أسرار المكياج الدائم الذي يدوم طوال اليوم. اختر منتجات عالية الجودة واستخدم تقنيات البشرة الأساسية قبل وضع المكياج.', 'uploads/posts/long-lasting-makeup.jpg', NULL, NULL, NULL, 'draft', '0', '0', '0', '0', NULL, 'تعلم أسرار المكياج الدائم الذي يدوم طوال اليوم. اختر منتجات عالية الجودة واستخدم تقنيات البشرة الأساسية قبل وضع المكياج.', 'uploads/posts/long-lasting-makeup.jpg', '2025-11-12 07:52:25', '2025-11-17 10:07:43');/nINSERT INTO `posts` (`id`, `title`, `slug`, `excerpt`, `content`, `featured_image`, `author_id`, `category`, `tags`, `status`, `is_featured`, `views_count`, `likes_count`, `comments_count`, `published_at`, `caption`, `image`, `created_at`, `updated_at`) VALUES ('7', 'هههه', 'ههه', 'ههه', 'ههخعع', 'uploads/posts/1763365538_1761942700_WhatsApp Image 2025-10-31 at 2.13.53 PM.jpeg', NULL, 'منتجات جديدة', 'جح', 'published', '1', '1', '0', '0', '2025-11-17 07:45:38', NULL, NULL, '2025-11-17 11:45:38', '2025-11-18 02:42:23');/n/n/n-- Table: product_recipes/nDROP TABLE IF EXISTS `product_recipes`;/nCREATE TABLE `product_recipes` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `recipe_name` varchar(255) NOT NULL, `batch_size` int NOT NULL DEFAULT '1' COMMENT 'عدد القطع في الدفعة', `total_cost` decimal(10,2) DEFAULT '0.00' COMMENT 'التكلفة الإجمالية للدفعة', `cost_per_unit` decimal(10,2) DEFAULT '0.00' COMMENT 'تكلفة القطعة الواحدة', `notes` text, `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_product` (`product_id`), CONSTRAINT `product_recipes_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: production_batches/nDROP TABLE IF EXISTS `production_batches`;/nCREATE TABLE `production_batches` ( `id` int NOT NULL AUTO_INCREMENT, `batch_number` varchar(50) NOT NULL, `recipe_id` int NOT NULL, `quantity_produced` int NOT NULL, `production_date` date NOT NULL, `total_cost` decimal(10,2) NOT NULL, `cost_per_unit` decimal(10,2) NOT NULL, `status` enum('pending','in_progress','completed','cancelled') DEFAULT 'pending', `produced_by` int DEFAULT NULL COMMENT 'المستخدم الذي أنتج', `notes` text, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `batch_number` (`batch_number`), KEY `idx_batch_number` (`batch_number`), KEY `idx_recipe` (`recipe_id`), KEY `idx_status` (`status`), KEY `idx_production_date` (`production_date`), KEY `produced_by` (`produced_by`), CONSTRAINT `production_batches_ibfk_1` FOREIGN KEY (`recipe_id`) REFERENCES `product_recipes` (`id`) ON DELETE RESTRICT, CONSTRAINT `production_batches_ibfk_2` FOREIGN KEY (`produced_by`) REFERENCES `users` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: products/nDROP TABLE IF EXISTS `products`;/nCREATE TABLE `products` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `description` text, `price` decimal(10,2) NOT NULL, `discount_price` decimal(10,2) DEFAULT NULL, `discount_percentage` int DEFAULT NULL, `status` varchar(20) DEFAULT 'active', `image` varchar(255) DEFAULT NULL, `category_id` int DEFAULT NULL, `stock_quantity` int DEFAULT '0', `low_stock_alert` int DEFAULT '5', `sku` varchar(100) DEFAULT NULL, `track_inventory` tinyint(1) DEFAULT '1', `is_limited_stock` tinyint(1) DEFAULT '0', `is_free_shipping` tinyint(1) DEFAULT '0', `is_medicinal` tinyint(1) DEFAULT '0', `medicinal_leaflet` text, `usage_instructions` text, `variations` json DEFAULT NULL, `additional_images` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `size` varchar(100) DEFAULT NULL COMMENT 'حجم المنتج', `certification` text COMMENT 'الاعتماد والترخيص', `short_description` text COMMENT 'وصف مختصر', `detailed_description` longtext COMMENT 'وصف تفصيلي', `how_to_use` text COMMENT 'طريقة الاستخدام', `additional_tips` text COMMENT 'نصائح إضافية', `gallery_images` json DEFAULT NULL COMMENT 'صور إضافية (معرض)', PRIMARY KEY (`id`), UNIQUE KEY `sku` (`sku`), KEY `category_id` (`category_id`), CONSTRAINT `products_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: products/nINSERT INTO `products` (`id`, `name`, `description`, `price`, `discount_price`, `discount_percentage`, `status`, `image`, `category_id`, `stock_quantity`, `low_stock_alert`, `sku`, `track_inventory`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `variations`, `additional_images`, `created_at`, `updated_at`, `size`, `certification`, `short_description`, `detailed_description`, `how_to_use`, `additional_tips`, `gallery_images`) VALUES ('8', 'سيروم الحبوب الطبيعي', 'وداعاً للبثور المزعجة! سيروم روز سكين لحب الشباب هو الحل الموضعي السريع والفعّال، بتركيبة طبيعية 100% تعمل على تجفيف الحبوب وتهدئة الاحمرار ومنع ظهور البثور الجديدة. مصمم خصيصاً في عبوة \"رول أون\" لسهولة الاستخدام والتطبيق الدقيق.\r\n', '110.00', '80.00', NULL, 'active', 'uploads/products/691c40b20f382.jpeg', '10', '10', '5', '433', '1', '0', '0', '0', NULL, NULL, NULL, NULL, '2025-11-18 07:28:27', '2025-11-18 13:47:30', '10 مل', 'مُرخص ومعتمد من وزارة الصحة المصرية', 'وداعاً للبثور المزعجة! سيروم روز سكين لحب الشباب هو الحل الموضعي السريع والفعّال.', 'اكتشف قوة الطبيعة في علاج الحبوب:\r\nتم تطوير سيروم روز سكين ليكون سلاحك السري ضد ظهور حب الشباب المفاجئ. يحتوي السيروم على مزيج نقي من الزيوت النباتية والمستخلصات الطبيعية (مثل زيت شجرة الشاي، زيت الجوجوبا، أو زيوت أخرى مضادة للبكتيريا) التي تستهدف البكتيريا المسببة لحب الشباب دون التسبب في جفاف الجلد المفرط.\r\n', '1.رج العبوة جيداً قبل الاستخدام.\r\n2.نظف المنطقة المصابة وجففها جيداً.\r\n3.مرر كرة الرول (Roll-On) برفق على البثور الفردية أو المنطقة المصابة بحب الشباب.\r\n4.يستخدم مرتين إلى ثلاث مرات يومياً، أو عند اللزوم.\r\n5.لا يُغسل، ويُفضل استخدامه قبل تطبيق المرطبات أو المكياج.\r\n', 'للحصول على أفضل النتائج، استخدم السيروم بمجرد الشعور ببدء ظهور البثرة. حجمه الصغير يجعله مثالياً لحمله في الحقيبة للاستخدام السريع في أي وقت.\r\n', '[\"uploads/products/691be7db42bf1.jpeg\", \"uploads/products/691be7db43a71.jpeg\", \"uploads/products/691c3fff1e825.jpeg\", \"uploads/products/691c4019135c9.jpeg\", \"uploads/products/691c401913ca5.jpeg\"]');/nINSERT INTO `products` (`id`, `name`, `description`, `price`, `discount_price`, `discount_percentage`, `status`, `image`, `category_id`, `stock_quantity`, `low_stock_alert`, `sku`, `track_inventory`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `variations`, `additional_images`, `created_at`, `updated_at`, `size`, `certification`, `short_description`, `detailed_description`, `how_to_use`, `additional_tips`, `gallery_images`) VALUES ('9', 'مجموعة العناية الفائقة', 'مجموعة شاملة تحتوي على 10 منتجات طبيعية 100% من Roz Skin، تغطي احتياجات العناية بالبشرة والشعر والجمال (سيرومات، مقشرات، مرطبات، تونيك). عرض اقتصادي بقيمة ممتازة ومكونات آمنة ومُصرح بها.\r\n', '350.00', '300.00', NULL, 'active', 'uploads/products/691c42f16ea47.jpeg', '10', '20', '5', 'RS-SET-10PCS', '1', '0', '0', '0', NULL, NULL, NULL, NULL, '2025-11-18 13:57:05', '2025-11-18 14:04:53', ' بين 5 مل - 50 جم', 'جميع منتجات المجموعة مرخصة ومعتمدة من وزارة الصحة المصرية', 'مجموعة شاملة تحتوي على 10 منتجات طبيعية 100% من Roz Skin، تغطي احتياجات العناية بالبشرة والشعر والجمال (سيرومات، مقشرات، مرطبات، تونيك). عرض اقتصادي بقيمة ممتازة ومكونات آمنة ومُصرح بها.', 'عرض Roz Skin المتكامل: روتين العناية الشامل بـ 10 منتجات\r\nهذه المجموعة هي الحل الأمثل للحصول على عناية فائقة لكل تفاصيل جمالكِ. كل منتج في هذه الباقة مُصمم بتركيبة طبيعية 100% ليعمل بفعالية وأمان. تشمل المجموعة 10 منتجات أساسية: \r\n1. سيروم الحبوب (Acne Roll-On). \r\n2. سيروم الهالات السوداء. \r\n3. سيروم رموش وحواجب. \r\n4. سيروم الأظافر. \r\n5. سيروم ليلي (للتجديد). \r\n6. ماسك البودر السحري. \r\n7. مقشر الشفاه (Scrub). \r\n8. صن بلوك وكريم ترطيب. \r\n9. تونيك الشعر. \r\n10. مورد الخدود والشفايف (Tint). \r\nالميزات الرئيسية: \r\nتركيبات نقية 100% خالية من الكيماويات والمواد الضارة. عرض اقتصادي غير مسبوق بقيمة ممتازة. جودة موثوقة لأن المنتجات مُصرح بها ومعتمدة من وزارة الصحة المصرية. تنوع لا مثيل له، حيث يوفر روتين عناية متكامل يغطي الوجه، الشعر، العيون، الأظافر، والشفاه.\r\n', 'الصباح: ابدئي بالتونيك على الشعر، ثم ضعي السيرومات الموضعية مثل سيروم الهالات، وانهي بالصن بلوك والمرطب.\r\nالمساء: استخدمي السيروم الليلي على الوجه بعد التنظيف الجيد وقبل النوم.\r\nالعناية المخصصة: استخدمي سيروم الحبوب على البثور فقط عند ظهورها مباشرة.\r\nالعناية الأسبوعية: استخدمي ماسك البودر ومقشر الشفاه مرة أو مرتين أسبوعياً لتقشير وتنقية عميقة.\r\n', 'حفظ المنتج: يُحفظ في مكان بارد وجاف بعيداً عن أشعة الشمس المباشرة لضمان أقصى فاعلية للمكونات الطبيعية. صلاحية العرض: هذا العرض ساري لفترة محدودة أو حتى نفاذ الكمية، سارعي بالحجز. العبوات: معظم السيرومات تأتي في عبوات صغيرة الحجم (5-10 مل) لضمان تركيز وفاعلية المواد الفعالة والمساعدة على سهولة الحمل والاستخدام الموضعي.\r\n', '[\"uploads/products/691c42f16efd4.jpeg\", \"uploads/products/691c42f16f70a.jpeg\", \"uploads/products/691c42f16fc26.jpeg\", \"uploads/products/691c42f170153.jpeg\", \"uploads/products/691c42f1706a5.jpeg\", \"uploads/products/691c44c5a596d.jpeg\"]');/nINSERT INTO `products` (`id`, `name`, `description`, `price`, `discount_price`, `discount_percentage`, `status`, `image`, `category_id`, `stock_quantity`, `low_stock_alert`, `sku`, `track_inventory`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `variations`, `additional_images`, `created_at`, `updated_at`, `size`, `certification`, `short_description`, `detailed_description`, `how_to_use`, `additional_tips`, `gallery_images`) VALUES ('11', 'سيروم روز لتفتيح البقع الداكنة', 'استعيدي إشراقة بشرتك الطبيعية ووحدي لونها! سيروم روز سكين لتفتيح البقع هو الحل الطبيعي والآمن للتخلص من التصبغات والكلف.', '150.00', '120.00', '20', 'active', 'uploads/products/692b61edde17d.jpeg', '10', '10', '2', '434', '1', '0', '0', '0', NULL, 'يستخدم مرتين يومياً صباحاً ومساءً على بشرة نظيفة.', NULL, NULL, '2025-11-29 23:12:34', '2025-11-29 23:13:17', '30 ml', 'مُرخص ومعتمد من وزارة الصحة المصرية', 'وداعاً للبقع الداكنة! سيروم طبيعي 100% لتفتيح وتوحيد لون البشرة.', 'تم تطوير سيروم روز سكين ليكون سلاحك ضد التصبغات. يحتوي على تركيبة طبيعية 100% تستهدف البقع الداكنة وآثار الحبوب القديمة، مما يمنح بشرتك نضارة فورية وملمساً ناعماً دون استخدام مواد كيميائية قاسية.', '1. نظفي بشرتك جيداً وجففيها.\r\n2. ضعي 3-5 قطرات من السيروم على الوجه أو أماكن البقع.\r\n3. دلكي بلطف بحركات دائرية حتى الامتصاص.\r\n4. يستخدم صباحاً ومساءً.', 'للحصول على أفضل النتائج، يفضل استخدام واقي شمس أثناء النهار عند الخروج خلال فترة استخدام السيروم.', '[\"uploads/products/692b61eddf108.jpeg\", \"uploads/products/692b61eddf666.jpeg\", \"uploads/products/692b61eddfb64.jpeg\", \"uploads/products/692b61eddff7d.jpeg\"]');/nINSERT INTO `products` (`id`, `name`, `description`, `price`, `discount_price`, `discount_percentage`, `status`, `image`, `category_id`, `stock_quantity`, `low_stock_alert`, `sku`, `track_inventory`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `variations`, `additional_images`, `created_at`, `updated_at`, `size`, `certification`, `short_description`, `detailed_description`, `how_to_use`, `additional_tips`, `gallery_images`) VALUES ('12', 'تنت مورد للخدود والشفاه (Roz Tint & Hydrate)', 'تألقي بإطلالة وردية طبيعية وجذابة في ثوانٍ! مورد روز سكين يمنحك لوناً ثابتاً وترطيباً عميقاً بلمسة واحدة.', '100.00', '75.00', '25', 'active', 'uploads/products/692b63246b3b0.jpeg', NULL, '20', '5', '435', '1', '0', '0', '0', NULL, 'للاستخدام الخارجي فقط. يحفظ في مكان بارد.', NULL, NULL, '2025-11-29 23:17:15', '2025-11-29 23:18:28', '10 ml', 'مُرخص ومعتمد من وزارة الصحة المصرية', 'توريد وترطيب 2 في 1. لون ثابت ومظهر طبيعي يدوم طويلاً.', 'اكتشفي سر الخدود الوردية والشفاه الجذابة مع Roz Tint & Hydrate. صُمم هذا التنت بتركيبة مائية خفيفة وسريعة الامتصاص ليعطيكِ لوناً وردياً طبيعياً يدوم طوال اليوم. بفضل مكوناته المرطبة، فهو لا يسبب جفاف الشفاه، بل يتركها ناعمة ومشرقة. يأتي بعبوة \"رول أون\" عملية وسهلة الاستخدام لتطبيق دقيق وسريع في أي وقت.', '1. مرري كرة الرول برفق على الشفاه أو الخدود.\r\n2. وزعي اللون بسرعة باستخدام أطراف أصابعك للدمج.\r\n3. يمكنك وضع طبقة إضافية لزيادة حدة اللون.', 'للحصول على مظهر \"No Makeup\" طبيعي، ضعي كمية بسيطة جداً وادمجيها جيداً. يمكن استخدامه أيضاً كظل عيون كريمي خفيف.', '[\"uploads/products/692b63246b6a1.jpeg\"]');/nINSERT INTO `products` (`id`, `name`, `description`, `price`, `discount_price`, `discount_percentage`, `status`, `image`, `category_id`, `stock_quantity`, `low_stock_alert`, `sku`, `track_inventory`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `variations`, `additional_images`, `created_at`, `updated_at`, `size`, `certification`, `short_description`, `detailed_description`, `how_to_use`, `additional_tips`, `gallery_images`) VALUES ('13', 'تونك الشعر المقوي (Roz Hair Tonic)', 'جددي حيوية شعرك! تونك روز سكين بتركيبة فعالة لعلاج الهيشان، تقوية البصيلات، والحفاظ على صحة فروة الرأس من الفطريات والقشرة.', '140.00', '110.00', '21', 'active', 'uploads/products/692b6e549a3be.jpeg', '10', '15', '3', '436', '1', '0', '0', '0', NULL, 'يستخدم يومياً لنتائج أفضل.', NULL, NULL, '2025-11-30 00:03:23', '2025-11-30 00:06:12', '100 ml', 'مُرخص ومعتمد من وزارة الصحة المصرية', 'علاج مكثف للشعر: مضاد للهيشان، مقوي للجذور، ومطهر للفروة.', 'تونك الشعر من روز سكين هو الحل المتكامل لمشاكل الشعر اليومية. تركيبته المائية الخفيفة الغنية بالمستخلصات الطبيعية تعمل على:\r\n1. القضاء على الهيشان (Anti-Frizz) وتسهيل التصفيف.\r\n2. تغذية فروة الرأس وتقوية الجذور لمنع التساقط.\r\n3. حماية فروة الرأس من الفطريات والقشرة بفضل خصائصه المطهرة.\r\nمثالي للاستخدام اليومي ولا يسبب ملمساً دهنياً.', '1. رجي العبوة جيداً.\r\n2. رشي التونك مباشرة على فروة الرأس وعلى طول الشعر (سواء كان جافاً أو مبللاً).\r\n3. دلكي الفروة بأطراف أصابعك لمدة دقيقتين لتنشيط الدورة الدموية وامتصاص التونك.\r\n4. لا يُشطف بالماء.', 'للحصول على أفضل نتيجة في منع الهيشان، استخدميه قبل تصفيف الشعر مباشرة. ممتاز للمحجبات لتهوية وتطهير الفروة.', '[\"uploads/products/692b6e549b2d2.jpeg\", \"uploads/products/692b6e549c83c.jpeg\"]');/nINSERT INTO `products` (`id`, `name`, `description`, `price`, `discount_price`, `discount_percentage`, `status`, `image`, `category_id`, `stock_quantity`, `low_stock_alert`, `sku`, `track_inventory`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `variations`, `additional_images`, `created_at`, `updated_at`, `size`, `certification`, `short_description`, `detailed_description`, `how_to_use`, `additional_tips`, `gallery_images`) VALUES ('14', 'سيروم روز الليلي للهالات (Roz Night Repair)', 'استيقظي بعيون مشرقة وبشرة نضرة! سيروم ليلي مكثف بتركيبة (Hempo Bali) الغنية لتغذية محيط العين وعلاج الهالات السوداء أثناء النوم.', '180.00', '145.00', '19', 'active', 'uploads/products/692b6e84ab90d.jpeg', '10', '20', '5', '437', '1', '0', '0', '0', NULL, 'للإستخدام الليلي فقط. تجنب التعرض للضوء المباشر بعد وضعه.', NULL, NULL, '2025-11-30 00:05:14', '2025-11-30 00:07:00', '30 ml', 'مُرخص ومعتمد من وزارة الصحة المصرية', 'علاج ليلي مركز: وداعاً للهالات السوداء وعلامات الإرهاق.', 'صُمم سيروم روز الليلي ليعمل بينما ترتاحين. يحتوي على تركيبة مركزة وغنية (Rich in 5000 Hempo Bali) تتغلغل بعمق لترميم البشرة المجهدة. \r\nأهم الفوائد:\r\n1. استهداف الهالات السوداء وتقليل مظهرها بشكل ملحوظ.\r\n2. تغذية فائقة لمنطقة حول العين والوجه لتعويض الجفاف.\r\n3. محاربة الخطوط الرفيعة وعلامات الأكسدة الناتجة عن إجهاد اليوم.', '1. يُستخدم مساءً قبل النوم على بشرة نظيفة تماماً.\r\n2. ضعي 2-3 قطرات على أطراف أصابعك.\r\n3. ربتي برفق (الطبطبة) على منطقة تحت العين وعظمة الخد، ويمكن توزيعه على باقي الوجه.\r\n4. اتركيه طوال الليل لتمتصه البشرة.', 'للحصول على نتيجة فعالة في علاج الهالات، يفضل استخدامه بانتظام كل ليلة، مع الحرص على شرب كميات كافية من الماء.', '[\"uploads/products/692b6e84abef1.jpeg\", \"uploads/products/692b6e84acbce.jpeg\", \"uploads/products/692b6e84ad14b.jpeg\"]');/nINSERT INTO `products` (`id`, `name`, `description`, `price`, `discount_price`, `discount_percentage`, `status`, `image`, `category_id`, `stock_quantity`, `low_stock_alert`, `sku`, `track_inventory`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `variations`, `additional_images`, `created_at`, `updated_at`, `size`, `certification`, `short_description`, `detailed_description`, `how_to_use`, `additional_tips`, `gallery_images`) VALUES ('15', 'سيروم تقوية الأظافر (Roz Nail Serum)', 'أظافر قوية، طويلة، وصحية! سيروم روز سكين الغني بالفيتامينات والزيوت الطبيعية يعالج التكسر ويرطب الجلد المحيط بالأظافر (Cuticles) بعمق.', '120.00', '95.00', '21', 'active', 'uploads/products/692b769d35bf7.jpeg', '10', '25', '5', '438', '1', '0', '0', '0', NULL, 'للاستخدام الخارجي فقط.', NULL, NULL, '2025-11-30 00:40:35', '2025-11-30 00:41:33', '15 ml', 'مُرخص ومعتمد من وزارة الصحة المصرية', 'علاج مكثف للأظافر: يمنع التكسر، يرطب الكيوتيكل، ويزيد اللمعان.', 'احصلي على أظافر صالونات التجميل في منزلك. سيروم الأظافر من روز سكين يحتوي على مزيج مركز من الزيوت الطبيعية والفيتامينات التي تعمل على:\r\n1. تقوية الأظافر الهشة ومنع تكسرها أو تقشرها.\r\n2. ترطيب الجلد حول الظفر (Cuticles) وإزالة الزوائد الجافة.\r\n3. تحفيز النمو الصحي للأظافر وإعطائها لمعاناً طبيعياً وجذاباً.', '1. تأكدي من نظافة يديك وخلو الأظافر من الطلاء.\r\n2. ضعي قطرة صغيرة من السيروم على كل ظفر.\r\n3. دلكي السيروم جيداً على الظفر والجلد المحيط به حتى يتم امتصاصه.\r\n4. يستخدم يومياً للحصول على أفضل النتائج.', 'يفضل استخدامه قبل النوم للسماح للزيوت بالتغلغل طوال الليل دون غسل اليدين.', '[\"uploads/products/692b769d360bd.jpeg\", \"uploads/products/692b769d36590.jpeg\", \"uploads/products/692b769d36a61.jpeg\"]');/nINSERT INTO `products` (`id`, `name`, `description`, `price`, `discount_price`, `discount_percentage`, `status`, `image`, `category_id`, `stock_quantity`, `low_stock_alert`, `sku`, `track_inventory`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `variations`, `additional_images`, `created_at`, `updated_at`, `size`, `certification`, `short_description`, `detailed_description`, `how_to_use`, `additional_tips`, `gallery_images`) VALUES ('17', 'واقي الشمس المعدني الطبيعي', 'حماية متكاملة من الشمس بتركيبة معدنية 100%. كريم روز سكين الواقي يوفر حاجزاً فيزيائياً ضد الأشعة الضارة مع ترطيب عميق، مناسب للبشرة الحساسة ولا يترك طبقة بيضاء مزعجة.', '250.00', '190.00', NULL, 'active', 'uploads/products/692c226a17fd9.jpeg', '10', '50', '5', 'ROZ-SUN-01', '1', '0', '0', '0', NULL, NULL, NULL, NULL, '2025-11-30 12:50:12', '2025-11-30 12:54:46', '50 مل', 'مُرخص ومعتمد من وزارة الصحة المصرية', 'حماية طبيعية 100% من أشعة الشمس بتركيبة معدنية لطيفة على البشرة.', 'واقي الشمس من روز سكين بتركيبة Natural Mineral يعتمد على المكونات الفيزيائية لعكس أشعة الشمس (UVA/UVB) بدلاً من امتصاصها كيميائياً. تركيبته الكريمية غنية بالمواد المرطبة، مما يجعله آمناً تماماً للحوامل، الأطفال، وأصحاب البشرة الحساسة. يمنحك تغطية كاملة دون انسداد المسام.', '1. ضعي كمية وفيرة من الكريم على الوجه والرقبة وجميع المناطق المكشوفة قبل التعرض للشمس بـ 15 دقيقة.\r\n2. دلكي بلطف حتى تمتصه البشرة.\r\n3. كرري وضعه كل ساعتين، أو مباشرة بعد السباحة، التعرق، أو التنشيف بالمنشفة.', 'للحصول على حماية مثالية، لا تبخلي في الكمية المستخدمة. يُنصح باستخدامه كخطوة أخيرة في روتين العناية الصباحي قبل وضع المكياج.', '[\"uploads/products/692c226a185bc.jpeg\", \"uploads/products/692c226a18b76.jpeg\", \"uploads/products/692c226a190eb.jpeg\"]');/nINSERT INTO `products` (`id`, `name`, `description`, `price`, `discount_price`, `discount_percentage`, `status`, `image`, `category_id`, `stock_quantity`, `low_stock_alert`, `sku`, `track_inventory`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `variations`, `additional_images`, `created_at`, `updated_at`, `size`, `certification`, `short_description`, `detailed_description`, `how_to_use`, `additional_tips`, `gallery_images`) VALUES ('19', 'بودرة توريد الشفايف والخدود الطبيعية', 'بودرة مخملية بتركيبة طبيعية 100% تمنح شفتيك وخدودك لوناً وردياً ثابتاً وجذاباً. بديل طبيعي وصحي لأحمر الشفاه، يدوم طويلاً ولا يسبب الاسمرار أو الجفاف.', '180.00', '120.00', NULL, 'active', 'uploads/products/692c2507ad102.jpeg', '10', '100', '10', 'ROZ-LIPS-01', '1', '0', '0', '0', NULL, NULL, NULL, NULL, '2025-11-30 13:05:18', '2025-11-30 13:05:56', '15 جرام', 'مكونات طبيعية (دم الغزال الأصلي)', 'توريد طبيعي وثابت للشفايف والخدود بلمسة مخملية ناعمة.', 'اكتشفي سر الجمال الطبيعي مع بودرة Roz Skin لتوريد الشفايف والخدود. تعتمد التركيبة على مسحوق العكر الفاسي (دم الغزال) النقي، الذي يمنح البشرة لوناً حيوياً ومشرقاً يشبه \"التاتو\" الطبيعي. خالية تماماً من الرصاص والمواد الكيميائية، مما يجعلها آمنة للاستخدام اليومي ولا تسبب اسمرار الشفاه على المدى الطويل.', '1. بللي الفرشاة المرفقة بقليل من الماء أو ماء الورد (أو يمكنك وضع قليل من الفازلين على شفتيك أولاً).\r\n2. اغمسي طرف الفرشاة في البودرة برفق.\r\n3. وزعي اللون على الشفايف من الداخل للخارج، أو ضعي نقطة صغيرة على الخدود وادمجيه بسرعة.\r\n4. يمكنك التحكم في درجة اللون بتكرار الطبقات.', 'للحصول على ثبات أعلى وترطيب فائق، يفضل خلط كمية صغيرة من البودرة مع قطرة من زيت الجوجوبا أو مرطب الشفاه قبل التطبيق. لنتائج \"جلوسي\"، ضعي ملمع شفاه شفاف فوقها.', '[\"uploads/products/692c2507ad887.jpeg\"]');/n/n/n-- Table: purchase_order_items/nDROP TABLE IF EXISTS `purchase_order_items`;/nCREATE TABLE `purchase_order_items` ( `id` int NOT NULL AUTO_INCREMENT, `purchase_order_id` int NOT NULL, `product_id` int NOT NULL, `quantity` int NOT NULL, `unit_price` decimal(10,2) NOT NULL, `total_price` decimal(10,2) NOT NULL, `received_quantity` int DEFAULT '0', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_purchase_order_id` (`purchase_order_id`), KEY `idx_product_id` (`product_id`), CONSTRAINT `purchase_order_items_ibfk_1` FOREIGN KEY (`purchase_order_id`) REFERENCES `purchase_orders` (`id`) ON DELETE CASCADE, CONSTRAINT `purchase_order_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: purchase_orders/nDROP TABLE IF EXISTS `purchase_orders`;/nCREATE TABLE `purchase_orders` ( `id` int NOT NULL AUTO_INCREMENT, `order_number` varchar(50) NOT NULL, `supplier_id` int DEFAULT NULL, `total_amount` decimal(10,2) NOT NULL, `status` enum('pending','approved','received','cancelled') DEFAULT 'pending', `notes` text, `created_by` int DEFAULT NULL, `received_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `order_number` (`order_number`), KEY `idx_order_number` (`order_number`), KEY `idx_supplier_id` (`supplier_id`), KEY `idx_status` (`status`), CONSTRAINT `purchase_orders_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: raw_materials/nDROP TABLE IF EXISTS `raw_materials`;/nCREATE TABLE `raw_materials` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `category` varchar(100) DEFAULT NULL COMMENT 'زيوت، فيتامينات، عطور، مواد حافظة', `unit` enum('liter','ml','kg','gram','piece') NOT NULL DEFAULT 'ml', `quantity` decimal(10,3) NOT NULL DEFAULT '0.000', `unit_cost` decimal(10,2) NOT NULL DEFAULT '0.00', `supplier_id` int DEFAULT NULL, `min_quantity` decimal(10,3) DEFAULT '10.000', `expiry_date` date DEFAULT NULL, `notes` text, `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_category` (`category`), KEY `idx_supplier` (`supplier_id`), CONSTRAINT `raw_materials_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: raw_materials/nINSERT INTO `raw_materials` (`id`, `name`, `category`, `unit`, `quantity`, `unit_cost`, `supplier_id`, `min_quantity`, `expiry_date`, `notes`, `is_active`, `created_at`, `updated_at`) VALUES ('1', 'Marasy', 'عناية بالوجه', 'liter', '0.002', '3.00', NULL, '20.000', NULL, NULL, '1', '2025-11-15 13:35:22', '2025-11-15 13:35:22');/n/n/n-- Table: recipe_ingredients/nDROP TABLE IF EXISTS `recipe_ingredients`;/nCREATE TABLE `recipe_ingredients` ( `id` int NOT NULL AUTO_INCREMENT, `recipe_id` int NOT NULL, `material_type` enum('raw','packaging','wrapping') NOT NULL, `material_id` int NOT NULL, `quantity_needed` decimal(10,3) NOT NULL COMMENT 'الكمية المطلوبة لدفعة واحدة', `unit` varchar(20) NOT NULL, `cost` decimal(10,2) DEFAULT '0.00' COMMENT 'التكلفة لهذا المكون', `notes` text, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_recipe` (`recipe_id`), KEY `idx_material` (`material_type`,`material_id`), CONSTRAINT `recipe_ingredients_ibfk_1` FOREIGN KEY (`recipe_id`) REFERENCES `product_recipes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: reviews/nDROP TABLE IF EXISTS `reviews`;/nCREATE TABLE `reviews` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `product_id` int DEFAULT NULL, `service_id` int DEFAULT NULL, `rating` int NOT NULL, `comment` text, `status` enum('pending','approved','rejected') DEFAULT 'pending', `is_approved` tinyint(1) DEFAULT '0', `is_visible` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `unique_user_product_review` (`user_id`,`product_id`), UNIQUE KEY `unique_user_service_review` (`user_id`,`service_id`), KEY `product_id` (`product_id`), KEY `service_id` (`service_id`), CONSTRAINT `reviews_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, CONSTRAINT `reviews_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE, CONSTRAINT `reviews_ibfk_3` FOREIGN KEY (`service_id`) REFERENCES `beauty_services` (`id`) ON DELETE CASCADE, CONSTRAINT `reviews_chk_1` CHECK (((`rating` >= 1) and (`rating` <= 5))) ) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: reviews/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('21', '1', NULL, NULL, '5', 'منتجات رائعة وخدمة ممتازة! بشرتي تحسنت كثيراً بعد استخدام منتجاتكم 💕', 'pending', '1', '1', '2025-11-30 01:46:00', '2025-11-30 01:46:00');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('22', '2', NULL, NULL, '5', 'أفضل متجر للعناية بالبشرة! المنتجات طبيعية 100% والنتائج مذهلة ✨', 'pending', '1', '1', '2025-11-30 01:46:00', '2025-11-30 01:46:00');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('23', '3', NULL, NULL, '5', 'تجربة تسوق رائعة والتوصيل سريع جداً. أنصح الجميع بالتجربة 🌸', 'pending', '1', '1', '2025-11-30 01:46:00', '2025-11-30 01:46:00');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('24', '4', NULL, NULL, '4', 'منتجات عالية الجودة وأسعار مناسبة. سأكرر الطلب بالتأكيد 👍', 'pending', '1', '1', '2025-11-30 01:46:00', '2025-11-30 01:46:00');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('25', '5', NULL, NULL, '5', 'بشرتي أصبحت أكثر نضارة وإشراقاً! شكراً روز سكين 🌹', 'pending', '1', '1', '2025-11-30 01:46:00', '2025-11-30 01:46:00');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('46', '8', NULL, NULL, '5', 'بصراحة سيروم الضوافر فرق معايا جدا، ضوافري كانت ضعيفة وبتتقطم من اقل حاجة، دلوقتي بقيت احسها اجمد وطولت.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('47', '9', NULL, NULL, '5', 'التنت لونه طبيعي جدا وثابت معايا طول اليوم في الكلية، مش بيبقع ولا بينشف شفايفي زي انواع تانية جربتها.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('48', '10', NULL, NULL, '5', 'التونك قلل الهيشان عندي بشكل ملحوظ وريحته كمان حلوة وهادية، حبيت النتيجة اوي.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('49', '11', NULL, NULL, '5', 'عملت جلسة تنظيف بشرة والفرق بان من اول مرة خصوصا في منطقة الأنف، الرؤوس السوداء اختفت ووشي رايق.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('50', '12', NULL, NULL, '4', 'سيروم الحبوب ده نشفلي الحباية في يومين بالظبط، بجد كنت محتاجاه جدا عشان عندي مناسبة، شكرا ليكم.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('51', '13', NULL, NULL, '5', 'أسعاركم بجد تحفة وعلى قد الايد ومناسبة لينا كطلبة، ياريت تفضلوا كدة علطول ومتغلوش الحاجة.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('52', '14', NULL, NULL, '5', 'سكراب الشفايف بينعم جدا وبيشيل الجلد الميت، بستخدمه قبل التنت وبيبقى شكله احلى بكتير.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('53', '15', NULL, NULL, '5', 'الهير ميست ريحته تحفة وثابتة في شعري، كل اما اتحرك اشم ريحة نظافة كدة ✨', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('54', '16', NULL, NULL, '5', 'تسلم ايد البنوتة اللي عملتلي الهارد جيل، شغلها نظيف ومرتب واللون طلع زي ما كنت عايزاه بالظبط.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('55', '17', NULL, NULL, '5', 'الصن بلوك خفيف ومش بيعمل طبقة بيضا ولا بيزيت الوش، مناسب جدا للبشرة المختلطة.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('56', '18', NULL, NULL, '4', 'بقالي اسبوعين بستخدم السيروم الليلي وحاسة بفرق بسيط في الهالات والنضارة، هستمر عليه واشوف النتيجة النهائية.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('57', '19', NULL, NULL, '5', 'ركبت رموش عندكم وبقالها فترة وموقعتش وشكلها مش أوفر، بجد شغلكم حلو.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('58', '20', NULL, NULL, '5', 'الماسك البودر بينور الوش من اول استخدام، بنصح اي حد يجربه.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('59', '21', NULL, NULL, '5', 'تعامل البنات في السنتر ذوق جدا ومحترمين، والمكان مريح نفسيا.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('60', '22', NULL, NULL, '5', 'مورد الخدود بيدي تورد خفيف كأنه طبيعي، بحطه وأنا نازلة الصبح بيبقى شكله هادي وحلو.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('61', '23', NULL, NULL, '5', 'بدأت جلسات ديرما بن عشان آثار الحبوب وشايفة تحسن في ملمس بشرتي، المكان نظيف والدكاترة شاطرين.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('62', '24', NULL, NULL, '5', 'الأوردر وصلني بسرعة والتغليف كان كويس وحافظ على الحاجة انها متتكسرش.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('63', '25', NULL, NULL, '5', 'استفدت من عرض الـ 50 جنيه بتاع تنظيف البشرة وكانت تجربة حلوة اوي مقابل السعر ده.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('64', '26', NULL, NULL, '5', 'سيروم الحواجب والرموش ممتاز، لاحظت ان الفراغات اللي في حواجبي بدأت تتملي.', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('65', '27', NULL, NULL, '5', 'دي تالت مرة اطلب منكم، بجد حاجتكم مضمونة وفعالة وسعرها فيها، بالتوفيق ليكم ❤️', 'pending', '1', '1', '2025-11-30 01:48:24', '2025-11-30 01:48:24');/nINSERT INTO `reviews` (`id`, `user_id`, `product_id`, `service_id`, `rating`, `comment`, `status`, `is_approved`, `is_visible`, `created_at`, `updated_at`) VALUES ('66', '1', '12', NULL, '4', 'جميلللللللل', 'approved', '0', '1', '2025-11-30 11:26:19', '2025-11-30 11:26:19');/n/n/n-- Table: services/nDROP TABLE IF EXISTS `services`;/nCREATE TABLE `services` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `price` decimal(10,2) NOT NULL, `discount_percentage` decimal(5,2) DEFAULT '0.00', `duration` int DEFAULT '60' COMMENT 'Duration in minutes', `category` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT 'skin_care', `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `additional_images` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `available_branches` text COLLATE utf8mb4_unicode_ci, `is_limited_stock` tinyint(1) DEFAULT '0', `is_free_shipping` tinyint(1) DEFAULT '1', `is_medicinal` tinyint(1) DEFAULT '0', `medicinal_leaflet` text COLLATE utf8mb4_unicode_ci, `usage_instructions` text COLLATE utf8mb4_unicode_ci, `stock_quantity` int DEFAULT '0', `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: services/nINSERT INTO `services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('1', 'تنظيف البشرة العميق', 'جلسة تنظيف عميق للبشرة تزيل الشوائب والرؤوس السوداء وتنقي المسام', '250.00', '20.00', '60', 'skin_care', NULL, NULL, NULL, '[1,2]', '0', '1', '0', NULL, NULL, '0', '1', '2025-11-19 06:30:10', '2025-11-19 06:55:29');/nINSERT INTO `services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('2', 'المساج والاسترخاء', 'جلسات مساج علاجية تساعد على الاسترخاء والتخلص من التوتر والإرهاق اليومي', '300.00', '15.00', '45', 'massage', NULL, NULL, NULL, '[1,2]', '0', '1', '0', NULL, NULL, '0', '1', '2025-11-19 06:30:10', '2025-11-19 06:55:29');/nINSERT INTO `services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('3', 'صبغة الشعر', 'صبغة شعر احترافية بأحدث الألوان والتقنيات مع حماية كاملة للشعر', '400.00', '0.00', '120', 'hair_care', NULL, NULL, NULL, '[1,2]', '0', '1', '0', NULL, NULL, '0', '1', '2025-11-19 06:30:10', '2025-11-19 06:55:29');/nINSERT INTO `services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('4', 'مكياج سهرة', 'مكياج احترافي للمناسبات والسهرات بأحدث صيحات الموضة', '350.00', '10.00', '90', 'makeup', NULL, NULL, NULL, '[1,2]', '0', '1', '0', NULL, NULL, '0', '1', '2025-11-19 06:30:10', '2025-11-19 06:55:29');/nINSERT INTO `services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('5', 'ماسك الوجه المغذي', 'ماسك طبيعي يغذي البشرة ويعيد لها نضارتها وحيويتها', '180.00', '0.00', '45', 'skin_care', NULL, NULL, NULL, '[1,2]', '0', '1', '0', NULL, NULL, '0', '1', '2025-11-19 06:30:10', '2025-11-19 06:55:29');/nINSERT INTO `services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('6', 'باديكير وماني كير', 'عناية كاملة بالأظافر والقدمين مع تلميع وتزيين احترافي', '150.00', '25.00', '60', 'nails', NULL, NULL, NULL, '[1,2]', '0', '1', '0', NULL, NULL, '0', '1', '2025-11-19 06:30:10', '2025-11-19 06:55:29');/nINSERT INTO `services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('7', 'علاج الشعر بالكيراتين', 'علاج متقدم للشعر بالكيراتين لفرد وتنعيم الشعر وإعطائه لمعان طبيعي', '800.00', '15.00', '180', 'hair_care', NULL, NULL, NULL, '[1,2]', '0', '1', '0', NULL, NULL, '0', '1', '2025-11-19 06:30:10', '2025-11-19 06:55:29');/nINSERT INTO `services` (`id`, `name`, `description`, `price`, `discount_percentage`, `duration`, `category`, `image`, `additional_images`, `variations`, `available_branches`, `is_limited_stock`, `is_free_shipping`, `is_medicinal`, `medicinal_leaflet`, `usage_instructions`, `stock_quantity`, `is_active`, `created_at`, `updated_at`) VALUES ('8', 'تقشير البشرة الكيميائي', 'تقشير كيميائي لطيف يزيل خلايا الجلد الميتة ويجدد البشرة', '450.00', '0.00', '75', 'skin_care', NULL, NULL, NULL, '[1,2]', '0', '1', '0', NULL, NULL, '0', '1', '2025-11-19 06:30:10', '2025-11-19 06:55:29');/n/n/n-- Table: settings/nDROP TABLE IF EXISTS `settings`;/nCREATE TABLE `settings` ( `id` int NOT NULL AUTO_INCREMENT, `setting_key` varchar(255) NOT NULL, `setting_value` text, `setting_type` enum('string','number','boolean','json') DEFAULT 'string', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `setting_key` (`setting_key`) ) ENGINE=InnoDB AUTO_INCREMENT=1073 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: settings/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('1', 'site_name', 'روز سكين', 'string', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('2', 'whatsapp_link', 'https://wa.me/20123456789', 'string', '2025-11-12 07:52:25', '2025-11-18 06:05:29');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('3', 'facebook_link', 'https://facebook.com/rozskin', 'string', '2025-11-12 07:52:25', '2025-11-18 06:05:29');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('4', 'instagram_link', 'https://instagram.com/rozskin', 'string', '2025-11-12 07:52:25', '2025-11-18 06:05:29');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('5', 'threads_link', 'https://threads.net/@rozskin', 'string', '2025-11-12 07:52:25', '2025-11-18 06:05:29');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('6', 'store_status', '1', 'boolean', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('7', 'free_shipping_threshold', '500', 'number', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('8', 'default_currency', 'EGP', 'string', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('9', 'tax_rate', '14', 'number', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('10', 'cash_on_delivery_enabled', '1', 'boolean', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('11', 'fawry_enabled', '1', 'boolean', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('12', 'vodafone_cash_enabled', '1', 'boolean', '2025-11-12 07:52:25', '2025-11-12 07:52:25');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('14', 'logo_text', 'Roz Skin', 'string', '2025-11-15 07:13:45', '2025-11-15 07:13:45');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('16', 'site_phone', '01098890999', 'string', '2025-11-15 07:13:45', '2025-11-15 07:13:45');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('17', 'site_email', '', 'string', '2025-11-15 07:13:45', '2025-11-15 07:13:45');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('18', 'site_address', '', 'string', '2025-11-15 07:13:45', '2025-11-15 07:13:45');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('23', 'tiktok_link', 'https://tiktok.com/@rozskin', 'string', '2025-11-15 07:13:45', '2025-11-18 06:05:29');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('24', 'twitter_link', 'https://threads.net/@rozskin', 'string', '2025-11-15 07:13:45', '2025-11-18 06:11:48');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('25', 'primary_color', '#7c3aed', 'string', '2025-11-15 07:13:45', '2025-11-15 07:13:45');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('26', 'success_color', '#10b981', 'string', '2025-11-15 07:13:45', '2025-11-15 07:13:45');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('27', 'warning_color', '#f59e0b', 'string', '2025-11-15 07:13:45', '2025-11-15 07:13:45');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('28', 'danger_color', '#ef4444', 'string', '2025-11-15 07:13:45', '2025-11-15 07:13:45');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('29', 'font_family', 'Cairo', 'string', '2025-11-15 07:13:45', '2025-11-20 03:39:23');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('30', 'theme_mode', 'light', 'string', '2025-11-15 07:13:45', '2025-11-15 07:13:45');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('31', 'shipping_cost', '50', 'string', '2025-11-15 07:13:45', '2025-11-15 07:13:45');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('34', 'hero_title', 'دللي بشرتك بلمسة من الطبيعة', 'string', '2025-11-15 07:13:45', '2025-11-18 14:43:05');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('35', 'hero_description', 'منتجات عناية بالبشرة والجمال طبيعية 100% مع خدمات متخصصة في مركزنا', 'string', '2025-11-15 07:13:45', '2025-11-18 14:12:38');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('36', 'hero_bg_image', 'https://i.pinimg.com/736x/15/ef/dd/15efddf36f234cf2eecb724bbdeb1098.jpg', 'string', '2025-11-15 07:13:45', '2025-11-29 22:31:51');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('85', 'telegram_enabled', '1', 'string', '2025-11-16 10:51:05', '2025-11-16 10:57:15');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('86', 'telegram_bot_token', '8353028206:AAEdDMjPiYTZf36BvGM6UWlQ0LQ2q7J_75w', 'string', '2025-11-16 10:51:05', '2025-11-16 10:56:42');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('87', 'telegram_chat_id', '-5006795702', 'string', '2025-11-16 10:51:05', '2025-11-16 10:56:42');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('168', 'contact_phone', '+20 123 456 7890', 'string', '2025-11-18 06:05:29', '2025-11-18 06:05:29');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('169', 'contact_email', 'info@rozskin.com', 'string', '2025-11-18 06:05:29', '2025-11-18 06:05:29');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('170', 'contact_address', 'القاهرة، مصر', 'string', '2025-11-18 06:05:29', '2025-11-18 06:05:29');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('171', 'store_name', 'روز سكين', 'string', '2025-11-18 06:05:29', '2025-11-20 04:04:42');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('172', 'store_description', 'دللي بشرتك بلمسة من الطبيعة', 'string', '2025-11-18 06:05:29', '2025-11-18 06:05:29');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('178', 'snapchat_link', 'https://snapchat.com/add/rozskin', 'string', '2025-11-18 06:05:29', '2025-11-18 06:05:29');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('180', 'youtube_link', 'https://youtube.com/@rozskin', 'string', '2025-11-18 06:05:29', '2025-11-18 06:05:29');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('280', 'hero_overlay_color', '#e57393', 'string', '2025-11-18 14:12:38', '2025-11-18 14:41:48');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('281', 'hero_overlay_opacity', '0.55', 'string', '2025-11-18 14:12:38', '2025-11-30 01:06:55');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('316', 'visit_notifications_enabled', '1', 'boolean', '2025-11-18 14:30:50', '2025-11-18 14:30:50');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('494', 'hero_bg_color', '#cc2e5b', 'string', '2025-11-20 03:38:15', '2025-11-20 03:57:02');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('496', 'hero_text_color', '#ffffff', 'string', '2025-11-20 03:38:15', '2025-11-20 03:38:15');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('499', 'secondary_color', '#2c3e50', 'string', '2025-11-20 03:38:15', '2025-11-20 03:38:15');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('501', 'show_stories', '1', 'string', '2025-11-20 03:38:15', '2025-11-20 03:52:22');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('502', 'show_quick_buttons', '1', 'string', '2025-11-20 03:38:15', '2025-11-20 03:38:15');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('503', 'show_featured_products', '1', 'string', '2025-11-20 03:38:15', '2025-11-20 03:38:15');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('504', 'sections_order', 'quick_buttons,featured_products,hero,stories', 'string', '2025-11-20 03:38:15', '2025-11-20 03:52:15');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('565', 'welcome_text', 'أهلا وسهلاً', 'string', '2025-11-20 03:44:23', '2025-11-20 03:52:06');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('606', 'store_color', '#ffffff', 'string', '2025-11-20 04:00:02', '2025-11-20 04:00:02');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('607', 'store_size', '56', 'string', '2025-11-20 04:00:02', '2025-11-20 04:00:02');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('611', 'hero_height', '48', 'string', '2025-11-20 04:05:26', '2025-11-20 04:05:26');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('613', 'hero_overlay', '0.41', 'string', '2025-11-20 04:05:26', '2025-11-20 04:05:26');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('614', 'hero_padding', '66', 'string', '2025-11-20 04:05:26', '2025-11-20 04:05:26');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('615', 'hero_radius', '2', 'string', '2025-11-20 04:05:26', '2025-11-20 04:05:26');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('616', 'home_vertical_cover', 'uploads/settings/vertical_cover_1763627574.jpg', 'string', '2025-11-20 12:32:46', '2025-11-20 12:32:54');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('648', 'home_vertical_cover_category', '10', 'string', '2025-11-20 12:32:46', '2025-11-20 12:32:46');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('723', 'home_vertical_cover_1', 'uploads/settings/vertical_cover_1_1763628147.jpg', 'string', '2025-11-20 12:42:23', '2025-11-20 12:42:27');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('724', 'home_vertical_cover_2', 'uploads/settings/vertical_cover_2_1763628147.jpeg', 'string', '2025-11-20 12:42:23', '2025-11-20 12:42:27');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('725', 'home_vertical_cover_3', 'uploads/settings/vertical_cover_3_1763628147.jpg', 'string', '2025-11-20 12:42:23', '2025-11-20 12:42:27');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('757', 'home_vertical_cover_speed', '2', 'string', '2025-11-20 12:42:23', '2025-11-20 12:53:36');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('758', 'home_vertical_cover_category_1', '12', 'string', '2025-11-20 12:42:23', '2025-11-20 12:42:23');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('759', 'home_vertical_cover_category_2', '10', 'string', '2025-11-20 12:42:23', '2025-11-20 12:42:23');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('760', 'home_vertical_cover_category_3', '12', 'string', '2025-11-20 12:42:23', '2025-11-20 12:42:23');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('881', 'site_logo', 'uploads/logo/logo_1763878004.png', 'string', '2025-11-23 08:06:44', '2025-11-23 08:06:44');/nINSERT INTO `settings` (`id`, `setting_key`, `setting_value`, `setting_type`, `created_at`, `updated_at`) VALUES ('882', 'logo_path', 'uploads/logo/logo_1763878004.png', 'string', '2025-11-23 08:06:44', '2025-11-23 08:06:44');/n/n/n-- Table: shipping_companies/nDROP TABLE IF EXISTS `shipping_companies`;/nCREATE TABLE `shipping_companies` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `coverage` enum('all','internal_only','gov_only') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'all', `default_rate_internal` decimal(10,2) DEFAULT '0.00', `default_rate_gov` decimal(10,2) DEFAULT '0.00', `op_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `op_phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: shipping_companies/nINSERT INTO `shipping_companies` (`id`, `name`, `coverage`, `default_rate_internal`, `default_rate_gov`, `op_name`, `op_phone`, `is_active`, `created_at`, `updated_at`) VALUES ('1', 'Marasy', 'all', '50.00', '52.00', 'س', '0', '1', '2025-11-15 08:38:06', '2025-11-15 08:38:06');/n/n/n-- Table: shipping_manifests/nDROP TABLE IF EXISTS `shipping_manifests`;/nCREATE TABLE `shipping_manifests` ( `id` int NOT NULL AUTO_INCREMENT, `manifest_number` varchar(50) NOT NULL, `shipping_company_id` int DEFAULT NULL, `delegate_name` varchar(255) DEFAULT NULL, `total_orders` int DEFAULT '0', `total_amount` decimal(10,2) DEFAULT '0.00', `shipping_cost` decimal(10,2) DEFAULT '0.00', `net_amount` decimal(10,2) DEFAULT '0.00', `notes` text, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `created_by` int DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `manifest_number` (`manifest_number`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: shipping_manifests/nINSERT INTO `shipping_manifests` (`id`, `manifest_number`, `shipping_company_id`, `delegate_name`, `total_orders`, `total_amount`, `shipping_cost`, `net_amount`, `notes`, `created_at`, `created_by`) VALUES ('1', 'MAN-20251115-9782', NULL, 'طكوط', '1', '43297.50', '30.00', '43267.50', 'طن', '2025-11-15 09:33:55', '1');/nINSERT INTO `shipping_manifests` (`id`, `manifest_number`, `shipping_company_id`, `delegate_name`, `total_orders`, `total_amount`, `shipping_cost`, `net_amount`, `notes`, `created_at`, `created_by`) VALUES ('2', 'MAN-20251117-2791', NULL, '', '4', '12420.00', '120.00', '12300.00', '', '2025-11-17 07:12:20', '1');/nINSERT INTO `shipping_manifests` (`id`, `manifest_number`, `shipping_company_id`, `delegate_name`, `total_orders`, `total_amount`, `shipping_cost`, `net_amount`, `notes`, `created_at`, `created_by`) VALUES ('3', 'MAN-20251117-8477', NULL, '', '4', '12420.00', '120.00', '12300.00', '', '2025-11-17 07:12:27', '1');/n/n/n-- Table: site_visits/nDROP TABLE IF EXISTS `site_visits`;/nCREATE TABLE `site_visits` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int DEFAULT NULL, `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `page` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'index', `referrer` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `device_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'Desktop', `browser` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'Unknown', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_user_id` (`user_id`), KEY `idx_created_at` (`created_at`), KEY `idx_ip` (`ip_address`) ) ENGINE=InnoDB AUTO_INCREMENT=1431 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: site_visits/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 14:31:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('2', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 14:35:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('3', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 14:37:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('4', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'test', 'http://localhost/KL/backend/test-visit-notification.php', 'Desktop', 'Chrome', '2025-11-18 14:39:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('5', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'test', 'http://localhost/KL/backend/test-visit-notification.php', 'Desktop', 'Chrome', '2025-11-18 14:39:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('6', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'test', 'http://localhost/KL/backend/test-visit-notification.php', 'Desktop', 'Chrome', '2025-11-18 14:39:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('7', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'test', 'http://localhost/KL/backend/test-visit-notification.php', 'Desktop', 'Chrome', '2025-11-18 14:40:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('8', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 14:40:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('9', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 14:40:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('10', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 14:41:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('11', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 14:41:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('12', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 14:41:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('13', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 14:43:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('14', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 14:44:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('15', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 14:46:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('16', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 14:59:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('17', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 15:01:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('18', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 15:03:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('19', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 15:14:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('20', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 15:15:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('21', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 15:21:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('22', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 15:21:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('23', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 15:39:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('24', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 15:43:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('25', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-18 23:36:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('26', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/', 'Desktop', 'Chrome', '2025-11-19 00:23:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('27', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/', 'Desktop', 'Chrome', '2025-11-19 00:41:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('28', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/sh/rozskin/backend/public/', 'Desktop', 'Chrome', '2025-11-19 02:04:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('29', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/sh/rozskin/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 02:04:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('30', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/sh/rozskin/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 02:04:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('31', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/', 'Desktop', 'Chrome', '2025-11-19 03:16:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('32', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 03:17:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('33', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 03:24:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('34', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 03:35:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('35', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 03:35:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('36', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/', 'Desktop', 'Chrome', '2025-11-19 03:35:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('37', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/', 'Desktop', 'Chrome', '2025-11-19 03:36:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('38', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/', 'Desktop', 'Chrome', '2025-11-19 03:36:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('39', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/', 'Desktop', 'Chrome', '2025-11-19 03:49:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('40', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/', 'Desktop', 'Chrome', '2025-11-19 03:54:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('41', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 05:47:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('42', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 05:56:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('43', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 05:56:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('44', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 06:29:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('45', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 06:52:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('46', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 06:52:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('47', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 07:28:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('48', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 07:28:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('49', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 07:30:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('50', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 07:35:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('51', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 07:38:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('52', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 07:55:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('53', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 08:03:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('54', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 08:11:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('55', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 08:12:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('56', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 08:28:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('57', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 08:43:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('58', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 08:50:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('59', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 08:51:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('60', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 08:51:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('61', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 08:54:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('62', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 08:54:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('63', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 08:55:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('64', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/', 'Desktop', 'Chrome', '2025-11-19 08:57:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('65', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/', 'Desktop', 'Chrome', '2025-11-19 09:00:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('66', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 09:00:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('67', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 09:24:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('68', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 09:27:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('69', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/', 'Desktop', 'Chrome', '2025-11-19 10:14:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('70', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 10:26:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('71', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 10:33:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('72', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 10:58:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('73', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 10:59:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('74', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:05:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('75', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:05:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('76', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:05:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('77', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:05:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('78', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:05:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('79', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/', 'Desktop', 'Chrome', '2025-11-19 11:38:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('80', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:38:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('81', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:39:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('82', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:39:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('83', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:39:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('84', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:40:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('85', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:40:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('86', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:40:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('87', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:40:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('88', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:40:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('89', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:41:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('90', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:42:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('91', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:42:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('92', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/', 'Desktop', 'Chrome', '2025-11-19 11:44:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('93', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 11:44:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('94', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:23:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('95', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:23:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('96', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:40:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('97', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:43:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('98', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:44:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('99', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:44:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('100', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:44:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('101', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:45:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('102', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:45:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('103', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:45:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('104', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:45:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('105', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:45:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('106', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:45:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('107', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:45:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('108', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:50:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('109', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:50:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('110', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:50:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('111', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:52:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('112', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:52:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('113', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:52:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('114', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:52:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('115', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:54:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('116', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:54:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('117', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:57:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('118', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 13:58:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('119', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:01:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('120', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:02:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('121', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:23:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('122', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:23:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('123', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:23:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('124', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:23:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('125', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:23:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('126', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:29:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('127', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:30:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('128', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:44:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('129', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:44:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('130', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:45:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('131', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:52:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('132', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:52:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('133', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:53:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('134', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:53:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('135', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:53:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('136', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:54:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('137', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 14:54:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('138', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 15:46:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('139', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 15:46:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('140', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 15:46:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('141', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 15:47:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('142', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 15:47:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('143', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 15:49:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('144', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 15:49:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('145', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 15:49:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('146', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 15:49:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('147', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 15:49:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('148', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 16:07:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('149', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 16:09:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('150', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 16:09:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('151', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 16:10:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('152', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 16:10:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('153', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 16:10:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('154', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 16:10:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('155', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 16:10:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('156', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 16:11:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('157', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 16:11:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('158', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-19 16:11:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('159', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:00:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('160', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:00:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('161', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:02:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('162', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:03:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('163', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:07:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('164', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:09:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('165', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:14:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('166', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:20:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('167', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:20:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('168', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:23:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('169', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:24:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('170', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:26:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('171', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:27:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('172', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:28:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('173', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:35:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('174', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:38:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('175', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:38:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('176', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:38:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('177', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:39:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('178', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:39:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('179', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:43:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('180', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:43:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('181', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:43:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('182', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:44:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('183', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:44:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('184', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:44:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('185', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:44:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('186', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:46:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('187', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:46:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('188', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:46:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('189', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:47:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('190', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:47:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('191', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:52:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('192', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:55:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('193', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:55:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('194', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:55:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('195', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:56:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('196', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:57:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('197', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:57:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('198', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 03:59:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('199', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 04:00:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('200', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 04:03:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('201', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 04:04:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('202', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 04:06:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('203', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 04:06:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('204', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 04:06:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('205', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 04:11:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('206', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 04:32:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('207', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 04:33:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('208', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 04:37:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('209', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 04:41:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('210', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 04:53:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('211', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:07:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('212', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:07:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('213', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:08:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('214', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:11:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('215', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:14:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('216', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:19:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('217', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:19:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('218', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:20:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('219', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:21:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('220', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:21:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('221', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:22:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('222', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:22:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('223', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:22:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('224', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:22:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('225', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:24:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('226', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:26:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('227', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:27:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('228', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:29:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('229', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:32:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('230', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:33:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('231', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:35:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('232', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:35:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('233', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:35:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('234', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:35:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('235', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:35:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('236', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:37:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('237', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:38:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('238', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 05:40:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('239', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kkl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:04:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('240', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:05:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('241', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:05:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('242', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:05:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('243', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:05:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('244', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KkL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:05:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('245', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:11:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('246', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:19:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('247', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:19:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('248', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:20:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('249', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:20:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('250', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:20:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('251', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:24:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('252', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:24:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('253', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:24:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('254', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:24:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('255', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:27:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('256', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:30:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('257', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:30:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('258', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:30:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('259', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:30:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('260', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:31:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('261', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:31:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('262', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:31:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('263', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:31:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('264', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:31:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('265', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:31:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('266', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:31:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('267', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:31:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('268', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:35:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('269', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:35:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('270', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:35:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('271', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:35:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('272', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:39:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('273', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:39:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('274', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:40:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('275', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:40:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('276', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:40:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('277', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:40:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('278', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:40:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('279', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 07:40:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('280', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:19:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('281', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:20:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('282', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:20:33');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('283', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:20:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('284', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:29:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('285', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:33:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('286', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:33:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('287', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:34:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('288', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:42:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('289', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:43:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('290', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:52:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('291', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:53:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('292', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:53:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('293', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:57:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('294', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:58:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('295', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 12:58:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('296', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 13:05:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('297', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 13:06:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('298', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 13:39:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('299', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 13:43:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('300', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 13:45:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('301', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 13:46:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('302', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 13:46:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('303', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 13:51:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('304', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 13:55:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('305', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 13:55:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('306', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 13:58:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('307', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:00:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('308', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:02:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('309', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:03:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('310', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:03:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('311', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:07:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('312', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:08:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('313', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:10:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('314', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:18:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('315', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:22:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('316', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:25:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('317', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:27:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('318', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:27:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('319', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:29:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('320', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:31:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('321', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:32:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('322', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:35:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('323', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:35:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('324', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:37:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('325', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:38:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('326', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:39:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('327', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:40:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('328', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:43:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('329', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:49:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('330', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:49:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('331', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:54:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('332', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:54:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('333', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:55:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('334', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 14:57:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('335', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 15:01:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('336', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 15:01:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('337', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 15:07:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('338', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 15:18:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('339', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 15:21:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('340', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 15:59:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('341', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:00:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('342', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:00:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('343', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:00:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('344', NULL, '192.168.1.121', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:05:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('345', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:06:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('346', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:07:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('347', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:08:33');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('348', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:09:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('349', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:09:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('350', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:10:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('351', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:13:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('352', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:13:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('353', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:13:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('354', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:13:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('355', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:14:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('356', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:14:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('357', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:14:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('358', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:14:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('359', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:14:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('360', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:14:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('361', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:15:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('362', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:15:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('363', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:16:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('364', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:18:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('365', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:20:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('366', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:20:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('367', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:20:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('368', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:20:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('369', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:22:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('370', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:23:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('371', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('372', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('373', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('374', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('375', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('376', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('377', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('378', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('379', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('380', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('381', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('382', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:33');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('383', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('384', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:24:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('385', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:25:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('386', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-20 16:25:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('387', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:26:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('388', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:26:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('389', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:27:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('390', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:28:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('391', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:28:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('392', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:28:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('393', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:28:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('394', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:28:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('395', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:30:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('396', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:30:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('397', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:39:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('398', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:39:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('399', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:39:33');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('400', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:40:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('401', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:41:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('402', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:42:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('403', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:42:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('404', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:46:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('405', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:47:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('406', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:47:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('407', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:48:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('408', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:48:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('409', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:51:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('410', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:51:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('411', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:52:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('412', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:52:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('413', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:52:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('414', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:53:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('415', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:55:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('416', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-20 16:55:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('417', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:49:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('418', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:49:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('419', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:49:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('420', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:49:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('421', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:50:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('422', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:50:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('423', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:55:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('424', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:55:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('425', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:56:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('426', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:58:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('427', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:58:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('428', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 03:59:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('429', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 03:59:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('430', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:59:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('431', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 03:59:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('432', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 03:59:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('433', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 03:59:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('434', NULL, '192.168.1.121', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 03:59:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('435', '1', '192.168.1.121', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:00:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('436', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/', 'Desktop', 'Chrome', '2025-11-21 04:02:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('437', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:02:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('438', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:03:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('439', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:03:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('440', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:03:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('441', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:06:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('442', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:06:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('443', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:06:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('444', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:06:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('445', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:06:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('446', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:06:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('447', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:19:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('448', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:19:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('449', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:19:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('450', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:22:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('451', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:22:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('452', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:23:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('453', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:27:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('454', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:34:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('455', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:39:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('456', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 04:59:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('457', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:08:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('458', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:08:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('459', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:15:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('460', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:16:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('461', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:16:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('462', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 05:16:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('463', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 05:17:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('464', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 05:18:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('465', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:19:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('466', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:24:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('467', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:24:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('468', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:41:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('469', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:41:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('470', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:42:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('471', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:43:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('472', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:44:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('473', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:49:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('474', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:49:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('475', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:50:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('476', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:53:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('477', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:55:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('478', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 05:55:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('479', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:07:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('480', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:07:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('481', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:12:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('482', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:16:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('483', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:16:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('484', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:17:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('485', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:19:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('486', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:20:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('487', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:21:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('488', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:22:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('489', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:22:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('490', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:22:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('491', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:26:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('492', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:27:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('493', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:29:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('494', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:33:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('495', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:36:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('496', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:36:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('497', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:36:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('498', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:37:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('499', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:38:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('500', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 06:39:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('501', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:39:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('502', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:41:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('503', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:41:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('504', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:41:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('505', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:41:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('506', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:41:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('507', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:41:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('508', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:41:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('509', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:41:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('510', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:41:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('511', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:41:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('512', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:42:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('513', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:42:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('514', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:42:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('515', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:43:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('516', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:43:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('517', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 06:44:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('518', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 07:01:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('519', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 07:12:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('520', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 07:18:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('521', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 07:21:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('522', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 07:55:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('523', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 07:55:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('524', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 07:57:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('525', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 07:58:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('526', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 08:00:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('527', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 08:01:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('528', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 08:05:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('529', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 08:09:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('530', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 08:10:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('531', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 08:16:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('532', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 08:17:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('533', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 08:37:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('534', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 08:52:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('535', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 08:52:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('536', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 09:20:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('537', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 09:31:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('538', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 09:35:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('539', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 09:46:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('540', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 09:59:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('541', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 09:59:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('542', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 10:04:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('543', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 10:22:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('544', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 10:23:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('545', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 10:23:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('546', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 10:23:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('547', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://127.0.0.1/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-21 10:34:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('548', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 12:58:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('549', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 15:04:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('550', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 15:06:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('551', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 15:06:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('552', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 15:10:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('553', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 15:11:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('554', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 15:11:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('555', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 15:11:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('556', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 15:12:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('557', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-21 16:45:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('558', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/', 'Desktop', 'Chrome', '2025-11-22 05:33:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('559', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/', 'Desktop', 'Chrome', '2025-11-22 06:10:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('560', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/', 'Desktop', 'Chrome', '2025-11-22 07:30:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('561', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:02:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('562', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:11:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('563', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/kl/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:11:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('564', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 12:00:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('565', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-22 11:38:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('566', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-22 11:38:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('567', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:39:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('568', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:41:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('569', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:41:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('570', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:43:33');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('571', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:43:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('572', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:43:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('573', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:43:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('574', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:44:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('575', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:44:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('576', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:44:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('577', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:44:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('578', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:45:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('579', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:45:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('580', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:46:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('581', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:48:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('582', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:50:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('583', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:52:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('584', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-22 11:53:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('585', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 12:16:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('586', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/', 'Desktop', 'Chrome', '2025-11-22 12:50:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('587', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 12:51:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('588', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 12:51:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('589', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 12:51:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('590', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 12:56:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('591', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 12:56:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('592', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 12:57:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('593', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 12:57:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('594', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 12:57:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('595', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:03:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('596', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:03:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('597', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:07:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('598', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:07:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('599', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:07:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('600', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:08:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('601', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:08:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('602', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:11:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('603', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:11:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('604', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:11:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('605', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:14:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('606', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:15:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('607', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:17:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('608', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:17:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('609', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:18:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('610', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:18:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('611', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:22:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('612', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:23:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('613', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:23:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('614', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:26:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('615', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:26:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('616', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:41:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('617', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:54:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('618', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:54:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('619', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-22 13:59:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('620', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 03:16:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('621', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 03:17:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('622', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 03:17:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('623', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 03:18:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('624', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 04:35:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('625', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 04:43:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('626', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 04:43:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('627', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 04:43:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('628', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 04:45:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('629', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 04:46:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('630', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 04:47:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('631', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 04:47:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('632', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 04:49:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('633', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 04:50:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('634', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 04:50:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('635', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 04:50:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('636', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 04:50:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('637', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 04:50:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('638', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 04:50:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('639', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 12:10:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('640', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 12:11:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('641', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 12:16:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('642', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 12:16:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('643', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 12:16:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('644', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 12:31:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('645', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 12:59:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('646', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:08:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('647', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:09:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('648', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:09:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('649', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:09:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('650', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:09:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('651', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:09:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('652', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 13:13:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('653', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:24:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('654', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 13:29:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('655', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 13:29:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('656', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 13:29:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('657', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 13:29:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('658', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 13:31:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('659', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 13:31:33');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('660', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 13:45:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('661', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:47:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('662', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 13:49:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('663', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:52:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('664', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:52:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('665', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:53:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('666', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Mobile', 'Chrome', '2025-11-23 13:54:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('667', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:56:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('668', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 13:56:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('669', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 14:07:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('670', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 14:12:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('671', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 14:16:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('672', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/public/index.php', 'Desktop', 'Chrome', '2025-11-23 14:16:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('673', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/', 'Desktop', 'Chrome', '2025-11-23 14:21:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('674', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 14:22:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('675', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 14:22:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('676', NULL, '192.168.1.138', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 15:00:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('677', NULL, '192.168.1.138', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 15:00:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('678', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 15:00:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('679', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 15:00:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('680', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 15:02:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('681', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 16:31:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('682', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 16:32:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('683', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 16:52:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('684', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 16:52:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('685', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 16:57:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('686', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:00:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('687', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:04:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('688', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:04:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('689', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:05:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('690', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:05:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('691', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:05:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('692', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:07:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('693', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:09:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('694', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:13:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('695', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:16:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('696', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:30:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('697', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:30:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('698', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:37:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('699', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:37:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('700', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:38:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('701', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:38:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('702', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:38:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('703', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:41:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('704', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/KL/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:41:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('705', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:41:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('706', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 17:41:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('707', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:43:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('708', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:43:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('709', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:43:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('710', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:43:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('711', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:43:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('712', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:43:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('713', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:44:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('714', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/KL/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:47:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('715', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:48:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('716', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:49:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('717', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:49:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('718', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:49:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('719', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:49:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('720', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:52:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('721', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:53:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('722', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:53:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('723', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:53:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('724', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:53:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('725', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:53:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('726', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:53:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('727', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:53:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('728', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:53:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('729', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:56:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('730', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:56:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('731', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:57:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('732', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:57:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('733', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:58:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('734', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:59:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('735', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 17:59:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('736', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:00:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('737', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:01:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('738', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:01:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('739', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:01:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('740', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:01:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('741', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:02:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('742', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:02:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('743', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:04:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('744', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:04:33');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('745', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:04:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('746', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:04:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('747', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:05:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('748', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:05:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('749', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:06:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('750', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:06:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('751', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:07:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('752', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:07:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('753', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:08:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('754', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:08:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('755', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:09:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('756', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:10:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('757', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:11:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('758', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:11:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('759', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:11:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('760', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:13:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('761', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:14:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('762', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:14:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('763', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:15:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('764', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:15:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('765', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-23 18:15:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('766', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:22:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('767', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:28:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('768', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:29:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('769', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:29:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('770', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:29:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('771', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:32:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('772', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:33:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('773', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:33:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('774', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:33:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('775', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:33:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('776', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:33:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('777', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:33:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('778', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:36:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('779', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:36:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('780', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:36:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('781', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:36:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('782', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:36:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('783', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:36:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('784', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:37:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('785', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:39:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('786', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:39:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('787', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:39:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('788', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:39:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('789', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:39:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('790', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:39:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('791', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('792', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('793', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('794', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('795', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('796', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('797', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('798', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('799', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('800', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('801', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('802', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('803', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('804', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('805', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('806', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('807', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('808', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('809', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('810', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('811', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:40:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('812', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:41:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('813', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:42:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('814', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:43:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('815', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:44:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('816', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('817', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('818', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('819', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('820', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('821', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('822', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('823', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('824', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('825', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('826', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('827', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('828', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:33');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('829', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('830', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('831', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('832', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('833', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('834', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('835', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('836', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('837', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('838', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('839', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('840', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('841', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:45:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('842', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('843', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('844', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('845', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('846', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('847', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('848', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('849', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('850', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('851', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('852', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('853', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('854', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('855', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('856', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('857', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('858', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:46:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('859', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:47:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('860', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:48:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('861', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:48:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('862', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:48:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('863', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:48:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('864', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:48:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('865', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:48:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('866', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:48:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('867', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:49:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('868', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:49:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('869', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:49:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('870', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('871', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('872', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('873', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('874', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('875', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('876', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('877', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('878', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('879', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('880', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('881', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('882', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('883', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('884', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('885', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('886', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('887', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('888', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('889', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('890', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('891', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('892', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('893', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('894', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('895', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('896', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('897', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('898', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('899', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('900', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('901', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('902', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('903', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:50:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('904', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:51:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('905', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:51:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('906', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:51:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('907', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:51:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('908', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:51:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('909', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:51:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('910', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:51:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('911', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:51:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('912', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:51:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('913', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('914', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('915', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('916', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('917', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('918', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('919', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('920', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('921', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('922', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('923', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('924', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('925', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('926', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('927', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('928', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('929', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('930', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('931', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('932', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('933', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('934', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('935', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('936', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('937', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('938', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('939', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('940', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('941', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('942', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('943', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('944', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('945', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('946', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('947', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('948', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('949', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('950', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('951', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('952', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('953', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('954', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('955', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('956', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('957', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('958', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('959', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('960', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('961', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('962', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:52:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('963', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-23 18:55:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('964', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 01:40:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('965', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 01:41:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('966', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 01:46:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('967', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 04:50:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('968', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 04:58:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('969', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 05:47:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('970', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 05:47:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('971', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 05:55:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('972', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:06:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('973', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:06:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('974', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:06:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('975', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:06:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('976', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:08:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('977', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:15:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('978', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:15:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('979', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:16:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('980', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:16:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('981', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:19:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('982', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:19:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('983', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:23:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('984', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:27:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('985', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:29:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('986', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:37:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('987', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:37:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('988', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:38:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('989', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:39:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('990', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 06:39:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('991', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:08:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('992', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:09:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('993', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:09:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('994', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:09:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('995', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:10:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('996', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:10:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('997', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:10:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('998', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:10:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('999', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:10:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1000', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:10:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1001', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:23:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1002', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:24:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1003', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:24:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1004', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:24:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1005', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:24:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1006', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:24:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1007', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:24:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1008', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:25:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1009', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:27:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1010', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:27:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1011', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:27:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1012', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:27:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1013', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:27:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1014', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:27:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1015', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:27:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1016', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:28:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1017', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:28:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1018', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:28:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1019', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:28:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1020', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:28:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1021', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:30:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1022', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:34:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1023', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:37:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1024', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:37:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1025', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:37:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1026', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:37:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1027', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:37:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1028', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:37:33');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1029', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:38:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1030', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:39:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1031', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:41:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1032', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:44:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1033', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:46:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1034', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:46:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1035', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:48:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1036', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:49:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1037', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:50:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1038', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:53:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1039', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:54:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1040', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 07:56:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1041', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:01:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1042', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:01:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1043', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:05:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1044', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:06:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1045', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:08:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1046', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:12:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1047', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:12:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1048', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:14:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1049', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:14:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1050', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:14:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1051', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:17:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1052', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:20:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1053', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:21:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1054', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:21:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1055', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:22:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1056', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:22:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1057', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:23:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1058', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:23:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1059', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:26:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1060', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:26:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1061', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:26:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1062', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:26:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1063', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:26:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1064', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:28:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1065', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:30:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1066', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:30:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1067', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:32:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1068', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:32:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1069', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:37:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1070', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:37:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1071', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:37:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1072', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:38:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1073', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:38:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1074', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:51:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1075', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:52:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1076', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 08:53:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1077', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:55:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1078', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:57:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1079', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 08:59:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1080', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:00:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1081', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:03:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1082', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:03:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1083', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:03:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1084', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:03:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1085', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:03:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1086', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:03:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1087', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:03:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1088', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:03:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1089', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:05:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1090', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:09:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1091', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:12:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1092', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:14:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1093', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:18:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1094', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:19:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1095', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:20:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1096', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:20:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1097', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:20:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1098', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:20:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1099', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:23:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1100', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:27:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1101', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:29:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1102', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:29:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1103', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 09:31:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1104', '7', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 12:31:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1105', '7', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 12:32:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1106', '7', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 12:32:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1107', '7', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 12:32:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1108', '7', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 12:33:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1109', '7', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-24 12:33:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1110', '7', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 12:59:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1111', '7', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 13:01:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1112', '7', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.121/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-24 13:01:33');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1113', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:34:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1114', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:35:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1115', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:35:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1116', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:42:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1117', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:48:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1118', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:48:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1119', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:49:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1120', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:49:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1121', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:50:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1122', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:52:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1123', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:53:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1124', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:54:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1125', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:54:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1126', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:54:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1127', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:58:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1128', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 20:59:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1129', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:00:02');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1130', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:02:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1131', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:03:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1132', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:10:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1133', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:10:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1134', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:10:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1135', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:11:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1136', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:18:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1137', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:23:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1138', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:25:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1139', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:26:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1140', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:26:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1141', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:28:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1142', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:28:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1143', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:29:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1144', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:29:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1145', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:30:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1146', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:30:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1147', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:30:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1148', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:33:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1149', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:35:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1150', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:38:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1151', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:43:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1152', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:43:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1153', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:43:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1154', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:49:34');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1155', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:49:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1156', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:49:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1157', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 21:49:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1158', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:02:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1159', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:07:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1160', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:11:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1161', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:16:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1162', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:16:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1163', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:16:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1164', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:16:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1165', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:17:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1166', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:17:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1167', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:18:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1168', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:20:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1169', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:22:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1170', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:25:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1171', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:25:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1172', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:26:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1173', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:26:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1174', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:30:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1175', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:32:00');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1176', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:32:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1177', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:33:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1178', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:34:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1179', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:53:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1180', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:56:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1181', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:57:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1182', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:59:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1183', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 22:59:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1184', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:01:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1185', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:01:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1186', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:01:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1187', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:01:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1188', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:01:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1189', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:02:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1190', NULL, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:02:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1191', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:05:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1192', '1', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:06:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1193', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:11:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1194', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:13:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1195', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:13:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1196', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:14:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1197', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:14:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1198', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:15:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1199', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:16:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1200', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:17:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1201', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:17:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1202', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:17:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1203', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:18:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1204', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:25:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1205', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-29 23:26:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1206', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-29 23:27:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1207', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:33:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1208', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:34:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1209', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:34:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1210', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:39:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1211', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:40:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1212', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:40:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1213', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:42:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1214', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:42:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1215', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:43:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1216', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:44:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1217', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:47:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1218', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:49:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1219', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:50:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1220', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:53:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1221', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:53:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1222', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:53:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1223', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:55:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1224', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:55:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1225', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:57:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1226', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:58:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1227', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:58:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1228', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-29 23:59:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1229', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:03:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1230', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:04:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1231', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:07:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1232', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:07:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1233', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:09:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1234', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:11:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1235', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:12:16');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1236', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:13:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1237', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:14:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1238', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:15:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1239', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:15:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1240', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:17:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1241', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:19:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1242', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:21:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1243', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:23:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1244', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:25:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1245', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:27:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1246', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:28:49');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1247', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:32:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1248', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:35:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1249', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:35:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1250', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:36:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1251', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:37:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1252', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:38:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1253', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:41:36');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1254', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:42:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1255', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:42:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1256', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:42:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1257', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:44:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1258', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:46:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1259', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:48:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1260', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:48:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1261', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:49:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1262', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:49:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1263', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:51:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1264', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:52:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1265', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:52:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1266', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:54:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1267', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:58:10');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1268', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 00:59:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1269', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:00:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1270', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:02:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1271', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:05:22');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1272', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:05:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1273', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:05:33');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1274', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:06:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1275', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:06:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1276', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:07:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1277', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:08:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1278', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:09:48');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1279', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:10:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1280', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:10:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1281', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:11:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1282', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:11:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1283', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:11:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1284', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:14:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1285', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:15:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1286', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:15:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1287', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 01:16:24');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1288', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:17:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1289', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 01:20:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1290', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 01:20:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1291', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:20:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1292', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:20:35');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1293', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 01:21:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1294', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:22:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1295', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:22:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1296', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:22:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1297', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:23:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1298', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:23:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1299', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:23:29');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1300', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:23:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1301', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:23:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1302', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:23:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1303', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:24:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1304', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:25:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1305', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:28:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1306', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:28:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1307', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:28:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1308', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:29:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1309', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:32:18');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1310', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:32:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1311', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:32:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1312', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:33:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1313', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:33:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1314', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:33:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1315', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:33:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1316', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:35:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1317', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:35:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1318', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:37:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1319', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:40:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1320', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:40:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1321', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:46:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1322', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:48:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1323', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:51:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1324', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:54:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1325', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:55:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1326', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:57:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1327', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:57:32');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1328', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:57:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1329', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:58:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1330', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:58:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1331', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:58:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1332', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:58:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1333', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 01:58:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1334', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:15:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1335', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:22:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1336', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:23:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1337', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:23:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1338', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:24:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1339', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:25:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1340', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:25:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1341', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:27:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1342', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:28:42');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1343', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:28:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1344', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:29:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1345', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:29:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1346', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:31:25');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1347', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:31:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1348', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 02:50:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1349', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 09:46:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1350', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:46:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1351', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:47:30');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1352', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:47:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1353', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:50:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1354', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:52:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1355', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:53:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1356', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:53:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1357', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:55:37');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1358', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:55:38');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1359', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:56:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1360', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:56:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1361', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:56:31');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1362', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 09:58:40');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1363', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:59:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1364', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:59:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1365', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 09:59:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1366', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 10:02:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1367', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 10:04:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1368', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 10:04:28');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1369', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 10:04:45');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1370', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:06:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1371', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 10:06:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1372', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 10:08:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1373', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 10:09:04');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1374', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:10:46');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1375', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:10:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1376', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:12:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1377', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:17:03');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1378', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:17:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1379', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:20:01');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1380', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:20:15');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1381', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:21:07');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1382', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:22:20');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1383', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:23:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1384', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:23:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1385', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:24:47');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1386', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:24:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1387', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:25:43');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1388', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:26:41');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1389', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:27:56');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1390', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:29:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1391', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:37:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1392', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:38:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1393', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:39:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1394', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:41:14');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1395', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:49:50');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1396', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:49:51');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1397', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:51:55');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1398', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:52:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1399', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:55:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1400', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:57:05');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1401', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:57:08');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1402', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 10:58:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1403', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 11:03:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1404', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 11:07:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1405', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 11:07:57');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1406', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 11:16:09');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1407', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 11:32:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1408', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 11:35:33');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1409', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 11:35:54');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1410', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 11:35:58');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1411', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 11:36:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1412', '1', '::1', 'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 11:38:26');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1413', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 11:38:53');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1414', NULL, '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 11:42:44');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1415', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 11:42:59');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1416', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 11:58:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1417', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 11:58:23');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1418', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 12:01:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1419', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 12:04:21');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1420', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 12:22:52');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1421', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 12:23:06');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1422', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 12:24:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1423', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 12:34:13');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1424', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 12:45:19');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1425', '1', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 'index', 'http://localhost/cd/backend/public/index.php', 'Desktop', 'Chrome', '2025-11-30 12:56:12');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1426', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 12:57:17');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1427', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 12:58:11');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1428', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 13:02:27');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1429', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 13:03:39');/nINSERT INTO `site_visits` (`id`, `user_id`, `ip_address`, `user_agent`, `page`, `referrer`, `device_type`, `browser`, `created_at`) VALUES ('1430', '1', '192.168.1.138', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36', 'index', 'http://192.168.1.143/cd/backend/public/index.php', 'Mobile', 'Chrome', '2025-11-30 13:04:36');/n/n/n-- Table: skin_quiz_questions/nDROP TABLE IF EXISTS `skin_quiz_questions`;/nCREATE TABLE `skin_quiz_questions` ( `id` int NOT NULL AUTO_INCREMENT, `question_ar` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'نص السؤال بالعربية', `question_en` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'نص السؤال بالإنجليزية', `question_type` enum('single','multiple','scale','text') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'single' COMMENT 'نوع السؤال', `options` json DEFAULT NULL COMMENT 'الخيارات المتاحة', `category` enum('skin_type','concerns','routine','lifestyle','goals') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'تصنيف السؤال', `weight` int DEFAULT '1' COMMENT 'وزن السؤال في الحساب', `order_position` int DEFAULT '0' COMMENT 'ترتيب السؤال', `is_active` tinyint(1) DEFAULT '1' COMMENT 'السؤال نشط؟', `icon` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'أيقونة السؤال', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_category` (`category`), KEY `idx_order` (`order_position`), KEY `idx_active` (`is_active`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='أسئلة اختبار البشرة';/n/n-- Data for table: skin_quiz_questions/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('1', 'كيف تصفين بشرتك بشكل عام؟', NULL, 'single', '[{\"icon\": \"💧\", \"label\": \"دهنية - لامعة طوال اليوم\", \"value\": \"oily\"}, {\"icon\": \"🏜️\", \"label\": \"جافة - متقشرة وخشنة\", \"value\": \"dry\"}, {\"icon\": \"🌓\", \"label\": \"مختلطة - دهنية في المنطقة T\", \"value\": \"combination\"}, {\"icon\": \"✨\", \"label\": \"عادية - متوازنة\", \"value\": \"normal\"}, {\"icon\": \"🌸\", \"label\": \"حساسة - تتهيج بسهولة\", \"value\": \"sensitive\"}]', 'skin_type', '3', '1', '1', '🔍', '2025-11-21 07:09:20', '2025-11-21 07:42:57');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('2', 'كيف تبدو بشرتك بعد الغسيل؟', NULL, 'single', '[{\"label\": \"مشدودة وجافة\", \"score\": \"dry\", \"value\": \"tight\"}, {\"label\": \"مريحة ومتوازنة\", \"score\": \"normal\", \"value\": \"comfortable\"}, {\"label\": \"تصبح دهنية بسرعة\", \"score\": \"oily\", \"value\": \"oily_quick\"}, {\"label\": \"جافة على الخدود ودهنية على الجبهة\", \"score\": \"combination\", \"value\": \"mixed\"}]', 'skin_type', '2', '2', '1', '🧼', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('3', 'كم مرة تحتاجين لتنظيف وجهك خلال اليوم؟', NULL, 'single', '[{\"label\": \"مرة واحدة\", \"score\": \"dry\", \"value\": \"once\"}, {\"label\": \"مرتين\", \"score\": \"normal\", \"value\": \"twice\"}, {\"label\": \"3 مرات أو أكثر\", \"score\": \"oily\", \"value\": \"three_plus\"}]', 'skin_type', '2', '3', '1', '🧴', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('4', 'ما هي أكبر مشكلة تواجهينها مع بشرتك؟', NULL, 'multiple', '[{\"icon\": \"🔴\", \"label\": \"حب الشباب والبثور\", \"value\": \"acne\"}, {\"icon\": \"⚫\", \"label\": \"البقع الداكنة والتصبغات\", \"value\": \"dark_spots\"}, {\"icon\": \"📏\", \"label\": \"التجاعيد وعلامات التقدم بالسن\", \"value\": \"wrinkles\"}, {\"icon\": \"🏜️\", \"label\": \"الجفاف والتقشر\", \"value\": \"dryness\"}, {\"icon\": \"🕳️\", \"label\": \"المسام الواسعة\", \"value\": \"large_pores\"}, {\"icon\": \"😔\", \"label\": \"البشرة الباهتة\", \"value\": \"dullness\"}, {\"icon\": \"👁️\", \"label\": \"الهالات السوداء\", \"value\": \"dark_circles\"}, {\"icon\": \"🔥\", \"label\": \"الاحمرار والحساسية\", \"value\": \"redness\"}]', 'concerns', '3', '4', '1', '⚠️', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('5', 'هل تعانين من حب الشباب؟', NULL, 'single', '[{\"label\": \"لا، نادراً جداً\", \"score\": 0, \"value\": \"never\"}, {\"label\": \"أحياناً (1-2 حبة شهرياً)\", \"score\": 1, \"value\": \"occasional\"}, {\"label\": \"بشكل متكرر\", \"score\": 2, \"value\": \"frequent\"}, {\"label\": \"بشكل شديد ومستمر\", \"score\": 3, \"value\": \"severe\"}]', 'concerns', '2', '5', '1', '🔴', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('6', 'هل تعانين من البقع الداكنة أو التصبغات؟', NULL, 'single', '[{\"label\": \"لا\", \"score\": 0, \"value\": \"no\"}, {\"label\": \"قليلة\", \"score\": 1, \"value\": \"mild\"}, {\"label\": \"متوسطة\", \"score\": 2, \"value\": \"moderate\"}, {\"label\": \"كثيرة وواضحة\", \"score\": 3, \"value\": \"severe\"}]', 'concerns', '2', '6', '1', '⚫', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('7', 'ما هو روتينك الحالي للعناية بالبشرة؟', NULL, 'single', '[{\"icon\": \"❌\", \"label\": \"لا يوجد روتين محدد\", \"value\": \"none\"}, {\"icon\": \"🧼\", \"label\": \"غسول فقط\", \"value\": \"basic\"}, {\"icon\": \"💧\", \"label\": \"غسول + مرطب\", \"value\": \"moderate\"}, {\"icon\": \"✅\", \"label\": \"روتين كامل (غسول، تونر، سيروم، مرطب، واقي شمس)\", \"value\": \"complete\"}]', 'routine', '2', '7', '1', '📋', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('8', 'هل تستخدمين واقي الشمس يومياً؟', NULL, 'single', '[{\"label\": \"نعم، يومياً\", \"score\": 3, \"value\": \"always\"}, {\"label\": \"أحياناً\", \"score\": 1, \"value\": \"sometimes\"}, {\"label\": \"نادراً\", \"score\": 0, \"value\": \"rarely\"}, {\"label\": \"لا أستخدمه\", \"score\": -1, \"value\": \"never\"}]', 'routine', '3', '8', '1', '☀️', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('9', 'كم مرة تقومين بتقشير بشرتك؟', NULL, 'single', '[{\"label\": \"لا أقوم بالتقشير\", \"score\": 0, \"value\": \"never\"}, {\"label\": \"مرة أسبوعياً\", \"score\": 2, \"value\": \"weekly\"}, {\"label\": \"2-3 مرات أسبوعياً\", \"score\": 3, \"value\": \"twice_weekly\"}, {\"label\": \"يومياً\", \"score\": -1, \"value\": \"daily\"}]', 'routine', '2', '9', '1', '✨', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('10', 'كم ساعة تنامين يومياً؟', NULL, 'single', '[{\"label\": \"أقل من 5 ساعات\", \"score\": 0, \"value\": \"less_5\"}, {\"label\": \"5-6 ساعات\", \"score\": 1, \"value\": \"5_6\"}, {\"label\": \"7-8 ساعات\", \"score\": 3, \"value\": \"7_8\"}, {\"label\": \"أكثر من 8 ساعات\", \"score\": 2, \"value\": \"more_8\"}]', 'lifestyle', '2', '10', '1', '😴', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('11', 'كم كوب ماء تشربين يومياً؟', NULL, 'single', '[{\"label\": \"أقل من 3 أكواب\", \"score\": 0, \"value\": \"less_3\"}, {\"label\": \"3-5 أكواب\", \"score\": 1, \"value\": \"3_5\"}, {\"label\": \"6-8 أكواب\", \"score\": 3, \"value\": \"6_8\"}, {\"label\": \"أكثر من 8 أكواب\", \"score\": 2, \"value\": \"more_8\"}]', 'lifestyle', '2', '11', '1', '💧', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('12', 'هل تتعرضين للشمس بشكل مباشر؟', NULL, 'single', '[{\"label\": \"نادراً (أعمل في مكتب)\", \"score\": 1, \"value\": \"rarely\"}, {\"label\": \"أحياناً\", \"score\": 2, \"value\": \"moderate\"}, {\"label\": \"بشكل يومي\", \"score\": 3, \"value\": \"frequent\"}]', 'lifestyle', '2', '12', '1', '🌞', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('13', 'ما هو نظامك الغذائي؟', NULL, 'single', '[{\"label\": \"صحي ومتوازن\", \"score\": 3, \"value\": \"healthy\"}, {\"label\": \"متوسط\", \"score\": 2, \"value\": \"moderate\"}, {\"label\": \"أعتمد على الوجبات السريعة\", \"score\": 0, \"value\": \"fast_food\"}]', 'lifestyle', '1', '13', '1', '🥗', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('14', 'ما هو هدفك الرئيسي من العناية بالبشرة؟', NULL, 'multiple', '[{\"icon\": \"✨\", \"label\": \"بشرة صافية خالية من الحبوب\", \"value\": \"clear_skin\"}, {\"icon\": \"⏰\", \"label\": \"مكافحة علامات التقدم بالسن\", \"value\": \"anti_aging\"}, {\"icon\": \"💡\", \"label\": \"تفتيح وتوحيد لون البشرة\", \"value\": \"brightening\"}, {\"icon\": \"💧\", \"label\": \"ترطيب عميق\", \"value\": \"hydration\"}, {\"icon\": \"🛡️\", \"label\": \"التحكم في الدهون\", \"value\": \"oil_control\"}, {\"icon\": \"🔬\", \"label\": \"تصغير المسام\", \"value\": \"pore_minimize\"}]', 'goals', '2', '14', '1', '🎯', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/nINSERT INTO `skin_quiz_questions` (`id`, `question_ar`, `question_en`, `question_type`, `options`, `category`, `weight`, `order_position`, `is_active`, `icon`, `created_at`, `updated_at`) VALUES ('15', 'ما هي ميزانيتك الشهرية للعناية بالبشرة؟', NULL, 'single', '[{\"icon\": \"💰\", \"label\": \"أقل من 500 جنيه\", \"value\": \"budget\"}, {\"icon\": \"💵\", \"label\": \"500-1000 جنيه\", \"value\": \"moderate\"}, {\"icon\": \"💎\", \"label\": \"1000-2000 جنيه\", \"value\": \"premium\"}, {\"icon\": \"👑\", \"label\": \"أكثر من 2000 جنيه\", \"value\": \"luxury\"}]', 'goals', '1', '15', '1', '💳', '2025-11-21 07:09:20', '2025-11-21 07:09:20');/n/n/n-- Table: skin_quiz_results/nDROP TABLE IF EXISTS `skin_quiz_results`;/nCREATE TABLE `skin_quiz_results` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int DEFAULT NULL COMMENT 'معرف المستخدم (اختياري)', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'اسم العميل', `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'البريد الإلكتروني', `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'رقم الهاتف', `age` int NOT NULL COMMENT 'العمر', `gender` enum('female','male') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'female' COMMENT 'الجنس', `quiz_answers` json NOT NULL COMMENT 'إجابات الاختبار كاملة', `skin_type` enum('oily','dry','combination','normal','sensitive') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'نوع البشرة', `skin_concerns` json DEFAULT NULL COMMENT 'مشاكل البشرة الرئيسية', `recommended_products` json DEFAULT NULL COMMENT 'المنتجات المقترحة', `score` int DEFAULT '0' COMMENT 'النتيجة من 100', `analysis_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'التحليل النصي', `is_contacted` tinyint(1) DEFAULT '0' COMMENT 'تم التواصل مع العميل؟', `admin_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'ملاحظات الأدمن', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_user_id` (`user_id`), KEY `idx_email` (`email`), KEY `idx_skin_type` (`skin_type`), KEY `idx_created_at` (`created_at`), KEY `idx_is_contacted` (`is_contacted`), CONSTRAINT `skin_quiz_results_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='نتائج اختبار روتين البشرة';/n/n-- Data for table: skin_quiz_results/nINSERT INTO `skin_quiz_results` (`id`, `user_id`, `name`, `email`, `phone`, `age`, `gender`, `quiz_answers`, `skin_type`, `skin_concerns`, `recommended_products`, `score`, `analysis_text`, `is_contacted`, `admin_notes`, `created_at`, `updated_at`) VALUES ('1', NULL, 'شراره', 'sharara3310@gmail.com', '01098890999', '20', 'male', '{\"1\": [{\"score\": \"0\", \"value\": \"sensitive\", \"category\": \"skin_type\"}], \"2\": [{\"score\": \"oily\", \"value\": \"oily_quick\", \"category\": \"skin_type\"}], \"3\": [{\"score\": \"oily\", \"value\": \"three_plus\", \"category\": \"skin_type\"}], \"4\": [{\"score\": \"0\", \"value\": \"wrinkles\", \"category\": \"concerns\"}, {\"score\": \"0\", \"value\": \"dryness\", \"category\": \"concerns\"}, {\"score\": \"0\", \"value\": \"large_pores\", \"category\": \"concerns\"}, {\"score\": \"0\", \"value\": \"dullness\", \"category\": \"concerns\"}], \"5\": [{\"score\": \"1\", \"value\": \"occasional\", \"category\": \"concerns\"}], \"6\": [{\"score\": \"1\", \"value\": \"mild\", \"category\": \"concerns\"}], \"7\": [{\"score\": \"0\", \"value\": \"none\", \"category\": \"routine\"}], \"8\": [{\"score\": \"1\", \"value\": \"sometimes\", \"category\": \"routine\"}], \"9\": [{\"score\": \"0\", \"value\": \"never\", \"category\": \"routine\"}], \"10\": [{\"score\": \"2\", \"value\": \"more_8\", \"category\": \"lifestyle\"}], \"11\": [{\"score\": \"0\", \"value\": \"less_3\", \"category\": \"lifestyle\"}], \"12\": [{\"score\": \"1\", \"value\": \"rarely\", \"category\": \"lifestyle\"}], \"13\": [{\"score\": \"3\", \"value\": \"healthy\", \"category\": \"lifestyle\"}], \"14\": [{\"score\": \"0\", \"value\": \"hydration\", \"category\": \"goals\"}], \"15\": [{\"score\": \"0\", \"value\": \"budget\", \"category\": \"goals\"}]}', 'combination', '[\"wrinkles\", \"dryness\", \"large_pores\", \"dullness\", \"occasional\", \"mild\"]', '[{\"id\": 9, \"name\": \"مجموعة العناية الفائقة\", \"image\": \"uploads/products/691c42f16ea47.jpeg\", \"price\": \"350.00\", \"reason\": \"يوازن البشرة المختلطة و يقلل من ظهور التجاعيد\", \"category\": \"العناية بالجسم\", \"description\": \"مجموعة شاملة تحتوي على 10 منتجات طبيعية 100% من Roz Skin، تغطي احتياجات العناية بالبشرة والشعر والجمال (سيرومات، مقشرات، مرطبات، تونيك). عرض اقتصادي بقيمة ممتازة ومكونات آمنة ومُصرح بها.\", \"discount_price\": \"300.00\"}, {\"id\": 8, \"name\": \"سيروم الحبوب الطبيعي\", \"image\": \"uploads/products/691c40b20f382.jpeg\", \"price\": \"110.00\", \"reason\": \"يوازن البشرة المختلطة و يقلل من ظهور التجاعيد\", \"category\": \"العناية بالجسم\", \"description\": \"وداعاً للبثور المزعجة! سيروم روز سكين لحب الشباب هو الحل الموضعي السريع والفعّال.\", \"discount_price\": \"80.00\"}]', '55', 'بشرتك من النوع المختلط، دهنية في منطقة T وجافة على الخدود، تحتاج لعناية متوازنة.\n\nالمشاكل الرئيسية: التجاعيد، الجفاف، المسام الواسعة، البشرة الباهتة، occasional، mild', '0', NULL, '2025-11-21 07:11:32', '2025-11-21 07:11:32');/nINSERT INTO `skin_quiz_results` (`id`, `user_id`, `name`, `email`, `phone`, `age`, `gender`, `quiz_answers`, `skin_type`, `skin_concerns`, `recommended_products`, `score`, `analysis_text`, `is_contacted`, `admin_notes`, `created_at`, `updated_at`) VALUES ('2', NULL, 'شراره', 'sharara3310@gmail.com', '01098890999', '20', 'female', '{\"1\": [{\"score\": \"0\", \"value\": \"dry\", \"category\": \"skin_type\"}], \"2\": [{\"score\": \"normal\", \"value\": \"comfortable\", \"category\": \"skin_type\"}], \"3\": [{\"score\": \"normal\", \"value\": \"twice\", \"category\": \"skin_type\"}], \"4\": [{\"score\": \"0\", \"value\": \"wrinkles\", \"category\": \"concerns\"}], \"5\": [{\"score\": \"1\", \"value\": \"occasional\", \"category\": \"concerns\"}], \"6\": [{\"score\": \"1\", \"value\": \"mild\", \"category\": \"concerns\"}], \"7\": [{\"score\": \"0\", \"value\": \"moderate\", \"category\": \"routine\"}], \"8\": [{\"score\": \"0\", \"value\": \"rarely\", \"category\": \"routine\"}], \"9\": [{\"score\": \"-1\", \"value\": \"daily\", \"category\": \"routine\"}], \"10\": [{\"score\": \"3\", \"value\": \"7_8\", \"category\": \"lifestyle\"}], \"11\": [{\"score\": \"2\", \"value\": \"more_8\", \"category\": \"lifestyle\"}], \"12\": [{\"score\": \"1\", \"value\": \"rarely\", \"category\": \"lifestyle\"}], \"13\": [{\"score\": \"0\", \"value\": \"fast_food\", \"category\": \"lifestyle\"}], \"14\": [{\"score\": \"0\", \"value\": \"oil_control\", \"category\": \"goals\"}], \"15\": [{\"score\": \"0\", \"value\": \"budget\", \"category\": \"goals\"}]}', 'combination', '[\"wrinkles\", \"occasional\", \"mild\"]', '[{\"id\": 9, \"name\": \"مجموعة العناية الفائقة\", \"image\": \"uploads/products/691c42f16ea47.jpeg\", \"price\": \"350.00\", \"reason\": \"يوازن البشرة المختلطة و يقلل من ظهور التجاعيد\", \"category\": \"العناية بالجسم\", \"description\": \"مجموعة شاملة تحتوي على 10 منتجات طبيعية 100% من Roz Skin، تغطي احتياجات العناية بالبشرة والشعر والجمال (سيرومات، مقشرات، مرطبات، تونيك). عرض اقتصادي بقيمة ممتازة ومكونات آمنة ومُصرح بها.\", \"discount_price\": \"300.00\"}, {\"id\": 8, \"name\": \"سيروم الحبوب الطبيعي\", \"image\": \"uploads/products/691c40b20f382.jpeg\", \"price\": \"110.00\", \"reason\": \"يوازن البشرة المختلطة و يقلل من ظهور التجاعيد\", \"category\": \"العناية بالجسم\", \"description\": \"وداعاً للبثور المزعجة! سيروم روز سكين لحب الشباب هو الحل الموضعي السريع والفعّال.\", \"discount_price\": \"80.00\"}]', '54', 'بشرتك من النوع المختلط، دهنية في منطقة T وجافة على الخدود، تحتاج لعناية متوازنة.\n\nالمشاكل الرئيسية: التجاعيد، occasional، mild', '1', 'كويس جدا', '2025-11-21 07:19:41', '2025-11-21 07:27:43');/nINSERT INTO `skin_quiz_results` (`id`, `user_id`, `name`, `email`, `phone`, `age`, `gender`, `quiz_answers`, `skin_type`, `skin_concerns`, `recommended_products`, `score`, `analysis_text`, `is_contacted`, `admin_notes`, `created_at`, `updated_at`) VALUES ('3', NULL, 'ريم ', 'sharara3310@gmail.com', '01100585028', '20', 'female', '{\"1\": [{\"score\": \"0\", \"value\": \"combination\", \"category\": \"skin_type\"}], \"2\": [{\"score\": \"normal\", \"value\": \"comfortable\", \"category\": \"skin_type\"}], \"3\": [{\"score\": \"normal\", \"value\": \"twice\", \"category\": \"skin_type\"}], \"4\": [{\"score\": \"0\", \"value\": \"acne\", \"category\": \"concerns\"}], \"5\": [{\"score\": \"0\", \"value\": \"never\", \"category\": \"concerns\"}], \"6\": [{\"score\": \"2\", \"value\": \"moderate\", \"category\": \"concerns\"}], \"7\": [{\"score\": \"0\", \"value\": \"basic\", \"category\": \"routine\"}], \"8\": [{\"score\": \"0\", \"value\": \"rarely\", \"category\": \"routine\"}], \"9\": [{\"score\": \"3\", \"value\": \"twice_weekly\", \"category\": \"routine\"}], \"10\": [{\"score\": \"3\", \"value\": \"7_8\", \"category\": \"lifestyle\"}], \"11\": [{\"score\": \"3\", \"value\": \"6_8\", \"category\": \"lifestyle\"}], \"12\": [{\"score\": \"2\", \"value\": \"moderate\", \"category\": \"lifestyle\"}], \"13\": [{\"score\": \"2\", \"value\": \"moderate\", \"category\": \"lifestyle\"}], \"14\": [{\"score\": \"0\", \"value\": \"clear_skin\", \"category\": \"goals\"}], \"15\": [{\"score\": \"0\", \"value\": \"premium\", \"category\": \"goals\"}]}', 'combination', '[\"acne\", \"never\", \"moderate\"]', '[{\"id\": 9, \"name\": \"مجموعة العناية الفائقة\", \"image\": \"uploads/products/691c42f16ea47.jpeg\", \"price\": \"350.00\", \"reason\": \"يوازن البشرة المختلطة و يساعد في علاج حب الشباب\", \"category\": \"العناية بالجسم\", \"description\": \"مجموعة شاملة تحتوي على 10 منتجات طبيعية 100% من Roz Skin، تغطي احتياجات العناية بالبشرة والشعر والجمال (سيرومات، مقشرات، مرطبات، تونيك). عرض اقتصادي بقيمة ممتازة ومكونات آمنة ومُصرح بها.\", \"discount_price\": \"300.00\"}, {\"id\": 8, \"name\": \"سيروم الحبوب الطبيعي\", \"image\": \"uploads/products/691c40b20f382.jpeg\", \"price\": \"110.00\", \"reason\": \"يوازن البشرة المختلطة و يساعد في علاج حب الشباب\", \"category\": \"العناية بالجسم\", \"description\": \"وداعاً للبثور المزعجة! سيروم روز سكين لحب الشباب هو الحل الموضعي السريع والفعّال.\", \"discount_price\": \"80.00\"}]', '86', 'بشرتك من النوع المختلط، دهنية في منطقة T وجافة على الخدود، تحتاج لعناية متوازنة.\n\nالمشاكل الرئيسية: حب الشباب، never، moderate', '0', NULL, '2025-11-21 15:08:37', '2025-11-21 15:08:37');/nINSERT INTO `skin_quiz_results` (`id`, `user_id`, `name`, `email`, `phone`, `age`, `gender`, `quiz_answers`, `skin_type`, `skin_concerns`, `recommended_products`, `score`, `analysis_text`, `is_contacted`, `admin_notes`, `created_at`, `updated_at`) VALUES ('4', NULL, 'شراره', 'sharara3310@gmail.com', '', '45', 'female', '{\"1\": [{\"score\": \"0\", \"value\": \"normal\", \"category\": \"skin_type\"}], \"2\": [{\"score\": \"normal\", \"value\": \"comfortable\", \"category\": \"skin_type\"}], \"3\": [{\"score\": \"normal\", \"value\": \"twice\", \"category\": \"skin_type\"}], \"4\": [{\"score\": \"0\", \"value\": \"dark_circles\", \"category\": \"concerns\"}], \"5\": [{\"score\": \"0\", \"value\": \"never\", \"category\": \"concerns\"}], \"6\": [{\"score\": \"0\", \"value\": \"no\", \"category\": \"concerns\"}], \"7\": [{\"score\": \"0\", \"value\": \"none\", \"category\": \"routine\"}], \"8\": [{\"score\": \"-1\", \"value\": \"never\", \"category\": \"routine\"}], \"9\": [{\"score\": \"0\", \"value\": \"never\", \"category\": \"routine\"}], \"10\": [{\"score\": \"2\", \"value\": \"more_8\", \"category\": \"lifestyle\"}], \"11\": [{\"score\": \"0\", \"value\": \"less_3\", \"category\": \"lifestyle\"}], \"12\": [{\"score\": \"1\", \"value\": \"rarely\", \"category\": \"lifestyle\"}], \"13\": [{\"score\": \"2\", \"value\": \"moderate\", \"category\": \"lifestyle\"}], \"14\": [{\"score\": \"0\", \"value\": \"anti_aging\", \"category\": \"goals\"}], \"15\": [{\"score\": \"0\", \"value\": \"budget\", \"category\": \"goals\"}]}', 'normal', '[\"dark_circles\", \"never\", \"no\"]', '[{\"id\": 9, \"name\": \"مجموعة العناية الفائقة\", \"image\": \"uploads/products/691c42f16ea47.jpeg\", \"price\": \"350.00\", \"reason\": \"يحافظ على توازن البشرة و يقلل الهالات السوداء\", \"category\": \"العناية بالجسم\", \"description\": \"مجموعة شاملة تحتوي على 10 منتجات طبيعية 100% من Roz Skin، تغطي احتياجات العناية بالبشرة والشعر والجمال (سيرومات، مقشرات، مرطبات، تونيك). عرض اقتصادي بقيمة ممتازة ومكونات آمنة ومُصرح بها.\", \"discount_price\": \"300.00\"}, {\"id\": 8, \"name\": \"سيروم الحبوب الطبيعي\", \"image\": \"uploads/products/691c40b20f382.jpeg\", \"price\": \"110.00\", \"reason\": \"يحافظ على توازن البشرة و يقلل الهالات السوداء\", \"category\": \"العناية بالجسم\", \"description\": \"وداعاً للبثور المزعجة! سيروم روز سكين لحب الشباب هو الحل الموضعي السريع والفعّال.\", \"discount_price\": \"80.00\"}]', '51', 'بشرتك من النوع العادي المتوازن، استمري في روتينك الحالي مع الحفاظ على الترطيب والحماية.\n\nالمشاكل الرئيسية: الهالات السوداء، never، no', '0', NULL, '2025-11-24 08:36:14', '2025-11-24 08:36:14');/n/n/n-- Table: social_assets/nDROP TABLE IF EXISTS `social_assets`;/nCREATE TABLE `social_assets` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `type` enum('instagram_story','facebook_post','twitter_post','linkedin_post','pinterest_pin') NOT NULL, `image_path` varchar(500) NOT NULL, `created_by` int NOT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_type` (`type`), KEY `idx_created_by` (`created_by`), CONSTRAINT `social_assets_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: social_assets/nINSERT INTO `social_assets` (`id`, `name`, `type`, `image_path`, `created_by`, `created_at`, `updated_at`) VALUES ('1', '2464565', 'instagram_story', 'uploads/stories/story_1762927362_6914230285287.png', '1', '2025-11-12 10:02:42', '2025-11-12 10:02:42');/n/n/n-- Table: stories/nDROP TABLE IF EXISTS `stories`;/nCREATE TABLE `stories` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `duration` int DEFAULT '5', `is_active` tinyint(1) DEFAULT '1', `views_count` int DEFAULT '0', `order_position` int DEFAULT '0', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `expires_at` timestamp NULL DEFAULT NULL, `created_by` int DEFAULT NULL, PRIMARY KEY (`id`), KEY `created_by` (`created_by`), CONSTRAINT `stories_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: stories/nINSERT INTO `stories` (`id`, `title`, `image`, `link`, `duration`, `is_active`, `views_count`, `order_position`, `created_at`, `expires_at`, `created_by`) VALUES ('7', 'استوري جديد', 'uploads/stories/story_1763352456.png', NULL, '5', '1', '2', '0', '2025-11-17 08:07:36', NULL, '1');/n/n/n-- Table: story_views/nDROP TABLE IF EXISTS `story_views`;/nCREATE TABLE `story_views` ( `id` int NOT NULL AUTO_INCREMENT, `story_id` int NOT NULL, `user_id` int DEFAULT NULL, `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `viewed_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `unique_view` (`story_id`,`user_id`,`ip_address`), KEY `user_id` (`user_id`), CONSTRAINT `story_views_ibfk_1` FOREIGN KEY (`story_id`) REFERENCES `stories` (`id`) ON DELETE CASCADE, CONSTRAINT `story_views_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: story_views/nINSERT INTO `story_views` (`id`, `story_id`, `user_id`, `ip_address`, `viewed_at`) VALUES ('4', '7', '1', '::1', '2025-11-18 06:14:42');/nINSERT INTO `story_views` (`id`, `story_id`, `user_id`, `ip_address`, `viewed_at`) VALUES ('5', '7', NULL, '192.168.1.138', '2025-11-20 16:07:21');/n/n/n-- Table: suppliers/nDROP TABLE IF EXISTS `suppliers`;/nCREATE TABLE `suppliers` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `contact_person` varchar(255) DEFAULT NULL, `phone` varchar(20) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `address` text, `notes` text, `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_name` (`name`), KEY `idx_is_active` (`is_active`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n/n-- Table: testimonials/nDROP TABLE IF EXISTS `testimonials`;/nCREATE TABLE `testimonials` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `customer_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` tinyint NOT NULL DEFAULT '5', `comment` text COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;/n/n-- Data for table: testimonials/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('1', 'مريم أحمد', 'uploads/testimonials/girl1.jpg', '5', 'بصراحة سيروم الضوافر فرق معايا جدا، ضوافري كانت ضعيفة وبتتقطم من اقل حاجة، دلوقتي بقيت احسها اجمد وطولت.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('2', 'نور سين', 'uploads/testimonials/girl2.jpg', '5', 'التنت لونه طبيعي جدا وثابت معايا طول اليوم في الكلية، مش بيبقع ولا بينشف شفايفي زي انواع تانية جربتها.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('3', 'سلمى كريم', 'uploads/testimonials/girl3.jpg', '5', 'التونك قلل الهيشان عندي بشكل ملحوظ وريحته كمان حلوة وهادية، حبيت النتيجة اوي.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('4', 'جنا محمد', 'uploads/testimonials/girl4.jpg', '5', 'عملت جلسة تنظيف بشرة والفرق بان من اول مرة خصوصا في منطقة الأنف، الرؤوس السوداء اختفت ووشي رايق.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('5', 'هنا وليد', 'uploads/testimonials/girl5.jpg', '4', 'سيروم الحبوب ده نشفلي الحباية في يومين بالظبط، بجد كنت محتاجاه جدا عشان عندي مناسبة، شكرا ليكم.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('6', 'فريدة عمرو', 'uploads/testimonials/girl6.jpg', '5', 'أسعاركم بجد تحفة وعلى قد الايد ومناسبة لينا كطلبة، ياريت تفضلوا كدة علطول ومتغلوش الحاجة.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('7', 'يارا مصطفى', 'uploads/testimonials/girl7.jpg', '5', 'سكراب الشفايف بينعم جدا وبيشيل الجلد الميت، بستخدمه قبل التنت وبيبقى شكله احلى بكتير.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('8', 'ملك حسن', 'uploads/testimonials/girl8.jpg', '5', 'الهير ميست ريحته تحفة وثابتة في شعري، كل اما اتحرك اشم ريحة نظافة كدة ✨', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('9', 'رنا إيهاب', 'uploads/testimonials/girl9.jpg', '5', 'تسلم ايد البنوتة اللي عملتلي الهارد جيل، شغلها نظيف ومرتب واللون طلع زي ما كنت عايزاه بالظبط.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('10', 'آلاء محمود', 'uploads/testimonials/girl10.jpg', '5', 'الصن بلوك خفيف ومش بيعمل طبقة بيضا ولا بيزيت الوش، مناسب جدا للبشرة المختلطة.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('11', 'منة الله', 'uploads/testimonials/girl11.jpg', '4', 'بقالي اسبوعين بستخدم السيروم الليلي وحاسة بفرق بسيط في الهالات والنضارة، هستمر عليه واشوف النتيجة النهائية.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('12', 'شهد تامر', 'uploads/testimonials/girl12.jpg', '5', 'ركبت رموش عندكم وبقالها فترة وموقعتش وشكلها مش أوفر، بجد شغلكم حلو.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('13', 'حبيبة ياسر', 'uploads/testimonials/girl13.jpg', '5', 'الماسك البودر بينور الوش من اول استخدام، بنصح اي حد يجربه.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('14', 'روان علي', 'uploads/testimonials/girl14.jpg', '5', 'تعامل البنات في السنتر ذوق جدا ومحترمين، والمكان مريح نفسيا.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('15', 'بسنت خالد', 'uploads/testimonials/girl15.jpg', '5', 'مورد الخدود بيدي تورد خفيف كأنه طبيعي، بحطه وأنا نازلة الصبح بيبقى شكله هادي وحلو.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('16', 'ساندي ماجد', 'uploads/testimonials/girl16.jpg', '5', 'بدأت جلسات ديرما بن عشان آثار الحبوب وشايفة تحسن في ملمس بشرتي، المكان نظيف والدكاترة شاطرين.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('17', 'ليلى عمر', 'uploads/testimonials/girl17.jpg', '5', 'الأوردر وصلني بسرعة والتغليف كان كويس وحافظ على الحاجة انها متتكسرش.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('18', 'ندى سامي', 'uploads/testimonials/girl18.jpg', '5', 'استفدت من عرض الـ 50 جنيه بتاع تنظيف البشرة وكانت تجربة حلوة اوي مقابل السعر ده.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('19', 'مايا هيثم', 'uploads/testimonials/girl19.jpg', '5', 'سيروم الحواجب والرموش ممتاز، لاحظت ان الفراغات اللي في حواجبي بدأت تتملي.', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('20', 'هاجر يوسف', 'uploads/testimonials/girl20.jpg', '5', 'دي تالت مرة اطلب منكم، بجد حاجتكم مضمونة وفعالة وسعرها فيها، بالتوفيق ليكم ❤️', '1', '2025-11-30 01:40:52', '2025-11-30 01:40:52');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('21', 'سارة أحمد', 'uploads/testimonials/customer1.jpg', '5', 'منتجات رائعة وخدمة ممتازة! بشرتي تحسنت كثيراً بعد استخدام منتجاتكم 💕', '1', '2025-11-30 01:46:00', '2025-11-30 01:46:00');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('22', 'مريم محمد', 'uploads/testimonials/customer2.jpg', '5', 'أفضل متجر للعناية بالبشرة! المنتجات طبيعية 100% والنتائج مذهلة ✨', '1', '2025-11-30 01:46:00', '2025-11-30 01:46:00');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('23', 'نور علي', 'uploads/testimonials/customer3.jpg', '5', 'تجربة تسوق رائعة والتوصيل سريع جداً. أنصح الجميع بالتجربة 🌸', '1', '2025-11-30 01:46:00', '2025-11-30 01:46:00');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('24', 'ليلى حسن', 'uploads/testimonials/customer4.jpg', '4', 'منتجات عالية الجودة وأسعار مناسبة. سأكرر الطلب بالتأكيد 👍', '1', '2025-11-30 01:46:00', '2025-11-30 01:46:00');/nINSERT INTO `testimonials` (`id`, `customer_name`, `customer_image`, `rating`, `comment`, `is_active`, `created_at`, `updated_at`) VALUES ('25', 'هدى خالد', 'uploads/testimonials/customer5.jpg', '5', 'بشرتي أصبحت أكثر نضارة وإشراقاً! شكراً روز سكين 🌹', '1', '2025-11-30 01:46:00', '2025-11-30 01:46:00');/n/n/n-- Table: user_addresses/nDROP TABLE IF EXISTS `user_addresses`;/nCREATE TABLE `user_addresses` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `label` varchar(100) NOT NULL, `address` text NOT NULL, `location` varchar(255) DEFAULT NULL COMMENT 'الموقع الجغرافي (lat,lng)', `latitude` decimal(10,8) DEFAULT NULL, `longitude` decimal(11,8) DEFAULT NULL, `is_default` tinyint(1) DEFAULT '0', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), CONSTRAINT `user_addresses_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: user_addresses/nINSERT INTO `user_addresses` (`id`, `user_id`, `label`, `address`, `location`, `latitude`, `longitude`, `is_default`, `created_at`) VALUES ('1', '1', 'البيت', '15, شارع فخري رستم, كوم الأخضر, الجيزة, 12574, مصر', NULL, '29.98602440', '31.15917090', '0', '2025-11-19 07:38:35');/nINSERT INTO `user_addresses` (`id`, `user_id`, `label`, `address`, `location`, `latitude`, `longitude`, `is_default`, `created_at`) VALUES ('2', '1', 'البيت', 'الموقع: 29.9860339, 31.1591702', NULL, '29.98603390', '31.15917020', '1', '2025-11-21 04:03:11');/n/n/n-- Table: users/nDROP TABLE IF EXISTS `users`;/nCREATE TABLE `users` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `phone` varchar(20) NOT NULL, `email` varchar(255) DEFAULT NULL, `password` varchar(255) NOT NULL, `address` text, `location` varchar(255) DEFAULT NULL COMMENT 'الموقع الجغرافي (lat,lng)', `latitude` decimal(10,8) DEFAULT NULL COMMENT 'خط العرض', `longitude` decimal(11,8) DEFAULT NULL COMMENT 'خط الطول', `age` int DEFAULT NULL, `profile_picture` varchar(255) DEFAULT NULL, `role` enum('user','admin') DEFAULT 'user', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `phone` (`phone`) ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: users/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('1', 'Ahmed Sharara', '01098890999', 'user01098890999@rozskin.local', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'القاهرة، مصر', NULL, NULL, NULL, '30', 'uploads/users/profile_1_1763430677.jpeg', 'admin', '2025-11-12 07:52:25', '2025-11-19 08:03:03');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('2', 'أحمد محمد', '01012345678', 'user01012345678@rozskin.local', '$2y$10$dummy', 'القاهرة', NULL, NULL, NULL, '25', NULL, 'user', '2025-11-12 07:52:25', '2025-11-19 08:03:03');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('3', 'فاطمة علي', '01087654321', 'user01087654321@rozskin.local', '$2y$10$dummy', 'الإسكندرية', NULL, NULL, NULL, '28', NULL, 'user', '2025-11-12 07:52:25', '2025-11-19 08:03:03');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('4', 'سارة حسن', '01011223344', 'user01011223344@rozskin.local', '$2y$10$dummy', 'الجيزة', NULL, NULL, NULL, '32', NULL, 'user', '2025-11-12 07:52:25', '2025-11-19 08:03:03');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('5', 'Admin', '01234567890', 'user01234567890@rozskin.local', '$2y$10$T6mcIrSLweWjbgHOioUXoeU3k1gJzxfI3Z87dQhu700xeJo3Xf1eK', NULL, NULL, NULL, NULL, NULL, NULL, 'admin', '2025-11-16 13:23:59', '2025-11-29 22:02:40');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('7', 'مستخدم تجريبي', '01000000000', 'test@rozskin.com', '$2y$10$wdFDyr7Ev3B3b45PpceWe.dJxiZNJUtGTR/viQMQpK8dNjokLLt8y', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-24 10:12:18', '2025-11-24 10:12:18');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('8', 'مريم أحمد', '01012345601', 'mariam1@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('9', 'نور سين', '01012345602', 'nour2@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('10', 'سلمى كريم', '01012345603', 'salma3@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('11', 'جنا محمد', '01012345604', 'jana4@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('12', 'هنا وليد', '01012345605', 'hana5@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('13', 'فريدة عمرو', '01012345606', 'farida6@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('14', 'يارا مصطفى', '01012345607', 'yara7@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('15', 'ملك حسن', '01012345608', 'malak8@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('16', 'رنا إيهاب', '01012345609', 'rana9@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('17', 'آلاء محمود', '01012345610', 'alaa10@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('18', 'منة الله', '01012345611', 'menna11@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('19', 'شهد تامر', '01012345612', 'shahd12@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('20', 'حبيبة ياسر', '01012345613', 'habiba13@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('21', 'روان علي', '01012345614', 'rawan14@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('22', 'بسنت خالد', '01012345615', 'basant15@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('23', 'ساندي ماجد', '01012345616', 'sandy16@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('24', 'ليلى عمر', '01012345617', 'laila17@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('25', 'ندى سامي', '01012345618', 'nada18@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('26', 'مايا هيثم', '01012345619', 'maya19@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/nINSERT INTO `users` (`id`, `name`, `phone`, `email`, `password`, `address`, `location`, `latitude`, `longitude`, `age`, `profile_picture`, `role`, `created_at`, `updated_at`) VALUES ('27', 'هاجر يوسف', '01012345620', 'hagar20@example.com', 'dummy_password', NULL, NULL, NULL, NULL, NULL, NULL, 'user', '2025-11-30 01:46:28', '2025-11-30 01:46:28');/n/n/n-- Table: wishlist/nDROP TABLE IF EXISTS `wishlist`;/nCREATE TABLE `wishlist` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `product_id` int NOT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `unique_wishlist_item` (`user_id`,`product_id`), KEY `product_id` (`product_id`), CONSTRAINT `wishlist_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, CONSTRAINT `wishlist_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=102 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/n-- Data for table: wishlist/nINSERT INTO `wishlist` (`id`, `user_id`, `product_id`, `created_at`) VALUES ('92', '1', '8', '2025-11-20 05:07:48');/n/n/n-- Table: wrapping_materials/nDROP TABLE IF EXISTS `wrapping_materials`;/nCREATE TABLE `wrapping_materials` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `type` enum('bubble','box','flyer','sticker','bag','tape','tissue') NOT NULL, `unit` enum('roll','meter','piece','kg') NOT NULL DEFAULT 'piece', `quantity` decimal(10,2) NOT NULL DEFAULT '0.00', `unit_cost` decimal(10,2) NOT NULL DEFAULT '0.00', `supplier_id` int DEFAULT NULL, `min_quantity` decimal(10,2) DEFAULT '10.00', `notes` text, `is_active` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `idx_type` (`type`), KEY `idx_supplier` (`supplier_id`), CONSTRAINT `wrapping_materials_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;/n/nSET FOREIGN_KEY_CHECKS=1;/n