-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Aug 13, 2024 at 04:32 AM
-- Server version: 5.7.44-cll-lve
-- PHP Version: 8.1.29

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


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

--
-- Database: `scamrefu_scamrefundgov`
--

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

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

CREATE TABLE `admins` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `username` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `remember_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `admins` (`id`, `name`, `email`, `username`, `email_verified_at`, `image`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Super Admin', 'admin@admin.com', 'admin', NULL, '6238276ac25d11647847274.png', '$2y$10$AaBprL4OEYbclIvQfBZokOCCcUNQYml41GEmDC8sZmmrZ00V2O112', 'qTaROizxzrO5Ue9Gth0YIOmYYiDERjveQXvlrWMyh4GXzRbcMNIOYwb32mm9', NULL, '2024-04-28 23:41:07');

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

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

CREATE TABLE `admin_notifications` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `click_url` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `admin_notifications` (`id`, `user_id`, `title`, `is_read`, `click_url`, `created_at`, `updated_at`) VALUES
(1, 1, 'New member registered', 0, '/admin/users/detail/1', '2024-07-31 02:39:32', '2024-07-31 02:39:32'),
(2, 2, 'New member registered', 0, '/admin/users/detail/2', '2024-07-31 03:30:11', '2024-07-31 03:30:11'),
(3, 3, 'New member registered', 0, '/admin/users/detail/3', '2024-08-11 08:28:50', '2024-08-11 08:28:50');

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

--
-- Table structure for table `admin_password_resets`
--

CREATE TABLE `admin_password_resets` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `email` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `token` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cron_jobs`
--

CREATE TABLE `cron_jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `alias` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action` text COLLATE utf8mb4_unicode_ci,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cron_schedule_id` int(11) NOT NULL DEFAULT '0',
  `next_run` datetime DEFAULT NULL,
  `last_run` datetime DEFAULT NULL,
  `is_running` tinyint(1) NOT NULL DEFAULT '1',
  `is_default` tinyint(4) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cron_jobs`
--

INSERT INTO `cron_jobs` (`id`, `name`, `alias`, `action`, `url`, `cron_schedule_id`, `next_run`, `last_run`, `is_running`, `is_default`, `created_at`, `updated_at`) VALUES
(1, 'Interest Cron', 'interest_cron', '[\"App\\\\Http\\\\Controllers\\\\CronController\", \"interest\"]', NULL, 1, '2024-08-13 14:30:06', '2024-08-13 14:25:06', 1, 1, '2023-06-21 23:29:14', '2024-08-13 18:25:06'),
(2, 'Rank Cron', 'rank_cron', '[\"App\\\\Http\\\\Controllers\\\\CronController\", \"rank\"]', NULL, 1, '2024-08-13 14:30:07', '2024-08-13 14:25:07', 1, 1, '2023-06-22 06:04:49', '2024-08-13 18:25:07'),
(3, 'Schedule Invest', 'schedule_invest', '[\"App\\\\Http\\\\Controllers\\\\CronController\", \"investSchedule\"]', NULL, 1, '2024-08-13 14:30:07', '2024-08-13 14:25:07', 1, 1, '2023-06-22 06:10:31', '2024-08-13 18:25:07'),
(5, 'Staking Invest', 'staking_invest', '[\"App\\\\Http\\\\Controllers\\\\CronController\", \"staking\"]', NULL, 1, '2024-08-13 14:30:08', '2024-08-13 14:25:08', 1, 1, '2023-06-22 12:10:31', '2024-08-13 18:25:08');

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

--
-- Table structure for table `cron_job_logs`
--

CREATE TABLE `cron_job_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `cron_job_id` int(11) NOT NULL DEFAULT '0',
  `start_at` datetime DEFAULT NULL,
  `end_at` datetime DEFAULT NULL,
  `duration` int(11) NOT NULL DEFAULT '0',
  `error` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cron_job_logs`
--

INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(1, 1, '2024-07-30 22:35:08', '2024-07-30 22:35:08', 0, NULL, '2024-07-31 02:35:08', '2024-07-31 02:35:08'),
(2, 2, '2024-07-30 22:35:09', '2024-07-30 22:35:09', 0, NULL, '2024-07-31 02:35:09', '2024-07-31 02:35:09'),
(3, 3, '2024-07-30 22:35:09', '2024-07-30 22:35:09', 0, NULL, '2024-07-31 02:35:10', '2024-07-31 02:35:10'),
(4, 5, '2024-07-30 22:35:10', '2024-07-30 22:35:10', 0, NULL, '2024-07-31 02:35:10', '2024-07-31 02:35:10'),
(5, 1, '2024-07-30 22:45:07', '2024-07-30 22:45:07', 0, NULL, '2024-07-31 02:45:07', '2024-07-31 02:45:07'),
(6, 2, '2024-07-30 22:45:07', '2024-07-30 22:45:07', 0, NULL, '2024-07-31 02:45:08', '2024-07-31 02:45:08'),
(7, 3, '2024-07-30 22:45:08', '2024-07-30 22:45:08', 0, NULL, '2024-07-31 02:45:08', '2024-07-31 02:45:08'),
(8, 5, '2024-07-30 22:45:08', '2024-07-30 22:45:08', 0, NULL, '2024-07-31 02:45:09', '2024-07-31 02:45:09'),
(9, 1, '2024-07-30 22:55:04', '2024-07-30 22:55:05', 0, NULL, '2024-07-31 02:55:05', '2024-07-31 02:55:05'),
(10, 2, '2024-07-30 22:55:05', '2024-07-30 22:55:05', 0, NULL, '2024-07-31 02:55:06', '2024-07-31 02:55:06'),
(11, 3, '2024-07-30 22:55:06', '2024-07-30 22:55:06', 0, NULL, '2024-07-31 02:55:07', '2024-07-31 02:55:07'),
(12, 5, '2024-07-30 22:55:07', '2024-07-30 22:55:07', 0, NULL, '2024-07-31 02:55:07', '2024-07-31 02:55:07'),
(13, 1, '2024-07-30 23:05:09', '2024-07-30 23:05:09', 0, NULL, '2024-07-31 03:05:10', '2024-07-31 03:05:10'),
(14, 2, '2024-07-30 23:05:10', '2024-07-30 23:05:10', 0, NULL, '2024-07-31 03:05:10', '2024-07-31 03:05:10'),
(15, 3, '2024-07-30 23:05:11', '2024-07-30 23:05:11', 0, NULL, '2024-07-31 03:05:11', '2024-07-31 03:05:11'),
(16, 5, '2024-07-30 23:05:13', '2024-07-30 23:05:13', 0, NULL, '2024-07-31 03:05:13', '2024-07-31 03:05:13'),
(17, 1, '2024-07-30 23:15:08', '2024-07-30 23:15:09', 0, NULL, '2024-07-31 03:15:09', '2024-07-31 03:15:09'),
(18, 2, '2024-07-30 23:15:09', '2024-07-30 23:15:09', 0, NULL, '2024-07-31 03:15:09', '2024-07-31 03:15:09'),
(19, 3, '2024-07-30 23:15:10', '2024-07-30 23:15:10', 0, NULL, '2024-07-31 03:15:10', '2024-07-31 03:15:10'),
(20, 5, '2024-07-30 23:15:10', '2024-07-30 23:15:10', 0, NULL, '2024-07-31 03:15:10', '2024-07-31 03:15:10'),
(21, 1, '2024-07-30 23:25:06', '2024-07-30 23:25:06', 0, NULL, '2024-07-31 03:25:07', '2024-07-31 03:25:07'),
(22, 2, '2024-07-30 23:25:08', '2024-07-30 23:25:08', 0, NULL, '2024-07-31 03:25:08', '2024-07-31 03:25:08'),
(23, 3, '2024-07-30 23:25:09', '2024-07-30 23:25:09', 0, NULL, '2024-07-31 03:25:09', '2024-07-31 03:25:09'),
(24, 5, '2024-07-30 23:25:09', '2024-07-30 23:25:09', 0, NULL, '2024-07-31 03:25:10', '2024-07-31 03:25:10'),
(25, 1, '2024-07-30 23:35:04', '2024-07-30 23:35:04', 0, NULL, '2024-07-31 03:35:05', '2024-07-31 03:35:05'),
(26, 2, '2024-07-30 23:35:05', '2024-07-30 23:35:05', 0, NULL, '2024-07-31 03:35:06', '2024-07-31 03:35:06'),
(27, 3, '2024-07-30 23:35:06', '2024-07-30 23:35:06', 0, NULL, '2024-07-31 03:35:06', '2024-07-31 03:35:06'),
(28, 5, '2024-07-30 23:35:07', '2024-07-30 23:35:07', 0, NULL, '2024-07-31 03:35:07', '2024-07-31 03:35:07'),
(29, 1, '2024-07-30 23:40:06', '2024-07-30 23:40:08', 2, NULL, '2024-07-31 03:40:10', '2024-07-31 03:40:10'),
(30, 2, '2024-07-30 23:40:10', '2024-07-30 23:40:10', 0, NULL, '2024-07-31 03:40:10', '2024-07-31 03:40:10'),
(31, 3, '2024-07-30 23:45:08', '2024-07-30 23:45:08', 0, NULL, '2024-07-31 03:45:08', '2024-07-31 03:45:08'),
(32, 5, '2024-07-30 23:45:09', '2024-07-30 23:45:09', 0, NULL, '2024-07-31 03:45:09', '2024-07-31 03:45:09'),
(33, 1, '2024-07-30 23:50:03', '2024-07-30 23:50:03', 0, NULL, '2024-07-31 03:50:04', '2024-07-31 03:50:04'),
(34, 2, '2024-07-30 23:50:04', '2024-07-30 23:50:04', 0, NULL, '2024-07-31 03:50:05', '2024-07-31 03:50:05'),
(35, 1, '2024-07-30 23:55:05', '2024-07-30 23:55:05', 0, NULL, '2024-07-31 03:55:05', '2024-07-31 03:55:05'),
(36, 2, '2024-07-30 23:55:07', '2024-07-30 23:55:07', 0, NULL, '2024-07-31 03:55:07', '2024-07-31 03:55:07'),
(37, 3, '2024-07-30 23:55:07', '2024-07-30 23:55:07', 0, NULL, '2024-07-31 03:55:08', '2024-07-31 03:55:08'),
(38, 5, '2024-07-30 23:55:09', '2024-07-30 23:55:09', 0, NULL, '2024-07-31 03:55:09', '2024-07-31 03:55:09'),
(39, 1, '2024-07-31 00:00:06', '2024-07-31 00:00:06', 0, NULL, '2024-07-31 04:00:07', '2024-07-31 04:00:07'),
(40, 2, '2024-07-31 00:05:05', '2024-07-31 00:05:05', 0, NULL, '2024-07-31 04:05:06', '2024-07-31 04:05:06'),
(41, 3, '2024-07-31 00:05:06', '2024-07-31 00:05:06', 0, NULL, '2024-07-31 04:05:06', '2024-07-31 04:05:06'),
(42, 5, '2024-07-31 00:05:07', '2024-07-31 00:05:07', 0, NULL, '2024-07-31 04:05:07', '2024-07-31 04:05:07'),
(43, 1, '2024-07-31 00:10:07', '2024-07-31 00:10:07', 0, NULL, '2024-07-31 04:10:07', '2024-07-31 04:10:07'),
(44, 2, '2024-07-31 00:10:07', '2024-07-31 00:10:07', 0, NULL, '2024-07-31 04:10:08', '2024-07-31 04:10:08'),
(45, 3, '2024-07-31 00:10:08', '2024-07-31 00:10:08', 0, NULL, '2024-07-31 04:10:08', '2024-07-31 04:10:08'),
(46, 5, '2024-07-31 00:15:03', '2024-07-31 00:15:03', 0, NULL, '2024-07-31 04:15:03', '2024-07-31 04:15:03'),
(47, 1, '2024-07-31 00:20:07', '2024-07-31 00:20:07', 0, NULL, '2024-07-31 04:20:07', '2024-07-31 04:20:07'),
(48, 2, '2024-07-31 00:20:08', '2024-07-31 00:20:08', 0, NULL, '2024-07-31 04:20:08', '2024-07-31 04:20:08'),
(49, 3, '2024-07-31 00:20:08', '2024-07-31 00:20:08', 0, NULL, '2024-07-31 04:20:08', '2024-07-31 04:20:08'),
(50, 5, '2024-07-31 00:20:09', '2024-07-31 00:20:09', 0, NULL, '2024-07-31 04:20:09', '2024-07-31 04:20:09'),
(51, 1, '2024-07-31 00:30:06', '2024-07-31 00:30:06', 0, NULL, '2024-07-31 04:30:07', '2024-07-31 04:30:07'),
(52, 2, '2024-07-31 00:30:07', '2024-07-31 00:30:07', 0, NULL, '2024-07-31 04:30:07', '2024-07-31 04:30:07'),
(53, 3, '2024-07-31 00:30:07', '2024-07-31 00:30:07', 0, NULL, '2024-07-31 04:30:08', '2024-07-31 04:30:08'),
(54, 5, '2024-07-31 00:30:08', '2024-07-31 00:30:08', 0, NULL, '2024-07-31 04:30:08', '2024-07-31 04:30:08'),
(55, 1, '2024-07-31 00:40:04', '2024-07-31 00:40:04', 0, NULL, '2024-07-31 04:40:05', '2024-07-31 04:40:05'),
(56, 2, '2024-07-31 00:40:05', '2024-07-31 00:40:05', 0, NULL, '2024-07-31 04:40:06', '2024-07-31 04:40:06'),
(57, 3, '2024-07-31 00:40:06', '2024-07-31 00:40:06', 0, NULL, '2024-07-31 04:40:07', '2024-07-31 04:40:07'),
(58, 5, '2024-07-31 00:40:07', '2024-07-31 00:40:07', 0, NULL, '2024-07-31 04:40:08', '2024-07-31 04:40:08'),
(59, 1, '2024-07-31 00:45:09', '2024-07-31 00:45:09', 0, NULL, '2024-07-31 04:45:09', '2024-07-31 04:45:09'),
(60, 2, '2024-07-31 00:45:09', '2024-07-31 00:45:09', 0, NULL, '2024-07-31 04:45:09', '2024-07-31 04:45:09'),
(61, 3, '2024-07-31 00:45:09', '2024-07-31 00:45:09', 0, NULL, '2024-07-31 04:45:10', '2024-07-31 04:45:10'),
(62, 5, '2024-07-31 00:45:10', '2024-07-31 00:45:10', 0, NULL, '2024-07-31 04:45:10', '2024-07-31 04:45:10'),
(63, 1, '2024-07-31 00:55:04', '2024-07-31 00:55:04', 0, NULL, '2024-07-31 04:55:04', '2024-07-31 04:55:04'),
(64, 2, '2024-07-31 00:55:05', '2024-07-31 00:55:05', 0, NULL, '2024-07-31 04:55:05', '2024-07-31 04:55:05'),
(65, 3, '2024-07-31 00:55:06', '2024-07-31 00:55:06', 0, NULL, '2024-07-31 04:55:07', '2024-07-31 04:55:07'),
(66, 5, '2024-07-31 00:55:07', '2024-07-31 00:55:07', 0, NULL, '2024-07-31 04:55:07', '2024-07-31 04:55:07'),
(67, 1, '2024-07-31 01:00:09', '2024-07-31 01:00:10', 0, NULL, '2024-07-31 05:00:12', '2024-07-31 05:00:12'),
(68, 2, '2024-07-31 01:00:12', '2024-07-31 01:00:12', 0, NULL, '2024-07-31 05:00:12', '2024-07-31 05:00:12'),
(69, 3, '2024-07-31 01:00:12', '2024-07-31 01:00:12', 0, NULL, '2024-07-31 05:00:12', '2024-07-31 05:00:12'),
(70, 5, '2024-07-31 01:00:13', '2024-07-31 01:00:13', 0, NULL, '2024-07-31 05:00:13', '2024-07-31 05:00:13'),
(71, 1, '2024-07-31 01:10:04', '2024-07-31 01:10:04', 0, NULL, '2024-07-31 05:10:05', '2024-07-31 05:10:05'),
(72, 2, '2024-07-31 01:10:05', '2024-07-31 01:10:05', 0, NULL, '2024-07-31 05:10:06', '2024-07-31 05:10:06'),
(73, 3, '2024-07-31 01:10:07', '2024-07-31 01:10:07', 0, NULL, '2024-07-31 05:10:07', '2024-07-31 05:10:07'),
(74, 5, '2024-07-31 01:10:07', '2024-07-31 01:10:07', 0, NULL, '2024-07-31 05:10:08', '2024-07-31 05:10:08'),
(75, 1, '2024-07-31 01:15:07', '2024-07-31 01:15:07', 0, NULL, '2024-07-31 05:15:07', '2024-07-31 05:15:07'),
(76, 2, '2024-07-31 01:15:07', '2024-07-31 01:15:07', 0, NULL, '2024-07-31 05:15:08', '2024-07-31 05:15:08'),
(77, 3, '2024-07-31 01:20:05', '2024-07-31 01:20:05', 0, NULL, '2024-07-31 05:20:06', '2024-07-31 05:20:06'),
(78, 5, '2024-07-31 01:20:06', '2024-07-31 01:20:07', 0, NULL, '2024-07-31 05:20:07', '2024-07-31 05:20:07'),
(79, 1, '2024-07-31 01:25:03', '2024-07-31 01:25:03', 0, NULL, '2024-07-31 05:25:03', '2024-07-31 05:25:03'),
(80, 2, '2024-07-31 01:25:04', '2024-07-31 01:25:04', 0, NULL, '2024-07-31 05:25:05', '2024-07-31 05:25:05'),
(81, 1, '2024-07-31 01:30:06', '2024-07-31 01:30:07', 0, NULL, '2024-07-31 05:30:08', '2024-07-31 05:30:08'),
(82, 2, '2024-07-31 01:30:08', '2024-07-31 01:30:08', 0, NULL, '2024-07-31 05:30:08', '2024-07-31 05:30:08'),
(83, 3, '2024-07-31 01:30:08', '2024-07-31 01:30:08', 0, NULL, '2024-07-31 05:30:08', '2024-07-31 05:30:08'),
(84, 5, '2024-07-31 01:30:09', '2024-07-31 01:30:09', 0, NULL, '2024-07-31 05:30:09', '2024-07-31 05:30:09'),
(85, 1, '2024-07-31 01:40:03', '2024-07-31 01:40:03', 0, NULL, '2024-07-31 05:40:03', '2024-07-31 05:40:03'),
(86, 2, '2024-07-31 01:40:04', '2024-07-31 01:40:04', 0, NULL, '2024-07-31 05:40:04', '2024-07-31 05:40:04'),
(87, 3, '2024-07-31 01:40:05', '2024-07-31 01:40:05', 0, NULL, '2024-07-31 05:40:05', '2024-07-31 05:40:05'),
(88, 5, '2024-07-31 01:40:05', '2024-07-31 01:40:05', 0, NULL, '2024-07-31 05:40:10', '2024-07-31 05:40:10'),
(89, 1, '2024-07-31 01:45:04', '2024-07-31 01:45:04', 0, NULL, '2024-07-31 05:45:04', '2024-07-31 05:45:04'),
(90, 1, '2024-07-31 01:50:09', '2024-07-31 01:50:09', 0, NULL, '2024-07-31 05:50:10', '2024-07-31 05:50:10'),
(91, 2, '2024-07-31 01:50:10', '2024-07-31 01:50:10', 0, NULL, '2024-07-31 05:50:10', '2024-07-31 05:50:10'),
(92, 3, '2024-07-31 01:50:10', '2024-07-31 01:50:10', 0, NULL, '2024-07-31 05:50:10', '2024-07-31 05:50:10'),
(93, 5, '2024-07-31 01:50:10', '2024-07-31 01:50:10', 0, NULL, '2024-07-31 05:50:10', '2024-07-31 05:50:10'),
(94, 1, '2024-07-31 02:00:06', '2024-07-31 02:00:06', 0, NULL, '2024-07-31 06:00:06', '2024-07-31 06:00:06'),
(95, 2, '2024-07-31 02:00:07', '2024-07-31 02:00:07', 0, NULL, '2024-07-31 06:00:08', '2024-07-31 06:00:08'),
(96, 3, '2024-07-31 02:00:08', '2024-07-31 02:00:08', 0, NULL, '2024-07-31 06:00:08', '2024-07-31 06:00:08'),
(97, 5, '2024-07-31 02:00:09', '2024-07-31 02:00:09', 0, NULL, '2024-07-31 06:00:09', '2024-07-31 06:00:09'),
(98, 1, '2024-07-31 02:05:07', '2024-07-31 02:05:07', 0, NULL, '2024-07-31 06:05:07', '2024-07-31 06:05:07'),
(99, 2, '2024-07-31 02:10:05', '2024-07-31 02:10:05', 0, NULL, '2024-07-31 06:10:05', '2024-07-31 06:10:05'),
(100, 3, '2024-07-31 02:10:06', '2024-07-31 02:10:06', 0, NULL, '2024-07-31 06:10:06', '2024-07-31 06:10:06'),
(101, 5, '2024-07-31 02:10:06', '2024-07-31 02:10:06', 0, NULL, '2024-07-31 06:10:07', '2024-07-31 06:10:07'),
(102, 1, '2024-07-31 02:15:03', '2024-07-31 02:15:03', 0, NULL, '2024-07-31 06:15:04', '2024-07-31 06:15:04'),
(103, 1, '2024-07-31 02:20:06', '2024-07-31 02:20:06', 0, NULL, '2024-07-31 06:20:06', '2024-07-31 06:20:06'),
(104, 2, '2024-07-31 02:20:07', '2024-07-31 02:20:07', 0, NULL, '2024-07-31 06:20:07', '2024-07-31 06:20:07'),
(105, 3, '2024-07-31 02:20:08', '2024-07-31 02:20:08', 0, NULL, '2024-07-31 06:20:08', '2024-07-31 06:20:08'),
(106, 5, '2024-07-31 02:20:08', '2024-07-31 02:20:08', 0, NULL, '2024-07-31 06:20:08', '2024-07-31 06:20:08'),
(107, 1, '2024-07-31 02:30:06', '2024-07-31 02:30:06', 0, NULL, '2024-07-31 06:30:06', '2024-07-31 06:30:06'),
(108, 2, '2024-07-31 02:30:07', '2024-07-31 02:30:07', 0, NULL, '2024-07-31 06:30:07', '2024-07-31 06:30:07'),
(109, 3, '2024-07-31 02:30:08', '2024-07-31 02:30:08', 0, NULL, '2024-07-31 06:30:08', '2024-07-31 06:30:08'),
(110, 5, '2024-07-31 02:30:08', '2024-07-31 02:30:09', 0, NULL, '2024-07-31 06:30:09', '2024-07-31 06:30:09'),
(111, 1, '2024-07-31 02:40:05', '2024-07-31 02:40:05', 0, NULL, '2024-07-31 06:40:06', '2024-07-31 06:40:06'),
(112, 2, '2024-07-31 02:40:06', '2024-07-31 02:40:06', 0, NULL, '2024-07-31 06:40:07', '2024-07-31 06:40:07'),
(113, 3, '2024-07-31 02:40:07', '2024-07-31 02:40:07', 0, NULL, '2024-07-31 06:40:07', '2024-07-31 06:40:07'),
(114, 5, '2024-07-31 02:40:07', '2024-07-31 02:40:07', 0, NULL, '2024-07-31 06:40:08', '2024-07-31 06:40:08'),
(115, 1, '2024-07-31 02:45:06', '2024-07-31 02:45:06', 0, NULL, '2024-07-31 06:45:06', '2024-07-31 06:45:06'),
(116, 2, '2024-07-31 02:50:04', '2024-07-31 02:50:04', 0, NULL, '2024-07-31 06:50:07', '2024-07-31 06:50:07'),
(117, 3, '2024-07-31 02:50:07', '2024-07-31 02:50:07', 0, NULL, '2024-07-31 06:50:08', '2024-07-31 06:50:08'),
(118, 5, '2024-07-31 02:50:08', '2024-07-31 02:50:08', 0, NULL, '2024-07-31 06:50:08', '2024-07-31 06:50:08'),
(119, 1, '2024-07-31 02:55:05', '2024-07-31 02:55:05', 0, NULL, '2024-07-31 06:55:05', '2024-07-31 06:55:05'),
(120, 2, '2024-07-31 02:55:06', '2024-07-31 02:55:06', 0, NULL, '2024-07-31 06:55:06', '2024-07-31 06:55:06'),
(121, 1, '2024-07-31 03:00:07', '2024-07-31 03:00:07', 0, NULL, '2024-07-31 07:00:08', '2024-07-31 07:00:08'),
(122, 2, '2024-07-31 03:00:09', '2024-07-31 03:00:09', 0, NULL, '2024-07-31 07:00:09', '2024-07-31 07:00:09'),
(123, 3, '2024-07-31 03:00:09', '2024-07-31 03:00:09', 0, NULL, '2024-07-31 07:00:10', '2024-07-31 07:00:10'),
(124, 5, '2024-07-31 03:00:13', '2024-07-31 03:00:13', 0, NULL, '2024-07-31 07:00:13', '2024-07-31 07:00:13'),
(125, 1, '2024-07-31 03:10:05', '2024-07-31 03:10:05', 0, NULL, '2024-07-31 07:10:06', '2024-07-31 07:10:06'),
(126, 2, '2024-07-31 03:10:06', '2024-07-31 03:10:06', 0, NULL, '2024-07-31 07:10:06', '2024-07-31 07:10:06'),
(127, 3, '2024-07-31 03:10:09', '2024-07-31 03:10:09', 0, NULL, '2024-07-31 07:10:09', '2024-07-31 07:10:09'),
(128, 5, '2024-07-31 03:10:09', '2024-07-31 03:10:09', 0, NULL, '2024-07-31 07:10:09', '2024-07-31 07:10:09'),
(129, 1, '2024-07-31 03:15:08', '2024-07-31 03:15:08', 0, NULL, '2024-07-31 07:15:08', '2024-07-31 07:15:08'),
(130, 2, '2024-07-31 03:15:08', '2024-07-31 03:15:08', 0, NULL, '2024-07-31 07:15:08', '2024-07-31 07:15:08'),
(131, 3, '2024-07-31 03:20:05', '2024-07-31 03:20:05', 0, NULL, '2024-07-31 07:20:06', '2024-07-31 07:20:06'),
(132, 5, '2024-07-31 03:20:06', '2024-07-31 03:20:06', 0, NULL, '2024-07-31 07:20:06', '2024-07-31 07:20:06'),
(133, 1, '2024-07-31 03:25:04', '2024-07-31 03:25:04', 0, NULL, '2024-07-31 07:25:05', '2024-07-31 07:25:05'),
(134, 2, '2024-07-31 03:25:05', '2024-07-31 03:25:05', 0, NULL, '2024-07-31 07:25:05', '2024-07-31 07:25:05'),
(135, 1, '2024-07-31 03:30:06', '2024-07-31 03:30:06', 0, NULL, '2024-07-31 07:30:07', '2024-07-31 07:30:07'),
(136, 2, '2024-07-31 03:30:07', '2024-07-31 03:30:07', 0, NULL, '2024-07-31 07:30:07', '2024-07-31 07:30:07'),
(137, 3, '2024-07-31 03:30:08', '2024-07-31 03:30:08', 0, NULL, '2024-07-31 07:30:08', '2024-07-31 07:30:08'),
(138, 5, '2024-07-31 03:30:08', '2024-07-31 03:30:08', 0, NULL, '2024-07-31 07:30:09', '2024-07-31 07:30:09'),
(139, 1, '2024-07-31 03:40:03', '2024-07-31 03:40:03', 0, NULL, '2024-07-31 07:40:04', '2024-07-31 07:40:04'),
(140, 2, '2024-07-31 03:40:04', '2024-07-31 03:40:04', 0, NULL, '2024-07-31 07:40:04', '2024-07-31 07:40:04'),
(141, 3, '2024-07-31 03:40:05', '2024-07-31 03:40:05', 0, NULL, '2024-07-31 07:40:05', '2024-07-31 07:40:05'),
(142, 5, '2024-07-31 03:40:05', '2024-07-31 03:40:05', 0, NULL, '2024-07-31 07:40:08', '2024-07-31 07:40:08'),
(143, 1, '2024-07-31 03:45:06', '2024-07-31 03:45:07', 0, NULL, '2024-07-31 07:45:07', '2024-07-31 07:45:07'),
(144, 2, '2024-07-31 03:45:07', '2024-07-31 03:45:07', 0, NULL, '2024-07-31 07:45:08', '2024-07-31 07:45:08'),
(145, 3, '2024-07-31 03:45:08', '2024-07-31 03:45:08', 0, NULL, '2024-07-31 07:45:08', '2024-07-31 07:45:08'),
(146, 5, '2024-07-31 03:45:08', '2024-07-31 03:45:08', 0, NULL, '2024-07-31 07:45:09', '2024-07-31 07:45:09'),
(147, 1, '2024-07-31 03:55:07', '2024-07-31 03:55:07', 0, NULL, '2024-07-31 07:55:07', '2024-07-31 07:55:07'),
(148, 2, '2024-07-31 03:55:08', '2024-07-31 03:55:08', 0, NULL, '2024-07-31 07:55:08', '2024-07-31 07:55:08'),
(149, 3, '2024-07-31 03:55:09', '2024-07-31 03:55:09', 0, NULL, '2024-07-31 07:55:09', '2024-07-31 07:55:09'),
(150, 5, '2024-07-31 03:55:09', '2024-07-31 03:55:09', 0, NULL, '2024-07-31 07:55:09', '2024-07-31 07:55:09'),
(151, 1, '2024-07-31 04:00:11', '2024-07-31 04:00:11', 0, NULL, '2024-07-31 08:00:12', '2024-07-31 08:00:12'),
(152, 2, '2024-07-31 04:00:12', '2024-07-31 04:00:12', 0, NULL, '2024-07-31 08:00:12', '2024-07-31 08:00:12'),
(153, 3, '2024-07-31 04:00:12', '2024-07-31 04:00:12', 0, NULL, '2024-07-31 08:00:12', '2024-07-31 08:00:12'),
(154, 5, '2024-07-31 04:00:13', '2024-07-31 04:00:13', 0, NULL, '2024-07-31 08:00:13', '2024-07-31 08:00:13'),
(155, 1, '2024-07-31 04:10:05', '2024-07-31 04:10:05', 0, NULL, '2024-07-31 08:10:06', '2024-07-31 08:10:06'),
(156, 2, '2024-07-31 04:10:07', '2024-07-31 04:10:07', 0, NULL, '2024-07-31 08:10:07', '2024-07-31 08:10:07'),
(157, 3, '2024-07-31 04:10:08', '2024-07-31 04:10:08', 0, NULL, '2024-07-31 08:10:08', '2024-07-31 08:10:08'),
(158, 5, '2024-07-31 04:10:08', '2024-07-31 04:10:08', 0, NULL, '2024-07-31 08:10:09', '2024-07-31 08:10:09'),
(159, 1, '2024-07-31 04:20:03', '2024-07-31 04:20:03', 0, NULL, '2024-07-31 08:20:03', '2024-07-31 08:20:03'),
(160, 2, '2024-07-31 04:20:04', '2024-07-31 04:20:04', 0, NULL, '2024-07-31 08:20:05', '2024-07-31 08:20:05'),
(161, 3, '2024-07-31 04:20:05', '2024-07-31 04:20:05', 0, NULL, '2024-07-31 08:20:05', '2024-07-31 08:20:05'),
(162, 5, '2024-07-31 04:20:05', '2024-07-31 04:20:05', 0, NULL, '2024-07-31 08:20:06', '2024-07-31 08:20:06'),
(163, 1, '2024-07-31 04:30:04', '2024-07-31 04:30:04', 0, NULL, '2024-07-31 08:30:04', '2024-07-31 08:30:04'),
(164, 2, '2024-07-31 04:30:04', '2024-07-31 04:30:04', 0, NULL, '2024-07-31 08:30:05', '2024-07-31 08:30:05'),
(165, 3, '2024-07-31 04:30:05', '2024-07-31 04:30:05', 0, NULL, '2024-07-31 08:30:06', '2024-07-31 08:30:06'),
(166, 5, '2024-07-31 04:30:06', '2024-07-31 04:30:06', 0, NULL, '2024-07-31 08:30:07', '2024-07-31 08:30:07'),
(167, 1, '2024-07-31 04:40:04', '2024-07-31 04:40:04', 0, NULL, '2024-07-31 08:40:04', '2024-07-31 08:40:04'),
(168, 2, '2024-07-31 04:40:05', '2024-07-31 04:40:05', 0, NULL, '2024-07-31 08:40:05', '2024-07-31 08:40:05'),
(169, 3, '2024-07-31 04:40:06', '2024-07-31 04:40:06', 0, NULL, '2024-07-31 08:40:06', '2024-07-31 08:40:06'),
(170, 5, '2024-07-31 04:40:07', '2024-07-31 04:40:07', 0, NULL, '2024-07-31 08:40:07', '2024-07-31 08:40:07'),
(171, 1, '2024-07-31 04:45:07', '2024-07-31 04:45:07', 0, NULL, '2024-07-31 08:45:07', '2024-07-31 08:45:07'),
(172, 2, '2024-07-31 04:45:08', '2024-07-31 04:45:08', 0, NULL, '2024-07-31 08:45:09', '2024-07-31 08:45:09'),
(173, 3, '2024-07-31 04:45:09', '2024-07-31 04:45:09', 0, NULL, '2024-07-31 08:45:09', '2024-07-31 08:45:09'),
(174, 5, '2024-07-31 04:50:04', '2024-07-31 04:50:04', 0, NULL, '2024-07-31 08:50:05', '2024-07-31 08:50:05'),
(175, 1, '2024-07-31 04:55:05', '2024-07-31 04:55:05', 0, NULL, '2024-07-31 08:55:05', '2024-07-31 08:55:05'),
(176, 2, '2024-07-31 04:55:05', '2024-07-31 04:55:05', 0, NULL, '2024-07-31 08:55:06', '2024-07-31 08:55:06'),
(177, 3, '2024-07-31 04:55:06', '2024-07-31 04:55:06', 0, NULL, '2024-07-31 08:55:06', '2024-07-31 08:55:06'),
(178, 5, '2024-07-31 04:55:06', '2024-07-31 04:55:06', 0, NULL, '2024-07-31 08:55:07', '2024-07-31 08:55:07'),
(179, 1, '2024-07-31 05:05:06', '2024-07-31 05:05:06', 0, NULL, '2024-07-31 09:05:07', '2024-07-31 09:05:07'),
(180, 2, '2024-07-31 05:05:07', '2024-07-31 05:05:07', 0, NULL, '2024-07-31 09:05:07', '2024-07-31 09:05:07'),
(181, 3, '2024-07-31 05:05:08', '2024-07-31 05:05:08', 0, NULL, '2024-07-31 09:05:08', '2024-07-31 09:05:08'),
(182, 5, '2024-07-31 05:05:08', '2024-07-31 05:05:08', 0, NULL, '2024-07-31 09:05:08', '2024-07-31 09:05:08'),
(183, 1, '2024-07-31 05:10:10', '2024-07-31 05:10:10', 0, NULL, '2024-07-31 09:10:11', '2024-07-31 09:10:11'),
(184, 2, '2024-07-31 05:10:11', '2024-07-31 05:10:11', 0, NULL, '2024-07-31 09:10:11', '2024-07-31 09:10:11'),
(185, 3, '2024-07-31 05:10:11', '2024-07-31 05:10:11', 0, NULL, '2024-07-31 09:10:11', '2024-07-31 09:10:11'),
(186, 5, '2024-07-31 05:10:11', '2024-07-31 05:10:11', 0, NULL, '2024-07-31 09:10:12', '2024-07-31 09:10:12'),
(187, 1, '2024-07-31 05:20:04', '2024-07-31 05:20:04', 0, NULL, '2024-07-31 09:20:04', '2024-07-31 09:20:04'),
(188, 2, '2024-07-31 05:20:05', '2024-07-31 05:20:05', 0, NULL, '2024-07-31 09:20:05', '2024-07-31 09:20:05'),
(189, 3, '2024-07-31 05:20:05', '2024-07-31 05:20:05', 0, NULL, '2024-07-31 09:20:06', '2024-07-31 09:20:06'),
(190, 5, '2024-07-31 05:20:06', '2024-07-31 05:20:06', 0, NULL, '2024-07-31 09:20:06', '2024-07-31 09:20:06'),
(191, 1, '2024-07-31 05:25:07', '2024-07-31 05:25:07', 0, NULL, '2024-07-31 09:25:07', '2024-07-31 09:25:07'),
(192, 2, '2024-07-31 05:25:08', '2024-07-31 05:25:08', 0, NULL, '2024-07-31 09:25:08', '2024-07-31 09:25:08'),
(193, 3, '2024-07-31 05:25:08', '2024-07-31 05:25:08', 0, NULL, '2024-07-31 09:25:08', '2024-07-31 09:25:08'),
(194, 1, '2024-07-31 05:30:10', '2024-07-31 05:30:10', 0, NULL, '2024-07-31 09:30:10', '2024-07-31 09:30:10'),
(195, 2, '2024-07-31 05:30:10', '2024-07-31 05:30:10', 0, NULL, '2024-07-31 09:30:11', '2024-07-31 09:30:11'),
(196, 3, '2024-07-31 05:30:11', '2024-07-31 05:30:11', 0, NULL, '2024-07-31 09:30:11', '2024-07-31 09:30:11'),
(197, 5, '2024-07-31 05:30:11', '2024-07-31 05:30:11', 0, NULL, '2024-07-31 09:30:11', '2024-07-31 09:30:11'),
(198, 1, '2024-07-31 05:40:03', '2024-07-31 05:40:03', 0, NULL, '2024-07-31 09:40:04', '2024-07-31 09:40:04'),
(199, 2, '2024-07-31 05:40:05', '2024-07-31 05:40:05', 0, NULL, '2024-07-31 09:40:06', '2024-07-31 09:40:06'),
(200, 3, '2024-07-31 05:40:06', '2024-07-31 05:40:06', 0, NULL, '2024-07-31 09:40:07', '2024-07-31 09:40:07'),
(201, 5, '2024-07-31 05:40:07', '2024-07-31 05:40:07', 0, NULL, '2024-07-31 09:40:08', '2024-07-31 09:40:08'),
(202, 1, '2024-07-31 05:45:05', '2024-07-31 05:45:05', 0, NULL, '2024-07-31 09:45:05', '2024-07-31 09:45:05'),
(203, 2, '2024-07-31 05:50:06', '2024-07-31 05:50:06', 0, NULL, '2024-07-31 09:50:06', '2024-07-31 09:50:06'),
(204, 3, '2024-07-31 05:50:06', '2024-07-31 05:50:06', 0, NULL, '2024-07-31 09:50:07', '2024-07-31 09:50:07'),
(205, 5, '2024-07-31 05:50:07', '2024-07-31 05:50:07', 0, NULL, '2024-07-31 09:50:07', '2024-07-31 09:50:07'),
(206, 1, '2024-07-31 05:55:05', '2024-07-31 05:55:05', 0, NULL, '2024-07-31 09:55:05', '2024-07-31 09:55:05'),
(207, 1, '2024-07-31 06:00:06', '2024-07-31 06:00:06', 0, NULL, '2024-07-31 10:00:07', '2024-07-31 10:00:07'),
(208, 2, '2024-07-31 06:00:08', '2024-07-31 06:00:08', 0, NULL, '2024-07-31 10:00:09', '2024-07-31 10:00:09'),
(209, 3, '2024-07-31 06:00:09', '2024-07-31 06:00:09', 0, NULL, '2024-07-31 10:00:09', '2024-07-31 10:00:09'),
(210, 5, '2024-07-31 06:00:10', '2024-07-31 06:00:10', 0, NULL, '2024-07-31 10:00:10', '2024-07-31 10:00:10'),
(211, 1, '2024-07-31 06:10:06', '2024-07-31 06:10:06', 0, NULL, '2024-07-31 10:10:06', '2024-07-31 10:10:06'),
(212, 2, '2024-07-31 06:10:07', '2024-07-31 06:10:07', 0, NULL, '2024-07-31 10:10:07', '2024-07-31 10:10:07'),
(213, 3, '2024-07-31 06:10:08', '2024-07-31 06:10:08', 0, NULL, '2024-07-31 10:10:08', '2024-07-31 10:10:08'),
(214, 5, '2024-07-31 06:10:08', '2024-07-31 06:10:08', 0, NULL, '2024-07-31 10:10:09', '2024-07-31 10:10:09'),
(215, 1, '2024-07-31 06:20:04', '2024-07-31 06:20:04', 0, NULL, '2024-07-31 10:20:05', '2024-07-31 10:20:05'),
(216, 2, '2024-07-31 06:20:06', '2024-07-31 06:20:06', 0, NULL, '2024-07-31 10:20:07', '2024-07-31 10:20:07'),
(217, 3, '2024-07-31 06:20:07', '2024-07-31 06:20:07', 0, NULL, '2024-07-31 10:20:08', '2024-07-31 10:20:08'),
(218, 5, '2024-07-31 06:20:09', '2024-07-31 06:20:11', 2, NULL, '2024-07-31 10:20:11', '2024-07-31 10:20:11'),
(219, 1, '2024-07-31 06:30:04', '2024-07-31 06:30:04', 0, NULL, '2024-07-31 10:30:05', '2024-07-31 10:30:05'),
(220, 2, '2024-07-31 06:30:05', '2024-07-31 06:30:05', 0, NULL, '2024-07-31 10:30:06', '2024-07-31 10:30:06'),
(221, 3, '2024-07-31 06:30:06', '2024-07-31 06:30:06', 0, NULL, '2024-07-31 10:30:06', '2024-07-31 10:30:06'),
(222, 5, '2024-07-31 06:30:08', '2024-07-31 06:30:08', 0, NULL, '2024-07-31 10:30:08', '2024-07-31 10:30:08'),
(223, 1, '2024-07-31 06:40:03', '2024-07-31 06:40:03', 0, NULL, '2024-07-31 10:40:03', '2024-07-31 10:40:03'),
(224, 2, '2024-07-31 06:40:04', '2024-07-31 06:40:04', 0, NULL, '2024-07-31 10:40:05', '2024-07-31 10:40:05'),
(225, 3, '2024-07-31 06:40:06', '2024-07-31 06:40:06', 0, NULL, '2024-07-31 10:40:06', '2024-07-31 10:40:06'),
(226, 5, '2024-07-31 06:40:06', '2024-07-31 06:40:06', 0, NULL, '2024-07-31 10:40:07', '2024-07-31 10:40:07'),
(227, 1, '2024-07-31 06:50:08', '2024-07-31 06:50:08', 0, NULL, '2024-07-31 10:50:09', '2024-07-31 10:50:09'),
(228, 2, '2024-07-31 06:50:09', '2024-07-31 06:50:09', 0, NULL, '2024-07-31 10:50:09', '2024-07-31 10:50:09'),
(229, 3, '2024-07-31 06:50:09', '2024-07-31 06:50:09', 0, NULL, '2024-07-31 10:50:09', '2024-07-31 10:50:09'),
(230, 5, '2024-07-31 06:50:09', '2024-07-31 06:50:09', 0, NULL, '2024-07-31 10:50:10', '2024-07-31 10:50:10'),
(231, 1, '2024-07-31 07:00:07', '2024-07-31 07:00:07', 0, NULL, '2024-07-31 11:00:07', '2024-07-31 11:00:07'),
(232, 2, '2024-07-31 07:00:08', '2024-07-31 07:00:08', 0, NULL, '2024-07-31 11:00:08', '2024-07-31 11:00:08'),
(233, 3, '2024-07-31 07:00:09', '2024-07-31 07:00:09', 0, NULL, '2024-07-31 11:00:09', '2024-07-31 11:00:09'),
(234, 5, '2024-07-31 07:00:09', '2024-07-31 07:00:09', 0, NULL, '2024-07-31 11:00:09', '2024-07-31 11:00:09'),
(235, 1, '2024-07-31 07:10:04', '2024-07-31 07:10:04', 0, NULL, '2024-07-31 11:10:04', '2024-07-31 11:10:04'),
(236, 2, '2024-07-31 07:10:04', '2024-07-31 07:10:04', 0, NULL, '2024-07-31 11:10:07', '2024-07-31 11:10:07'),
(237, 3, '2024-07-31 07:10:07', '2024-07-31 07:10:07', 0, NULL, '2024-07-31 11:10:07', '2024-07-31 11:10:07'),
(238, 5, '2024-07-31 07:10:07', '2024-07-31 07:10:07', 0, NULL, '2024-07-31 11:10:08', '2024-07-31 11:10:08'),
(239, 1, '2024-07-31 07:20:06', '2024-07-31 07:20:06', 0, NULL, '2024-07-31 11:20:06', '2024-07-31 11:20:06'),
(240, 2, '2024-07-31 07:20:07', '2024-07-31 07:20:07', 0, NULL, '2024-07-31 11:20:07', '2024-07-31 11:20:07'),
(241, 3, '2024-07-31 07:20:07', '2024-07-31 07:20:07', 0, NULL, '2024-07-31 11:20:08', '2024-07-31 11:20:08'),
(242, 5, '2024-07-31 07:20:08', '2024-07-31 07:20:08', 0, NULL, '2024-07-31 11:20:08', '2024-07-31 11:20:08'),
(243, 1, '2024-07-31 07:30:10', '2024-07-31 07:30:10', 0, NULL, '2024-07-31 11:30:10', '2024-07-31 11:30:10'),
(244, 2, '2024-07-31 07:30:10', '2024-07-31 07:30:10', 0, NULL, '2024-07-31 11:30:11', '2024-07-31 11:30:11'),
(245, 3, '2024-07-31 07:30:11', '2024-07-31 07:30:11', 0, NULL, '2024-07-31 11:30:11', '2024-07-31 11:30:11'),
(246, 5, '2024-07-31 07:30:11', '2024-07-31 07:30:11', 0, NULL, '2024-07-31 11:30:11', '2024-07-31 11:30:11'),
(247, 1, '2024-07-31 07:40:08', '2024-07-31 07:40:09', 0, NULL, '2024-07-31 11:40:09', '2024-07-31 11:40:09'),
(248, 2, '2024-07-31 07:40:09', '2024-07-31 07:40:09', 0, NULL, '2024-07-31 11:40:09', '2024-07-31 11:40:09'),
(249, 3, '2024-07-31 07:40:09', '2024-07-31 07:40:09', 0, NULL, '2024-07-31 11:40:09', '2024-07-31 11:40:09'),
(250, 5, '2024-07-31 07:40:09', '2024-07-31 07:40:09', 0, NULL, '2024-07-31 11:40:09', '2024-07-31 11:40:09'),
(251, 1, '2024-07-31 07:50:05', '2024-07-31 07:50:05', 0, NULL, '2024-07-31 11:50:05', '2024-07-31 11:50:05'),
(252, 2, '2024-07-31 07:50:06', '2024-07-31 07:50:06', 0, NULL, '2024-07-31 11:50:07', '2024-07-31 11:50:07'),
(253, 3, '2024-07-31 07:50:07', '2024-07-31 07:50:07', 0, NULL, '2024-07-31 11:50:09', '2024-07-31 11:50:09'),
(254, 5, '2024-07-31 07:50:11', '2024-07-31 07:50:11', 0, NULL, '2024-07-31 11:50:11', '2024-07-31 11:50:11'),
(255, 1, '2024-07-31 07:55:07', '2024-07-31 07:55:07', 0, NULL, '2024-07-31 11:55:07', '2024-07-31 11:55:07'),
(256, 2, '2024-07-31 08:00:04', '2024-07-31 08:00:04', 0, NULL, '2024-07-31 12:00:04', '2024-07-31 12:00:04'),
(257, 3, '2024-07-31 08:00:04', '2024-07-31 08:00:04', 0, NULL, '2024-07-31 12:00:05', '2024-07-31 12:00:05'),
(258, 5, '2024-07-31 08:00:05', '2024-07-31 08:00:05', 0, NULL, '2024-07-31 12:00:06', '2024-07-31 12:00:06'),
(259, 1, '2024-07-31 08:05:06', '2024-07-31 08:05:06', 0, NULL, '2024-07-31 12:05:06', '2024-07-31 12:05:06'),
(260, 2, '2024-07-31 08:05:07', '2024-07-31 08:05:07', 0, NULL, '2024-07-31 12:05:07', '2024-07-31 12:05:07'),
(261, 3, '2024-07-31 08:05:07', '2024-07-31 08:05:07', 0, NULL, '2024-07-31 12:05:08', '2024-07-31 12:05:08'),
(262, 5, '2024-07-31 08:05:08', '2024-07-31 08:05:08', 0, NULL, '2024-07-31 12:05:08', '2024-07-31 12:05:08'),
(263, 1, '2024-07-31 08:15:06', '2024-07-31 08:15:06', 0, NULL, '2024-07-31 12:15:07', '2024-07-31 12:15:07'),
(264, 2, '2024-07-31 08:15:07', '2024-07-31 08:15:07', 0, NULL, '2024-07-31 12:15:07', '2024-07-31 12:15:07'),
(265, 3, '2024-07-31 08:15:07', '2024-07-31 08:15:07', 0, NULL, '2024-07-31 12:15:08', '2024-07-31 12:15:08'),
(266, 5, '2024-07-31 08:15:08', '2024-07-31 08:15:08', 0, NULL, '2024-07-31 12:15:08', '2024-07-31 12:15:08'),
(267, 1, '2024-07-31 08:25:02', '2024-07-31 08:25:02', 0, NULL, '2024-07-31 12:25:03', '2024-07-31 12:25:03'),
(268, 2, '2024-07-31 08:25:03', '2024-07-31 08:25:03', 0, NULL, '2024-07-31 12:25:03', '2024-07-31 12:25:03'),
(269, 3, '2024-07-31 08:25:04', '2024-07-31 08:25:04', 0, NULL, '2024-07-31 12:25:04', '2024-07-31 12:25:04'),
(270, 5, '2024-07-31 08:25:05', '2024-07-31 08:25:05', 0, NULL, '2024-07-31 12:25:05', '2024-07-31 12:25:05'),
(271, 1, '2024-07-31 08:30:06', '2024-07-31 08:30:06', 0, NULL, '2024-07-31 12:30:06', '2024-07-31 12:30:06'),
(272, 2, '2024-07-31 08:30:06', '2024-07-31 08:30:06', 0, NULL, '2024-07-31 12:30:07', '2024-07-31 12:30:07'),
(273, 3, '2024-07-31 08:30:07', '2024-07-31 08:30:07', 0, NULL, '2024-07-31 12:30:07', '2024-07-31 12:30:07'),
(274, 5, '2024-07-31 08:30:07', '2024-07-31 08:30:07', 0, NULL, '2024-07-31 12:30:08', '2024-07-31 12:30:08'),
(275, 1, '2024-07-31 08:40:05', '2024-07-31 08:40:05', 0, NULL, '2024-07-31 12:40:05', '2024-07-31 12:40:05'),
(276, 2, '2024-07-31 08:40:06', '2024-07-31 08:40:06', 0, NULL, '2024-07-31 12:40:06', '2024-07-31 12:40:06'),
(277, 3, '2024-07-31 08:40:07', '2024-07-31 08:40:07', 0, NULL, '2024-07-31 12:40:07', '2024-07-31 12:40:07'),
(278, 5, '2024-07-31 08:40:07', '2024-07-31 08:40:07', 0, NULL, '2024-07-31 12:40:08', '2024-07-31 12:40:08'),
(279, 1, '2024-07-31 08:50:04', '2024-07-31 08:50:04', 0, NULL, '2024-07-31 12:50:04', '2024-07-31 12:50:04'),
(280, 2, '2024-07-31 08:50:04', '2024-07-31 08:50:04', 0, NULL, '2024-07-31 12:50:05', '2024-07-31 12:50:05'),
(281, 3, '2024-07-31 08:50:05', '2024-07-31 08:50:05', 0, NULL, '2024-07-31 12:50:05', '2024-07-31 12:50:05'),
(282, 5, '2024-07-31 08:50:06', '2024-07-31 08:50:06', 0, NULL, '2024-07-31 12:50:06', '2024-07-31 12:50:06'),
(283, 1, '2024-07-31 08:55:06', '2024-07-31 08:55:06', 0, NULL, '2024-07-31 12:55:07', '2024-07-31 12:55:07'),
(284, 2, '2024-07-31 08:55:07', '2024-07-31 08:55:07', 0, NULL, '2024-07-31 12:55:07', '2024-07-31 12:55:07'),
(285, 3, '2024-07-31 08:55:08', '2024-07-31 08:55:08', 0, NULL, '2024-07-31 12:55:08', '2024-07-31 12:55:08'),
(286, 5, '2024-07-31 09:00:06', '2024-07-31 09:00:06', 0, NULL, '2024-07-31 13:00:06', '2024-07-31 13:00:06'),
(287, 1, '2024-07-31 09:05:03', '2024-07-31 09:05:03', 0, NULL, '2024-07-31 13:05:03', '2024-07-31 13:05:03'),
(288, 2, '2024-07-31 09:05:03', '2024-07-31 09:05:03', 0, NULL, '2024-07-31 13:05:03', '2024-07-31 13:05:03'),
(289, 3, '2024-07-31 09:05:03', '2024-07-31 09:05:03', 0, NULL, '2024-07-31 13:05:04', '2024-07-31 13:05:04'),
(290, 1, '2024-07-31 09:10:06', '2024-07-31 09:10:06', 0, NULL, '2024-07-31 13:10:07', '2024-07-31 13:10:07'),
(291, 2, '2024-07-31 09:10:07', '2024-07-31 09:10:07', 0, NULL, '2024-07-31 13:10:07', '2024-07-31 13:10:07'),
(292, 3, '2024-07-31 09:10:08', '2024-07-31 09:10:08', 0, NULL, '2024-07-31 13:10:08', '2024-07-31 13:10:08'),
(293, 5, '2024-07-31 09:10:08', '2024-07-31 09:10:08', 0, NULL, '2024-07-31 13:10:08', '2024-07-31 13:10:08'),
(294, 1, '2024-07-31 09:20:03', '2024-07-31 09:20:03', 0, NULL, '2024-07-31 13:20:03', '2024-07-31 13:20:03'),
(295, 2, '2024-07-31 09:20:03', '2024-07-31 09:20:03', 0, NULL, '2024-07-31 13:20:03', '2024-07-31 13:20:03'),
(296, 3, '2024-07-31 09:20:04', '2024-07-31 09:20:04', 0, NULL, '2024-07-31 13:20:04', '2024-07-31 13:20:04'),
(297, 5, '2024-07-31 09:20:04', '2024-07-31 09:20:04', 0, NULL, '2024-07-31 13:20:05', '2024-07-31 13:20:05'),
(298, 1, '2024-07-31 09:25:08', '2024-07-31 09:25:08', 0, NULL, '2024-07-31 13:25:09', '2024-07-31 13:25:09'),
(299, 2, '2024-07-31 09:25:09', '2024-07-31 09:25:09', 0, NULL, '2024-07-31 13:25:09', '2024-07-31 13:25:09'),
(300, 3, '2024-07-31 09:25:09', '2024-07-31 09:25:09', 0, NULL, '2024-07-31 13:25:09', '2024-07-31 13:25:09'),
(301, 5, '2024-07-31 09:25:09', '2024-07-31 09:25:09', 0, NULL, '2024-07-31 13:25:10', '2024-07-31 13:25:10'),
(302, 1, '2024-07-31 09:35:07', '2024-07-31 09:35:07', 0, NULL, '2024-07-31 13:35:07', '2024-07-31 13:35:07'),
(303, 2, '2024-07-31 09:35:07', '2024-07-31 09:35:07', 0, NULL, '2024-07-31 13:35:08', '2024-07-31 13:35:08'),
(304, 3, '2024-07-31 09:35:08', '2024-07-31 09:35:08', 0, NULL, '2024-07-31 13:35:08', '2024-07-31 13:35:08'),
(305, 5, '2024-07-31 09:35:08', '2024-07-31 09:35:08', 0, NULL, '2024-07-31 13:35:08', '2024-07-31 13:35:08'),
(306, 1, '2024-07-31 09:45:09', '2024-07-31 09:45:09', 0, NULL, '2024-07-31 13:45:09', '2024-07-31 13:45:09'),
(307, 2, '2024-07-31 09:45:10', '2024-07-31 09:45:10', 0, NULL, '2024-07-31 13:45:10', '2024-07-31 13:45:10'),
(308, 3, '2024-07-31 09:45:10', '2024-07-31 09:45:10', 0, NULL, '2024-07-31 13:45:10', '2024-07-31 13:45:10'),
(309, 5, '2024-07-31 09:45:10', '2024-07-31 09:45:10', 0, NULL, '2024-07-31 13:45:10', '2024-07-31 13:45:10'),
(310, 1, '2024-07-31 09:55:06', '2024-07-31 09:55:06', 0, NULL, '2024-07-31 13:55:07', '2024-07-31 13:55:07'),
(311, 2, '2024-07-31 09:55:07', '2024-07-31 09:55:07', 0, NULL, '2024-07-31 13:55:07', '2024-07-31 13:55:07'),
(312, 3, '2024-07-31 09:55:07', '2024-07-31 09:55:07', 0, NULL, '2024-07-31 13:55:08', '2024-07-31 13:55:08'),
(313, 5, '2024-07-31 09:55:08', '2024-07-31 09:55:08', 0, NULL, '2024-07-31 13:55:08', '2024-07-31 13:55:08'),
(314, 1, '2024-07-31 10:05:10', '2024-07-31 10:05:10', 0, NULL, '2024-07-31 14:05:11', '2024-07-31 14:05:11'),
(315, 2, '2024-07-31 10:05:11', '2024-07-31 10:05:11', 0, NULL, '2024-07-31 14:05:11', '2024-07-31 14:05:11'),
(316, 3, '2024-07-31 10:05:11', '2024-07-31 10:05:11', 0, NULL, '2024-07-31 14:05:12', '2024-07-31 14:05:12'),
(317, 5, '2024-07-31 10:05:12', '2024-07-31 10:05:12', 0, NULL, '2024-07-31 14:05:12', '2024-07-31 14:05:12'),
(318, 1, '2024-07-31 10:15:03', '2024-07-31 10:15:03', 0, NULL, '2024-07-31 14:15:04', '2024-07-31 14:15:04'),
(319, 2, '2024-07-31 10:15:05', '2024-07-31 10:15:05', 0, NULL, '2024-07-31 14:15:05', '2024-07-31 14:15:05'),
(320, 3, '2024-07-31 10:15:06', '2024-07-31 10:15:06', 0, NULL, '2024-07-31 14:15:07', '2024-07-31 14:15:07'),
(321, 5, '2024-07-31 10:15:07', '2024-07-31 10:15:07', 0, NULL, '2024-07-31 14:15:07', '2024-07-31 14:15:07'),
(322, 1, '2024-07-31 10:20:06', '2024-07-31 10:20:06', 0, NULL, '2024-07-31 14:20:07', '2024-07-31 14:20:07'),
(323, 2, '2024-07-31 10:20:07', '2024-07-31 10:20:07', 0, NULL, '2024-07-31 14:20:09', '2024-07-31 14:20:09'),
(324, 3, '2024-07-31 10:25:04', '2024-07-31 10:25:04', 0, NULL, '2024-07-31 14:25:05', '2024-07-31 14:25:05'),
(325, 5, '2024-07-31 10:25:06', '2024-07-31 10:25:06', 0, NULL, '2024-07-31 14:25:07', '2024-07-31 14:25:07'),
(326, 1, '2024-07-31 10:30:04', '2024-07-31 10:30:04', 0, NULL, '2024-07-31 14:30:04', '2024-07-31 14:30:04'),
(327, 2, '2024-07-31 10:30:04', '2024-07-31 10:30:04', 0, NULL, '2024-07-31 14:30:05', '2024-07-31 14:30:05'),
(328, 3, '2024-07-31 10:35:04', '2024-07-31 10:35:04', 0, NULL, '2024-07-31 14:35:04', '2024-07-31 14:35:04'),
(329, 5, '2024-07-31 10:35:05', '2024-07-31 10:35:05', 0, NULL, '2024-07-31 14:35:06', '2024-07-31 14:35:06'),
(330, 1, '2024-07-31 10:40:09', '2024-07-31 10:40:09', 0, NULL, '2024-07-31 14:40:09', '2024-07-31 14:40:09'),
(331, 2, '2024-07-31 10:40:10', '2024-07-31 10:40:10', 0, NULL, '2024-07-31 14:40:10', '2024-07-31 14:40:10'),
(332, 3, '2024-07-31 10:40:10', '2024-07-31 10:40:10', 0, NULL, '2024-07-31 14:40:10', '2024-07-31 14:40:10'),
(333, 5, '2024-07-31 10:40:10', '2024-07-31 10:40:10', 0, NULL, '2024-07-31 14:40:10', '2024-07-31 14:40:10'),
(334, 1, '2024-07-31 10:50:09', '2024-07-31 10:50:09', 0, NULL, '2024-07-31 14:50:09', '2024-07-31 14:50:09'),
(335, 2, '2024-07-31 10:50:10', '2024-07-31 10:50:10', 0, NULL, '2024-07-31 14:50:10', '2024-07-31 14:50:10'),
(336, 3, '2024-07-31 10:50:10', '2024-07-31 10:50:10', 0, NULL, '2024-07-31 14:50:10', '2024-07-31 14:50:10'),
(337, 5, '2024-07-31 10:50:10', '2024-07-31 10:50:10', 0, NULL, '2024-07-31 14:50:11', '2024-07-31 14:50:11'),
(338, 1, '2024-07-31 11:00:04', '2024-07-31 11:00:04', 0, NULL, '2024-07-31 15:00:05', '2024-07-31 15:00:05'),
(339, 2, '2024-07-31 11:00:08', '2024-07-31 11:00:08', 0, NULL, '2024-07-31 15:00:09', '2024-07-31 15:00:09'),
(340, 3, '2024-07-31 11:00:09', '2024-07-31 11:00:09', 0, NULL, '2024-07-31 15:00:09', '2024-07-31 15:00:09'),
(341, 5, '2024-07-31 11:00:10', '2024-07-31 11:00:10', 0, NULL, '2024-07-31 15:00:10', '2024-07-31 15:00:10'),
(342, 1, '2024-07-31 11:10:03', '2024-07-31 11:10:03', 0, NULL, '2024-07-31 15:10:03', '2024-07-31 15:10:03'),
(343, 2, '2024-07-31 11:10:03', '2024-07-31 11:10:03', 0, NULL, '2024-07-31 15:10:04', '2024-07-31 15:10:04'),
(344, 3, '2024-07-31 11:10:04', '2024-07-31 11:10:04', 0, NULL, '2024-07-31 15:10:05', '2024-07-31 15:10:05'),
(345, 5, '2024-07-31 11:10:06', '2024-07-31 11:10:06', 0, NULL, '2024-07-31 15:10:07', '2024-07-31 15:10:07'),
(346, 1, '2024-07-31 11:15:10', '2024-07-31 11:15:10', 0, NULL, '2024-07-31 15:15:10', '2024-07-31 15:15:10'),
(347, 2, '2024-07-31 11:15:10', '2024-07-31 11:15:10', 0, NULL, '2024-07-31 15:15:11', '2024-07-31 15:15:11'),
(348, 3, '2024-07-31 11:15:11', '2024-07-31 11:15:11', 0, NULL, '2024-07-31 15:15:11', '2024-07-31 15:15:11'),
(349, 5, '2024-07-31 11:15:11', '2024-07-31 11:15:11', 0, NULL, '2024-07-31 15:15:11', '2024-07-31 15:15:11'),
(350, 1, '2024-07-31 11:25:06', '2024-07-31 11:25:06', 0, NULL, '2024-07-31 15:25:06', '2024-07-31 15:25:06'),
(351, 2, '2024-07-31 11:25:07', '2024-07-31 11:25:07', 0, NULL, '2024-07-31 15:25:07', '2024-07-31 15:25:07'),
(352, 3, '2024-07-31 11:25:07', '2024-07-31 11:25:07', 0, NULL, '2024-07-31 15:25:08', '2024-07-31 15:25:08'),
(353, 5, '2024-07-31 11:25:08', '2024-07-31 11:25:08', 0, NULL, '2024-07-31 15:25:08', '2024-07-31 15:25:08'),
(354, 1, '2024-07-31 11:35:09', '2024-07-31 11:35:09', 0, NULL, '2024-07-31 15:35:09', '2024-07-31 15:35:09'),
(355, 2, '2024-07-31 11:35:09', '2024-07-31 11:35:09', 0, NULL, '2024-07-31 15:35:10', '2024-07-31 15:35:10'),
(356, 3, '2024-07-31 11:35:10', '2024-07-31 11:35:10', 0, NULL, '2024-07-31 15:35:10', '2024-07-31 15:35:10'),
(357, 5, '2024-07-31 11:35:10', '2024-07-31 11:35:10', 0, NULL, '2024-07-31 15:35:10', '2024-07-31 15:35:10'),
(358, 1, '2024-07-31 11:45:03', '2024-07-31 11:45:03', 0, NULL, '2024-07-31 15:45:03', '2024-07-31 15:45:03'),
(359, 2, '2024-07-31 11:45:04', '2024-07-31 11:45:04', 0, NULL, '2024-07-31 15:45:04', '2024-07-31 15:45:04'),
(360, 3, '2024-07-31 11:45:05', '2024-07-31 11:45:05', 0, NULL, '2024-07-31 15:45:05', '2024-07-31 15:45:05'),
(361, 5, '2024-07-31 11:45:06', '2024-07-31 11:45:06', 0, NULL, '2024-07-31 15:45:06', '2024-07-31 15:45:06'),
(362, 1, '2024-07-31 11:50:05', '2024-07-31 11:50:05', 0, NULL, '2024-07-31 15:50:06', '2024-07-31 15:50:06'),
(363, 2, '2024-07-31 11:50:06', '2024-07-31 11:50:06', 0, NULL, '2024-07-31 15:50:06', '2024-07-31 15:50:06'),
(364, 3, '2024-07-31 11:55:03', '2024-07-31 11:55:03', 0, NULL, '2024-07-31 15:55:03', '2024-07-31 15:55:03'),
(365, 5, '2024-07-31 11:55:04', '2024-07-31 11:55:04', 0, NULL, '2024-07-31 15:55:04', '2024-07-31 15:55:04'),
(366, 1, '2024-07-31 12:00:04', '2024-07-31 12:00:04', 0, NULL, '2024-07-31 16:00:05', '2024-07-31 16:00:05'),
(367, 2, '2024-07-31 12:00:05', '2024-07-31 12:00:05', 0, NULL, '2024-07-31 16:00:06', '2024-07-31 16:00:06'),
(368, 3, '2024-07-31 12:00:07', '2024-07-31 12:00:07', 0, NULL, '2024-07-31 16:00:07', '2024-07-31 16:00:07'),
(369, 5, '2024-07-31 12:05:03', '2024-07-31 12:05:03', 0, NULL, '2024-07-31 16:05:03', '2024-07-31 16:05:03'),
(370, 1, '2024-07-31 12:10:06', '2024-07-31 12:10:06', 0, NULL, '2024-07-31 16:10:06', '2024-07-31 16:10:06'),
(371, 2, '2024-07-31 12:10:07', '2024-07-31 12:10:07', 0, NULL, '2024-07-31 16:10:07', '2024-07-31 16:10:07'),
(372, 3, '2024-07-31 12:10:07', '2024-07-31 12:10:07', 0, NULL, '2024-07-31 16:10:08', '2024-07-31 16:10:08'),
(373, 5, '2024-07-31 12:10:08', '2024-07-31 12:10:08', 0, NULL, '2024-07-31 16:10:08', '2024-07-31 16:10:08'),
(374, 1, '2024-07-31 12:20:04', '2024-07-31 12:20:04', 0, NULL, '2024-07-31 16:20:04', '2024-07-31 16:20:04'),
(375, 2, '2024-07-31 12:20:05', '2024-07-31 12:20:05', 0, NULL, '2024-07-31 16:20:05', '2024-07-31 16:20:05'),
(376, 3, '2024-07-31 12:20:05', '2024-07-31 12:20:05', 0, NULL, '2024-07-31 16:20:05', '2024-07-31 16:20:05'),
(377, 5, '2024-07-31 12:20:06', '2024-07-31 12:20:06', 0, NULL, '2024-07-31 16:20:06', '2024-07-31 16:20:06'),
(378, 1, '2024-07-31 12:25:06', '2024-07-31 12:25:06', 0, NULL, '2024-07-31 16:25:07', '2024-07-31 16:25:07'),
(379, 2, '2024-07-31 12:25:07', '2024-07-31 12:25:07', 0, NULL, '2024-07-31 16:25:08', '2024-07-31 16:25:08'),
(380, 3, '2024-07-31 12:25:08', '2024-07-31 12:25:08', 0, NULL, '2024-07-31 16:25:08', '2024-07-31 16:25:08'),
(381, 5, '2024-07-31 12:30:03', '2024-07-31 12:30:03', 0, NULL, '2024-07-31 16:30:04', '2024-07-31 16:30:04'),
(382, 1, '2024-07-31 12:35:05', '2024-07-31 12:35:05', 0, NULL, '2024-07-31 16:35:06', '2024-07-31 16:35:06'),
(383, 2, '2024-07-31 12:35:07', '2024-07-31 12:35:07', 0, NULL, '2024-07-31 16:35:07', '2024-07-31 16:35:07'),
(384, 3, '2024-07-31 12:35:07', '2024-07-31 12:35:07', 0, NULL, '2024-07-31 16:35:07', '2024-07-31 16:35:07'),
(385, 5, '2024-07-31 12:35:08', '2024-07-31 12:35:08', 0, NULL, '2024-07-31 16:35:08', '2024-07-31 16:35:08'),
(386, 1, '2024-07-31 12:45:04', '2024-07-31 12:45:05', 0, NULL, '2024-07-31 16:45:05', '2024-07-31 16:45:05'),
(387, 2, '2024-07-31 12:45:06', '2024-07-31 12:45:06', 0, NULL, '2024-07-31 16:45:07', '2024-07-31 16:45:07'),
(388, 3, '2024-07-31 12:45:07', '2024-07-31 12:45:07', 0, NULL, '2024-07-31 16:45:08', '2024-07-31 16:45:08'),
(389, 5, '2024-07-31 12:45:08', '2024-07-31 12:45:08', 0, NULL, '2024-07-31 16:45:09', '2024-07-31 16:45:09'),
(390, 1, '2024-07-31 12:50:08', '2024-07-31 12:50:08', 0, NULL, '2024-07-31 16:50:08', '2024-07-31 16:50:08'),
(391, 2, '2024-07-31 12:50:09', '2024-07-31 12:50:09', 0, NULL, '2024-07-31 16:50:09', '2024-07-31 16:50:09'),
(392, 3, '2024-07-31 12:50:09', '2024-07-31 12:50:09', 0, NULL, '2024-07-31 16:50:09', '2024-07-31 16:50:09'),
(393, 5, '2024-07-31 12:55:05', '2024-07-31 12:55:05', 0, NULL, '2024-07-31 16:55:06', '2024-07-31 16:55:06'),
(394, 1, '2024-07-31 13:00:08', '2024-07-31 13:00:09', 0, NULL, '2024-07-31 17:00:10', '2024-07-31 17:00:10'),
(395, 2, '2024-07-31 13:00:11', '2024-07-31 13:00:11', 0, NULL, '2024-07-31 17:00:12', '2024-07-31 17:00:12'),
(396, 3, '2024-07-31 13:00:12', '2024-07-31 13:00:12', 0, NULL, '2024-07-31 17:00:13', '2024-07-31 17:00:13'),
(397, 5, '2024-07-31 13:00:13', '2024-07-31 13:00:13', 0, NULL, '2024-07-31 17:00:14', '2024-07-31 17:00:14'),
(398, 1, '2024-07-31 13:05:11', '2024-07-31 13:05:11', 0, NULL, '2024-07-31 17:05:11', '2024-07-31 17:05:11'),
(399, 2, '2024-07-31 13:10:04', '2024-07-31 13:10:04', 0, NULL, '2024-07-31 17:10:05', '2024-07-31 17:10:05'),
(400, 3, '2024-07-31 13:10:05', '2024-07-31 13:10:05', 0, NULL, '2024-07-31 17:10:06', '2024-07-31 17:10:06'),
(401, 5, '2024-07-31 13:10:06', '2024-07-31 13:10:06', 0, NULL, '2024-07-31 17:10:06', '2024-07-31 17:10:06'),
(402, 1, '2024-07-31 13:15:08', '2024-07-31 13:15:08', 0, NULL, '2024-07-31 17:15:08', '2024-07-31 17:15:08'),
(403, 2, '2024-07-31 13:15:08', '2024-07-31 13:15:08', 0, NULL, '2024-07-31 17:15:09', '2024-07-31 17:15:09'),
(404, 3, '2024-07-31 13:15:09', '2024-07-31 13:15:09', 0, NULL, '2024-07-31 17:15:09', '2024-07-31 17:15:09'),
(405, 5, '2024-07-31 13:15:09', '2024-07-31 13:15:09', 0, NULL, '2024-07-31 17:15:09', '2024-07-31 17:15:09'),
(406, 1, '2024-07-31 13:25:05', '2024-07-31 13:25:05', 0, NULL, '2024-07-31 17:25:06', '2024-07-31 17:25:06'),
(407, 2, '2024-07-31 13:25:07', '2024-07-31 13:25:07', 0, NULL, '2024-07-31 17:25:07', '2024-07-31 17:25:07'),
(408, 3, '2024-07-31 13:25:08', '2024-07-31 13:25:08', 0, NULL, '2024-07-31 17:25:08', '2024-07-31 17:25:08'),
(409, 5, '2024-07-31 13:25:08', '2024-07-31 13:25:08', 0, NULL, '2024-07-31 17:25:09', '2024-07-31 17:25:09'),
(410, 1, '2024-07-31 13:35:03', '2024-07-31 13:35:03', 0, NULL, '2024-07-31 17:35:04', '2024-07-31 17:35:04'),
(411, 2, '2024-07-31 13:35:04', '2024-07-31 13:35:04', 0, NULL, '2024-07-31 17:35:05', '2024-07-31 17:35:05'),
(412, 3, '2024-07-31 13:35:05', '2024-07-31 13:35:05', 0, NULL, '2024-07-31 17:35:05', '2024-07-31 17:35:05'),
(413, 5, '2024-07-31 13:35:05', '2024-07-31 13:35:06', 0, NULL, '2024-07-31 17:35:06', '2024-07-31 17:35:06'),
(414, 1, '2024-07-31 13:40:05', '2024-07-31 13:40:06', 1, NULL, '2024-07-31 17:40:06', '2024-07-31 17:40:06'),
(415, 2, '2024-07-31 13:40:06', '2024-07-31 13:40:06', 0, NULL, '2024-07-31 17:40:07', '2024-07-31 17:40:07'),
(416, 3, '2024-07-31 13:45:03', '2024-07-31 13:45:03', 0, NULL, '2024-07-31 17:45:03', '2024-07-31 17:45:03'),
(417, 5, '2024-07-31 13:45:04', '2024-07-31 13:45:04', 0, NULL, '2024-07-31 17:45:04', '2024-07-31 17:45:04'),
(418, 1, '2024-07-31 13:50:08', '2024-07-31 13:50:10', 1, NULL, '2024-07-31 17:50:10', '2024-07-31 17:50:10'),
(419, 2, '2024-07-31 13:50:10', '2024-07-31 13:50:10', 0, NULL, '2024-07-31 17:50:10', '2024-07-31 17:50:10'),
(420, 3, '2024-07-31 13:50:10', '2024-07-31 13:50:10', 0, NULL, '2024-07-31 17:50:10', '2024-07-31 17:50:10'),
(421, 5, '2024-07-31 13:50:10', '2024-07-31 13:50:10', 0, NULL, '2024-07-31 17:50:11', '2024-07-31 17:50:11'),
(422, 1, '2024-07-31 14:00:06', '2024-07-31 14:00:06', 0, NULL, '2024-07-31 18:00:07', '2024-07-31 18:00:07'),
(423, 2, '2024-07-31 14:00:07', '2024-07-31 14:00:07', 0, NULL, '2024-07-31 18:00:08', '2024-07-31 18:00:08'),
(424, 3, '2024-07-31 14:00:08', '2024-07-31 14:00:08', 0, NULL, '2024-07-31 18:00:08', '2024-07-31 18:00:08'),
(425, 5, '2024-07-31 14:00:09', '2024-07-31 14:00:09', 0, NULL, '2024-07-31 18:00:09', '2024-07-31 18:00:09'),
(426, 1, '2024-07-31 14:10:09', '2024-07-31 14:10:09', 0, NULL, '2024-07-31 18:10:10', '2024-07-31 18:10:10'),
(427, 2, '2024-07-31 14:10:10', '2024-07-31 14:10:10', 0, NULL, '2024-07-31 18:10:10', '2024-07-31 18:10:10'),
(428, 3, '2024-07-31 14:10:10', '2024-07-31 14:10:10', 0, NULL, '2024-07-31 18:10:10', '2024-07-31 18:10:10'),
(429, 5, '2024-07-31 14:10:10', '2024-07-31 14:10:10', 0, NULL, '2024-07-31 18:10:11', '2024-07-31 18:10:11'),
(430, 1, '2024-07-31 14:20:05', '2024-07-31 14:20:05', 0, NULL, '2024-07-31 18:20:06', '2024-07-31 18:20:06'),
(431, 2, '2024-07-31 14:20:06', '2024-07-31 14:20:06', 0, NULL, '2024-07-31 18:20:06', '2024-07-31 18:20:06'),
(432, 3, '2024-07-31 14:20:07', '2024-07-31 14:20:07', 0, NULL, '2024-07-31 18:20:07', '2024-07-31 18:20:07'),
(433, 5, '2024-07-31 14:20:07', '2024-07-31 14:20:07', 0, NULL, '2024-07-31 18:20:08', '2024-07-31 18:20:08'),
(434, 1, '2024-07-31 14:30:07', '2024-07-31 14:30:07', 0, NULL, '2024-07-31 18:30:07', '2024-07-31 18:30:07'),
(435, 2, '2024-07-31 14:30:08', '2024-07-31 14:30:08', 0, NULL, '2024-07-31 18:30:08', '2024-07-31 18:30:08'),
(436, 3, '2024-07-31 14:30:10', '2024-07-31 14:30:10', 0, NULL, '2024-07-31 18:30:11', '2024-07-31 18:30:11'),
(437, 5, '2024-07-31 14:30:11', '2024-07-31 14:30:11', 0, NULL, '2024-07-31 18:30:11', '2024-07-31 18:30:11'),
(438, 1, '2024-07-31 14:40:06', '2024-07-31 14:40:06', 0, NULL, '2024-07-31 18:40:06', '2024-07-31 18:40:06'),
(439, 2, '2024-07-31 14:40:07', '2024-07-31 14:40:07', 0, NULL, '2024-07-31 18:40:07', '2024-07-31 18:40:07'),
(440, 3, '2024-07-31 14:40:07', '2024-07-31 14:40:07', 0, NULL, '2024-07-31 18:40:07', '2024-07-31 18:40:07'),
(441, 5, '2024-07-31 14:40:08', '2024-07-31 14:40:08', 0, NULL, '2024-07-31 18:40:08', '2024-07-31 18:40:08'),
(442, 1, '2024-07-31 14:50:04', '2024-07-31 14:50:04', 0, NULL, '2024-07-31 18:50:04', '2024-07-31 18:50:04'),
(443, 2, '2024-07-31 14:50:05', '2024-07-31 14:50:05', 0, NULL, '2024-07-31 18:50:06', '2024-07-31 18:50:06'),
(444, 3, '2024-07-31 14:50:06', '2024-07-31 14:50:06', 0, NULL, '2024-07-31 18:50:06', '2024-07-31 18:50:06'),
(445, 5, '2024-07-31 14:50:07', '2024-07-31 14:50:07', 0, NULL, '2024-07-31 18:50:07', '2024-07-31 18:50:07'),
(446, 1, '2024-07-31 14:55:08', '2024-07-31 14:55:09', 0, NULL, '2024-07-31 18:55:09', '2024-07-31 18:55:09'),
(447, 2, '2024-07-31 15:00:06', '2024-07-31 15:00:06', 0, NULL, '2024-07-31 19:00:09', '2024-07-31 19:00:09'),
(448, 3, '2024-07-31 15:00:10', '2024-07-31 15:00:10', 0, NULL, '2024-07-31 19:00:10', '2024-07-31 19:00:10'),
(449, 5, '2024-07-31 15:00:10', '2024-07-31 15:00:10', 0, NULL, '2024-07-31 19:00:10', '2024-07-31 19:00:10'),
(450, 1, '2024-07-31 15:05:08', '2024-07-31 15:05:09', 0, NULL, '2024-07-31 19:05:09', '2024-07-31 19:05:09'),
(451, 2, '2024-07-31 15:05:09', '2024-07-31 15:05:09', 0, NULL, '2024-07-31 19:05:09', '2024-07-31 19:05:09'),
(452, 3, '2024-07-31 15:10:02', '2024-07-31 15:10:02', 0, NULL, '2024-07-31 19:10:03', '2024-07-31 19:10:03'),
(453, 5, '2024-07-31 15:10:03', '2024-07-31 15:10:03', 0, NULL, '2024-07-31 19:10:04', '2024-07-31 19:10:04'),
(454, 1, '2024-07-31 15:15:06', '2024-07-31 15:15:06', 0, NULL, '2024-07-31 19:15:06', '2024-07-31 19:15:06'),
(455, 2, '2024-07-31 15:15:07', '2024-07-31 15:15:07', 0, NULL, '2024-07-31 19:15:07', '2024-07-31 19:15:07'),
(456, 3, '2024-07-31 15:15:08', '2024-07-31 15:15:08', 0, NULL, '2024-07-31 19:15:08', '2024-07-31 19:15:08'),
(457, 5, '2024-07-31 15:15:08', '2024-07-31 15:15:08', 0, NULL, '2024-07-31 19:15:08', '2024-07-31 19:15:08'),
(458, 1, '2024-07-31 15:25:09', '2024-07-31 15:25:09', 0, NULL, '2024-07-31 19:25:09', '2024-07-31 19:25:09');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(459, 2, '2024-07-31 15:25:10', '2024-07-31 15:25:10', 0, NULL, '2024-07-31 19:25:10', '2024-07-31 19:25:10'),
(460, 3, '2024-07-31 15:25:10', '2024-07-31 15:25:10', 0, NULL, '2024-07-31 19:25:10', '2024-07-31 19:25:10'),
(461, 5, '2024-07-31 15:25:10', '2024-07-31 15:25:10', 0, NULL, '2024-07-31 19:25:10', '2024-07-31 19:25:10'),
(462, 1, '2024-07-31 15:35:08', '2024-07-31 15:35:08', 0, NULL, '2024-07-31 19:35:08', '2024-07-31 19:35:08'),
(463, 2, '2024-07-31 15:35:09', '2024-07-31 15:35:09', 0, NULL, '2024-07-31 19:35:09', '2024-07-31 19:35:09'),
(464, 3, '2024-07-31 15:35:09', '2024-07-31 15:35:09', 0, NULL, '2024-07-31 19:35:09', '2024-07-31 19:35:09'),
(465, 5, '2024-07-31 15:35:09', '2024-07-31 15:35:10', 0, NULL, '2024-07-31 19:35:10', '2024-07-31 19:35:10'),
(466, 1, '2024-07-31 15:45:06', '2024-07-31 15:45:06', 0, NULL, '2024-07-31 19:45:06', '2024-07-31 19:45:06'),
(467, 2, '2024-07-31 15:45:07', '2024-07-31 15:45:07', 0, NULL, '2024-07-31 19:45:07', '2024-07-31 19:45:07'),
(468, 3, '2024-07-31 15:45:08', '2024-07-31 15:45:08', 0, NULL, '2024-07-31 19:45:08', '2024-07-31 19:45:08'),
(469, 5, '2024-07-31 15:45:08', '2024-07-31 15:45:08', 0, NULL, '2024-07-31 19:45:08', '2024-07-31 19:45:08'),
(470, 1, '2024-07-31 15:55:03', '2024-07-31 15:55:03', 0, NULL, '2024-07-31 19:55:04', '2024-07-31 19:55:04'),
(471, 2, '2024-07-31 15:55:04', '2024-07-31 15:55:04', 0, NULL, '2024-07-31 19:55:04', '2024-07-31 19:55:04'),
(472, 3, '2024-07-31 15:55:05', '2024-07-31 15:55:05', 0, NULL, '2024-07-31 19:55:05', '2024-07-31 19:55:05'),
(473, 5, '2024-07-31 15:55:06', '2024-07-31 15:55:06', 0, NULL, '2024-07-31 19:55:06', '2024-07-31 19:55:06'),
(474, 1, '2024-07-31 16:00:06', '2024-07-31 16:00:06', 0, NULL, '2024-07-31 20:00:07', '2024-07-31 20:00:07'),
(475, 2, '2024-07-31 16:00:07', '2024-07-31 16:00:07', 0, NULL, '2024-07-31 20:00:09', '2024-07-31 20:00:09'),
(476, 3, '2024-07-31 16:00:10', '2024-07-31 16:00:10', 0, NULL, '2024-07-31 20:00:10', '2024-07-31 20:00:10'),
(477, 5, '2024-07-31 16:05:05', '2024-07-31 16:05:05', 0, NULL, '2024-07-31 20:05:10', '2024-07-31 20:05:10'),
(478, 1, '2024-07-31 16:10:05', '2024-07-31 16:10:05', 0, NULL, '2024-07-31 20:10:06', '2024-07-31 20:10:06'),
(479, 2, '2024-07-31 16:10:07', '2024-07-31 16:10:07', 0, NULL, '2024-07-31 20:10:07', '2024-07-31 20:10:07'),
(480, 3, '2024-07-31 16:10:07', '2024-07-31 16:10:07', 0, NULL, '2024-07-31 20:10:08', '2024-07-31 20:10:08'),
(481, 5, '2024-07-31 16:15:03', '2024-07-31 16:15:03', 0, NULL, '2024-07-31 20:15:03', '2024-07-31 20:15:03'),
(482, 1, '2024-07-31 16:20:07', '2024-07-31 16:20:07', 0, NULL, '2024-07-31 20:20:08', '2024-07-31 20:20:08'),
(483, 2, '2024-07-31 16:20:08', '2024-07-31 16:20:08', 0, NULL, '2024-07-31 20:20:09', '2024-07-31 20:20:09'),
(484, 3, '2024-07-31 16:20:09', '2024-07-31 16:20:09', 0, NULL, '2024-07-31 20:20:09', '2024-07-31 20:20:09'),
(485, 5, '2024-07-31 16:20:09', '2024-07-31 16:20:09', 0, NULL, '2024-07-31 20:20:10', '2024-07-31 20:20:10'),
(486, 1, '2024-07-31 16:30:08', '2024-07-31 16:30:08', 0, NULL, '2024-07-31 20:30:08', '2024-07-31 20:30:08'),
(487, 2, '2024-07-31 16:30:09', '2024-07-31 16:30:09', 0, NULL, '2024-07-31 20:30:10', '2024-07-31 20:30:10'),
(488, 3, '2024-07-31 16:30:11', '2024-07-31 16:30:11', 0, NULL, '2024-07-31 20:30:11', '2024-07-31 20:30:11'),
(489, 5, '2024-07-31 16:30:12', '2024-07-31 16:30:12', 0, NULL, '2024-07-31 20:30:12', '2024-07-31 20:30:12'),
(490, 1, '2024-07-31 16:40:05', '2024-07-31 16:40:05', 0, NULL, '2024-07-31 20:40:05', '2024-07-31 20:40:05'),
(491, 2, '2024-07-31 16:40:05', '2024-07-31 16:40:05', 0, NULL, '2024-07-31 20:40:06', '2024-07-31 20:40:06'),
(492, 3, '2024-07-31 16:40:06', '2024-07-31 16:40:06', 0, NULL, '2024-07-31 20:40:07', '2024-07-31 20:40:07'),
(493, 5, '2024-07-31 16:40:07', '2024-07-31 16:40:07', 0, NULL, '2024-07-31 20:40:07', '2024-07-31 20:40:07'),
(494, 1, '2024-07-31 16:45:10', '2024-07-31 16:45:10', 0, NULL, '2024-07-31 20:45:10', '2024-07-31 20:45:10'),
(495, 2, '2024-07-31 16:45:10', '2024-07-31 16:45:10', 0, NULL, '2024-07-31 20:45:10', '2024-07-31 20:45:10'),
(496, 3, '2024-07-31 16:45:11', '2024-07-31 16:45:11', 0, NULL, '2024-07-31 20:45:11', '2024-07-31 20:45:11'),
(497, 5, '2024-07-31 16:45:11', '2024-07-31 16:45:11', 0, NULL, '2024-07-31 20:45:11', '2024-07-31 20:45:11'),
(498, 1, '2024-07-31 16:55:05', '2024-07-31 16:55:05', 0, NULL, '2024-07-31 20:55:05', '2024-07-31 20:55:05'),
(499, 2, '2024-07-31 16:55:06', '2024-07-31 16:55:06', 0, NULL, '2024-07-31 20:55:06', '2024-07-31 20:55:06'),
(500, 3, '2024-07-31 16:55:07', '2024-07-31 16:55:07', 0, NULL, '2024-07-31 20:55:07', '2024-07-31 20:55:07'),
(501, 5, '2024-07-31 16:55:07', '2024-07-31 16:55:07', 0, NULL, '2024-07-31 20:55:07', '2024-07-31 20:55:07'),
(502, 1, '2024-07-31 17:05:10', '2024-07-31 17:05:10', 0, NULL, '2024-07-31 21:05:11', '2024-07-31 21:05:11'),
(503, 2, '2024-07-31 17:05:12', '2024-07-31 17:05:12', 0, NULL, '2024-07-31 21:05:12', '2024-07-31 21:05:12'),
(504, 3, '2024-07-31 17:05:12', '2024-07-31 17:05:12', 0, NULL, '2024-07-31 21:05:12', '2024-07-31 21:05:12'),
(505, 5, '2024-07-31 17:05:13', '2024-07-31 17:05:13', 0, NULL, '2024-07-31 21:05:13', '2024-07-31 21:05:13'),
(506, 1, '2024-07-31 17:15:05', '2024-07-31 17:15:05', 0, NULL, '2024-07-31 21:15:06', '2024-07-31 21:15:06'),
(507, 2, '2024-07-31 17:15:06', '2024-07-31 17:15:06', 0, NULL, '2024-07-31 21:15:07', '2024-07-31 21:15:07'),
(508, 3, '2024-07-31 17:15:07', '2024-07-31 17:15:07', 0, NULL, '2024-07-31 21:15:07', '2024-07-31 21:15:07'),
(509, 5, '2024-07-31 17:15:08', '2024-07-31 17:15:08', 0, NULL, '2024-07-31 21:15:08', '2024-07-31 21:15:08'),
(510, 1, '2024-07-31 17:25:02', '2024-07-31 17:25:02', 0, NULL, '2024-07-31 21:25:02', '2024-07-31 21:25:02'),
(511, 2, '2024-07-31 17:25:02', '2024-07-31 17:25:02', 0, NULL, '2024-07-31 21:25:03', '2024-07-31 21:25:03'),
(512, 3, '2024-07-31 17:25:03', '2024-07-31 17:25:03', 0, NULL, '2024-07-31 21:25:03', '2024-07-31 21:25:03'),
(513, 5, '2024-07-31 17:25:04', '2024-07-31 17:25:04', 0, NULL, '2024-07-31 21:25:04', '2024-07-31 21:25:04'),
(514, 1, '2024-07-31 17:30:06', '2024-07-31 17:30:06', 0, NULL, '2024-07-31 21:30:07', '2024-07-31 21:30:07'),
(515, 2, '2024-07-31 17:30:07', '2024-07-31 17:30:07', 0, NULL, '2024-07-31 21:30:08', '2024-07-31 21:30:08'),
(516, 3, '2024-07-31 17:30:08', '2024-07-31 17:30:08', 0, NULL, '2024-07-31 21:30:11', '2024-07-31 21:30:11'),
(517, 5, '2024-07-31 17:30:11', '2024-07-31 17:30:11', 0, NULL, '2024-07-31 21:30:12', '2024-07-31 21:30:12'),
(518, 1, '2024-07-31 17:40:07', '2024-07-31 17:40:07', 0, NULL, '2024-07-31 21:40:07', '2024-07-31 21:40:07'),
(519, 2, '2024-07-31 17:40:08', '2024-07-31 17:40:08', 0, NULL, '2024-07-31 21:40:08', '2024-07-31 21:40:08'),
(520, 3, '2024-07-31 17:40:08', '2024-07-31 17:40:08', 0, NULL, '2024-07-31 21:40:08', '2024-07-31 21:40:08'),
(521, 5, '2024-07-31 17:40:08', '2024-07-31 17:40:08', 0, NULL, '2024-07-31 21:40:09', '2024-07-31 21:40:09'),
(522, 1, '2024-07-31 17:50:05', '2024-07-31 17:50:05', 0, NULL, '2024-07-31 21:50:06', '2024-07-31 21:50:06'),
(523, 2, '2024-07-31 17:50:06', '2024-07-31 17:50:06', 0, NULL, '2024-07-31 21:50:07', '2024-07-31 21:50:07'),
(524, 3, '2024-07-31 17:50:07', '2024-07-31 17:50:07', 0, NULL, '2024-07-31 21:50:07', '2024-07-31 21:50:07'),
(525, 5, '2024-07-31 17:50:07', '2024-07-31 17:50:07', 0, NULL, '2024-07-31 21:50:08', '2024-07-31 21:50:08'),
(526, 1, '2024-07-31 18:00:08', '2024-07-31 18:00:08', 0, NULL, '2024-07-31 22:00:08', '2024-07-31 22:00:08'),
(527, 2, '2024-07-31 18:00:10', '2024-07-31 18:00:10', 0, NULL, '2024-07-31 22:00:10', '2024-07-31 22:00:10'),
(528, 3, '2024-07-31 18:00:10', '2024-07-31 18:00:10', 0, NULL, '2024-07-31 22:00:11', '2024-07-31 22:00:11'),
(529, 5, '2024-07-31 18:00:11', '2024-07-31 18:00:11', 0, NULL, '2024-07-31 22:00:11', '2024-07-31 22:00:11'),
(530, 1, '2024-07-31 18:10:08', '2024-07-31 18:10:09', 0, NULL, '2024-07-31 22:10:09', '2024-07-31 22:10:09'),
(531, 2, '2024-07-31 18:10:10', '2024-07-31 18:10:10', 0, NULL, '2024-07-31 22:10:10', '2024-07-31 22:10:10'),
(532, 3, '2024-07-31 18:10:10', '2024-07-31 18:10:10', 0, NULL, '2024-07-31 22:10:11', '2024-07-31 22:10:11'),
(533, 5, '2024-07-31 18:10:11', '2024-07-31 18:10:11', 0, NULL, '2024-07-31 22:10:11', '2024-07-31 22:10:11'),
(534, 1, '2024-07-31 18:20:11', '2024-07-31 18:20:11', 0, NULL, '2024-07-31 22:20:11', '2024-07-31 22:20:11'),
(535, 2, '2024-07-31 18:20:12', '2024-07-31 18:20:12', 0, NULL, '2024-07-31 22:20:12', '2024-07-31 22:20:12'),
(536, 3, '2024-07-31 18:20:12', '2024-07-31 18:20:12', 0, NULL, '2024-07-31 22:20:12', '2024-07-31 22:20:12'),
(537, 5, '2024-07-31 18:20:12', '2024-07-31 18:20:12', 0, NULL, '2024-07-31 22:20:13', '2024-07-31 22:20:13'),
(538, 1, '2024-07-31 18:30:08', '2024-07-31 18:30:08', 0, NULL, '2024-07-31 22:30:08', '2024-07-31 22:30:08'),
(539, 2, '2024-07-31 18:30:09', '2024-07-31 18:30:09', 0, NULL, '2024-07-31 22:30:09', '2024-07-31 22:30:09'),
(540, 3, '2024-07-31 18:30:09', '2024-07-31 18:30:09', 0, NULL, '2024-07-31 22:30:09', '2024-07-31 22:30:09'),
(541, 5, '2024-07-31 18:30:10', '2024-07-31 18:30:10', 0, NULL, '2024-07-31 22:30:10', '2024-07-31 22:30:10'),
(542, 1, '2024-07-31 18:40:06', '2024-07-31 18:40:06', 0, NULL, '2024-07-31 22:40:07', '2024-07-31 22:40:07'),
(543, 2, '2024-07-31 18:40:07', '2024-07-31 18:40:07', 0, NULL, '2024-07-31 22:40:07', '2024-07-31 22:40:07'),
(544, 3, '2024-07-31 18:40:07', '2024-07-31 18:40:07', 0, NULL, '2024-07-31 22:40:07', '2024-07-31 22:40:07'),
(545, 5, '2024-07-31 18:40:08', '2024-07-31 18:40:08', 0, NULL, '2024-07-31 22:40:08', '2024-07-31 22:40:08'),
(546, 1, '2024-07-31 18:50:03', '2024-07-31 18:50:03', 0, NULL, '2024-07-31 22:50:04', '2024-07-31 22:50:04'),
(547, 2, '2024-07-31 18:50:04', '2024-07-31 18:50:04', 0, NULL, '2024-07-31 22:50:04', '2024-07-31 22:50:04'),
(548, 3, '2024-07-31 18:50:05', '2024-07-31 18:50:05', 0, NULL, '2024-07-31 22:50:05', '2024-07-31 22:50:05'),
(549, 5, '2024-07-31 18:50:06', '2024-07-31 18:50:06', 0, NULL, '2024-07-31 22:50:06', '2024-07-31 22:50:06'),
(550, 1, '2024-07-31 18:55:07', '2024-07-31 18:55:07', 0, NULL, '2024-07-31 22:55:07', '2024-07-31 22:55:07'),
(551, 2, '2024-07-31 18:55:07', '2024-07-31 18:55:07', 0, NULL, '2024-07-31 22:55:08', '2024-07-31 22:55:08'),
(552, 3, '2024-07-31 18:55:08', '2024-07-31 18:55:08', 0, NULL, '2024-07-31 22:55:08', '2024-07-31 22:55:08'),
(553, 1, '2024-07-31 19:00:08', '2024-07-31 19:00:08', 0, NULL, '2024-07-31 23:00:09', '2024-07-31 23:00:09'),
(554, 2, '2024-07-31 19:00:09', '2024-07-31 19:00:09', 0, NULL, '2024-07-31 23:00:10', '2024-07-31 23:00:10'),
(555, 5, '2024-07-31 19:00:10', '2024-07-31 19:00:10', 0, NULL, '2024-07-31 23:00:10', '2024-07-31 23:00:10'),
(556, 3, '2024-07-31 19:05:04', '2024-07-31 19:05:04', 0, NULL, '2024-07-31 23:05:04', '2024-07-31 23:05:04'),
(557, 1, '2024-07-31 19:10:03', '2024-07-31 19:10:03', 0, NULL, '2024-07-31 23:10:03', '2024-07-31 23:10:03'),
(558, 2, '2024-07-31 19:10:04', '2024-07-31 19:10:04', 0, NULL, '2024-07-31 23:10:05', '2024-07-31 23:10:05'),
(559, 5, '2024-07-31 19:10:05', '2024-07-31 19:10:05', 0, NULL, '2024-07-31 23:10:06', '2024-07-31 23:10:06'),
(560, 1, '2024-07-31 19:15:07', '2024-07-31 19:15:07', 0, NULL, '2024-07-31 23:15:07', '2024-07-31 23:15:07'),
(561, 2, '2024-07-31 19:15:08', '2024-07-31 19:15:08', 0, NULL, '2024-07-31 23:15:09', '2024-07-31 23:15:09'),
(562, 3, '2024-07-31 19:15:09', '2024-07-31 19:15:09', 0, NULL, '2024-07-31 23:15:10', '2024-07-31 23:15:10'),
(563, 5, '2024-07-31 19:15:10', '2024-07-31 19:15:11', 0, NULL, '2024-07-31 23:15:12', '2024-07-31 23:15:12'),
(564, 1, '2024-07-31 19:25:07', '2024-07-31 19:25:07', 0, NULL, '2024-07-31 23:25:07', '2024-07-31 23:25:07'),
(565, 2, '2024-07-31 19:25:07', '2024-07-31 19:25:07', 0, NULL, '2024-07-31 23:25:08', '2024-07-31 23:25:08'),
(566, 3, '2024-07-31 19:25:08', '2024-07-31 19:25:08', 0, NULL, '2024-07-31 23:25:09', '2024-07-31 23:25:09'),
(567, 5, '2024-07-31 19:25:09', '2024-07-31 19:25:09', 0, NULL, '2024-07-31 23:25:09', '2024-07-31 23:25:09'),
(568, 1, '2024-07-31 19:30:08', '2024-07-31 19:30:08', 0, NULL, '2024-07-31 23:30:08', '2024-07-31 23:30:08'),
(569, 2, '2024-07-31 19:30:09', '2024-07-31 19:30:09', 0, NULL, '2024-07-31 23:30:09', '2024-07-31 23:30:09'),
(570, 3, '2024-07-31 19:35:06', '2024-07-31 19:35:06', 0, NULL, '2024-07-31 23:35:07', '2024-07-31 23:35:07'),
(571, 5, '2024-07-31 19:35:08', '2024-07-31 19:35:08', 0, NULL, '2024-07-31 23:35:08', '2024-07-31 23:35:08'),
(572, 1, '2024-07-31 19:40:05', '2024-07-31 19:40:05', 0, NULL, '2024-07-31 23:40:05', '2024-07-31 23:40:05'),
(573, 2, '2024-07-31 19:40:06', '2024-07-31 19:40:06', 0, NULL, '2024-07-31 23:40:07', '2024-07-31 23:40:07'),
(574, 3, '2024-07-31 19:45:03', '2024-07-31 19:45:03', 0, NULL, '2024-07-31 23:45:04', '2024-07-31 23:45:04'),
(575, 5, '2024-07-31 19:45:04', '2024-07-31 19:45:04', 0, NULL, '2024-07-31 23:45:05', '2024-07-31 23:45:05'),
(576, 1, '2024-07-31 19:50:04', '2024-07-31 19:50:05', 0, NULL, '2024-07-31 23:50:05', '2024-07-31 23:50:05'),
(577, 2, '2024-07-31 19:50:05', '2024-07-31 19:50:05', 0, NULL, '2024-07-31 23:50:06', '2024-07-31 23:50:06'),
(578, 3, '2024-07-31 19:50:06', '2024-07-31 19:50:06', 0, NULL, '2024-07-31 23:50:06', '2024-07-31 23:50:06'),
(579, 1, '2024-07-31 19:55:06', '2024-07-31 19:55:06', 0, NULL, '2024-07-31 23:55:06', '2024-07-31 23:55:06'),
(580, 2, '2024-07-31 19:55:07', '2024-07-31 19:55:07', 0, NULL, '2024-07-31 23:55:07', '2024-07-31 23:55:07'),
(581, 5, '2024-07-31 19:55:08', '2024-07-31 19:55:08', 0, NULL, '2024-07-31 23:55:08', '2024-07-31 23:55:08'),
(582, 3, '2024-07-31 20:00:06', '2024-07-31 20:00:06', 0, NULL, '2024-08-01 00:00:06', '2024-08-01 00:00:06'),
(583, 1, '2024-07-31 20:05:04', '2024-07-31 20:05:04', 0, NULL, '2024-08-01 00:05:05', '2024-08-01 00:05:05'),
(584, 2, '2024-07-31 20:05:06', '2024-07-31 20:05:06', 0, NULL, '2024-08-01 00:05:06', '2024-08-01 00:05:06'),
(585, 5, '2024-07-31 20:05:07', '2024-07-31 20:05:07', 0, NULL, '2024-08-01 00:05:07', '2024-08-01 00:05:07'),
(586, 1, '2024-07-31 20:10:12', '2024-07-31 20:10:12', 0, NULL, '2024-08-01 00:10:12', '2024-08-01 00:10:12'),
(587, 2, '2024-07-31 20:10:12', '2024-07-31 20:10:12', 0, NULL, '2024-08-01 00:10:13', '2024-08-01 00:10:13'),
(588, 3, '2024-07-31 20:10:13', '2024-07-31 20:10:13', 0, NULL, '2024-08-01 00:10:13', '2024-08-01 00:10:13'),
(589, 5, '2024-07-31 20:10:13', '2024-07-31 20:10:14', 0, NULL, '2024-08-01 00:10:14', '2024-08-01 00:10:14'),
(590, 1, '2024-07-31 20:20:07', '2024-07-31 20:20:07', 0, NULL, '2024-08-01 00:20:08', '2024-08-01 00:20:08'),
(591, 2, '2024-07-31 20:20:08', '2024-07-31 20:20:08', 0, NULL, '2024-08-01 00:20:08', '2024-08-01 00:20:08'),
(592, 3, '2024-07-31 20:20:09', '2024-07-31 20:20:09', 0, NULL, '2024-08-01 00:20:10', '2024-08-01 00:20:10'),
(593, 5, '2024-07-31 20:20:10', '2024-07-31 20:20:10', 0, NULL, '2024-08-01 00:20:11', '2024-08-01 00:20:11'),
(594, 1, '2024-07-31 20:25:08', '2024-07-31 20:25:08', 0, NULL, '2024-08-01 00:25:08', '2024-08-01 00:25:08'),
(595, 2, '2024-07-31 20:30:05', '2024-07-31 20:30:05', 0, NULL, '2024-08-01 00:30:06', '2024-08-01 00:30:06'),
(596, 3, '2024-07-31 20:30:06', '2024-07-31 20:30:06', 0, NULL, '2024-08-01 00:30:07', '2024-08-01 00:30:07'),
(597, 5, '2024-07-31 20:30:11', '2024-07-31 20:30:11', 0, NULL, '2024-08-01 00:30:12', '2024-08-01 00:30:12'),
(598, 1, '2024-07-31 20:35:09', '2024-07-31 20:35:09', 0, NULL, '2024-08-01 00:35:09', '2024-08-01 00:35:09'),
(599, 2, '2024-07-31 20:35:10', '2024-07-31 20:35:10', 0, NULL, '2024-08-01 00:35:10', '2024-08-01 00:35:10'),
(600, 3, '2024-07-31 20:35:10', '2024-07-31 20:35:10', 0, NULL, '2024-08-01 00:35:10', '2024-08-01 00:35:10'),
(601, 5, '2024-07-31 20:40:07', '2024-07-31 20:40:07', 0, NULL, '2024-08-01 00:40:08', '2024-08-01 00:40:08'),
(602, 1, '2024-07-31 20:45:04', '2024-07-31 20:45:04', 0, NULL, '2024-08-01 00:45:05', '2024-08-01 00:45:05'),
(603, 2, '2024-07-31 20:45:06', '2024-07-31 20:45:06', 0, NULL, '2024-08-01 00:45:06', '2024-08-01 00:45:06'),
(604, 3, '2024-07-31 20:45:07', '2024-07-31 20:45:07', 0, NULL, '2024-08-01 00:45:07', '2024-08-01 00:45:07'),
(605, 1, '2024-07-31 20:50:10', '2024-07-31 20:50:10', 0, NULL, '2024-08-01 00:50:11', '2024-08-01 00:50:11'),
(606, 2, '2024-07-31 20:50:12', '2024-07-31 20:50:12', 0, NULL, '2024-08-01 00:50:12', '2024-08-01 00:50:12'),
(607, 3, '2024-07-31 20:50:12', '2024-07-31 20:50:12', 0, NULL, '2024-08-01 00:50:12', '2024-08-01 00:50:12'),
(608, 5, '2024-07-31 20:50:12', '2024-07-31 20:50:12', 0, NULL, '2024-08-01 00:50:12', '2024-08-01 00:50:12'),
(609, 1, '2024-07-31 21:00:07', '2024-07-31 21:00:07', 0, NULL, '2024-08-01 01:00:07', '2024-08-01 01:00:07'),
(610, 2, '2024-07-31 21:00:08', '2024-07-31 21:00:08', 0, NULL, '2024-08-01 01:00:08', '2024-08-01 01:00:08'),
(611, 3, '2024-07-31 21:00:08', '2024-07-31 21:00:08', 0, NULL, '2024-08-01 01:00:09', '2024-08-01 01:00:09'),
(612, 5, '2024-07-31 21:00:09', '2024-07-31 21:00:09', 0, NULL, '2024-08-01 01:00:09', '2024-08-01 01:00:09'),
(613, 1, '2024-07-31 21:10:06', '2024-07-31 21:10:06', 0, NULL, '2024-08-01 01:10:06', '2024-08-01 01:10:06'),
(614, 2, '2024-07-31 21:10:07', '2024-07-31 21:10:07', 0, NULL, '2024-08-01 01:10:07', '2024-08-01 01:10:07'),
(615, 3, '2024-07-31 21:10:07', '2024-07-31 21:10:07', 0, NULL, '2024-08-01 01:10:07', '2024-08-01 01:10:07'),
(616, 5, '2024-07-31 21:10:08', '2024-07-31 21:10:08', 0, NULL, '2024-08-01 01:10:08', '2024-08-01 01:10:08'),
(617, 1, '2024-07-31 21:20:07', '2024-07-31 21:20:07', 0, NULL, '2024-08-01 01:20:07', '2024-08-01 01:20:07'),
(618, 2, '2024-07-31 21:20:07', '2024-07-31 21:20:07', 0, NULL, '2024-08-01 01:20:07', '2024-08-01 01:20:07'),
(619, 3, '2024-07-31 21:20:08', '2024-07-31 21:20:08', 0, NULL, '2024-08-01 01:20:08', '2024-08-01 01:20:08'),
(620, 5, '2024-07-31 21:20:08', '2024-07-31 21:20:08', 0, NULL, '2024-08-01 01:20:08', '2024-08-01 01:20:08'),
(621, 1, '2024-07-31 21:30:10', '2024-07-31 21:30:10', 0, NULL, '2024-08-01 01:30:11', '2024-08-01 01:30:11'),
(622, 2, '2024-07-31 21:30:11', '2024-07-31 21:30:11', 0, NULL, '2024-08-01 01:30:11', '2024-08-01 01:30:11'),
(623, 3, '2024-07-31 21:30:11', '2024-07-31 21:30:11', 0, NULL, '2024-08-01 01:30:12', '2024-08-01 01:30:12'),
(624, 5, '2024-07-31 21:30:12', '2024-07-31 21:30:12', 0, NULL, '2024-08-01 01:30:12', '2024-08-01 01:30:12'),
(625, 1, '2024-07-31 21:40:08', '2024-07-31 21:40:08', 0, NULL, '2024-08-01 01:40:10', '2024-08-01 01:40:10'),
(626, 2, '2024-07-31 21:40:10', '2024-07-31 21:40:10', 0, NULL, '2024-08-01 01:40:10', '2024-08-01 01:40:10'),
(627, 3, '2024-07-31 21:40:10', '2024-07-31 21:40:10', 0, NULL, '2024-08-01 01:40:11', '2024-08-01 01:40:11'),
(628, 5, '2024-07-31 21:40:11', '2024-07-31 21:40:11', 0, NULL, '2024-08-01 01:40:11', '2024-08-01 01:40:11'),
(629, 1, '2024-07-31 21:50:07', '2024-07-31 21:50:07', 0, NULL, '2024-08-01 01:50:07', '2024-08-01 01:50:07'),
(630, 2, '2024-07-31 21:50:08', '2024-07-31 21:50:08', 0, NULL, '2024-08-01 01:50:08', '2024-08-01 01:50:08'),
(631, 3, '2024-07-31 21:50:08', '2024-07-31 21:50:08', 0, NULL, '2024-08-01 01:50:08', '2024-08-01 01:50:08'),
(632, 5, '2024-07-31 21:50:08', '2024-07-31 21:50:08', 0, NULL, '2024-08-01 01:50:10', '2024-08-01 01:50:10'),
(633, 1, '2024-07-31 22:00:07', '2024-07-31 22:00:07', 0, NULL, '2024-08-01 02:00:08', '2024-08-01 02:00:08'),
(634, 2, '2024-07-31 22:00:08', '2024-07-31 22:00:08', 0, NULL, '2024-08-01 02:00:09', '2024-08-01 02:00:09'),
(635, 3, '2024-07-31 22:00:09', '2024-07-31 22:00:09', 0, NULL, '2024-08-01 02:00:09', '2024-08-01 02:00:09'),
(636, 5, '2024-07-31 22:00:10', '2024-07-31 22:00:10', 0, NULL, '2024-08-01 02:00:11', '2024-08-01 02:00:11'),
(637, 1, '2024-07-31 22:10:07', '2024-07-31 22:10:07', 0, NULL, '2024-08-01 02:10:07', '2024-08-01 02:10:07'),
(638, 2, '2024-07-31 22:10:07', '2024-07-31 22:10:07', 0, NULL, '2024-08-01 02:10:08', '2024-08-01 02:10:08'),
(639, 3, '2024-07-31 22:10:08', '2024-07-31 22:10:08', 0, NULL, '2024-08-01 02:10:10', '2024-08-01 02:10:10'),
(640, 5, '2024-07-31 22:10:10', '2024-07-31 22:10:10', 0, NULL, '2024-08-01 02:10:10', '2024-08-01 02:10:10'),
(641, 1, '2024-07-31 22:20:05', '2024-07-31 22:20:05', 0, NULL, '2024-08-01 02:20:05', '2024-08-01 02:20:05'),
(642, 2, '2024-07-31 22:20:06', '2024-07-31 22:20:06', 0, NULL, '2024-08-01 02:20:06', '2024-08-01 02:20:06'),
(643, 3, '2024-07-31 22:20:06', '2024-07-31 22:20:06', 0, NULL, '2024-08-01 02:20:06', '2024-08-01 02:20:06'),
(644, 5, '2024-07-31 22:20:07', '2024-07-31 22:20:07', 0, NULL, '2024-08-01 02:20:07', '2024-08-01 02:20:07'),
(645, 1, '2024-07-31 22:30:13', '2024-07-31 22:30:13', 0, NULL, '2024-08-01 02:30:13', '2024-08-01 02:30:13'),
(646, 2, '2024-07-31 22:30:13', '2024-07-31 22:30:13', 0, NULL, '2024-08-01 02:30:13', '2024-08-01 02:30:13'),
(647, 3, '2024-07-31 22:30:13', '2024-07-31 22:30:13', 0, NULL, '2024-08-01 02:30:14', '2024-08-01 02:30:14'),
(648, 5, '2024-07-31 22:30:14', '2024-07-31 22:30:14', 0, NULL, '2024-08-01 02:30:14', '2024-08-01 02:30:14'),
(649, 1, '2024-07-31 22:40:05', '2024-07-31 22:40:05', 0, NULL, '2024-08-01 02:40:06', '2024-08-01 02:40:06'),
(650, 2, '2024-07-31 22:40:06', '2024-07-31 22:40:06', 0, NULL, '2024-08-01 02:40:07', '2024-08-01 02:40:07'),
(651, 3, '2024-07-31 22:40:07', '2024-07-31 22:40:07', 0, NULL, '2024-08-01 02:40:07', '2024-08-01 02:40:07'),
(652, 5, '2024-07-31 22:40:08', '2024-07-31 22:40:08', 0, NULL, '2024-08-01 02:40:08', '2024-08-01 02:40:08'),
(653, 1, '2024-07-31 22:50:08', '2024-07-31 22:50:08', 0, NULL, '2024-08-01 02:50:08', '2024-08-01 02:50:08'),
(654, 2, '2024-07-31 22:50:08', '2024-07-31 22:50:08', 0, NULL, '2024-08-01 02:50:08', '2024-08-01 02:50:08'),
(655, 3, '2024-07-31 22:50:08', '2024-07-31 22:50:08', 0, NULL, '2024-08-01 02:50:08', '2024-08-01 02:50:08'),
(656, 5, '2024-07-31 22:50:08', '2024-07-31 22:50:08', 0, NULL, '2024-08-01 02:50:09', '2024-08-01 02:50:09'),
(657, 1, '2024-07-31 23:00:10', '2024-07-31 23:00:10', 0, NULL, '2024-08-01 03:00:11', '2024-08-01 03:00:11'),
(658, 2, '2024-07-31 23:00:11', '2024-07-31 23:00:11', 0, NULL, '2024-08-01 03:00:12', '2024-08-01 03:00:12'),
(659, 3, '2024-07-31 23:00:12', '2024-07-31 23:00:12', 0, NULL, '2024-08-01 03:00:12', '2024-08-01 03:00:12'),
(660, 5, '2024-07-31 23:00:12', '2024-07-31 23:00:13', 0, NULL, '2024-08-01 03:00:13', '2024-08-01 03:00:13'),
(661, 1, '2024-07-31 23:10:08', '2024-07-31 23:10:08', 0, NULL, '2024-08-01 03:10:08', '2024-08-01 03:10:08'),
(662, 2, '2024-07-31 23:10:08', '2024-07-31 23:10:08', 0, NULL, '2024-08-01 03:10:09', '2024-08-01 03:10:09'),
(663, 3, '2024-07-31 23:10:09', '2024-07-31 23:10:09', 0, NULL, '2024-08-01 03:10:09', '2024-08-01 03:10:09'),
(664, 5, '2024-07-31 23:10:09', '2024-07-31 23:10:09', 0, NULL, '2024-08-01 03:10:10', '2024-08-01 03:10:10'),
(665, 1, '2024-07-31 23:20:06', '2024-07-31 23:20:06', 0, NULL, '2024-08-01 03:20:07', '2024-08-01 03:20:07'),
(666, 2, '2024-07-31 23:20:07', '2024-07-31 23:20:07', 0, NULL, '2024-08-01 03:20:08', '2024-08-01 03:20:08'),
(667, 3, '2024-07-31 23:20:08', '2024-07-31 23:20:08', 0, NULL, '2024-08-01 03:20:08', '2024-08-01 03:20:08'),
(668, 5, '2024-07-31 23:20:08', '2024-07-31 23:20:08', 0, NULL, '2024-08-01 03:20:09', '2024-08-01 03:20:09'),
(669, 1, '2024-07-31 23:30:05', '2024-07-31 23:30:05', 0, NULL, '2024-08-01 03:30:05', '2024-08-01 03:30:05'),
(670, 2, '2024-07-31 23:30:06', '2024-07-31 23:30:06', 0, NULL, '2024-08-01 03:30:07', '2024-08-01 03:30:07'),
(671, 3, '2024-07-31 23:30:07', '2024-07-31 23:30:07', 0, NULL, '2024-08-01 03:30:07', '2024-08-01 03:30:07'),
(672, 5, '2024-07-31 23:30:08', '2024-07-31 23:30:08', 0, NULL, '2024-08-01 03:30:08', '2024-08-01 03:30:08'),
(673, 1, '2024-07-31 23:35:06', '2024-07-31 23:35:06', 0, NULL, '2024-08-01 03:35:07', '2024-08-01 03:35:07'),
(674, 1, '2024-07-31 23:40:10', '2024-07-31 23:40:10', 0, NULL, '2024-08-01 03:40:10', '2024-08-01 03:40:10'),
(675, 2, '2024-07-31 23:40:10', '2024-07-31 23:40:10', 0, NULL, '2024-08-01 03:40:11', '2024-08-01 03:40:11'),
(676, 3, '2024-07-31 23:40:11', '2024-07-31 23:40:11', 0, NULL, '2024-08-01 03:40:11', '2024-08-01 03:40:11'),
(677, 5, '2024-07-31 23:40:11', '2024-07-31 23:40:11', 0, NULL, '2024-08-01 03:40:11', '2024-08-01 03:40:11'),
(678, 1, '2024-07-31 23:50:05', '2024-07-31 23:50:08', 2, NULL, '2024-08-01 03:50:09', '2024-08-01 03:50:09'),
(679, 2, '2024-07-31 23:50:09', '2024-07-31 23:50:09', 0, NULL, '2024-08-01 03:50:10', '2024-08-01 03:50:10'),
(680, 3, '2024-07-31 23:50:10', '2024-07-31 23:50:10', 0, NULL, '2024-08-01 03:50:10', '2024-08-01 03:50:10'),
(681, 5, '2024-07-31 23:50:10', '2024-07-31 23:50:10', 0, NULL, '2024-08-01 03:50:11', '2024-08-01 03:50:11'),
(682, 1, '2024-08-01 00:00:05', '2024-08-01 00:00:05', 0, NULL, '2024-08-01 04:00:05', '2024-08-01 04:00:05'),
(683, 2, '2024-08-01 00:00:06', '2024-08-01 00:00:06', 0, NULL, '2024-08-01 04:00:06', '2024-08-01 04:00:06'),
(684, 3, '2024-08-01 00:00:07', '2024-08-01 00:00:07', 0, NULL, '2024-08-01 04:00:07', '2024-08-01 04:00:07'),
(685, 5, '2024-08-01 00:00:08', '2024-08-01 00:00:08', 0, NULL, '2024-08-01 04:00:08', '2024-08-01 04:00:08'),
(686, 1, '2024-08-01 00:05:08', '2024-08-01 00:05:08', 0, NULL, '2024-08-01 04:05:08', '2024-08-01 04:05:08'),
(687, 2, '2024-08-01 00:05:09', '2024-08-01 00:05:09', 0, NULL, '2024-08-01 04:05:09', '2024-08-01 04:05:09'),
(688, 3, '2024-08-01 00:05:10', '2024-08-01 00:05:10', 0, NULL, '2024-08-01 04:05:14', '2024-08-01 04:05:14'),
(689, 5, '2024-08-01 00:10:05', '2024-08-01 00:10:05', 0, NULL, '2024-08-01 04:10:07', '2024-08-01 04:10:07'),
(690, 1, '2024-08-01 00:15:08', '2024-08-01 00:15:08', 0, NULL, '2024-08-01 04:15:08', '2024-08-01 04:15:08'),
(691, 2, '2024-08-01 00:15:09', '2024-08-01 00:15:09', 0, NULL, '2024-08-01 04:15:09', '2024-08-01 04:15:09'),
(692, 3, '2024-08-01 00:15:09', '2024-08-01 00:15:09', 0, NULL, '2024-08-01 04:15:09', '2024-08-01 04:15:09'),
(693, 5, '2024-08-01 00:15:09', '2024-08-01 00:15:10', 0, NULL, '2024-08-01 04:15:10', '2024-08-01 04:15:10'),
(694, 1, '2024-08-01 00:25:06', '2024-08-01 00:25:06', 0, NULL, '2024-08-01 04:25:07', '2024-08-01 04:25:07'),
(695, 2, '2024-08-01 00:25:07', '2024-08-01 00:25:07', 0, NULL, '2024-08-01 04:25:08', '2024-08-01 04:25:08'),
(696, 3, '2024-08-01 00:25:08', '2024-08-01 00:25:08', 0, NULL, '2024-08-01 04:25:11', '2024-08-01 04:25:11'),
(697, 5, '2024-08-01 00:25:11', '2024-08-01 00:25:11', 0, NULL, '2024-08-01 04:25:11', '2024-08-01 04:25:11'),
(698, 1, '2024-08-01 00:35:05', '2024-08-01 00:35:05', 0, NULL, '2024-08-01 04:35:05', '2024-08-01 04:35:05'),
(699, 2, '2024-08-01 00:35:06', '2024-08-01 00:35:06', 0, NULL, '2024-08-01 04:35:06', '2024-08-01 04:35:06'),
(700, 3, '2024-08-01 00:35:07', '2024-08-01 00:35:07', 0, NULL, '2024-08-01 04:35:07', '2024-08-01 04:35:07'),
(701, 5, '2024-08-01 00:35:07', '2024-08-01 00:35:07', 0, NULL, '2024-08-01 04:35:07', '2024-08-01 04:35:07'),
(702, 1, '2024-08-01 00:40:07', '2024-08-01 00:40:07', 0, NULL, '2024-08-01 04:40:07', '2024-08-01 04:40:07'),
(703, 1, '2024-08-01 00:45:08', '2024-08-01 00:45:09', 0, NULL, '2024-08-01 04:45:09', '2024-08-01 04:45:09'),
(704, 2, '2024-08-01 00:45:09', '2024-08-01 00:45:09', 0, NULL, '2024-08-01 04:45:09', '2024-08-01 04:45:09'),
(705, 3, '2024-08-01 00:45:09', '2024-08-01 00:45:09', 0, NULL, '2024-08-01 04:45:09', '2024-08-01 04:45:09'),
(706, 5, '2024-08-01 00:45:10', '2024-08-01 00:45:10', 0, NULL, '2024-08-01 04:45:10', '2024-08-01 04:45:10'),
(707, 1, '2024-08-01 00:55:03', '2024-08-01 00:55:03', 0, NULL, '2024-08-01 04:55:04', '2024-08-01 04:55:04'),
(708, 2, '2024-08-01 00:55:04', '2024-08-01 00:55:04', 0, NULL, '2024-08-01 04:55:05', '2024-08-01 04:55:05'),
(709, 3, '2024-08-01 00:55:05', '2024-08-01 00:55:05', 0, NULL, '2024-08-01 04:55:05', '2024-08-01 04:55:05'),
(710, 5, '2024-08-01 00:55:06', '2024-08-01 00:55:06', 0, NULL, '2024-08-01 04:55:07', '2024-08-01 04:55:07'),
(711, 1, '2024-08-01 01:00:08', '2024-08-01 01:00:08', 0, NULL, '2024-08-01 05:00:08', '2024-08-01 05:00:08'),
(712, 2, '2024-08-01 01:00:08', '2024-08-01 01:00:08', 0, NULL, '2024-08-01 05:00:09', '2024-08-01 05:00:09'),
(713, 3, '2024-08-01 01:00:09', '2024-08-01 01:00:09', 0, NULL, '2024-08-01 05:00:09', '2024-08-01 05:00:09'),
(714, 5, '2024-08-01 01:00:09', '2024-08-01 01:00:09', 0, NULL, '2024-08-01 05:00:10', '2024-08-01 05:00:10'),
(715, 1, '2024-08-01 01:10:03', '2024-08-01 01:10:03', 0, NULL, '2024-08-01 05:10:04', '2024-08-01 05:10:04'),
(716, 2, '2024-08-01 01:10:04', '2024-08-01 01:10:04', 0, NULL, '2024-08-01 05:10:05', '2024-08-01 05:10:05'),
(717, 3, '2024-08-01 01:10:05', '2024-08-01 01:10:05', 0, NULL, '2024-08-01 05:10:06', '2024-08-01 05:10:06'),
(718, 5, '2024-08-01 01:10:06', '2024-08-01 01:10:06', 0, NULL, '2024-08-01 05:10:07', '2024-08-01 05:10:07'),
(719, 1, '2024-08-01 01:15:06', '2024-08-01 01:15:06', 0, NULL, '2024-08-01 05:15:06', '2024-08-01 05:15:06'),
(720, 2, '2024-08-01 01:15:07', '2024-08-01 01:15:07', 0, NULL, '2024-08-01 05:15:07', '2024-08-01 05:15:07'),
(721, 3, '2024-08-01 01:15:08', '2024-08-01 01:15:08', 0, NULL, '2024-08-01 05:15:09', '2024-08-01 05:15:09'),
(722, 5, '2024-08-01 01:20:04', '2024-08-01 01:20:04', 0, NULL, '2024-08-01 05:20:05', '2024-08-01 05:20:05'),
(723, 1, '2024-08-01 01:25:05', '2024-08-01 01:25:06', 1, NULL, '2024-08-01 05:25:09', '2024-08-01 05:25:09'),
(724, 2, '2024-08-01 01:25:10', '2024-08-01 01:25:10', 0, NULL, '2024-08-01 05:25:10', '2024-08-01 05:25:10'),
(725, 3, '2024-08-01 01:25:10', '2024-08-01 01:25:10', 0, NULL, '2024-08-01 05:25:10', '2024-08-01 05:25:10'),
(726, 5, '2024-08-01 01:25:10', '2024-08-01 01:25:10', 0, NULL, '2024-08-01 05:25:10', '2024-08-01 05:25:10'),
(727, 1, '2024-08-01 01:35:08', '2024-08-01 01:35:08', 0, NULL, '2024-08-01 05:35:08', '2024-08-01 05:35:08'),
(728, 2, '2024-08-01 01:35:08', '2024-08-01 01:35:08', 0, NULL, '2024-08-01 05:35:08', '2024-08-01 05:35:08'),
(729, 3, '2024-08-01 01:35:09', '2024-08-01 01:35:09', 0, NULL, '2024-08-01 05:35:09', '2024-08-01 05:35:09'),
(730, 5, '2024-08-01 01:35:09', '2024-08-01 01:35:09', 0, NULL, '2024-08-01 05:35:09', '2024-08-01 05:35:09'),
(731, 1, '2024-08-01 01:40:09', '2024-08-01 01:40:09', 0, NULL, '2024-08-01 05:40:09', '2024-08-01 05:40:09'),
(732, 2, '2024-08-01 01:40:09', '2024-08-01 01:40:09', 0, NULL, '2024-08-01 05:40:09', '2024-08-01 05:40:09'),
(733, 3, '2024-08-01 01:45:03', '2024-08-01 01:45:03', 0, NULL, '2024-08-01 05:45:03', '2024-08-01 05:45:03'),
(734, 5, '2024-08-01 01:45:03', '2024-08-01 01:45:03', 0, NULL, '2024-08-01 05:45:03', '2024-08-01 05:45:03'),
(735, 1, '2024-08-01 01:50:05', '2024-08-01 01:50:05', 0, NULL, '2024-08-01 05:50:06', '2024-08-01 05:50:06'),
(736, 2, '2024-08-01 01:50:06', '2024-08-01 01:50:06', 0, NULL, '2024-08-01 05:50:07', '2024-08-01 05:50:07'),
(737, 3, '2024-08-01 01:50:07', '2024-08-01 01:50:07', 0, NULL, '2024-08-01 05:50:07', '2024-08-01 05:50:07'),
(738, 5, '2024-08-01 01:50:07', '2024-08-01 01:50:07', 0, NULL, '2024-08-01 05:50:08', '2024-08-01 05:50:08'),
(739, 1, '2024-08-01 01:55:07', '2024-08-01 01:55:07', 0, NULL, '2024-08-01 05:55:07', '2024-08-01 05:55:07'),
(740, 2, '2024-08-01 01:55:08', '2024-08-01 01:55:08', 0, NULL, '2024-08-01 05:55:08', '2024-08-01 05:55:08'),
(741, 3, '2024-08-01 02:00:03', '2024-08-01 02:00:03', 0, NULL, '2024-08-01 06:00:03', '2024-08-01 06:00:03'),
(742, 5, '2024-08-01 02:00:03', '2024-08-01 02:00:03', 0, NULL, '2024-08-01 06:00:04', '2024-08-01 06:00:04'),
(743, 1, '2024-08-01 02:05:04', '2024-08-01 02:05:04', 0, NULL, '2024-08-01 06:05:05', '2024-08-01 06:05:05'),
(744, 2, '2024-08-01 02:05:07', '2024-08-01 02:05:07', 0, NULL, '2024-08-01 06:05:07', '2024-08-01 06:05:07'),
(745, 3, '2024-08-01 02:05:07', '2024-08-01 02:05:07', 0, NULL, '2024-08-01 06:05:08', '2024-08-01 06:05:08'),
(746, 5, '2024-08-01 02:05:08', '2024-08-01 02:05:08', 0, NULL, '2024-08-01 06:05:08', '2024-08-01 06:05:08'),
(747, 1, '2024-08-01 02:10:06', '2024-08-01 02:10:06', 0, NULL, '2024-08-01 06:10:06', '2024-08-01 06:10:06'),
(748, 1, '2024-08-01 02:15:12', '2024-08-01 02:15:12', 0, NULL, '2024-08-01 06:15:12', '2024-08-01 06:15:12'),
(749, 2, '2024-08-01 02:15:12', '2024-08-01 02:15:12', 0, NULL, '2024-08-01 06:15:12', '2024-08-01 06:15:12'),
(750, 3, '2024-08-01 02:15:13', '2024-08-01 02:15:13', 0, NULL, '2024-08-01 06:15:13', '2024-08-01 06:15:13'),
(751, 5, '2024-08-01 02:15:13', '2024-08-01 02:15:13', 0, NULL, '2024-08-01 06:15:13', '2024-08-01 06:15:13'),
(752, 1, '2024-08-01 02:25:12', '2024-08-01 02:25:12', 0, NULL, '2024-08-01 06:25:12', '2024-08-01 06:25:12'),
(753, 2, '2024-08-01 02:25:12', '2024-08-01 02:25:12', 0, NULL, '2024-08-01 06:25:13', '2024-08-01 06:25:13'),
(754, 3, '2024-08-01 02:25:13', '2024-08-01 02:25:13', 0, NULL, '2024-08-01 06:25:13', '2024-08-01 06:25:13'),
(755, 5, '2024-08-01 02:25:13', '2024-08-01 02:25:13', 0, NULL, '2024-08-01 06:25:13', '2024-08-01 06:25:13'),
(756, 1, '2024-08-01 02:35:08', '2024-08-01 02:35:08', 0, NULL, '2024-08-01 06:35:08', '2024-08-01 06:35:08'),
(757, 2, '2024-08-01 02:35:09', '2024-08-01 02:35:09', 0, NULL, '2024-08-01 06:35:09', '2024-08-01 06:35:09'),
(758, 3, '2024-08-01 02:35:09', '2024-08-01 02:35:09', 0, NULL, '2024-08-01 06:35:09', '2024-08-01 06:35:09'),
(759, 5, '2024-08-01 02:35:10', '2024-08-01 02:35:10', 0, NULL, '2024-08-01 06:35:10', '2024-08-01 06:35:10'),
(760, 1, '2024-08-01 02:40:09', '2024-08-01 02:40:09', 0, NULL, '2024-08-01 06:40:09', '2024-08-01 06:40:09'),
(761, 2, '2024-08-01 02:45:05', '2024-08-01 02:45:06', 0, NULL, '2024-08-01 06:45:06', '2024-08-01 06:45:06'),
(762, 3, '2024-08-01 02:45:07', '2024-08-01 02:45:07', 0, NULL, '2024-08-01 06:45:07', '2024-08-01 06:45:07'),
(763, 5, '2024-08-01 02:45:08', '2024-08-01 02:45:08', 0, NULL, '2024-08-01 06:45:08', '2024-08-01 06:45:08'),
(764, 1, '2024-08-01 02:50:05', '2024-08-01 02:50:05', 0, NULL, '2024-08-01 06:50:05', '2024-08-01 06:50:05'),
(765, 2, '2024-08-01 02:55:05', '2024-08-01 02:55:05', 0, NULL, '2024-08-01 06:55:05', '2024-08-01 06:55:05'),
(766, 3, '2024-08-01 02:55:06', '2024-08-01 02:55:06', 0, NULL, '2024-08-01 06:55:06', '2024-08-01 06:55:06'),
(767, 5, '2024-08-01 02:55:06', '2024-08-01 02:55:06', 0, NULL, '2024-08-01 06:55:07', '2024-08-01 06:55:07'),
(768, 1, '2024-08-01 03:00:05', '2024-08-01 03:00:05', 0, NULL, '2024-08-01 07:00:06', '2024-08-01 07:00:06'),
(769, 1, '2024-08-01 03:05:08', '2024-08-01 03:05:09', 0, NULL, '2024-08-01 07:05:10', '2024-08-01 07:05:10'),
(770, 2, '2024-08-01 03:05:11', '2024-08-01 03:05:11', 0, NULL, '2024-08-01 07:05:11', '2024-08-01 07:05:11'),
(771, 3, '2024-08-01 03:05:11', '2024-08-01 03:05:11', 0, NULL, '2024-08-01 07:05:11', '2024-08-01 07:05:11'),
(772, 5, '2024-08-01 03:05:11', '2024-08-01 03:05:11', 0, NULL, '2024-08-01 07:05:11', '2024-08-01 07:05:11'),
(773, 1, '2024-08-01 03:15:08', '2024-08-01 03:15:08', 0, NULL, '2024-08-01 07:15:09', '2024-08-01 07:15:09'),
(774, 2, '2024-08-01 03:15:09', '2024-08-01 03:15:09', 0, NULL, '2024-08-01 07:15:09', '2024-08-01 07:15:09'),
(775, 3, '2024-08-01 03:15:09', '2024-08-01 03:15:09', 0, NULL, '2024-08-01 07:15:09', '2024-08-01 07:15:09'),
(776, 5, '2024-08-01 03:15:10', '2024-08-01 03:15:10', 0, NULL, '2024-08-01 07:15:10', '2024-08-01 07:15:10'),
(777, 1, '2024-08-01 03:25:11', '2024-08-01 03:25:11', 0, NULL, '2024-08-01 07:25:11', '2024-08-01 07:25:11'),
(778, 2, '2024-08-01 03:25:12', '2024-08-01 03:25:12', 0, NULL, '2024-08-01 07:25:12', '2024-08-01 07:25:12'),
(779, 3, '2024-08-01 03:25:12', '2024-08-01 03:25:12', 0, NULL, '2024-08-01 07:25:12', '2024-08-01 07:25:12'),
(780, 5, '2024-08-01 03:25:12', '2024-08-01 03:25:12', 0, NULL, '2024-08-01 07:25:12', '2024-08-01 07:25:12'),
(781, 1, '2024-08-01 03:35:06', '2024-08-01 03:35:06', 0, NULL, '2024-08-01 07:35:07', '2024-08-01 07:35:07'),
(782, 2, '2024-08-01 03:35:07', '2024-08-01 03:35:07', 0, NULL, '2024-08-01 07:35:07', '2024-08-01 07:35:07'),
(783, 3, '2024-08-01 03:35:07', '2024-08-01 03:35:07', 0, NULL, '2024-08-01 07:35:07', '2024-08-01 07:35:07'),
(784, 5, '2024-08-01 03:35:08', '2024-08-01 03:35:08', 0, NULL, '2024-08-01 07:35:08', '2024-08-01 07:35:08'),
(785, 1, '2024-08-01 03:45:05', '2024-08-01 03:45:05', 0, NULL, '2024-08-01 07:45:05', '2024-08-01 07:45:05'),
(786, 2, '2024-08-01 03:45:05', '2024-08-01 03:45:05', 0, NULL, '2024-08-01 07:45:05', '2024-08-01 07:45:05'),
(787, 3, '2024-08-01 03:45:06', '2024-08-01 03:45:06', 0, NULL, '2024-08-01 07:45:06', '2024-08-01 07:45:06'),
(788, 5, '2024-08-01 03:45:07', '2024-08-01 03:45:07', 0, NULL, '2024-08-01 07:45:07', '2024-08-01 07:45:07'),
(789, 1, '2024-08-01 03:50:07', '2024-08-01 03:50:07', 0, NULL, '2024-08-01 07:50:07', '2024-08-01 07:50:07'),
(790, 2, '2024-08-01 03:50:08', '2024-08-01 03:50:08', 0, NULL, '2024-08-01 07:50:08', '2024-08-01 07:50:08'),
(791, 3, '2024-08-01 03:50:08', '2024-08-01 03:50:08', 0, NULL, '2024-08-01 07:50:09', '2024-08-01 07:50:09'),
(792, 5, '2024-08-01 03:55:04', '2024-08-01 03:55:04', 0, NULL, '2024-08-01 07:55:05', '2024-08-01 07:55:05'),
(793, 1, '2024-08-01 04:00:03', '2024-08-01 04:00:03', 0, NULL, '2024-08-01 08:00:04', '2024-08-01 08:00:04'),
(794, 2, '2024-08-01 04:00:04', '2024-08-01 04:00:04', 0, NULL, '2024-08-01 08:00:04', '2024-08-01 08:00:04'),
(795, 3, '2024-08-01 04:00:05', '2024-08-01 04:00:05', 0, NULL, '2024-08-01 08:00:05', '2024-08-01 08:00:05'),
(796, 1, '2024-08-01 04:05:05', '2024-08-01 04:05:05', 0, NULL, '2024-08-01 08:05:06', '2024-08-01 08:05:06'),
(797, 2, '2024-08-01 04:05:07', '2024-08-01 04:05:07', 0, NULL, '2024-08-01 08:05:07', '2024-08-01 08:05:07'),
(798, 5, '2024-08-01 04:05:07', '2024-08-01 04:05:07', 0, NULL, '2024-08-01 08:05:08', '2024-08-01 08:05:08'),
(799, 3, '2024-08-01 04:10:03', '2024-08-01 04:10:03', 0, NULL, '2024-08-01 08:10:04', '2024-08-01 08:10:04'),
(800, 1, '2024-08-01 04:15:06', '2024-08-01 04:15:06', 0, NULL, '2024-08-01 08:15:06', '2024-08-01 08:15:06'),
(801, 2, '2024-08-01 04:15:06', '2024-08-01 04:15:06', 0, NULL, '2024-08-01 08:15:07', '2024-08-01 08:15:07'),
(802, 3, '2024-08-01 04:15:07', '2024-08-01 04:15:07', 0, NULL, '2024-08-01 08:15:08', '2024-08-01 08:15:08'),
(803, 5, '2024-08-01 04:15:08', '2024-08-01 04:15:08', 0, NULL, '2024-08-01 08:15:08', '2024-08-01 08:15:08'),
(804, 1, '2024-08-01 04:25:08', '2024-08-01 04:25:08', 0, NULL, '2024-08-01 08:25:08', '2024-08-01 08:25:08'),
(805, 2, '2024-08-01 04:25:08', '2024-08-01 04:25:08', 0, NULL, '2024-08-01 08:25:08', '2024-08-01 08:25:08'),
(806, 3, '2024-08-01 04:25:08', '2024-08-01 04:25:08', 0, NULL, '2024-08-01 08:25:08', '2024-08-01 08:25:08'),
(807, 5, '2024-08-01 04:25:08', '2024-08-01 04:25:08', 0, NULL, '2024-08-01 08:25:08', '2024-08-01 08:25:08'),
(808, 1, '2024-08-01 04:35:06', '2024-08-01 04:35:06', 0, NULL, '2024-08-01 08:35:07', '2024-08-01 08:35:07'),
(809, 2, '2024-08-01 04:35:07', '2024-08-01 04:35:07', 0, NULL, '2024-08-01 08:35:07', '2024-08-01 08:35:07'),
(810, 3, '2024-08-01 04:35:07', '2024-08-01 04:35:07', 0, NULL, '2024-08-01 08:35:08', '2024-08-01 08:35:08'),
(811, 5, '2024-08-01 04:35:08', '2024-08-01 04:35:08', 0, NULL, '2024-08-01 08:35:08', '2024-08-01 08:35:08'),
(812, 1, '2024-08-01 04:45:02', '2024-08-01 04:45:02', 0, NULL, '2024-08-01 08:45:02', '2024-08-01 08:45:02'),
(813, 2, '2024-08-01 04:45:03', '2024-08-01 04:45:03', 0, NULL, '2024-08-01 08:45:03', '2024-08-01 08:45:03'),
(814, 3, '2024-08-01 04:45:03', '2024-08-01 04:45:03', 0, NULL, '2024-08-01 08:45:03', '2024-08-01 08:45:03'),
(815, 5, '2024-08-01 04:45:03', '2024-08-01 04:45:03', 0, NULL, '2024-08-01 08:45:03', '2024-08-01 08:45:03'),
(816, 1, '2024-08-01 04:50:08', '2024-08-01 04:50:08', 0, NULL, '2024-08-01 08:50:08', '2024-08-01 08:50:08'),
(817, 2, '2024-08-01 04:50:09', '2024-08-01 04:50:09', 0, NULL, '2024-08-01 08:50:09', '2024-08-01 08:50:09'),
(818, 3, '2024-08-01 04:50:09', '2024-08-01 04:50:09', 0, NULL, '2024-08-01 08:50:09', '2024-08-01 08:50:09'),
(819, 5, '2024-08-01 04:50:10', '2024-08-01 04:50:10', 0, NULL, '2024-08-01 08:50:10', '2024-08-01 08:50:10'),
(820, 1, '2024-08-01 05:00:03', '2024-08-01 05:00:03', 0, NULL, '2024-08-01 09:00:03', '2024-08-01 09:00:03'),
(821, 2, '2024-08-01 05:00:04', '2024-08-01 05:00:04', 0, NULL, '2024-08-01 09:00:04', '2024-08-01 09:00:04'),
(822, 3, '2024-08-01 05:00:05', '2024-08-01 05:00:05', 0, NULL, '2024-08-01 09:00:05', '2024-08-01 09:00:05'),
(823, 5, '2024-08-01 05:00:05', '2024-08-01 05:00:05', 0, NULL, '2024-08-01 09:00:06', '2024-08-01 09:00:06'),
(824, 1, '2024-08-01 05:05:04', '2024-08-01 05:05:04', 0, NULL, '2024-08-01 09:05:04', '2024-08-01 09:05:04'),
(825, 2, '2024-08-01 05:10:03', '2024-08-01 05:10:03', 0, NULL, '2024-08-01 09:10:04', '2024-08-01 09:10:04'),
(826, 3, '2024-08-01 05:10:05', '2024-08-01 05:10:05', 0, NULL, '2024-08-01 09:10:05', '2024-08-01 09:10:05'),
(827, 5, '2024-08-01 05:10:06', '2024-08-01 05:10:06', 0, NULL, '2024-08-01 09:10:06', '2024-08-01 09:10:06'),
(828, 1, '2024-08-01 05:15:05', '2024-08-01 05:15:05', 0, NULL, '2024-08-01 09:15:05', '2024-08-01 09:15:05'),
(829, 2, '2024-08-01 05:15:06', '2024-08-01 05:15:06', 0, NULL, '2024-08-01 09:15:06', '2024-08-01 09:15:06'),
(830, 3, '2024-08-01 05:20:05', '2024-08-01 05:20:05', 0, NULL, '2024-08-01 09:20:06', '2024-08-01 09:20:06'),
(831, 5, '2024-08-01 05:20:06', '2024-08-01 05:20:06', 0, NULL, '2024-08-01 09:20:06', '2024-08-01 09:20:06'),
(832, 1, '2024-08-01 05:25:06', '2024-08-01 05:25:06', 0, NULL, '2024-08-01 09:25:06', '2024-08-01 09:25:06'),
(833, 2, '2024-08-01 05:25:06', '2024-08-01 05:25:06', 0, NULL, '2024-08-01 09:25:07', '2024-08-01 09:25:07'),
(834, 3, '2024-08-01 05:25:07', '2024-08-01 05:25:07', 0, NULL, '2024-08-01 09:25:07', '2024-08-01 09:25:07'),
(835, 5, '2024-08-01 05:30:04', '2024-08-01 05:30:04', 0, NULL, '2024-08-01 09:30:05', '2024-08-01 09:30:05'),
(836, 1, '2024-08-01 05:35:06', '2024-08-01 05:35:06', 0, NULL, '2024-08-01 09:35:06', '2024-08-01 09:35:06'),
(837, 2, '2024-08-01 05:35:06', '2024-08-01 05:35:06', 0, NULL, '2024-08-01 09:35:07', '2024-08-01 09:35:07'),
(838, 3, '2024-08-01 05:35:07', '2024-08-01 05:35:07', 0, NULL, '2024-08-01 09:35:07', '2024-08-01 09:35:07'),
(839, 5, '2024-08-01 05:35:08', '2024-08-01 05:35:08', 0, NULL, '2024-08-01 09:35:08', '2024-08-01 09:35:08'),
(840, 1, '2024-08-01 05:45:03', '2024-08-01 05:45:03', 0, NULL, '2024-08-01 09:45:03', '2024-08-01 09:45:03'),
(841, 2, '2024-08-01 05:45:04', '2024-08-01 05:45:04', 0, NULL, '2024-08-01 09:45:05', '2024-08-01 09:45:05'),
(842, 3, '2024-08-01 05:45:05', '2024-08-01 05:45:05', 0, NULL, '2024-08-01 09:45:05', '2024-08-01 09:45:05'),
(843, 5, '2024-08-01 05:45:05', '2024-08-01 05:45:05', 0, NULL, '2024-08-01 09:45:06', '2024-08-01 09:45:06'),
(844, 1, '2024-08-01 05:55:03', '2024-08-01 05:55:03', 0, NULL, '2024-08-01 09:55:04', '2024-08-01 09:55:04'),
(845, 2, '2024-08-01 05:55:04', '2024-08-01 05:55:04', 0, NULL, '2024-08-01 09:55:04', '2024-08-01 09:55:04'),
(846, 3, '2024-08-01 05:55:04', '2024-08-01 05:55:04', 0, NULL, '2024-08-01 09:55:05', '2024-08-01 09:55:05'),
(847, 5, '2024-08-01 05:55:05', '2024-08-01 05:55:05', 0, NULL, '2024-08-01 09:55:06', '2024-08-01 09:55:06'),
(848, 1, '2024-08-01 06:00:09', '2024-08-01 06:00:09', 0, NULL, '2024-08-01 10:00:09', '2024-08-01 10:00:09'),
(849, 2, '2024-08-01 06:00:10', '2024-08-01 06:00:10', 0, NULL, '2024-08-01 10:00:10', '2024-08-01 10:00:10'),
(850, 3, '2024-08-01 06:00:10', '2024-08-01 06:00:10', 0, NULL, '2024-08-01 10:00:11', '2024-08-01 10:00:11'),
(851, 5, '2024-08-01 06:00:11', '2024-08-01 06:00:11', 0, NULL, '2024-08-01 10:00:11', '2024-08-01 10:00:11'),
(852, 1, '2024-08-01 06:10:10', '2024-08-01 06:10:10', 0, NULL, '2024-08-01 10:10:11', '2024-08-01 10:10:11'),
(853, 2, '2024-08-01 06:10:11', '2024-08-01 06:10:11', 0, NULL, '2024-08-01 10:10:11', '2024-08-01 10:10:11'),
(854, 3, '2024-08-01 06:10:11', '2024-08-01 06:10:11', 0, NULL, '2024-08-01 10:10:11', '2024-08-01 10:10:11'),
(855, 5, '2024-08-01 06:10:12', '2024-08-01 06:10:12', 0, NULL, '2024-08-01 10:10:12', '2024-08-01 10:10:12'),
(856, 1, '2024-08-01 06:20:05', '2024-08-01 06:20:06', 0, NULL, '2024-08-01 10:20:09', '2024-08-01 10:20:09'),
(857, 2, '2024-08-01 06:20:10', '2024-08-01 06:20:10', 0, NULL, '2024-08-01 10:20:10', '2024-08-01 10:20:10'),
(858, 3, '2024-08-01 06:20:10', '2024-08-01 06:20:10', 0, NULL, '2024-08-01 10:20:10', '2024-08-01 10:20:10'),
(859, 5, '2024-08-01 06:20:10', '2024-08-01 06:20:10', 0, NULL, '2024-08-01 10:20:10', '2024-08-01 10:20:10'),
(860, 1, '2024-08-01 06:30:04', '2024-08-01 06:30:05', 0, NULL, '2024-08-01 10:30:05', '2024-08-01 10:30:05'),
(861, 2, '2024-08-01 06:30:06', '2024-08-01 06:30:06', 0, NULL, '2024-08-01 10:30:06', '2024-08-01 10:30:06'),
(862, 3, '2024-08-01 06:30:06', '2024-08-01 06:30:06', 0, NULL, '2024-08-01 10:30:07', '2024-08-01 10:30:07'),
(863, 5, '2024-08-01 06:30:07', '2024-08-01 06:30:07', 0, NULL, '2024-08-01 10:30:07', '2024-08-01 10:30:07'),
(864, 1, '2024-08-01 06:40:03', '2024-08-01 06:40:03', 0, NULL, '2024-08-01 10:40:03', '2024-08-01 10:40:03'),
(865, 2, '2024-08-01 06:40:04', '2024-08-01 06:40:04', 0, NULL, '2024-08-01 10:40:04', '2024-08-01 10:40:04'),
(866, 3, '2024-08-01 06:40:04', '2024-08-01 06:40:04', 0, NULL, '2024-08-01 10:40:05', '2024-08-01 10:40:05'),
(867, 5, '2024-08-01 06:40:07', '2024-08-01 06:40:08', 0, NULL, '2024-08-01 10:40:09', '2024-08-01 10:40:09'),
(868, 1, '2024-08-01 06:45:06', '2024-08-01 06:45:06', 0, NULL, '2024-08-01 10:45:06', '2024-08-01 10:45:06'),
(869, 2, '2024-08-01 06:45:06', '2024-08-01 06:45:06', 0, NULL, '2024-08-01 10:45:07', '2024-08-01 10:45:07'),
(870, 3, '2024-08-01 06:45:07', '2024-08-01 06:45:07', 0, NULL, '2024-08-01 10:45:07', '2024-08-01 10:45:07'),
(871, 5, '2024-08-01 06:50:03', '2024-08-01 06:50:03', 0, NULL, '2024-08-01 10:50:03', '2024-08-01 10:50:03'),
(872, 1, '2024-08-01 06:55:05', '2024-08-01 06:55:05', 0, NULL, '2024-08-01 10:55:06', '2024-08-01 10:55:06'),
(873, 2, '2024-08-01 06:55:09', '2024-08-01 06:55:09', 0, NULL, '2024-08-01 10:55:09', '2024-08-01 10:55:09'),
(874, 3, '2024-08-01 06:55:09', '2024-08-01 06:55:09', 0, NULL, '2024-08-01 10:55:10', '2024-08-01 10:55:10'),
(875, 5, '2024-08-01 06:55:10', '2024-08-01 06:55:10', 0, NULL, '2024-08-01 10:55:10', '2024-08-01 10:55:10'),
(876, 1, '2024-08-01 07:05:03', '2024-08-01 07:05:03', 0, NULL, '2024-08-01 11:05:03', '2024-08-01 11:05:03'),
(877, 2, '2024-08-01 07:05:04', '2024-08-01 07:05:04', 0, NULL, '2024-08-01 11:05:05', '2024-08-01 11:05:05'),
(878, 3, '2024-08-01 07:05:05', '2024-08-01 07:05:05', 0, NULL, '2024-08-01 11:05:05', '2024-08-01 11:05:05'),
(879, 5, '2024-08-01 07:05:06', '2024-08-01 07:05:06', 0, NULL, '2024-08-01 11:05:06', '2024-08-01 11:05:06'),
(880, 1, '2024-08-01 07:10:04', '2024-08-01 07:10:04', 0, NULL, '2024-08-01 11:10:05', '2024-08-01 11:10:05'),
(881, 1, '2024-08-01 07:15:06', '2024-08-01 07:15:06', 0, NULL, '2024-08-01 11:15:06', '2024-08-01 11:15:06'),
(882, 2, '2024-08-01 07:15:07', '2024-08-01 07:15:07', 0, NULL, '2024-08-01 11:15:07', '2024-08-01 11:15:07'),
(883, 3, '2024-08-01 07:15:07', '2024-08-01 07:15:07', 0, NULL, '2024-08-01 11:15:08', '2024-08-01 11:15:08'),
(884, 5, '2024-08-01 07:15:08', '2024-08-01 07:15:08', 0, NULL, '2024-08-01 11:15:09', '2024-08-01 11:15:09'),
(885, 1, '2024-08-01 07:25:02', '2024-08-01 07:25:02', 0, NULL, '2024-08-01 11:25:02', '2024-08-01 11:25:02'),
(886, 2, '2024-08-01 07:25:03', '2024-08-01 07:25:03', 0, NULL, '2024-08-01 11:25:03', '2024-08-01 11:25:03'),
(887, 3, '2024-08-01 07:25:03', '2024-08-01 07:25:03', 0, NULL, '2024-08-01 11:25:03', '2024-08-01 11:25:03'),
(888, 5, '2024-08-01 07:25:04', '2024-08-01 07:25:05', 0, NULL, '2024-08-01 11:25:05', '2024-08-01 11:25:05'),
(889, 1, '2024-08-01 07:35:05', '2024-08-01 07:35:05', 0, NULL, '2024-08-01 11:35:06', '2024-08-01 11:35:06'),
(890, 2, '2024-08-01 07:35:06', '2024-08-01 07:35:06', 0, NULL, '2024-08-01 11:35:07', '2024-08-01 11:35:07'),
(891, 3, '2024-08-01 07:35:07', '2024-08-01 07:35:07', 0, NULL, '2024-08-01 11:35:07', '2024-08-01 11:35:07'),
(892, 5, '2024-08-01 07:35:08', '2024-08-01 07:35:08', 0, NULL, '2024-08-01 11:35:08', '2024-08-01 11:35:08'),
(893, 1, '2024-08-01 07:45:04', '2024-08-01 07:45:04', 0, NULL, '2024-08-01 11:45:05', '2024-08-01 11:45:05'),
(894, 2, '2024-08-01 07:45:05', '2024-08-01 07:45:05', 0, NULL, '2024-08-01 11:45:05', '2024-08-01 11:45:05'),
(895, 3, '2024-08-01 07:45:06', '2024-08-01 07:45:06', 0, NULL, '2024-08-01 11:45:06', '2024-08-01 11:45:06'),
(896, 5, '2024-08-01 07:45:06', '2024-08-01 07:45:06', 0, NULL, '2024-08-01 11:45:08', '2024-08-01 11:45:08'),
(897, 1, '2024-08-01 07:50:09', '2024-08-01 07:50:09', 0, NULL, '2024-08-01 11:50:09', '2024-08-01 11:50:09'),
(898, 2, '2024-08-01 07:50:10', '2024-08-01 07:50:10', 0, NULL, '2024-08-01 11:50:10', '2024-08-01 11:50:10'),
(899, 3, '2024-08-01 07:50:10', '2024-08-01 07:50:10', 0, NULL, '2024-08-01 11:50:10', '2024-08-01 11:50:10'),
(900, 5, '2024-08-01 07:50:11', '2024-08-01 07:50:11', 0, NULL, '2024-08-01 11:50:11', '2024-08-01 11:50:11'),
(901, 1, '2024-08-01 08:00:11', '2024-08-01 08:00:11', 0, NULL, '2024-08-01 12:00:12', '2024-08-01 12:00:12'),
(902, 2, '2024-08-01 08:00:12', '2024-08-01 08:00:12', 0, NULL, '2024-08-01 12:00:12', '2024-08-01 12:00:12'),
(903, 3, '2024-08-01 08:00:12', '2024-08-01 08:00:12', 0, NULL, '2024-08-01 12:00:13', '2024-08-01 12:00:13'),
(904, 5, '2024-08-01 08:00:13', '2024-08-01 08:00:13', 0, NULL, '2024-08-01 12:00:13', '2024-08-01 12:00:13'),
(905, 1, '2024-08-01 08:10:07', '2024-08-01 08:10:07', 0, NULL, '2024-08-01 12:10:07', '2024-08-01 12:10:07'),
(906, 2, '2024-08-01 08:10:07', '2024-08-01 08:10:07', 0, NULL, '2024-08-01 12:10:07', '2024-08-01 12:10:07'),
(907, 3, '2024-08-01 08:10:08', '2024-08-01 08:10:08', 0, NULL, '2024-08-01 12:10:08', '2024-08-01 12:10:08'),
(908, 5, '2024-08-01 08:10:08', '2024-08-01 08:10:08', 0, NULL, '2024-08-01 12:10:09', '2024-08-01 12:10:09'),
(909, 1, '2024-08-01 08:20:07', '2024-08-01 08:20:07', 0, NULL, '2024-08-01 12:20:08', '2024-08-01 12:20:08'),
(910, 2, '2024-08-01 08:20:08', '2024-08-01 08:20:08', 0, NULL, '2024-08-01 12:20:08', '2024-08-01 12:20:08'),
(911, 3, '2024-08-01 08:20:08', '2024-08-01 08:20:08', 0, NULL, '2024-08-01 12:20:09', '2024-08-01 12:20:09'),
(912, 5, '2024-08-01 08:20:09', '2024-08-01 08:20:09', 0, NULL, '2024-08-01 12:20:09', '2024-08-01 12:20:09'),
(913, 1, '2024-08-01 08:30:04', '2024-08-01 08:30:04', 0, NULL, '2024-08-01 12:30:05', '2024-08-01 12:30:05'),
(914, 2, '2024-08-01 08:30:05', '2024-08-01 08:30:05', 0, NULL, '2024-08-01 12:30:05', '2024-08-01 12:30:05'),
(915, 3, '2024-08-01 08:30:06', '2024-08-01 08:30:06', 0, NULL, '2024-08-01 12:30:06', '2024-08-01 12:30:06');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(916, 5, '2024-08-01 08:30:06', '2024-08-01 08:30:06', 0, NULL, '2024-08-01 12:30:06', '2024-08-01 12:30:06'),
(917, 1, '2024-08-01 08:40:04', '2024-08-01 08:40:04', 0, NULL, '2024-08-01 12:40:05', '2024-08-01 12:40:05'),
(918, 2, '2024-08-01 08:40:05', '2024-08-01 08:40:05', 0, NULL, '2024-08-01 12:40:06', '2024-08-01 12:40:06'),
(919, 3, '2024-08-01 08:40:06', '2024-08-01 08:40:06', 0, NULL, '2024-08-01 12:40:07', '2024-08-01 12:40:07'),
(920, 5, '2024-08-01 08:40:07', '2024-08-01 08:40:07', 0, NULL, '2024-08-01 12:40:07', '2024-08-01 12:40:07'),
(921, 1, '2024-08-01 08:50:08', '2024-08-01 08:50:08', 0, NULL, '2024-08-01 12:50:08', '2024-08-01 12:50:08'),
(922, 2, '2024-08-01 08:50:09', '2024-08-01 08:50:09', 0, NULL, '2024-08-01 12:50:09', '2024-08-01 12:50:09'),
(923, 3, '2024-08-01 08:50:09', '2024-08-01 08:50:09', 0, NULL, '2024-08-01 12:50:09', '2024-08-01 12:50:09'),
(924, 5, '2024-08-01 08:50:09', '2024-08-01 08:50:09', 0, NULL, '2024-08-01 12:50:09', '2024-08-01 12:50:09'),
(925, 1, '2024-08-01 09:00:05', '2024-08-01 09:00:05', 0, NULL, '2024-08-01 13:00:05', '2024-08-01 13:00:05'),
(926, 2, '2024-08-01 09:00:06', '2024-08-01 09:00:06', 0, NULL, '2024-08-01 13:00:07', '2024-08-01 13:00:07'),
(927, 3, '2024-08-01 09:00:07', '2024-08-01 09:00:07', 0, NULL, '2024-08-01 13:00:07', '2024-08-01 13:00:07'),
(928, 5, '2024-08-01 09:00:07', '2024-08-01 09:00:08', 0, NULL, '2024-08-01 13:00:08', '2024-08-01 13:00:08'),
(929, 1, '2024-08-01 09:10:08', '2024-08-01 09:10:08', 0, NULL, '2024-08-01 13:10:09', '2024-08-01 13:10:09'),
(930, 2, '2024-08-01 09:10:09', '2024-08-01 09:10:09', 0, NULL, '2024-08-01 13:10:09', '2024-08-01 13:10:09'),
(931, 3, '2024-08-01 09:10:09', '2024-08-01 09:10:09', 0, NULL, '2024-08-01 13:10:09', '2024-08-01 13:10:09'),
(932, 5, '2024-08-01 09:10:09', '2024-08-01 09:10:09', 0, NULL, '2024-08-01 13:10:09', '2024-08-01 13:10:09'),
(933, 1, '2024-08-01 09:20:03', '2024-08-01 09:20:03', 0, NULL, '2024-08-01 13:20:03', '2024-08-01 13:20:03'),
(934, 2, '2024-08-01 09:20:03', '2024-08-01 09:20:03', 0, NULL, '2024-08-01 13:20:04', '2024-08-01 13:20:04'),
(935, 3, '2024-08-01 09:20:04', '2024-08-01 09:20:04', 0, NULL, '2024-08-01 13:20:04', '2024-08-01 13:20:04'),
(936, 5, '2024-08-01 09:20:05', '2024-08-01 09:20:05', 0, NULL, '2024-08-01 13:20:05', '2024-08-01 13:20:05'),
(937, 1, '2024-08-01 09:25:06', '2024-08-01 09:25:06', 0, NULL, '2024-08-01 13:25:06', '2024-08-01 13:25:06'),
(938, 2, '2024-08-01 09:25:06', '2024-08-01 09:25:06', 0, NULL, '2024-08-01 13:25:07', '2024-08-01 13:25:07'),
(939, 3, '2024-08-01 09:25:07', '2024-08-01 09:25:07', 0, NULL, '2024-08-01 13:25:07', '2024-08-01 13:25:07'),
(940, 5, '2024-08-01 09:25:07', '2024-08-01 09:25:07', 0, NULL, '2024-08-01 13:25:07', '2024-08-01 13:25:07'),
(941, 1, '2024-08-01 09:30:09', '2024-08-01 09:30:09', 0, NULL, '2024-08-01 13:30:09', '2024-08-01 13:30:09'),
(942, 2, '2024-08-01 09:30:10', '2024-08-01 09:30:10', 0, NULL, '2024-08-01 13:30:10', '2024-08-01 13:30:10'),
(943, 3, '2024-08-01 09:30:10', '2024-08-01 09:30:10', 0, NULL, '2024-08-01 13:30:10', '2024-08-01 13:30:10'),
(944, 5, '2024-08-01 09:30:10', '2024-08-01 09:30:10', 0, NULL, '2024-08-01 13:30:10', '2024-08-01 13:30:10'),
(945, 1, '2024-08-01 09:40:03', '2024-08-01 09:40:03', 0, NULL, '2024-08-01 13:40:04', '2024-08-01 13:40:04'),
(946, 2, '2024-08-01 09:40:04', '2024-08-01 09:40:04', 0, NULL, '2024-08-01 13:40:07', '2024-08-01 13:40:07'),
(947, 3, '2024-08-01 09:40:07', '2024-08-01 09:40:07', 0, NULL, '2024-08-01 13:40:08', '2024-08-01 13:40:08'),
(948, 5, '2024-08-01 09:40:08', '2024-08-01 09:40:08', 0, NULL, '2024-08-01 13:40:08', '2024-08-01 13:40:08'),
(949, 1, '2024-08-01 09:45:06', '2024-08-01 09:45:06', 0, NULL, '2024-08-01 13:45:06', '2024-08-01 13:45:06'),
(950, 2, '2024-08-01 09:45:06', '2024-08-01 09:45:06', 0, NULL, '2024-08-01 13:45:06', '2024-08-01 13:45:06'),
(951, 1, '2024-08-01 09:50:07', '2024-08-01 09:50:07', 0, NULL, '2024-08-01 13:50:07', '2024-08-01 13:50:07'),
(952, 2, '2024-08-01 09:50:07', '2024-08-01 09:50:07', 0, NULL, '2024-08-01 13:50:08', '2024-08-01 13:50:08'),
(953, 3, '2024-08-01 09:50:08', '2024-08-01 09:50:08', 0, NULL, '2024-08-01 13:50:08', '2024-08-01 13:50:08'),
(954, 5, '2024-08-01 09:50:08', '2024-08-01 09:50:08', 0, NULL, '2024-08-01 13:50:08', '2024-08-01 13:50:08'),
(955, 1, '2024-08-01 10:00:08', '2024-08-01 10:00:08', 0, NULL, '2024-08-01 14:00:08', '2024-08-01 14:00:08'),
(956, 2, '2024-08-01 10:00:08', '2024-08-01 10:00:08', 0, NULL, '2024-08-01 14:00:09', '2024-08-01 14:00:09'),
(957, 3, '2024-08-01 10:00:09', '2024-08-01 10:00:09', 0, NULL, '2024-08-01 14:00:09', '2024-08-01 14:00:09'),
(958, 5, '2024-08-01 10:00:09', '2024-08-01 10:00:09', 0, NULL, '2024-08-01 14:00:10', '2024-08-01 14:00:10'),
(959, 1, '2024-08-01 10:10:05', '2024-08-01 10:10:05', 0, NULL, '2024-08-01 14:10:07', '2024-08-01 14:10:07'),
(960, 2, '2024-08-01 10:10:08', '2024-08-01 10:10:08', 0, NULL, '2024-08-01 14:10:08', '2024-08-01 14:10:08'),
(961, 3, '2024-08-01 10:10:09', '2024-08-01 10:10:09', 0, NULL, '2024-08-01 14:10:09', '2024-08-01 14:10:09'),
(962, 5, '2024-08-01 10:10:09', '2024-08-01 10:10:09', 0, NULL, '2024-08-01 14:10:09', '2024-08-01 14:10:09'),
(963, 1, '2024-08-01 10:15:06', '2024-08-01 10:15:06', 0, NULL, '2024-08-01 14:15:06', '2024-08-01 14:15:06'),
(964, 1, '2024-08-01 10:20:08', '2024-08-01 10:20:08', 0, NULL, '2024-08-01 14:20:08', '2024-08-01 14:20:08'),
(965, 2, '2024-08-01 10:20:09', '2024-08-01 10:20:09', 0, NULL, '2024-08-01 14:20:09', '2024-08-01 14:20:09'),
(966, 3, '2024-08-01 10:20:09', '2024-08-01 10:20:09', 0, NULL, '2024-08-01 14:20:09', '2024-08-01 14:20:09'),
(967, 5, '2024-08-01 10:20:12', '2024-08-01 10:20:12', 0, NULL, '2024-08-01 14:20:12', '2024-08-01 14:20:12'),
(968, 1, '2024-08-01 10:25:10', '2024-08-01 10:25:10', 0, NULL, '2024-08-01 14:25:10', '2024-08-01 14:25:10'),
(969, 2, '2024-08-01 10:25:10', '2024-08-01 10:25:10', 0, NULL, '2024-08-01 14:25:11', '2024-08-01 14:25:11'),
(970, 3, '2024-08-01 10:25:11', '2024-08-01 10:25:11', 0, NULL, '2024-08-01 14:25:11', '2024-08-01 14:25:11'),
(971, 5, '2024-08-01 10:30:04', '2024-08-01 10:30:04', 0, NULL, '2024-08-01 14:30:05', '2024-08-01 14:30:05'),
(972, 1, '2024-08-01 10:35:10', '2024-08-01 10:35:10', 0, NULL, '2024-08-01 14:35:10', '2024-08-01 14:35:10'),
(973, 2, '2024-08-01 10:35:10', '2024-08-01 10:35:10', 0, NULL, '2024-08-01 14:35:11', '2024-08-01 14:35:11'),
(974, 3, '2024-08-01 10:35:11', '2024-08-01 10:35:11', 0, NULL, '2024-08-01 14:35:11', '2024-08-01 14:35:11'),
(975, 5, '2024-08-01 10:35:11', '2024-08-01 10:35:11', 0, NULL, '2024-08-01 14:35:11', '2024-08-01 14:35:11'),
(976, 1, '2024-08-01 10:45:07', '2024-08-01 10:45:07', 0, NULL, '2024-08-01 14:45:08', '2024-08-01 14:45:08'),
(977, 2, '2024-08-01 10:45:08', '2024-08-01 10:45:08', 0, NULL, '2024-08-01 14:45:08', '2024-08-01 14:45:08'),
(978, 3, '2024-08-01 10:45:09', '2024-08-01 10:45:09', 0, NULL, '2024-08-01 14:45:09', '2024-08-01 14:45:09'),
(979, 5, '2024-08-01 10:45:09', '2024-08-01 10:45:09', 0, NULL, '2024-08-01 14:45:09', '2024-08-01 14:45:09'),
(980, 1, '2024-08-01 10:55:07', '2024-08-01 10:55:07', 0, NULL, '2024-08-01 14:55:07', '2024-08-01 14:55:07'),
(981, 2, '2024-08-01 10:55:08', '2024-08-01 10:55:08', 0, NULL, '2024-08-01 14:55:08', '2024-08-01 14:55:08'),
(982, 3, '2024-08-01 10:55:08', '2024-08-01 10:55:08', 0, NULL, '2024-08-01 14:55:08', '2024-08-01 14:55:08'),
(983, 5, '2024-08-01 10:55:09', '2024-08-01 10:55:09', 0, NULL, '2024-08-01 14:55:09', '2024-08-01 14:55:09'),
(984, 1, '2024-08-01 11:05:05', '2024-08-01 11:05:05', 0, NULL, '2024-08-01 15:05:05', '2024-08-01 15:05:05'),
(985, 2, '2024-08-01 11:05:06', '2024-08-01 11:05:06', 0, NULL, '2024-08-01 15:05:07', '2024-08-01 15:05:07'),
(986, 3, '2024-08-01 11:05:07', '2024-08-01 11:05:07', 0, NULL, '2024-08-01 15:05:07', '2024-08-01 15:05:07'),
(987, 5, '2024-08-01 11:05:07', '2024-08-01 11:05:07', 0, NULL, '2024-08-01 15:05:08', '2024-08-01 15:05:08'),
(988, 1, '2024-08-01 11:15:06', '2024-08-01 11:15:06', 0, NULL, '2024-08-01 15:15:07', '2024-08-01 15:15:07'),
(989, 2, '2024-08-01 11:15:07', '2024-08-01 11:15:07', 0, NULL, '2024-08-01 15:15:07', '2024-08-01 15:15:07'),
(990, 3, '2024-08-01 11:15:08', '2024-08-01 11:15:08', 0, NULL, '2024-08-01 15:15:08', '2024-08-01 15:15:08'),
(991, 5, '2024-08-01 11:15:08', '2024-08-01 11:15:08', 0, NULL, '2024-08-01 15:15:08', '2024-08-01 15:15:08'),
(992, 1, '2024-08-01 11:25:07', '2024-08-01 11:25:07', 0, NULL, '2024-08-01 15:25:08', '2024-08-01 15:25:08'),
(993, 2, '2024-08-01 11:25:08', '2024-08-01 11:25:08', 0, NULL, '2024-08-01 15:25:08', '2024-08-01 15:25:08'),
(994, 3, '2024-08-01 11:25:09', '2024-08-01 11:25:09', 0, NULL, '2024-08-01 15:25:09', '2024-08-01 15:25:09'),
(995, 5, '2024-08-01 11:25:09', '2024-08-01 11:25:09', 0, NULL, '2024-08-01 15:25:10', '2024-08-01 15:25:10'),
(996, 1, '2024-08-01 11:35:07', '2024-08-01 11:35:07', 0, NULL, '2024-08-01 15:35:07', '2024-08-01 15:35:07'),
(997, 2, '2024-08-01 11:35:07', '2024-08-01 11:35:07', 0, NULL, '2024-08-01 15:35:08', '2024-08-01 15:35:08'),
(998, 3, '2024-08-01 11:35:08', '2024-08-01 11:35:08', 0, NULL, '2024-08-01 15:35:08', '2024-08-01 15:35:08'),
(999, 5, '2024-08-01 11:35:08', '2024-08-01 11:35:08', 0, NULL, '2024-08-01 15:35:08', '2024-08-01 15:35:08'),
(1000, 1, '2024-08-01 11:45:04', '2024-08-01 11:45:04', 0, NULL, '2024-08-01 15:45:05', '2024-08-01 15:45:05'),
(1001, 2, '2024-08-01 11:45:05', '2024-08-01 11:45:05', 0, NULL, '2024-08-01 15:45:06', '2024-08-01 15:45:06'),
(1002, 3, '2024-08-01 11:45:06', '2024-08-01 11:45:06', 0, NULL, '2024-08-01 15:45:06', '2024-08-01 15:45:06'),
(1003, 5, '2024-08-01 11:45:07', '2024-08-01 11:45:07', 0, NULL, '2024-08-01 15:45:07', '2024-08-01 15:45:07'),
(1004, 1, '2024-08-01 11:55:04', '2024-08-01 11:55:04', 0, NULL, '2024-08-01 15:55:04', '2024-08-01 15:55:04'),
(1005, 2, '2024-08-01 11:55:05', '2024-08-01 11:55:05', 0, NULL, '2024-08-01 15:55:05', '2024-08-01 15:55:05'),
(1006, 3, '2024-08-01 11:55:05', '2024-08-01 11:55:05', 0, NULL, '2024-08-01 15:55:05', '2024-08-01 15:55:05'),
(1007, 5, '2024-08-01 11:55:05', '2024-08-01 11:55:05', 0, NULL, '2024-08-01 15:55:06', '2024-08-01 15:55:06'),
(1008, 1, '2024-08-01 12:00:05', '2024-08-01 12:00:05', 0, NULL, '2024-08-01 16:00:06', '2024-08-01 16:00:06'),
(1009, 1, '2024-08-01 12:05:09', '2024-08-01 12:05:09', 0, NULL, '2024-08-01 16:05:09', '2024-08-01 16:05:09'),
(1010, 2, '2024-08-01 12:05:09', '2024-08-01 12:05:09', 0, NULL, '2024-08-01 16:05:09', '2024-08-01 16:05:09'),
(1011, 3, '2024-08-01 12:05:09', '2024-08-01 12:05:09', 0, NULL, '2024-08-01 16:05:10', '2024-08-01 16:05:10'),
(1012, 5, '2024-08-01 12:05:10', '2024-08-01 12:05:10', 0, NULL, '2024-08-01 16:05:10', '2024-08-01 16:05:10'),
(1013, 1, '2024-08-01 12:15:09', '2024-08-01 12:15:09', 0, NULL, '2024-08-01 16:15:09', '2024-08-01 16:15:09'),
(1014, 2, '2024-08-01 12:15:09', '2024-08-01 12:15:09', 0, NULL, '2024-08-01 16:15:09', '2024-08-01 16:15:09'),
(1015, 3, '2024-08-01 12:15:09', '2024-08-01 12:15:09', 0, NULL, '2024-08-01 16:15:09', '2024-08-01 16:15:09'),
(1016, 5, '2024-08-01 12:15:09', '2024-08-01 12:15:10', 0, NULL, '2024-08-01 16:15:10', '2024-08-01 16:15:10'),
(1017, 1, '2024-08-01 12:25:08', '2024-08-01 12:25:08', 0, NULL, '2024-08-01 16:25:09', '2024-08-01 16:25:09'),
(1018, 2, '2024-08-01 12:25:09', '2024-08-01 12:25:09', 0, NULL, '2024-08-01 16:25:09', '2024-08-01 16:25:09'),
(1019, 3, '2024-08-01 12:25:10', '2024-08-01 12:25:10', 0, NULL, '2024-08-01 16:25:10', '2024-08-01 16:25:10'),
(1020, 5, '2024-08-01 12:25:10', '2024-08-01 12:25:10', 0, NULL, '2024-08-01 16:25:10', '2024-08-01 16:25:10'),
(1021, 1, '2024-08-01 12:35:06', '2024-08-01 12:35:06', 0, NULL, '2024-08-01 16:35:07', '2024-08-01 16:35:07'),
(1022, 2, '2024-08-01 12:35:07', '2024-08-01 12:35:07', 0, NULL, '2024-08-01 16:35:08', '2024-08-01 16:35:08'),
(1023, 3, '2024-08-01 12:35:08', '2024-08-01 12:35:08', 0, NULL, '2024-08-01 16:35:08', '2024-08-01 16:35:08'),
(1024, 5, '2024-08-01 12:35:08', '2024-08-01 12:35:08', 0, NULL, '2024-08-01 16:35:08', '2024-08-01 16:35:08'),
(1025, 1, '2024-08-01 12:40:07', '2024-08-01 12:40:08', 0, NULL, '2024-08-01 16:40:08', '2024-08-01 16:40:08'),
(1026, 2, '2024-08-01 12:45:07', '2024-08-01 12:45:07', 0, NULL, '2024-08-01 16:45:07', '2024-08-01 16:45:07'),
(1027, 3, '2024-08-01 12:45:08', '2024-08-01 12:45:08', 0, NULL, '2024-08-01 16:45:08', '2024-08-01 16:45:08'),
(1028, 5, '2024-08-01 12:45:08', '2024-08-01 12:45:08', 0, NULL, '2024-08-01 16:45:08', '2024-08-01 16:45:08'),
(1029, 1, '2024-08-01 12:50:05', '2024-08-01 12:50:05', 0, NULL, '2024-08-01 16:50:05', '2024-08-01 16:50:05'),
(1030, 2, '2024-08-01 12:55:03', '2024-08-01 12:55:03', 0, NULL, '2024-08-01 16:55:03', '2024-08-01 16:55:03'),
(1031, 3, '2024-08-01 12:55:04', '2024-08-01 12:55:04', 0, NULL, '2024-08-01 16:55:04', '2024-08-01 16:55:04'),
(1032, 5, '2024-08-01 12:55:04', '2024-08-01 12:55:04', 0, NULL, '2024-08-01 16:55:04', '2024-08-01 16:55:04'),
(1033, 1, '2024-08-01 13:00:06', '2024-08-01 13:00:06', 0, NULL, '2024-08-01 17:00:07', '2024-08-01 17:00:07'),
(1034, 2, '2024-08-01 13:00:07', '2024-08-01 13:00:07', 0, NULL, '2024-08-01 17:00:07', '2024-08-01 17:00:07'),
(1035, 3, '2024-08-01 13:00:08', '2024-08-01 13:00:08', 0, NULL, '2024-08-01 17:00:08', '2024-08-01 17:00:08'),
(1036, 5, '2024-08-01 13:00:08', '2024-08-01 13:00:08', 0, NULL, '2024-08-01 17:00:09', '2024-08-01 17:00:09'),
(1037, 1, '2024-08-01 13:05:07', '2024-08-01 13:05:07', 0, NULL, '2024-08-01 17:05:08', '2024-08-01 17:05:08'),
(1038, 2, '2024-08-01 13:10:06', '2024-08-01 13:10:06', 0, NULL, '2024-08-01 17:10:07', '2024-08-01 17:10:07'),
(1039, 3, '2024-08-01 13:10:07', '2024-08-01 13:10:07', 0, NULL, '2024-08-01 17:10:07', '2024-08-01 17:10:07'),
(1040, 5, '2024-08-01 13:10:08', '2024-08-01 13:10:08', 0, NULL, '2024-08-01 17:10:08', '2024-08-01 17:10:08'),
(1041, 1, '2024-08-01 13:15:03', '2024-08-01 13:15:03', 0, NULL, '2024-08-01 17:15:04', '2024-08-01 17:15:04'),
(1042, 1, '2024-08-01 13:20:06', '2024-08-01 13:20:06', 0, NULL, '2024-08-01 17:20:07', '2024-08-01 17:20:07'),
(1043, 2, '2024-08-01 13:20:07', '2024-08-01 13:20:07', 0, NULL, '2024-08-01 17:20:08', '2024-08-01 17:20:08'),
(1044, 3, '2024-08-01 13:20:08', '2024-08-01 13:20:08', 0, NULL, '2024-08-01 17:20:08', '2024-08-01 17:20:08'),
(1045, 5, '2024-08-01 13:20:08', '2024-08-01 13:20:08', 0, NULL, '2024-08-01 17:20:08', '2024-08-01 17:20:08'),
(1046, 1, '2024-08-01 13:30:04', '2024-08-01 13:30:04', 0, NULL, '2024-08-01 17:30:04', '2024-08-01 17:30:04'),
(1047, 2, '2024-08-01 13:30:06', '2024-08-01 13:30:06', 0, NULL, '2024-08-01 17:30:06', '2024-08-01 17:30:06'),
(1048, 3, '2024-08-01 13:30:06', '2024-08-01 13:30:06', 0, NULL, '2024-08-01 17:30:07', '2024-08-01 17:30:07'),
(1049, 5, '2024-08-01 13:30:07', '2024-08-01 13:30:07', 0, NULL, '2024-08-01 17:30:08', '2024-08-01 17:30:08'),
(1050, 1, '2024-08-01 13:40:07', '2024-08-01 13:40:07', 0, NULL, '2024-08-01 17:40:07', '2024-08-01 17:40:07'),
(1051, 2, '2024-08-01 13:40:08', '2024-08-01 13:40:08', 0, NULL, '2024-08-01 17:40:09', '2024-08-01 17:40:09'),
(1052, 3, '2024-08-01 13:40:09', '2024-08-01 13:40:09', 0, NULL, '2024-08-01 17:40:09', '2024-08-01 17:40:09'),
(1053, 5, '2024-08-01 13:40:09', '2024-08-01 13:40:09', 0, NULL, '2024-08-01 17:40:10', '2024-08-01 17:40:10'),
(1054, 1, '2024-08-01 13:50:10', '2024-08-01 13:50:10', 0, NULL, '2024-08-01 17:50:10', '2024-08-01 17:50:10'),
(1055, 2, '2024-08-01 13:50:10', '2024-08-01 13:50:10', 0, NULL, '2024-08-01 17:50:10', '2024-08-01 17:50:10'),
(1056, 3, '2024-08-01 13:50:10', '2024-08-01 13:50:10', 0, NULL, '2024-08-01 17:50:11', '2024-08-01 17:50:11'),
(1057, 5, '2024-08-01 13:50:11', '2024-08-01 13:50:11', 0, NULL, '2024-08-01 17:50:11', '2024-08-01 17:50:11'),
(1058, 1, '2024-08-01 14:00:04', '2024-08-01 14:00:04', 0, NULL, '2024-08-01 18:00:05', '2024-08-01 18:00:05'),
(1059, 2, '2024-08-01 14:00:06', '2024-08-01 14:00:06', 0, NULL, '2024-08-01 18:00:06', '2024-08-01 18:00:06'),
(1060, 3, '2024-08-01 14:00:06', '2024-08-01 14:00:06', 0, NULL, '2024-08-01 18:00:07', '2024-08-01 18:00:07'),
(1061, 5, '2024-08-01 14:00:07', '2024-08-01 14:00:07', 0, NULL, '2024-08-01 18:00:08', '2024-08-01 18:00:08'),
(1062, 1, '2024-08-01 14:10:10', '2024-08-01 14:10:10', 0, NULL, '2024-08-01 18:10:10', '2024-08-01 18:10:10'),
(1063, 2, '2024-08-01 14:10:10', '2024-08-01 14:10:10', 0, NULL, '2024-08-01 18:10:10', '2024-08-01 18:10:10'),
(1064, 3, '2024-08-01 14:10:10', '2024-08-01 14:10:10', 0, NULL, '2024-08-01 18:10:11', '2024-08-01 18:10:11'),
(1065, 5, '2024-08-01 14:10:11', '2024-08-01 14:10:11', 0, NULL, '2024-08-01 18:10:11', '2024-08-01 18:10:11'),
(1066, 1, '2024-08-01 14:20:04', '2024-08-01 14:20:04', 0, NULL, '2024-08-01 18:20:05', '2024-08-01 18:20:05'),
(1067, 2, '2024-08-01 14:20:05', '2024-08-01 14:20:05', 0, NULL, '2024-08-01 18:20:06', '2024-08-01 18:20:06'),
(1068, 3, '2024-08-01 14:20:06', '2024-08-01 14:20:06', 0, NULL, '2024-08-01 18:20:06', '2024-08-01 18:20:06'),
(1069, 5, '2024-08-01 14:20:07', '2024-08-01 14:20:07', 0, NULL, '2024-08-01 18:20:07', '2024-08-01 18:20:07'),
(1070, 1, '2024-08-01 14:25:06', '2024-08-01 14:25:06', 0, NULL, '2024-08-01 18:25:06', '2024-08-01 18:25:06'),
(1071, 2, '2024-08-01 14:25:07', '2024-08-01 14:25:07', 0, NULL, '2024-08-01 18:25:07', '2024-08-01 18:25:07'),
(1072, 3, '2024-08-01 14:30:06', '2024-08-01 14:30:06', 0, NULL, '2024-08-01 18:30:06', '2024-08-01 18:30:06'),
(1073, 5, '2024-08-01 14:30:07', '2024-08-01 14:30:07', 0, NULL, '2024-08-01 18:30:08', '2024-08-01 18:30:08'),
(1074, 1, '2024-08-01 14:35:04', '2024-08-01 14:35:04', 0, NULL, '2024-08-01 18:35:04', '2024-08-01 18:35:04'),
(1075, 2, '2024-08-01 14:35:04', '2024-08-01 14:35:04', 0, NULL, '2024-08-01 18:35:05', '2024-08-01 18:35:05'),
(1076, 1, '2024-08-01 14:40:06', '2024-08-01 14:40:06', 0, NULL, '2024-08-01 18:40:06', '2024-08-01 18:40:06'),
(1077, 2, '2024-08-01 14:40:07', '2024-08-01 14:40:07', 0, NULL, '2024-08-01 18:40:07', '2024-08-01 18:40:07'),
(1078, 3, '2024-08-01 14:40:08', '2024-08-01 14:40:08', 0, NULL, '2024-08-01 18:40:08', '2024-08-01 18:40:08'),
(1079, 5, '2024-08-01 14:40:08', '2024-08-01 14:40:08', 0, NULL, '2024-08-01 18:40:08', '2024-08-01 18:40:08'),
(1080, 1, '2024-08-01 14:50:05', '2024-08-01 14:50:05', 0, NULL, '2024-08-01 18:50:06', '2024-08-01 18:50:06'),
(1081, 2, '2024-08-01 14:50:06', '2024-08-01 14:50:06', 0, NULL, '2024-08-01 18:50:06', '2024-08-01 18:50:06'),
(1082, 3, '2024-08-01 14:50:07', '2024-08-01 14:50:07', 0, NULL, '2024-08-01 18:50:07', '2024-08-01 18:50:07'),
(1083, 5, '2024-08-01 14:50:07', '2024-08-01 14:50:07', 0, NULL, '2024-08-01 18:50:08', '2024-08-01 18:50:08'),
(1084, 1, '2024-08-01 15:00:06', '2024-08-01 15:00:06', 0, NULL, '2024-08-01 19:00:07', '2024-08-01 19:00:07'),
(1085, 2, '2024-08-01 15:00:07', '2024-08-01 15:00:07', 0, NULL, '2024-08-01 19:00:10', '2024-08-01 19:00:10'),
(1086, 3, '2024-08-01 15:00:10', '2024-08-01 15:00:10', 0, NULL, '2024-08-01 19:00:10', '2024-08-01 19:00:10'),
(1087, 5, '2024-08-01 15:00:11', '2024-08-01 15:00:11', 0, NULL, '2024-08-01 19:00:11', '2024-08-01 19:00:11'),
(1088, 1, '2024-08-01 15:10:03', '2024-08-01 15:10:03', 0, NULL, '2024-08-01 19:10:03', '2024-08-01 19:10:03'),
(1089, 2, '2024-08-01 15:10:04', '2024-08-01 15:10:04', 0, NULL, '2024-08-01 19:10:04', '2024-08-01 19:10:04'),
(1090, 3, '2024-08-01 15:10:04', '2024-08-01 15:10:04', 0, NULL, '2024-08-01 19:10:05', '2024-08-01 19:10:05'),
(1091, 5, '2024-08-01 15:10:06', '2024-08-01 15:10:06', 0, NULL, '2024-08-01 19:10:06', '2024-08-01 19:10:06'),
(1092, 1, '2024-08-01 15:15:05', '2024-08-01 15:15:05', 0, NULL, '2024-08-01 19:15:06', '2024-08-01 19:15:06'),
(1093, 2, '2024-08-01 15:15:06', '2024-08-01 15:15:06', 0, NULL, '2024-08-01 19:15:06', '2024-08-01 19:15:06'),
(1094, 3, '2024-08-01 15:15:07', '2024-08-01 15:15:07', 0, NULL, '2024-08-01 19:15:07', '2024-08-01 19:15:07'),
(1095, 5, '2024-08-01 15:20:04', '2024-08-01 15:20:04', 0, NULL, '2024-08-01 19:20:04', '2024-08-01 19:20:04'),
(1096, 1, '2024-08-01 15:25:03', '2024-08-01 15:25:03', 0, NULL, '2024-08-01 19:25:04', '2024-08-01 19:25:04'),
(1097, 2, '2024-08-01 15:25:04', '2024-08-01 15:25:04', 0, NULL, '2024-08-01 19:25:05', '2024-08-01 19:25:05'),
(1098, 3, '2024-08-01 15:25:06', '2024-08-01 15:25:06', 0, NULL, '2024-08-01 19:25:07', '2024-08-01 19:25:07'),
(1099, 1, '2024-08-01 15:30:06', '2024-08-01 15:30:06', 0, NULL, '2024-08-01 19:30:07', '2024-08-01 19:30:07'),
(1100, 2, '2024-08-01 15:30:07', '2024-08-01 15:30:07', 0, NULL, '2024-08-01 19:30:08', '2024-08-01 19:30:08'),
(1101, 5, '2024-08-01 15:30:08', '2024-08-01 15:30:09', 0, NULL, '2024-08-01 19:30:09', '2024-08-01 19:30:09'),
(1102, 1, '2024-08-01 15:35:18', '2024-08-01 15:35:21', 3, NULL, '2024-08-01 19:35:21', '2024-08-01 19:35:21'),
(1103, 2, '2024-08-01 15:35:22', '2024-08-01 15:35:22', 0, NULL, '2024-08-01 19:35:22', '2024-08-01 19:35:22'),
(1104, 3, '2024-08-01 15:35:22', '2024-08-01 15:35:22', 0, NULL, '2024-08-01 19:35:22', '2024-08-01 19:35:22'),
(1105, 5, '2024-08-01 15:35:23', '2024-08-01 15:35:23', 0, NULL, '2024-08-01 19:35:23', '2024-08-01 19:35:23'),
(1106, 1, '2024-08-01 15:45:10', '2024-08-01 15:45:10', 0, NULL, '2024-08-01 19:45:10', '2024-08-01 19:45:10'),
(1107, 2, '2024-08-01 15:45:11', '2024-08-01 15:45:11', 0, NULL, '2024-08-01 19:45:11', '2024-08-01 19:45:11'),
(1108, 3, '2024-08-01 15:45:11', '2024-08-01 15:45:11', 0, NULL, '2024-08-01 19:45:11', '2024-08-01 19:45:11'),
(1109, 5, '2024-08-01 15:45:11', '2024-08-01 15:45:12', 0, NULL, '2024-08-01 19:45:12', '2024-08-01 19:45:12'),
(1110, 1, '2024-08-01 15:55:03', '2024-08-01 15:55:03', 0, NULL, '2024-08-01 19:55:03', '2024-08-01 19:55:03'),
(1111, 2, '2024-08-01 15:55:03', '2024-08-01 15:55:03', 0, NULL, '2024-08-01 19:55:04', '2024-08-01 19:55:04'),
(1112, 3, '2024-08-01 15:55:04', '2024-08-01 15:55:04', 0, NULL, '2024-08-01 19:55:05', '2024-08-01 19:55:05'),
(1113, 5, '2024-08-01 15:55:05', '2024-08-01 15:55:05', 0, NULL, '2024-08-01 19:55:05', '2024-08-01 19:55:05'),
(1114, 1, '2024-08-01 16:00:07', '2024-08-01 16:00:07', 0, NULL, '2024-08-01 20:00:08', '2024-08-01 20:00:08'),
(1115, 2, '2024-08-01 16:00:08', '2024-08-01 16:00:08', 0, NULL, '2024-08-01 20:00:08', '2024-08-01 20:00:08'),
(1116, 3, '2024-08-01 16:00:08', '2024-08-01 16:00:08', 0, NULL, '2024-08-01 20:00:09', '2024-08-01 20:00:09'),
(1117, 5, '2024-08-01 16:00:09', '2024-08-01 16:00:09', 0, NULL, '2024-08-01 20:00:12', '2024-08-01 20:00:12'),
(1118, 1, '2024-08-01 16:10:05', '2024-08-01 16:10:05', 0, NULL, '2024-08-01 20:10:05', '2024-08-01 20:10:05'),
(1119, 2, '2024-08-01 16:10:06', '2024-08-01 16:10:06', 0, NULL, '2024-08-01 20:10:06', '2024-08-01 20:10:06'),
(1120, 3, '2024-08-01 16:10:06', '2024-08-01 16:10:06', 0, NULL, '2024-08-01 20:10:07', '2024-08-01 20:10:07'),
(1121, 5, '2024-08-01 16:10:07', '2024-08-01 16:10:08', 0, NULL, '2024-08-01 20:10:08', '2024-08-01 20:10:08'),
(1122, 1, '2024-08-01 16:15:07', '2024-08-01 16:15:07', 0, NULL, '2024-08-01 20:15:08', '2024-08-01 20:15:08'),
(1123, 2, '2024-08-01 16:15:08', '2024-08-01 16:15:08', 0, NULL, '2024-08-01 20:15:08', '2024-08-01 20:15:08'),
(1124, 3, '2024-08-01 16:15:09', '2024-08-01 16:15:09', 0, NULL, '2024-08-01 20:15:09', '2024-08-01 20:15:09'),
(1125, 5, '2024-08-01 16:20:07', '2024-08-01 16:20:07', 0, NULL, '2024-08-01 20:20:07', '2024-08-01 20:20:07'),
(1126, 1, '2024-08-01 16:25:07', '2024-08-01 16:25:07', 0, NULL, '2024-08-01 20:25:08', '2024-08-01 20:25:08'),
(1127, 2, '2024-08-01 16:25:10', '2024-08-01 16:25:10', 0, NULL, '2024-08-01 20:25:10', '2024-08-01 20:25:10'),
(1128, 3, '2024-08-01 16:25:10', '2024-08-01 16:25:10', 0, NULL, '2024-08-01 20:25:11', '2024-08-01 20:25:11'),
(1129, 5, '2024-08-01 16:30:06', '2024-08-01 16:30:06', 0, NULL, '2024-08-01 20:30:06', '2024-08-01 20:30:06'),
(1130, 1, '2024-08-01 16:35:06', '2024-08-01 16:35:06', 0, NULL, '2024-08-01 20:35:09', '2024-08-01 20:35:09'),
(1131, 2, '2024-08-01 16:35:09', '2024-08-01 16:35:09', 0, NULL, '2024-08-01 20:35:09', '2024-08-01 20:35:09'),
(1132, 3, '2024-08-01 16:35:10', '2024-08-01 16:35:10', 0, NULL, '2024-08-01 20:35:10', '2024-08-01 20:35:10'),
(1133, 1, '2024-08-01 16:40:08', '2024-08-01 16:40:08', 0, NULL, '2024-08-01 20:40:08', '2024-08-01 20:40:08'),
(1134, 5, '2024-08-01 16:40:08', '2024-08-01 16:40:08', 0, NULL, '2024-08-01 20:40:09', '2024-08-01 20:40:09'),
(1135, 2, '2024-08-01 16:45:04', '2024-08-01 16:45:04', 0, NULL, '2024-08-01 20:45:05', '2024-08-01 20:45:05'),
(1136, 3, '2024-08-01 16:45:07', '2024-08-01 16:45:07', 0, NULL, '2024-08-01 20:45:08', '2024-08-01 20:45:08'),
(1137, 1, '2024-08-01 16:50:06', '2024-08-01 16:50:06', 0, NULL, '2024-08-01 20:50:06', '2024-08-01 20:50:06'),
(1138, 2, '2024-08-01 16:50:07', '2024-08-01 16:50:07', 0, NULL, '2024-08-01 20:50:07', '2024-08-01 20:50:07'),
(1139, 5, '2024-08-01 16:50:07', '2024-08-01 16:50:07', 0, NULL, '2024-08-01 20:50:08', '2024-08-01 20:50:08'),
(1140, 1, '2024-08-01 16:55:08', '2024-08-01 16:55:08', 0, NULL, '2024-08-01 20:55:08', '2024-08-01 20:55:08'),
(1141, 3, '2024-08-01 16:55:08', '2024-08-01 16:55:08', 0, NULL, '2024-08-01 20:55:08', '2024-08-01 20:55:08'),
(1142, 2, '2024-08-01 17:00:05', '2024-08-01 17:00:05', 0, NULL, '2024-08-01 21:00:06', '2024-08-01 21:00:06'),
(1143, 5, '2024-08-01 17:00:07', '2024-08-01 17:00:09', 1, NULL, '2024-08-01 21:00:09', '2024-08-01 21:00:09'),
(1144, 1, '2024-08-01 17:05:04', '2024-08-01 17:05:04', 0, NULL, '2024-08-01 21:05:05', '2024-08-01 21:05:05'),
(1145, 3, '2024-08-01 17:05:06', '2024-08-01 17:05:06', 0, NULL, '2024-08-01 21:05:06', '2024-08-01 21:05:06'),
(1146, 1, '2024-08-01 17:10:05', '2024-08-01 17:10:05', 0, NULL, '2024-08-01 21:10:05', '2024-08-01 21:10:05'),
(1147, 2, '2024-08-01 17:10:06', '2024-08-01 17:10:06', 0, NULL, '2024-08-01 21:10:06', '2024-08-01 21:10:06'),
(1148, 5, '2024-08-01 17:10:08', '2024-08-01 17:10:08', 0, NULL, '2024-08-01 21:10:09', '2024-08-01 21:10:09'),
(1149, 3, '2024-08-01 17:15:03', '2024-08-01 17:15:03', 0, NULL, '2024-08-01 21:15:04', '2024-08-01 21:15:04'),
(1150, 1, '2024-08-01 17:20:10', '2024-08-01 17:20:10', 0, NULL, '2024-08-01 21:20:10', '2024-08-01 21:20:10'),
(1151, 2, '2024-08-01 17:20:11', '2024-08-01 17:20:11', 0, NULL, '2024-08-01 21:20:11', '2024-08-01 21:20:11'),
(1152, 3, '2024-08-01 17:20:11', '2024-08-01 17:20:11', 0, NULL, '2024-08-01 21:20:11', '2024-08-01 21:20:11'),
(1153, 5, '2024-08-01 17:20:11', '2024-08-01 17:20:11', 0, NULL, '2024-08-01 21:20:12', '2024-08-01 21:20:12'),
(1154, 1, '2024-08-01 17:30:07', '2024-08-01 17:30:07', 0, NULL, '2024-08-01 21:30:07', '2024-08-01 21:30:07'),
(1155, 2, '2024-08-01 17:30:08', '2024-08-01 17:30:08', 0, NULL, '2024-08-01 21:30:08', '2024-08-01 21:30:08'),
(1156, 3, '2024-08-01 17:30:08', '2024-08-01 17:30:08', 0, NULL, '2024-08-01 21:30:09', '2024-08-01 21:30:09'),
(1157, 5, '2024-08-01 17:30:09', '2024-08-01 17:30:09', 0, NULL, '2024-08-01 21:30:09', '2024-08-01 21:30:09'),
(1158, 1, '2024-08-01 17:40:05', '2024-08-01 17:40:06', 0, NULL, '2024-08-01 21:40:06', '2024-08-01 21:40:06'),
(1159, 2, '2024-08-01 17:40:07', '2024-08-01 17:40:07', 0, NULL, '2024-08-01 21:40:07', '2024-08-01 21:40:07'),
(1160, 3, '2024-08-01 17:40:08', '2024-08-01 17:40:08', 0, NULL, '2024-08-01 21:40:08', '2024-08-01 21:40:08'),
(1161, 5, '2024-08-01 17:40:08', '2024-08-01 17:40:08', 0, NULL, '2024-08-01 21:40:10', '2024-08-01 21:40:10'),
(1162, 1, '2024-08-01 17:50:06', '2024-08-01 17:50:06', 0, NULL, '2024-08-01 21:50:06', '2024-08-01 21:50:06'),
(1163, 2, '2024-08-01 17:50:07', '2024-08-01 17:50:07', 0, NULL, '2024-08-01 21:50:08', '2024-08-01 21:50:08'),
(1164, 3, '2024-08-01 17:50:08', '2024-08-01 17:50:08', 0, NULL, '2024-08-01 21:50:08', '2024-08-01 21:50:08'),
(1165, 5, '2024-08-01 17:50:09', '2024-08-01 17:50:09', 0, NULL, '2024-08-01 21:50:09', '2024-08-01 21:50:09'),
(1166, 1, '2024-08-01 18:00:05', '2024-08-01 18:00:05', 0, NULL, '2024-08-01 22:00:06', '2024-08-01 22:00:06'),
(1167, 2, '2024-08-01 18:00:06', '2024-08-01 18:00:06', 0, NULL, '2024-08-01 22:00:06', '2024-08-01 22:00:06'),
(1168, 3, '2024-08-01 18:00:07', '2024-08-01 18:00:07', 0, NULL, '2024-08-01 22:00:07', '2024-08-01 22:00:07'),
(1169, 5, '2024-08-01 18:00:08', '2024-08-01 18:00:08', 0, NULL, '2024-08-01 22:00:08', '2024-08-01 22:00:08'),
(1170, 1, '2024-08-01 18:10:06', '2024-08-01 18:10:07', 1, NULL, '2024-08-01 22:10:07', '2024-08-01 22:10:07'),
(1171, 2, '2024-08-01 18:10:08', '2024-08-01 18:10:08', 0, NULL, '2024-08-01 22:10:08', '2024-08-01 22:10:08'),
(1172, 3, '2024-08-01 18:10:09', '2024-08-01 18:10:09', 0, NULL, '2024-08-01 22:10:09', '2024-08-01 22:10:09'),
(1173, 5, '2024-08-01 18:10:09', '2024-08-01 18:10:09', 0, NULL, '2024-08-01 22:10:09', '2024-08-01 22:10:09'),
(1174, 1, '2024-08-01 18:20:10', '2024-08-01 18:20:10', 0, NULL, '2024-08-01 22:20:11', '2024-08-01 22:20:11'),
(1175, 2, '2024-08-01 18:20:11', '2024-08-01 18:20:11', 0, NULL, '2024-08-01 22:20:11', '2024-08-01 22:20:11'),
(1176, 3, '2024-08-01 18:20:12', '2024-08-01 18:20:12', 0, NULL, '2024-08-01 22:20:12', '2024-08-01 22:20:12'),
(1177, 5, '2024-08-01 18:20:12', '2024-08-01 18:20:12', 0, NULL, '2024-08-01 22:20:12', '2024-08-01 22:20:12'),
(1178, 1, '2024-08-01 18:30:04', '2024-08-01 18:30:04', 0, NULL, '2024-08-01 22:30:05', '2024-08-01 22:30:05'),
(1179, 2, '2024-08-01 18:30:05', '2024-08-01 18:30:05', 0, NULL, '2024-08-01 22:30:06', '2024-08-01 22:30:06'),
(1180, 3, '2024-08-01 18:30:06', '2024-08-01 18:30:06', 0, NULL, '2024-08-01 22:30:07', '2024-08-01 22:30:07'),
(1181, 5, '2024-08-01 18:30:07', '2024-08-01 18:30:07', 0, NULL, '2024-08-01 22:30:07', '2024-08-01 22:30:07'),
(1182, 1, '2024-08-01 18:40:06', '2024-08-01 18:40:06', 0, NULL, '2024-08-01 22:40:07', '2024-08-01 22:40:07'),
(1183, 2, '2024-08-01 18:40:07', '2024-08-01 18:40:07', 0, NULL, '2024-08-01 22:40:08', '2024-08-01 22:40:08'),
(1184, 3, '2024-08-01 18:40:08', '2024-08-01 18:40:08', 0, NULL, '2024-08-01 22:40:09', '2024-08-01 22:40:09'),
(1185, 5, '2024-08-01 18:40:09', '2024-08-01 18:40:09', 0, NULL, '2024-08-01 22:40:10', '2024-08-01 22:40:10'),
(1186, 1, '2024-08-01 18:50:04', '2024-08-01 18:50:04', 0, NULL, '2024-08-01 22:50:04', '2024-08-01 22:50:04'),
(1187, 2, '2024-08-01 18:50:04', '2024-08-01 18:50:04', 0, NULL, '2024-08-01 22:50:05', '2024-08-01 22:50:05'),
(1188, 3, '2024-08-01 18:50:06', '2024-08-01 18:50:06', 0, NULL, '2024-08-01 22:50:06', '2024-08-01 22:50:06'),
(1189, 5, '2024-08-01 18:50:06', '2024-08-01 18:50:06', 0, NULL, '2024-08-01 22:50:07', '2024-08-01 22:50:07'),
(1190, 1, '2024-08-01 18:55:06', '2024-08-01 18:55:06', 0, NULL, '2024-08-01 22:55:07', '2024-08-01 22:55:07'),
(1191, 2, '2024-08-01 18:55:07', '2024-08-01 18:55:07', 0, NULL, '2024-08-01 22:55:08', '2024-08-01 22:55:08'),
(1192, 1, '2024-08-01 19:00:07', '2024-08-01 19:00:07', 0, NULL, '2024-08-01 23:00:08', '2024-08-01 23:00:08'),
(1193, 3, '2024-08-01 19:00:09', '2024-08-01 19:00:09', 0, NULL, '2024-08-01 23:00:09', '2024-08-01 23:00:09'),
(1194, 5, '2024-08-01 19:00:09', '2024-08-01 19:00:10', 0, NULL, '2024-08-01 23:00:10', '2024-08-01 23:00:10'),
(1195, 2, '2024-08-01 19:05:06', '2024-08-01 19:05:06', 0, NULL, '2024-08-01 23:05:07', '2024-08-01 23:05:07'),
(1196, 1, '2024-08-01 19:10:05', '2024-08-01 19:10:05', 0, NULL, '2024-08-01 23:10:06', '2024-08-01 23:10:06'),
(1197, 3, '2024-08-01 19:10:06', '2024-08-01 19:10:06', 0, NULL, '2024-08-01 23:10:07', '2024-08-01 23:10:07'),
(1198, 5, '2024-08-01 19:10:07', '2024-08-01 19:10:07', 0, NULL, '2024-08-01 23:10:07', '2024-08-01 23:10:07'),
(1199, 2, '2024-08-01 19:15:04', '2024-08-01 19:15:04', 0, NULL, '2024-08-01 23:15:04', '2024-08-01 23:15:04'),
(1200, 1, '2024-08-01 19:20:08', '2024-08-01 19:20:08', 0, NULL, '2024-08-01 23:20:09', '2024-08-01 23:20:09'),
(1201, 2, '2024-08-01 19:20:10', '2024-08-01 19:20:10', 0, NULL, '2024-08-01 23:20:11', '2024-08-01 23:20:11'),
(1202, 3, '2024-08-01 19:20:13', '2024-08-01 19:20:13', 0, NULL, '2024-08-01 23:20:13', '2024-08-01 23:20:13'),
(1203, 5, '2024-08-01 19:20:13', '2024-08-01 19:20:13', 0, NULL, '2024-08-01 23:20:13', '2024-08-01 23:20:13'),
(1204, 1, '2024-08-01 19:30:06', '2024-08-01 19:30:06', 0, NULL, '2024-08-01 23:30:07', '2024-08-01 23:30:07'),
(1205, 2, '2024-08-01 19:30:07', '2024-08-01 19:30:07', 0, NULL, '2024-08-01 23:30:07', '2024-08-01 23:30:07'),
(1206, 3, '2024-08-01 19:30:07', '2024-08-01 19:30:07', 0, NULL, '2024-08-01 23:30:08', '2024-08-01 23:30:08'),
(1207, 5, '2024-08-01 19:30:08', '2024-08-01 19:30:08', 0, NULL, '2024-08-01 23:30:09', '2024-08-01 23:30:09'),
(1208, 1, '2024-08-01 19:40:07', '2024-08-01 19:40:07', 0, NULL, '2024-08-01 23:40:07', '2024-08-01 23:40:07'),
(1209, 2, '2024-08-01 19:40:08', '2024-08-01 19:40:08', 0, NULL, '2024-08-01 23:40:08', '2024-08-01 23:40:08'),
(1210, 3, '2024-08-01 19:40:08', '2024-08-01 19:40:08', 0, NULL, '2024-08-01 23:40:08', '2024-08-01 23:40:08'),
(1211, 5, '2024-08-01 19:40:09', '2024-08-01 19:40:09', 0, NULL, '2024-08-01 23:40:09', '2024-08-01 23:40:09'),
(1212, 1, '2024-08-01 19:50:04', '2024-08-01 19:50:04', 0, NULL, '2024-08-01 23:50:04', '2024-08-01 23:50:04'),
(1213, 2, '2024-08-01 19:50:04', '2024-08-01 19:50:04', 0, NULL, '2024-08-01 23:50:04', '2024-08-01 23:50:04'),
(1214, 3, '2024-08-01 19:50:05', '2024-08-01 19:50:05', 0, NULL, '2024-08-01 23:50:05', '2024-08-01 23:50:05'),
(1215, 5, '2024-08-01 19:50:05', '2024-08-01 19:50:06', 0, NULL, '2024-08-01 23:50:10', '2024-08-01 23:50:10'),
(1216, 1, '2024-08-01 19:55:08', '2024-08-01 19:55:08', 0, NULL, '2024-08-01 23:55:09', '2024-08-01 23:55:09'),
(1217, 2, '2024-08-01 19:55:10', '2024-08-01 19:55:10', 0, NULL, '2024-08-01 23:55:10', '2024-08-01 23:55:10'),
(1218, 3, '2024-08-01 19:55:10', '2024-08-01 19:55:10', 0, NULL, '2024-08-01 23:55:10', '2024-08-01 23:55:10'),
(1219, 5, '2024-08-01 19:55:10', '2024-08-01 19:55:11', 0, NULL, '2024-08-01 23:55:11', '2024-08-01 23:55:11'),
(1220, 1, '2024-08-01 20:05:04', '2024-08-01 20:05:04', 0, NULL, '2024-08-02 00:05:04', '2024-08-02 00:05:04'),
(1221, 2, '2024-08-01 20:05:06', '2024-08-01 20:05:06', 0, NULL, '2024-08-02 00:05:07', '2024-08-02 00:05:07'),
(1222, 3, '2024-08-01 20:05:08', '2024-08-01 20:05:08', 0, NULL, '2024-08-02 00:05:08', '2024-08-02 00:05:08'),
(1223, 5, '2024-08-01 20:05:09', '2024-08-01 20:05:09', 0, NULL, '2024-08-02 00:05:09', '2024-08-02 00:05:09'),
(1224, 1, '2024-08-01 20:10:06', '2024-08-01 20:10:07', 0, NULL, '2024-08-02 00:10:07', '2024-08-02 00:10:07'),
(1225, 1, '2024-08-01 20:15:10', '2024-08-01 20:15:10', 0, NULL, '2024-08-02 00:15:10', '2024-08-02 00:15:10'),
(1226, 2, '2024-08-01 20:15:10', '2024-08-01 20:15:10', 0, NULL, '2024-08-02 00:15:10', '2024-08-02 00:15:10'),
(1227, 3, '2024-08-01 20:15:10', '2024-08-01 20:15:10', 0, NULL, '2024-08-02 00:15:11', '2024-08-02 00:15:11'),
(1228, 5, '2024-08-01 20:15:11', '2024-08-01 20:15:11', 0, NULL, '2024-08-02 00:15:11', '2024-08-02 00:15:11'),
(1229, 1, '2024-08-01 20:25:06', '2024-08-01 20:25:06', 0, NULL, '2024-08-02 00:25:06', '2024-08-02 00:25:06'),
(1230, 2, '2024-08-01 20:25:07', '2024-08-01 20:25:07', 0, NULL, '2024-08-02 00:25:07', '2024-08-02 00:25:07'),
(1231, 3, '2024-08-01 20:25:07', '2024-08-01 20:25:07', 0, NULL, '2024-08-02 00:25:08', '2024-08-02 00:25:08'),
(1232, 5, '2024-08-01 20:25:08', '2024-08-01 20:25:08', 0, NULL, '2024-08-02 00:25:08', '2024-08-02 00:25:08'),
(1233, 1, '2024-08-01 20:35:07', '2024-08-01 20:35:07', 0, NULL, '2024-08-02 00:35:07', '2024-08-02 00:35:07'),
(1234, 2, '2024-08-01 20:35:08', '2024-08-01 20:35:08', 0, NULL, '2024-08-02 00:35:08', '2024-08-02 00:35:08'),
(1235, 3, '2024-08-01 20:35:09', '2024-08-01 20:35:09', 0, NULL, '2024-08-02 00:35:09', '2024-08-02 00:35:09'),
(1236, 5, '2024-08-01 20:35:10', '2024-08-01 20:35:10', 0, NULL, '2024-08-02 00:35:10', '2024-08-02 00:35:10'),
(1237, 1, '2024-08-01 20:45:06', '2024-08-01 20:45:06', 0, NULL, '2024-08-02 00:45:06', '2024-08-02 00:45:06'),
(1238, 2, '2024-08-01 20:45:07', '2024-08-01 20:45:07', 0, NULL, '2024-08-02 00:45:07', '2024-08-02 00:45:07'),
(1239, 3, '2024-08-01 20:45:07', '2024-08-01 20:45:07', 0, NULL, '2024-08-02 00:45:08', '2024-08-02 00:45:08'),
(1240, 5, '2024-08-01 20:45:08', '2024-08-01 20:45:08', 0, NULL, '2024-08-02 00:45:08', '2024-08-02 00:45:08'),
(1241, 1, '2024-08-01 20:50:10', '2024-08-01 20:50:10', 0, NULL, '2024-08-02 00:50:11', '2024-08-02 00:50:11'),
(1242, 2, '2024-08-01 20:50:11', '2024-08-01 20:50:11', 0, NULL, '2024-08-02 00:50:12', '2024-08-02 00:50:12'),
(1243, 3, '2024-08-01 20:50:12', '2024-08-01 20:50:12', 0, NULL, '2024-08-02 00:50:12', '2024-08-02 00:50:12'),
(1244, 5, '2024-08-01 20:50:12', '2024-08-01 20:50:12', 0, NULL, '2024-08-02 00:50:13', '2024-08-02 00:50:13'),
(1245, 1, '2024-08-01 21:00:12', '2024-08-01 21:00:12', 0, NULL, '2024-08-02 01:00:13', '2024-08-02 01:00:13'),
(1246, 2, '2024-08-01 21:00:13', '2024-08-01 21:00:13', 0, NULL, '2024-08-02 01:00:13', '2024-08-02 01:00:13'),
(1247, 3, '2024-08-01 21:00:14', '2024-08-01 21:00:14', 0, NULL, '2024-08-02 01:00:14', '2024-08-02 01:00:14'),
(1248, 5, '2024-08-01 21:00:14', '2024-08-01 21:00:15', 0, NULL, '2024-08-02 01:00:15', '2024-08-02 01:00:15'),
(1249, 1, '2024-08-01 21:10:07', '2024-08-01 21:10:07', 0, NULL, '2024-08-02 01:10:07', '2024-08-02 01:10:07'),
(1250, 2, '2024-08-01 21:10:07', '2024-08-01 21:10:07', 0, NULL, '2024-08-02 01:10:08', '2024-08-02 01:10:08'),
(1251, 3, '2024-08-01 21:10:08', '2024-08-01 21:10:08', 0, NULL, '2024-08-02 01:10:08', '2024-08-02 01:10:08'),
(1252, 5, '2024-08-01 21:10:08', '2024-08-01 21:10:08', 0, NULL, '2024-08-02 01:10:08', '2024-08-02 01:10:08'),
(1253, 1, '2024-08-01 21:20:07', '2024-08-01 21:20:07', 0, NULL, '2024-08-02 01:20:08', '2024-08-02 01:20:08'),
(1254, 2, '2024-08-01 21:20:08', '2024-08-01 21:20:08', 0, NULL, '2024-08-02 01:20:09', '2024-08-02 01:20:09'),
(1255, 3, '2024-08-01 21:20:09', '2024-08-01 21:20:09', 0, NULL, '2024-08-02 01:20:09', '2024-08-02 01:20:09'),
(1256, 5, '2024-08-01 21:20:10', '2024-08-01 21:20:10', 0, NULL, '2024-08-02 01:20:10', '2024-08-02 01:20:10'),
(1257, 1, '2024-08-01 21:30:08', '2024-08-01 21:30:08', 0, NULL, '2024-08-02 01:30:09', '2024-08-02 01:30:09'),
(1258, 2, '2024-08-01 21:30:09', '2024-08-01 21:30:09', 0, NULL, '2024-08-02 01:30:09', '2024-08-02 01:30:09'),
(1259, 3, '2024-08-01 21:30:10', '2024-08-01 21:30:10', 0, NULL, '2024-08-02 01:30:10', '2024-08-02 01:30:10'),
(1260, 5, '2024-08-01 21:30:10', '2024-08-01 21:30:10', 0, NULL, '2024-08-02 01:30:10', '2024-08-02 01:30:10'),
(1261, 1, '2024-08-01 21:40:09', '2024-08-01 21:40:09', 0, NULL, '2024-08-02 01:40:09', '2024-08-02 01:40:09'),
(1262, 2, '2024-08-01 21:40:09', '2024-08-01 21:40:09', 0, NULL, '2024-08-02 01:40:09', '2024-08-02 01:40:09'),
(1263, 3, '2024-08-01 21:40:10', '2024-08-01 21:40:10', 0, NULL, '2024-08-02 01:40:10', '2024-08-02 01:40:10'),
(1264, 5, '2024-08-01 21:40:10', '2024-08-01 21:40:10', 0, NULL, '2024-08-02 01:40:10', '2024-08-02 01:40:10'),
(1265, 1, '2024-08-01 21:50:07', '2024-08-01 21:50:07', 0, NULL, '2024-08-02 01:50:08', '2024-08-02 01:50:08'),
(1266, 2, '2024-08-01 21:50:09', '2024-08-01 21:50:09', 0, NULL, '2024-08-02 01:50:09', '2024-08-02 01:50:09'),
(1267, 3, '2024-08-01 21:50:09', '2024-08-01 21:50:09', 0, NULL, '2024-08-02 01:50:10', '2024-08-02 01:50:10'),
(1268, 5, '2024-08-01 21:50:10', '2024-08-01 21:50:10', 0, NULL, '2024-08-02 01:50:10', '2024-08-02 01:50:10'),
(1269, 1, '2024-08-01 22:00:07', '2024-08-01 22:00:08', 1, NULL, '2024-08-02 02:00:09', '2024-08-02 02:00:09'),
(1270, 2, '2024-08-01 22:00:09', '2024-08-01 22:00:09', 0, NULL, '2024-08-02 02:00:10', '2024-08-02 02:00:10'),
(1271, 3, '2024-08-01 22:00:10', '2024-08-01 22:00:10', 0, NULL, '2024-08-02 02:00:10', '2024-08-02 02:00:10'),
(1272, 5, '2024-08-01 22:00:11', '2024-08-01 22:00:11', 0, NULL, '2024-08-02 02:00:11', '2024-08-02 02:00:11'),
(1273, 1, '2024-08-01 22:10:07', '2024-08-01 22:10:07', 0, NULL, '2024-08-02 02:10:07', '2024-08-02 02:10:07'),
(1274, 2, '2024-08-01 22:10:08', '2024-08-01 22:10:08', 0, NULL, '2024-08-02 02:10:08', '2024-08-02 02:10:08'),
(1275, 3, '2024-08-01 22:10:08', '2024-08-01 22:10:08', 0, NULL, '2024-08-02 02:10:09', '2024-08-02 02:10:09'),
(1276, 5, '2024-08-01 22:10:09', '2024-08-01 22:10:09', 0, NULL, '2024-08-02 02:10:09', '2024-08-02 02:10:09'),
(1277, 1, '2024-08-01 22:15:08', '2024-08-01 22:15:08', 0, NULL, '2024-08-02 02:15:09', '2024-08-02 02:15:09'),
(1278, 2, '2024-08-01 22:20:05', '2024-08-01 22:20:05', 0, NULL, '2024-08-02 02:20:05', '2024-08-02 02:20:05'),
(1279, 3, '2024-08-01 22:20:05', '2024-08-01 22:20:05', 0, NULL, '2024-08-02 02:20:06', '2024-08-02 02:20:06'),
(1280, 5, '2024-08-01 22:20:07', '2024-08-01 22:20:07', 0, NULL, '2024-08-02 02:20:07', '2024-08-02 02:20:07'),
(1281, 1, '2024-08-01 22:25:08', '2024-08-01 22:25:08', 0, NULL, '2024-08-02 02:25:09', '2024-08-02 02:25:09'),
(1282, 2, '2024-08-01 22:25:09', '2024-08-01 22:25:09', 0, NULL, '2024-08-02 02:25:09', '2024-08-02 02:25:09'),
(1283, 3, '2024-08-01 22:25:09', '2024-08-01 22:25:09', 0, NULL, '2024-08-02 02:25:10', '2024-08-02 02:25:10'),
(1284, 5, '2024-08-01 22:25:10', '2024-08-01 22:25:10', 0, NULL, '2024-08-02 02:25:10', '2024-08-02 02:25:10'),
(1285, 1, '2024-08-01 22:35:07', '2024-08-01 22:35:07', 0, NULL, '2024-08-02 02:35:07', '2024-08-02 02:35:07'),
(1286, 2, '2024-08-01 22:35:08', '2024-08-01 22:35:08', 0, NULL, '2024-08-02 02:35:09', '2024-08-02 02:35:09'),
(1287, 3, '2024-08-01 22:35:09', '2024-08-01 22:35:09', 0, NULL, '2024-08-02 02:35:10', '2024-08-02 02:35:10'),
(1288, 5, '2024-08-01 22:35:10', '2024-08-01 22:35:10', 0, NULL, '2024-08-02 02:35:10', '2024-08-02 02:35:10'),
(1289, 1, '2024-08-01 22:45:06', '2024-08-01 22:45:06', 0, NULL, '2024-08-02 02:45:06', '2024-08-02 02:45:06'),
(1290, 2, '2024-08-01 22:45:07', '2024-08-01 22:45:07', 0, NULL, '2024-08-02 02:45:07', '2024-08-02 02:45:07'),
(1291, 3, '2024-08-01 22:45:07', '2024-08-01 22:45:07', 0, NULL, '2024-08-02 02:45:08', '2024-08-02 02:45:08'),
(1292, 5, '2024-08-01 22:45:08', '2024-08-01 22:45:08', 0, NULL, '2024-08-02 02:45:08', '2024-08-02 02:45:08'),
(1293, 1, '2024-08-01 22:55:04', '2024-08-01 22:55:04', 0, NULL, '2024-08-02 02:55:04', '2024-08-02 02:55:04'),
(1294, 2, '2024-08-01 22:55:05', '2024-08-01 22:55:05', 0, NULL, '2024-08-02 02:55:05', '2024-08-02 02:55:05'),
(1295, 3, '2024-08-01 22:55:05', '2024-08-01 22:55:05', 0, NULL, '2024-08-02 02:55:07', '2024-08-02 02:55:07'),
(1296, 5, '2024-08-01 22:55:07', '2024-08-01 22:55:07', 0, NULL, '2024-08-02 02:55:07', '2024-08-02 02:55:07'),
(1297, 1, '2024-08-01 23:00:09', '2024-08-01 23:00:09', 0, NULL, '2024-08-02 03:00:09', '2024-08-02 03:00:09'),
(1298, 2, '2024-08-01 23:00:10', '2024-08-01 23:00:10', 0, NULL, '2024-08-02 03:00:10', '2024-08-02 03:00:10'),
(1299, 3, '2024-08-01 23:00:11', '2024-08-01 23:00:11', 0, NULL, '2024-08-02 03:00:11', '2024-08-02 03:00:11'),
(1300, 5, '2024-08-01 23:00:11', '2024-08-01 23:00:11', 0, NULL, '2024-08-02 03:00:11', '2024-08-02 03:00:11'),
(1301, 1, '2024-08-01 23:10:03', '2024-08-01 23:10:03', 0, NULL, '2024-08-02 03:10:04', '2024-08-02 03:10:04'),
(1302, 2, '2024-08-01 23:10:04', '2024-08-01 23:10:04', 0, NULL, '2024-08-02 03:10:05', '2024-08-02 03:10:05'),
(1303, 3, '2024-08-01 23:10:05', '2024-08-01 23:10:05', 0, NULL, '2024-08-02 03:10:06', '2024-08-02 03:10:06'),
(1304, 5, '2024-08-01 23:10:07', '2024-08-01 23:10:07', 0, NULL, '2024-08-02 03:10:09', '2024-08-02 03:10:09'),
(1305, 1, '2024-08-01 23:15:07', '2024-08-01 23:15:07', 0, NULL, '2024-08-02 03:15:07', '2024-08-02 03:15:07'),
(1306, 2, '2024-08-01 23:15:08', '2024-08-01 23:15:08', 0, NULL, '2024-08-02 03:15:09', '2024-08-02 03:15:09'),
(1307, 3, '2024-08-01 23:15:09', '2024-08-01 23:15:09', 0, NULL, '2024-08-02 03:15:09', '2024-08-02 03:15:09'),
(1308, 1, '2024-08-01 23:20:12', '2024-08-01 23:20:12', 0, NULL, '2024-08-02 03:20:12', '2024-08-02 03:20:12'),
(1309, 2, '2024-08-01 23:20:12', '2024-08-01 23:20:12', 0, NULL, '2024-08-02 03:20:12', '2024-08-02 03:20:12'),
(1310, 3, '2024-08-01 23:20:12', '2024-08-01 23:20:12', 0, NULL, '2024-08-02 03:20:12', '2024-08-02 03:20:12'),
(1311, 5, '2024-08-01 23:20:12', '2024-08-01 23:20:12', 0, NULL, '2024-08-02 03:20:12', '2024-08-02 03:20:12'),
(1312, 1, '2024-08-01 23:30:05', '2024-08-01 23:30:05', 0, NULL, '2024-08-02 03:30:05', '2024-08-02 03:30:05'),
(1313, 2, '2024-08-01 23:30:05', '2024-08-01 23:30:05', 0, NULL, '2024-08-02 03:30:06', '2024-08-02 03:30:06'),
(1314, 3, '2024-08-01 23:30:06', '2024-08-01 23:30:06', 0, NULL, '2024-08-02 03:30:06', '2024-08-02 03:30:06'),
(1315, 5, '2024-08-01 23:30:07', '2024-08-01 23:30:07', 0, NULL, '2024-08-02 03:30:07', '2024-08-02 03:30:07'),
(1316, 1, '2024-08-01 23:35:08', '2024-08-01 23:35:08', 0, NULL, '2024-08-02 03:35:08', '2024-08-02 03:35:08'),
(1317, 2, '2024-08-01 23:35:09', '2024-08-01 23:35:09', 0, NULL, '2024-08-02 03:35:09', '2024-08-02 03:35:09'),
(1318, 3, '2024-08-01 23:35:10', '2024-08-01 23:35:10', 0, NULL, '2024-08-02 03:35:10', '2024-08-02 03:35:10'),
(1319, 5, '2024-08-01 23:35:10', '2024-08-01 23:35:10', 0, NULL, '2024-08-02 03:35:10', '2024-08-02 03:35:10'),
(1320, 1, '2024-08-01 23:45:06', '2024-08-01 23:45:06', 0, NULL, '2024-08-02 03:45:07', '2024-08-02 03:45:07'),
(1321, 2, '2024-08-01 23:45:07', '2024-08-01 23:45:07', 0, NULL, '2024-08-02 03:45:07', '2024-08-02 03:45:07'),
(1322, 3, '2024-08-01 23:45:08', '2024-08-01 23:45:08', 0, NULL, '2024-08-02 03:45:08', '2024-08-02 03:45:08'),
(1323, 5, '2024-08-01 23:45:08', '2024-08-01 23:45:08', 0, NULL, '2024-08-02 03:45:09', '2024-08-02 03:45:09'),
(1324, 1, '2024-08-01 23:55:06', '2024-08-01 23:55:06', 0, NULL, '2024-08-02 03:55:07', '2024-08-02 03:55:07'),
(1325, 2, '2024-08-01 23:55:07', '2024-08-01 23:55:07', 0, NULL, '2024-08-02 03:55:07', '2024-08-02 03:55:07'),
(1326, 3, '2024-08-01 23:55:08', '2024-08-01 23:55:08', 0, NULL, '2024-08-02 03:55:08', '2024-08-02 03:55:08'),
(1327, 5, '2024-08-01 23:55:08', '2024-08-01 23:55:09', 0, NULL, '2024-08-02 03:55:09', '2024-08-02 03:55:09'),
(1328, 1, '2024-08-02 00:00:11', '2024-08-02 00:00:11', 0, NULL, '2024-08-02 04:00:13', '2024-08-02 04:00:13'),
(1329, 2, '2024-08-02 00:00:14', '2024-08-02 00:00:14', 0, NULL, '2024-08-02 04:00:15', '2024-08-02 04:00:15'),
(1330, 3, '2024-08-02 00:00:15', '2024-08-02 00:00:15', 0, NULL, '2024-08-02 04:00:15', '2024-08-02 04:00:15'),
(1331, 5, '2024-08-02 00:00:15', '2024-08-02 00:00:15', 0, NULL, '2024-08-02 04:00:16', '2024-08-02 04:00:16'),
(1332, 1, '2024-08-02 00:10:05', '2024-08-02 00:10:05', 0, NULL, '2024-08-02 04:10:05', '2024-08-02 04:10:05'),
(1333, 2, '2024-08-02 00:10:07', '2024-08-02 00:10:07', 0, NULL, '2024-08-02 04:10:07', '2024-08-02 04:10:07'),
(1334, 3, '2024-08-02 00:10:08', '2024-08-02 00:10:08', 0, NULL, '2024-08-02 04:10:09', '2024-08-02 04:10:09'),
(1335, 5, '2024-08-02 00:10:09', '2024-08-02 00:10:09', 0, NULL, '2024-08-02 04:10:09', '2024-08-02 04:10:09'),
(1336, 1, '2024-08-02 00:15:06', '2024-08-02 00:15:06', 0, NULL, '2024-08-02 04:15:07', '2024-08-02 04:15:07'),
(1337, 2, '2024-08-02 00:20:06', '2024-08-02 00:20:06', 0, NULL, '2024-08-02 04:20:07', '2024-08-02 04:20:07'),
(1338, 3, '2024-08-02 00:20:07', '2024-08-02 00:20:07', 0, NULL, '2024-08-02 04:20:07', '2024-08-02 04:20:07'),
(1339, 5, '2024-08-02 00:20:08', '2024-08-02 00:20:08', 0, NULL, '2024-08-02 04:20:08', '2024-08-02 04:20:08'),
(1340, 1, '2024-08-02 00:25:07', '2024-08-02 00:25:07', 0, NULL, '2024-08-02 04:25:08', '2024-08-02 04:25:08'),
(1341, 2, '2024-08-02 00:25:08', '2024-08-02 00:25:08', 0, NULL, '2024-08-02 04:25:08', '2024-08-02 04:25:08'),
(1342, 1, '2024-08-02 00:30:08', '2024-08-02 00:30:08', 0, NULL, '2024-08-02 04:30:08', '2024-08-02 04:30:08'),
(1343, 3, '2024-08-02 00:30:09', '2024-08-02 00:30:09', 0, NULL, '2024-08-02 04:30:09', '2024-08-02 04:30:09'),
(1344, 5, '2024-08-02 00:30:09', '2024-08-02 00:30:09', 0, NULL, '2024-08-02 04:30:09', '2024-08-02 04:30:09'),
(1345, 2, '2024-08-02 00:35:08', '2024-08-02 00:35:08', 0, NULL, '2024-08-02 04:35:08', '2024-08-02 04:35:08'),
(1346, 1, '2024-08-02 00:40:04', '2024-08-02 00:40:04', 0, NULL, '2024-08-02 04:40:04', '2024-08-02 04:40:04'),
(1347, 3, '2024-08-02 00:40:04', '2024-08-02 00:40:04', 0, NULL, '2024-08-02 04:40:04', '2024-08-02 04:40:04'),
(1348, 5, '2024-08-02 00:40:05', '2024-08-02 00:40:05', 0, NULL, '2024-08-02 04:40:05', '2024-08-02 04:40:05'),
(1349, 1, '2024-08-02 00:45:07', '2024-08-02 00:45:07', 0, NULL, '2024-08-02 04:45:08', '2024-08-02 04:45:08'),
(1350, 2, '2024-08-02 00:45:08', '2024-08-02 00:45:08', 0, NULL, '2024-08-02 04:45:09', '2024-08-02 04:45:09'),
(1351, 3, '2024-08-02 00:45:09', '2024-08-02 00:45:09', 0, NULL, '2024-08-02 04:45:09', '2024-08-02 04:45:09'),
(1352, 5, '2024-08-02 00:45:09', '2024-08-02 00:45:09', 0, NULL, '2024-08-02 04:45:10', '2024-08-02 04:45:10'),
(1353, 1, '2024-08-02 00:55:05', '2024-08-02 00:55:05', 0, NULL, '2024-08-02 04:55:05', '2024-08-02 04:55:05'),
(1354, 2, '2024-08-02 00:55:05', '2024-08-02 00:55:05', 0, NULL, '2024-08-02 04:55:05', '2024-08-02 04:55:05'),
(1355, 3, '2024-08-02 00:55:06', '2024-08-02 00:55:06', 0, NULL, '2024-08-02 04:55:06', '2024-08-02 04:55:06'),
(1356, 5, '2024-08-02 00:55:07', '2024-08-02 00:55:07', 0, NULL, '2024-08-02 04:55:07', '2024-08-02 04:55:07'),
(1357, 1, '2024-08-02 01:00:07', '2024-08-02 01:00:07', 0, NULL, '2024-08-02 05:00:08', '2024-08-02 05:00:08'),
(1358, 2, '2024-08-02 01:00:08', '2024-08-02 01:00:08', 0, NULL, '2024-08-02 05:00:08', '2024-08-02 05:00:08'),
(1359, 3, '2024-08-02 01:00:08', '2024-08-02 01:00:08', 0, NULL, '2024-08-02 05:00:08', '2024-08-02 05:00:08'),
(1360, 1, '2024-08-02 01:05:10', '2024-08-02 01:05:10', 0, NULL, '2024-08-02 05:05:10', '2024-08-02 05:05:10'),
(1361, 2, '2024-08-02 01:05:11', '2024-08-02 01:05:11', 0, NULL, '2024-08-02 05:05:11', '2024-08-02 05:05:11'),
(1362, 3, '2024-08-02 01:05:11', '2024-08-02 01:05:11', 0, NULL, '2024-08-02 05:05:11', '2024-08-02 05:05:11'),
(1363, 5, '2024-08-02 01:05:12', '2024-08-02 01:05:12', 0, NULL, '2024-08-02 05:05:12', '2024-08-02 05:05:12'),
(1364, 1, '2024-08-02 01:15:03', '2024-08-02 01:15:03', 0, NULL, '2024-08-02 05:15:03', '2024-08-02 05:15:03'),
(1365, 2, '2024-08-02 01:15:04', '2024-08-02 01:15:04', 0, NULL, '2024-08-02 05:15:04', '2024-08-02 05:15:04'),
(1366, 3, '2024-08-02 01:15:04', '2024-08-02 01:15:04', 0, NULL, '2024-08-02 05:15:04', '2024-08-02 05:15:04'),
(1367, 5, '2024-08-02 01:15:04', '2024-08-02 01:15:04', 0, NULL, '2024-08-02 05:15:05', '2024-08-02 05:15:05'),
(1368, 1, '2024-08-02 01:20:04', '2024-08-02 01:20:04', 0, NULL, '2024-08-02 05:20:04', '2024-08-02 05:20:04'),
(1369, 1, '2024-08-02 01:25:08', '2024-08-02 01:25:08', 0, NULL, '2024-08-02 05:25:09', '2024-08-02 05:25:09');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(1370, 2, '2024-08-02 01:25:09', '2024-08-02 01:25:09', 0, NULL, '2024-08-02 05:25:09', '2024-08-02 05:25:09'),
(1371, 3, '2024-08-02 01:25:09', '2024-08-02 01:25:09', 0, NULL, '2024-08-02 05:25:09', '2024-08-02 05:25:09'),
(1372, 5, '2024-08-02 01:25:09', '2024-08-02 01:25:09', 0, NULL, '2024-08-02 05:25:10', '2024-08-02 05:25:10'),
(1373, 1, '2024-08-02 01:35:05', '2024-08-02 01:35:05', 0, NULL, '2024-08-02 05:35:05', '2024-08-02 05:35:05'),
(1374, 2, '2024-08-02 01:35:06', '2024-08-02 01:35:06', 0, NULL, '2024-08-02 05:35:06', '2024-08-02 05:35:06'),
(1375, 3, '2024-08-02 01:35:06', '2024-08-02 01:35:06', 0, NULL, '2024-08-02 05:35:07', '2024-08-02 05:35:07'),
(1376, 5, '2024-08-02 01:35:07', '2024-08-02 01:35:07', 0, NULL, '2024-08-02 05:35:07', '2024-08-02 05:35:07'),
(1377, 1, '2024-08-02 01:40:07', '2024-08-02 01:40:07', 0, NULL, '2024-08-02 05:40:07', '2024-08-02 05:40:07'),
(1378, 2, '2024-08-02 01:40:08', '2024-08-02 01:40:08', 0, NULL, '2024-08-02 05:40:08', '2024-08-02 05:40:08'),
(1379, 3, '2024-08-02 01:40:09', '2024-08-02 01:40:09', 0, NULL, '2024-08-02 05:40:09', '2024-08-02 05:40:09'),
(1380, 5, '2024-08-02 01:45:06', '2024-08-02 01:45:07', 0, NULL, '2024-08-02 05:45:07', '2024-08-02 05:45:07'),
(1381, 1, '2024-08-02 01:50:06', '2024-08-02 01:50:06', 0, NULL, '2024-08-02 05:50:07', '2024-08-02 05:50:07'),
(1382, 2, '2024-08-02 01:50:07', '2024-08-02 01:50:07', 0, NULL, '2024-08-02 05:50:07', '2024-08-02 05:50:07'),
(1383, 3, '2024-08-02 01:50:08', '2024-08-02 01:50:08', 0, NULL, '2024-08-02 05:50:08', '2024-08-02 05:50:08'),
(1384, 5, '2024-08-02 01:55:03', '2024-08-02 01:55:03', 0, NULL, '2024-08-02 05:55:04', '2024-08-02 05:55:04'),
(1385, 1, '2024-08-02 02:00:04', '2024-08-02 02:00:04', 0, NULL, '2024-08-02 06:00:04', '2024-08-02 06:00:04'),
(1386, 2, '2024-08-02 02:00:08', '2024-08-02 02:00:08', 0, NULL, '2024-08-02 06:00:10', '2024-08-02 06:00:10'),
(1387, 3, '2024-08-02 02:00:10', '2024-08-02 02:00:10', 0, NULL, '2024-08-02 06:00:11', '2024-08-02 06:00:11'),
(1388, 5, '2024-08-02 02:00:11', '2024-08-02 02:00:11', 0, NULL, '2024-08-02 06:00:11', '2024-08-02 06:00:11'),
(1389, 1, '2024-08-02 02:10:04', '2024-08-02 02:10:06', 2, NULL, '2024-08-02 06:10:07', '2024-08-02 06:10:07'),
(1390, 2, '2024-08-02 02:10:07', '2024-08-02 02:10:07', 0, NULL, '2024-08-02 06:10:07', '2024-08-02 06:10:07'),
(1391, 3, '2024-08-02 02:10:08', '2024-08-02 02:10:08', 0, NULL, '2024-08-02 06:10:08', '2024-08-02 06:10:08'),
(1392, 5, '2024-08-02 02:10:08', '2024-08-02 02:10:08', 0, NULL, '2024-08-02 06:10:08', '2024-08-02 06:10:08'),
(1393, 1, '2024-08-02 02:15:07', '2024-08-02 02:15:07', 0, NULL, '2024-08-02 06:15:07', '2024-08-02 06:15:07'),
(1394, 2, '2024-08-02 02:20:04', '2024-08-02 02:20:04', 0, NULL, '2024-08-02 06:20:04', '2024-08-02 06:20:04'),
(1395, 3, '2024-08-02 02:20:05', '2024-08-02 02:20:05', 0, NULL, '2024-08-02 06:20:05', '2024-08-02 06:20:05'),
(1396, 5, '2024-08-02 02:20:10', '2024-08-02 02:20:10', 0, NULL, '2024-08-02 06:20:10', '2024-08-02 06:20:10'),
(1397, 1, '2024-08-02 02:25:10', '2024-08-02 02:25:10', 0, NULL, '2024-08-02 06:25:10', '2024-08-02 06:25:10'),
(1398, 2, '2024-08-02 02:25:11', '2024-08-02 02:25:11', 0, NULL, '2024-08-02 06:25:11', '2024-08-02 06:25:11'),
(1399, 3, '2024-08-02 02:25:11', '2024-08-02 02:25:11', 0, NULL, '2024-08-02 06:25:11', '2024-08-02 06:25:11'),
(1400, 5, '2024-08-02 02:30:06', '2024-08-02 02:30:06', 0, NULL, '2024-08-02 06:30:07', '2024-08-02 06:30:07'),
(1401, 1, '2024-08-02 02:35:08', '2024-08-02 02:35:08', 0, NULL, '2024-08-02 06:35:08', '2024-08-02 06:35:08'),
(1402, 2, '2024-08-02 02:35:08', '2024-08-02 02:35:08', 0, NULL, '2024-08-02 06:35:09', '2024-08-02 06:35:09'),
(1403, 3, '2024-08-02 02:35:09', '2024-08-02 02:35:09', 0, NULL, '2024-08-02 06:35:10', '2024-08-02 06:35:10'),
(1404, 5, '2024-08-02 02:40:08', '2024-08-02 02:40:08', 0, NULL, '2024-08-02 06:40:08', '2024-08-02 06:40:08'),
(1405, 1, '2024-08-02 02:45:08', '2024-08-02 02:45:08', 0, NULL, '2024-08-02 06:45:08', '2024-08-02 06:45:08'),
(1406, 2, '2024-08-02 02:45:09', '2024-08-02 02:45:09', 0, NULL, '2024-08-02 06:45:09', '2024-08-02 06:45:09'),
(1407, 3, '2024-08-02 02:45:09', '2024-08-02 02:45:09', 0, NULL, '2024-08-02 06:45:09', '2024-08-02 06:45:09'),
(1408, 5, '2024-08-02 02:50:02', '2024-08-02 02:50:02', 0, NULL, '2024-08-02 06:50:02', '2024-08-02 06:50:02'),
(1409, 1, '2024-08-02 02:55:05', '2024-08-02 02:55:05', 0, NULL, '2024-08-02 06:55:05', '2024-08-02 06:55:05'),
(1410, 2, '2024-08-02 02:55:05', '2024-08-02 02:55:05', 0, NULL, '2024-08-02 06:55:06', '2024-08-02 06:55:06'),
(1411, 3, '2024-08-02 02:55:06', '2024-08-02 02:55:06', 0, NULL, '2024-08-02 06:55:07', '2024-08-02 06:55:07'),
(1412, 5, '2024-08-02 02:55:07', '2024-08-02 02:55:07', 0, NULL, '2024-08-02 06:55:07', '2024-08-02 06:55:07'),
(1413, 1, '2024-08-02 03:00:06', '2024-08-02 03:00:06', 0, NULL, '2024-08-02 07:00:07', '2024-08-02 07:00:07'),
(1414, 2, '2024-08-02 03:00:07', '2024-08-02 03:00:07', 0, NULL, '2024-08-02 07:00:07', '2024-08-02 07:00:07'),
(1415, 1, '2024-08-02 03:05:07', '2024-08-02 03:05:07', 0, NULL, '2024-08-02 07:05:08', '2024-08-02 07:05:08'),
(1416, 3, '2024-08-02 03:05:08', '2024-08-02 03:05:08', 0, NULL, '2024-08-02 07:05:08', '2024-08-02 07:05:08'),
(1417, 5, '2024-08-02 03:05:08', '2024-08-02 03:05:08', 0, NULL, '2024-08-02 07:05:08', '2024-08-02 07:05:08'),
(1418, 2, '2024-08-02 03:10:05', '2024-08-02 03:10:05', 0, NULL, '2024-08-02 07:10:06', '2024-08-02 07:10:06'),
(1419, 1, '2024-08-02 03:15:06', '2024-08-02 03:15:06', 0, NULL, '2024-08-02 07:15:07', '2024-08-02 07:15:07'),
(1420, 2, '2024-08-02 03:15:07', '2024-08-02 03:15:07', 0, NULL, '2024-08-02 07:15:08', '2024-08-02 07:15:08'),
(1421, 3, '2024-08-02 03:15:08', '2024-08-02 03:15:08', 0, NULL, '2024-08-02 07:15:08', '2024-08-02 07:15:08'),
(1422, 5, '2024-08-02 03:15:09', '2024-08-02 03:15:09', 0, NULL, '2024-08-02 07:15:09', '2024-08-02 07:15:09'),
(1423, 1, '2024-08-02 03:25:06', '2024-08-02 03:25:06', 0, NULL, '2024-08-02 07:25:06', '2024-08-02 07:25:06'),
(1424, 2, '2024-08-02 03:25:06', '2024-08-02 03:25:06', 0, NULL, '2024-08-02 07:25:06', '2024-08-02 07:25:06'),
(1425, 3, '2024-08-02 03:25:07', '2024-08-02 03:25:07', 0, NULL, '2024-08-02 07:25:07', '2024-08-02 07:25:07'),
(1426, 5, '2024-08-02 03:25:08', '2024-08-02 03:25:08', 0, NULL, '2024-08-02 07:25:08', '2024-08-02 07:25:08'),
(1427, 1, '2024-08-02 03:35:04', '2024-08-02 03:35:04', 0, NULL, '2024-08-02 07:35:05', '2024-08-02 07:35:05'),
(1428, 2, '2024-08-02 03:35:05', '2024-08-02 03:35:05', 0, NULL, '2024-08-02 07:35:05', '2024-08-02 07:35:05'),
(1429, 3, '2024-08-02 03:35:06', '2024-08-02 03:35:06', 0, NULL, '2024-08-02 07:35:06', '2024-08-02 07:35:06'),
(1430, 5, '2024-08-02 03:35:06', '2024-08-02 03:35:06', 0, NULL, '2024-08-02 07:35:07', '2024-08-02 07:35:07'),
(1431, 1, '2024-08-02 03:45:05', '2024-08-02 03:45:06', 0, NULL, '2024-08-02 07:45:06', '2024-08-02 07:45:06'),
(1432, 2, '2024-08-02 03:45:06', '2024-08-02 03:45:06', 0, NULL, '2024-08-02 07:45:06', '2024-08-02 07:45:06'),
(1433, 3, '2024-08-02 03:45:07', '2024-08-02 03:45:07', 0, NULL, '2024-08-02 07:45:07', '2024-08-02 07:45:07'),
(1434, 5, '2024-08-02 03:45:08', '2024-08-02 03:45:08', 0, NULL, '2024-08-02 07:45:08', '2024-08-02 07:45:08'),
(1435, 1, '2024-08-02 03:50:09', '2024-08-02 03:50:10', 0, NULL, '2024-08-02 07:50:10', '2024-08-02 07:50:10'),
(1436, 2, '2024-08-02 03:50:10', '2024-08-02 03:50:10', 0, NULL, '2024-08-02 07:50:11', '2024-08-02 07:50:11'),
(1437, 3, '2024-08-02 03:50:11', '2024-08-02 03:50:11', 0, NULL, '2024-08-02 07:50:11', '2024-08-02 07:50:11'),
(1438, 5, '2024-08-02 03:50:11', '2024-08-02 03:50:11', 0, NULL, '2024-08-02 07:50:11', '2024-08-02 07:50:11'),
(1439, 1, '2024-08-02 04:00:10', '2024-08-02 04:00:10', 0, NULL, '2024-08-02 08:00:11', '2024-08-02 08:00:11'),
(1440, 2, '2024-08-02 04:00:11', '2024-08-02 04:00:11', 0, NULL, '2024-08-02 08:00:11', '2024-08-02 08:00:11'),
(1441, 3, '2024-08-02 04:00:12', '2024-08-02 04:00:12', 0, NULL, '2024-08-02 08:00:12', '2024-08-02 08:00:12'),
(1442, 5, '2024-08-02 04:00:12', '2024-08-02 04:00:12', 0, NULL, '2024-08-02 08:00:12', '2024-08-02 08:00:12'),
(1443, 1, '2024-08-02 04:10:10', '2024-08-02 04:10:10', 0, NULL, '2024-08-02 08:10:11', '2024-08-02 08:10:11'),
(1444, 2, '2024-08-02 04:10:11', '2024-08-02 04:10:11', 0, NULL, '2024-08-02 08:10:11', '2024-08-02 08:10:11'),
(1445, 3, '2024-08-02 04:10:11', '2024-08-02 04:10:11', 0, NULL, '2024-08-02 08:10:11', '2024-08-02 08:10:11'),
(1446, 5, '2024-08-02 04:10:11', '2024-08-02 04:10:11', 0, NULL, '2024-08-02 08:10:12', '2024-08-02 08:10:12'),
(1447, 1, '2024-08-02 04:20:04', '2024-08-02 04:20:04', 0, NULL, '2024-08-02 08:20:04', '2024-08-02 08:20:04'),
(1448, 2, '2024-08-02 04:20:05', '2024-08-02 04:20:05', 0, NULL, '2024-08-02 08:20:05', '2024-08-02 08:20:05'),
(1449, 3, '2024-08-02 04:20:06', '2024-08-02 04:20:06', 0, NULL, '2024-08-02 08:20:06', '2024-08-02 08:20:06'),
(1450, 5, '2024-08-02 04:20:07', '2024-08-02 04:20:07', 0, NULL, '2024-08-02 08:20:07', '2024-08-02 08:20:07'),
(1451, 1, '2024-08-02 04:25:06', '2024-08-02 04:25:07', 0, NULL, '2024-08-02 08:25:07', '2024-08-02 08:25:07'),
(1452, 2, '2024-08-02 04:25:07', '2024-08-02 04:25:07', 0, NULL, '2024-08-02 08:25:08', '2024-08-02 08:25:08'),
(1453, 1, '2024-08-02 04:30:10', '2024-08-02 04:30:10', 0, NULL, '2024-08-02 08:30:10', '2024-08-02 08:30:10'),
(1454, 2, '2024-08-02 04:30:10', '2024-08-02 04:30:10', 0, NULL, '2024-08-02 08:30:11', '2024-08-02 08:30:11'),
(1455, 3, '2024-08-02 04:30:11', '2024-08-02 04:30:11', 0, NULL, '2024-08-02 08:30:11', '2024-08-02 08:30:11'),
(1456, 5, '2024-08-02 04:30:11', '2024-08-02 04:30:11', 0, NULL, '2024-08-02 08:30:11', '2024-08-02 08:30:11'),
(1457, 1, '2024-08-02 04:40:04', '2024-08-02 04:40:04', 0, NULL, '2024-08-02 08:40:05', '2024-08-02 08:40:05'),
(1458, 2, '2024-08-02 04:40:05', '2024-08-02 04:40:05', 0, NULL, '2024-08-02 08:40:05', '2024-08-02 08:40:05'),
(1459, 3, '2024-08-02 04:40:05', '2024-08-02 04:40:05', 0, NULL, '2024-08-02 08:40:06', '2024-08-02 08:40:06'),
(1460, 5, '2024-08-02 04:40:06', '2024-08-02 04:40:06', 0, NULL, '2024-08-02 08:40:06', '2024-08-02 08:40:06'),
(1461, 1, '2024-08-02 04:45:07', '2024-08-02 04:45:07', 0, NULL, '2024-08-02 08:45:09', '2024-08-02 08:45:09'),
(1462, 2, '2024-08-02 04:45:09', '2024-08-02 04:45:09', 0, NULL, '2024-08-02 08:45:09', '2024-08-02 08:45:09'),
(1463, 3, '2024-08-02 04:45:10', '2024-08-02 04:45:10', 0, NULL, '2024-08-02 08:45:10', '2024-08-02 08:45:10'),
(1464, 5, '2024-08-02 04:50:08', '2024-08-02 04:50:08', 0, NULL, '2024-08-02 08:50:08', '2024-08-02 08:50:08'),
(1465, 1, '2024-08-02 04:55:06', '2024-08-02 04:55:06', 0, NULL, '2024-08-02 08:55:07', '2024-08-02 08:55:07'),
(1466, 2, '2024-08-02 04:55:07', '2024-08-02 04:55:07', 0, NULL, '2024-08-02 08:55:07', '2024-08-02 08:55:07'),
(1467, 3, '2024-08-02 04:55:07', '2024-08-02 04:55:07', 0, NULL, '2024-08-02 08:55:07', '2024-08-02 08:55:07'),
(1468, 1, '2024-08-02 05:00:07', '2024-08-02 05:00:07', 0, NULL, '2024-08-02 09:00:09', '2024-08-02 09:00:09'),
(1469, 5, '2024-08-02 05:00:09', '2024-08-02 05:00:09', 0, NULL, '2024-08-02 09:00:10', '2024-08-02 09:00:10'),
(1470, 2, '2024-08-02 05:05:04', '2024-08-02 05:05:04', 0, NULL, '2024-08-02 09:05:05', '2024-08-02 09:05:05'),
(1471, 3, '2024-08-02 05:05:05', '2024-08-02 05:05:05', 0, NULL, '2024-08-02 09:05:05', '2024-08-02 09:05:05'),
(1472, 1, '2024-08-02 05:10:05', '2024-08-02 05:10:05', 0, NULL, '2024-08-02 09:10:05', '2024-08-02 09:10:05'),
(1473, 2, '2024-08-02 05:10:06', '2024-08-02 05:10:06', 0, NULL, '2024-08-02 09:10:06', '2024-08-02 09:10:06'),
(1474, 5, '2024-08-02 05:10:07', '2024-08-02 05:10:07', 0, NULL, '2024-08-02 09:10:07', '2024-08-02 09:10:07'),
(1475, 3, '2024-08-02 05:15:03', '2024-08-02 05:15:03', 0, NULL, '2024-08-02 09:15:05', '2024-08-02 09:15:05'),
(1476, 1, '2024-08-02 05:20:05', '2024-08-02 05:20:05', 0, NULL, '2024-08-02 09:20:05', '2024-08-02 09:20:05'),
(1477, 2, '2024-08-02 05:20:05', '2024-08-02 05:20:05', 0, NULL, '2024-08-02 09:20:06', '2024-08-02 09:20:06'),
(1478, 3, '2024-08-02 05:20:10', '2024-08-02 05:20:10', 0, NULL, '2024-08-02 09:20:10', '2024-08-02 09:20:10'),
(1479, 5, '2024-08-02 05:20:10', '2024-08-02 05:20:10', 0, NULL, '2024-08-02 09:20:10', '2024-08-02 09:20:10'),
(1480, 1, '2024-08-02 05:25:07', '2024-08-02 05:25:07', 0, NULL, '2024-08-02 09:25:07', '2024-08-02 09:25:07'),
(1481, 2, '2024-08-02 05:25:07', '2024-08-02 05:25:07', 0, NULL, '2024-08-02 09:25:08', '2024-08-02 09:25:08'),
(1482, 3, '2024-08-02 05:30:05', '2024-08-02 05:30:05', 0, NULL, '2024-08-02 09:30:05', '2024-08-02 09:30:05'),
(1483, 5, '2024-08-02 05:30:06', '2024-08-02 05:30:06', 0, NULL, '2024-08-02 09:30:06', '2024-08-02 09:30:06'),
(1484, 1, '2024-08-02 05:35:05', '2024-08-02 05:35:05', 0, NULL, '2024-08-02 09:35:05', '2024-08-02 09:35:05'),
(1485, 2, '2024-08-02 05:35:05', '2024-08-02 05:35:05', 0, NULL, '2024-08-02 09:35:06', '2024-08-02 09:35:06'),
(1486, 3, '2024-08-02 05:40:04', '2024-08-02 05:40:04', 0, NULL, '2024-08-02 09:40:05', '2024-08-02 09:40:05'),
(1487, 5, '2024-08-02 05:40:05', '2024-08-02 05:40:05', 0, NULL, '2024-08-02 09:40:05', '2024-08-02 09:40:05'),
(1488, 1, '2024-08-02 05:45:08', '2024-08-02 05:45:08', 0, NULL, '2024-08-02 09:45:09', '2024-08-02 09:45:09'),
(1489, 2, '2024-08-02 05:45:09', '2024-08-02 05:45:09', 0, NULL, '2024-08-02 09:45:09', '2024-08-02 09:45:09'),
(1490, 3, '2024-08-02 05:45:09', '2024-08-02 05:45:09', 0, NULL, '2024-08-02 09:45:09', '2024-08-02 09:45:09'),
(1491, 5, '2024-08-02 05:45:09', '2024-08-02 05:45:09', 0, NULL, '2024-08-02 09:45:09', '2024-08-02 09:45:09'),
(1492, 1, '2024-08-02 05:55:03', '2024-08-02 05:55:03', 0, NULL, '2024-08-02 09:55:03', '2024-08-02 09:55:03'),
(1493, 2, '2024-08-02 05:55:04', '2024-08-02 05:55:04', 0, NULL, '2024-08-02 09:55:04', '2024-08-02 09:55:04'),
(1494, 3, '2024-08-02 05:55:04', '2024-08-02 05:55:04', 0, NULL, '2024-08-02 09:55:05', '2024-08-02 09:55:05'),
(1495, 5, '2024-08-02 05:55:05', '2024-08-02 05:55:05', 0, NULL, '2024-08-02 09:55:05', '2024-08-02 09:55:05'),
(1496, 1, '2024-08-02 06:00:08', '2024-08-02 06:00:08', 0, NULL, '2024-08-02 10:00:12', '2024-08-02 10:00:12'),
(1497, 2, '2024-08-02 06:00:12', '2024-08-02 06:00:12', 0, NULL, '2024-08-02 10:00:13', '2024-08-02 10:00:13'),
(1498, 3, '2024-08-02 06:00:13', '2024-08-02 06:00:13', 0, NULL, '2024-08-02 10:00:13', '2024-08-02 10:00:13'),
(1499, 5, '2024-08-02 06:00:13', '2024-08-02 06:00:13', 0, NULL, '2024-08-02 10:00:13', '2024-08-02 10:00:13'),
(1500, 1, '2024-08-02 06:10:06', '2024-08-02 06:10:06', 0, NULL, '2024-08-02 10:10:06', '2024-08-02 10:10:06'),
(1501, 2, '2024-08-02 06:10:07', '2024-08-02 06:10:07', 0, NULL, '2024-08-02 10:10:07', '2024-08-02 10:10:07'),
(1502, 3, '2024-08-02 06:10:08', '2024-08-02 06:10:08', 0, NULL, '2024-08-02 10:10:08', '2024-08-02 10:10:08'),
(1503, 5, '2024-08-02 06:10:08', '2024-08-02 06:10:08', 0, NULL, '2024-08-02 10:10:08', '2024-08-02 10:10:08'),
(1504, 1, '2024-08-02 06:20:06', '2024-08-02 06:20:06', 0, NULL, '2024-08-02 10:20:07', '2024-08-02 10:20:07'),
(1505, 2, '2024-08-02 06:20:07', '2024-08-02 06:20:07', 0, NULL, '2024-08-02 10:20:07', '2024-08-02 10:20:07'),
(1506, 3, '2024-08-02 06:20:08', '2024-08-02 06:20:08', 0, NULL, '2024-08-02 10:20:09', '2024-08-02 10:20:09'),
(1507, 5, '2024-08-02 06:20:09', '2024-08-02 06:20:09', 0, NULL, '2024-08-02 10:20:10', '2024-08-02 10:20:10'),
(1508, 1, '2024-08-02 06:30:05', '2024-08-02 06:30:06', 0, NULL, '2024-08-02 10:30:06', '2024-08-02 10:30:06'),
(1509, 2, '2024-08-02 06:30:06', '2024-08-02 06:30:06', 0, NULL, '2024-08-02 10:30:07', '2024-08-02 10:30:07'),
(1510, 3, '2024-08-02 06:30:07', '2024-08-02 06:30:07', 0, NULL, '2024-08-02 10:30:08', '2024-08-02 10:30:08'),
(1511, 5, '2024-08-02 06:30:08', '2024-08-02 06:30:08', 0, NULL, '2024-08-02 10:30:09', '2024-08-02 10:30:09'),
(1512, 1, '2024-08-02 06:35:09', '2024-08-02 06:35:09', 0, NULL, '2024-08-02 10:35:09', '2024-08-02 10:35:09'),
(1513, 2, '2024-08-02 06:35:09', '2024-08-02 06:35:09', 0, NULL, '2024-08-02 10:35:10', '2024-08-02 10:35:10'),
(1514, 3, '2024-08-02 06:35:10', '2024-08-02 06:35:10', 0, NULL, '2024-08-02 10:35:10', '2024-08-02 10:35:10'),
(1515, 5, '2024-08-02 06:35:10', '2024-08-02 06:35:10', 0, NULL, '2024-08-02 10:35:10', '2024-08-02 10:35:10'),
(1516, 1, '2024-08-02 06:45:03', '2024-08-02 06:45:03', 0, NULL, '2024-08-02 10:45:03', '2024-08-02 10:45:03'),
(1517, 2, '2024-08-02 06:45:04', '2024-08-02 06:45:04', 0, NULL, '2024-08-02 10:45:04', '2024-08-02 10:45:04'),
(1518, 3, '2024-08-02 06:45:04', '2024-08-02 06:45:04', 0, NULL, '2024-08-02 10:45:05', '2024-08-02 10:45:05'),
(1519, 5, '2024-08-02 06:45:05', '2024-08-02 06:45:05', 0, NULL, '2024-08-02 10:45:05', '2024-08-02 10:45:05'),
(1520, 1, '2024-08-02 06:50:05', '2024-08-02 06:50:05', 0, NULL, '2024-08-02 10:50:06', '2024-08-02 10:50:06'),
(1521, 2, '2024-08-02 06:50:07', '2024-08-02 06:50:07', 0, NULL, '2024-08-02 10:50:07', '2024-08-02 10:50:07'),
(1522, 3, '2024-08-02 06:50:08', '2024-08-02 06:50:08', 0, NULL, '2024-08-02 10:50:08', '2024-08-02 10:50:08'),
(1523, 5, '2024-08-02 06:55:03', '2024-08-02 06:55:03', 0, NULL, '2024-08-02 10:55:03', '2024-08-02 10:55:03'),
(1524, 1, '2024-08-02 07:00:09', '2024-08-02 07:00:09', 0, NULL, '2024-08-02 11:00:09', '2024-08-02 11:00:09'),
(1525, 2, '2024-08-02 07:00:09', '2024-08-02 07:00:09', 0, NULL, '2024-08-02 11:00:10', '2024-08-02 11:00:10'),
(1526, 3, '2024-08-02 07:00:10', '2024-08-02 07:00:10', 0, NULL, '2024-08-02 11:00:10', '2024-08-02 11:00:10'),
(1527, 5, '2024-08-02 07:00:10', '2024-08-02 07:00:10', 0, NULL, '2024-08-02 11:00:10', '2024-08-02 11:00:10'),
(1528, 1, '2024-08-02 07:10:03', '2024-08-02 07:10:03', 0, NULL, '2024-08-02 11:10:03', '2024-08-02 11:10:03'),
(1529, 2, '2024-08-02 07:10:03', '2024-08-02 07:10:03', 0, NULL, '2024-08-02 11:10:03', '2024-08-02 11:10:03'),
(1530, 3, '2024-08-02 07:10:03', '2024-08-02 07:10:03', 0, NULL, '2024-08-02 11:10:04', '2024-08-02 11:10:04'),
(1531, 5, '2024-08-02 07:10:04', '2024-08-02 07:10:04', 0, NULL, '2024-08-02 11:10:04', '2024-08-02 11:10:04'),
(1532, 1, '2024-08-02 07:15:05', '2024-08-02 07:15:05', 0, NULL, '2024-08-02 11:15:06', '2024-08-02 11:15:06'),
(1533, 2, '2024-08-02 07:15:06', '2024-08-02 07:15:06', 0, NULL, '2024-08-02 11:15:07', '2024-08-02 11:15:07'),
(1534, 3, '2024-08-02 07:15:07', '2024-08-02 07:15:07', 0, NULL, '2024-08-02 11:15:08', '2024-08-02 11:15:08'),
(1535, 5, '2024-08-02 07:15:08', '2024-08-02 07:15:08', 0, NULL, '2024-08-02 11:15:08', '2024-08-02 11:15:08'),
(1536, 1, '2024-08-02 07:20:06', '2024-08-02 07:20:06', 0, NULL, '2024-08-02 11:20:07', '2024-08-02 11:20:07'),
(1537, 2, '2024-08-02 07:25:03', '2024-08-02 07:25:03', 0, NULL, '2024-08-02 11:25:03', '2024-08-02 11:25:03'),
(1538, 3, '2024-08-02 07:25:03', '2024-08-02 07:25:03', 0, NULL, '2024-08-02 11:25:04', '2024-08-02 11:25:04'),
(1539, 5, '2024-08-02 07:25:04', '2024-08-02 07:25:04', 0, NULL, '2024-08-02 11:25:04', '2024-08-02 11:25:04'),
(1540, 1, '2024-08-02 07:30:06', '2024-08-02 07:30:06', 0, NULL, '2024-08-02 11:30:07', '2024-08-02 11:30:07'),
(1541, 2, '2024-08-02 07:30:07', '2024-08-02 07:30:07', 0, NULL, '2024-08-02 11:30:07', '2024-08-02 11:30:07'),
(1542, 3, '2024-08-02 07:30:08', '2024-08-02 07:30:08', 0, NULL, '2024-08-02 11:30:08', '2024-08-02 11:30:08'),
(1543, 5, '2024-08-02 07:30:08', '2024-08-02 07:30:08', 0, NULL, '2024-08-02 11:30:08', '2024-08-02 11:30:08'),
(1544, 1, '2024-08-02 07:35:07', '2024-08-02 07:35:07', 0, NULL, '2024-08-02 11:35:08', '2024-08-02 11:35:08'),
(1545, 2, '2024-08-02 07:40:03', '2024-08-02 07:40:03', 0, NULL, '2024-08-02 11:40:04', '2024-08-02 11:40:04'),
(1546, 3, '2024-08-02 07:40:04', '2024-08-02 07:40:04', 0, NULL, '2024-08-02 11:40:05', '2024-08-02 11:40:05'),
(1547, 5, '2024-08-02 07:40:05', '2024-08-02 07:40:05', 0, NULL, '2024-08-02 11:40:06', '2024-08-02 11:40:06'),
(1548, 1, '2024-08-02 07:45:04', '2024-08-02 07:45:04', 0, NULL, '2024-08-02 11:45:04', '2024-08-02 11:45:04'),
(1549, 2, '2024-08-02 07:45:05', '2024-08-02 07:45:05', 0, NULL, '2024-08-02 11:45:05', '2024-08-02 11:45:05'),
(1550, 3, '2024-08-02 07:50:02', '2024-08-02 07:50:02', 0, NULL, '2024-08-02 11:50:02', '2024-08-02 11:50:02'),
(1551, 5, '2024-08-02 07:50:03', '2024-08-02 07:50:03', 0, NULL, '2024-08-02 11:50:03', '2024-08-02 11:50:03'),
(1552, 1, '2024-08-02 07:55:03', '2024-08-02 07:55:03', 0, NULL, '2024-08-02 11:55:03', '2024-08-02 11:55:03'),
(1553, 2, '2024-08-02 07:55:04', '2024-08-02 07:55:04', 0, NULL, '2024-08-02 11:55:04', '2024-08-02 11:55:04'),
(1554, 3, '2024-08-02 07:55:04', '2024-08-02 07:55:04', 0, NULL, '2024-08-02 11:55:04', '2024-08-02 11:55:04'),
(1555, 5, '2024-08-02 08:00:03', '2024-08-02 08:00:03', 0, NULL, '2024-08-02 12:00:10', '2024-08-02 12:00:10'),
(1556, 1, '2024-08-02 08:05:05', '2024-08-02 08:05:05', 0, NULL, '2024-08-02 12:05:06', '2024-08-02 12:05:06'),
(1557, 2, '2024-08-02 08:05:06', '2024-08-02 08:05:06', 0, NULL, '2024-08-02 12:05:06', '2024-08-02 12:05:06'),
(1558, 3, '2024-08-02 08:05:07', '2024-08-02 08:05:07', 0, NULL, '2024-08-02 12:05:07', '2024-08-02 12:05:07'),
(1559, 5, '2024-08-02 08:05:08', '2024-08-02 08:05:08', 0, NULL, '2024-08-02 12:05:08', '2024-08-02 12:05:08'),
(1560, 1, '2024-08-02 08:10:07', '2024-08-02 08:10:07', 0, NULL, '2024-08-02 12:10:07', '2024-08-02 12:10:07'),
(1561, 2, '2024-08-02 08:10:07', '2024-08-02 08:10:07', 0, NULL, '2024-08-02 12:10:07', '2024-08-02 12:10:07'),
(1562, 3, '2024-08-02 08:15:06', '2024-08-02 08:15:06', 0, NULL, '2024-08-02 12:15:06', '2024-08-02 12:15:06'),
(1563, 5, '2024-08-02 08:15:06', '2024-08-02 08:15:06', 0, NULL, '2024-08-02 12:15:06', '2024-08-02 12:15:06'),
(1564, 1, '2024-08-02 08:20:07', '2024-08-02 08:20:07', 0, NULL, '2024-08-02 12:20:07', '2024-08-02 12:20:07'),
(1565, 2, '2024-08-02 08:20:07', '2024-08-02 08:20:07', 0, NULL, '2024-08-02 12:20:08', '2024-08-02 12:20:08'),
(1566, 3, '2024-08-02 08:20:08', '2024-08-02 08:20:08', 0, NULL, '2024-08-02 12:20:08', '2024-08-02 12:20:08'),
(1567, 5, '2024-08-02 08:20:09', '2024-08-02 08:20:09', 0, NULL, '2024-08-02 12:20:09', '2024-08-02 12:20:09'),
(1568, 1, '2024-08-02 08:30:05', '2024-08-02 08:30:05', 0, NULL, '2024-08-02 12:30:05', '2024-08-02 12:30:05'),
(1569, 2, '2024-08-02 08:30:06', '2024-08-02 08:30:06', 0, NULL, '2024-08-02 12:30:06', '2024-08-02 12:30:06'),
(1570, 3, '2024-08-02 08:30:06', '2024-08-02 08:30:06', 0, NULL, '2024-08-02 12:30:06', '2024-08-02 12:30:06'),
(1571, 5, '2024-08-02 08:30:06', '2024-08-02 08:30:06', 0, NULL, '2024-08-02 12:30:07', '2024-08-02 12:30:07'),
(1572, 1, '2024-08-02 08:35:08', '2024-08-02 08:35:08', 0, NULL, '2024-08-02 12:35:09', '2024-08-02 12:35:09'),
(1573, 2, '2024-08-02 08:35:09', '2024-08-02 08:35:09', 0, NULL, '2024-08-02 12:35:09', '2024-08-02 12:35:09'),
(1574, 3, '2024-08-02 08:35:09', '2024-08-02 08:35:09', 0, NULL, '2024-08-02 12:35:09', '2024-08-02 12:35:09'),
(1575, 5, '2024-08-02 08:35:09', '2024-08-02 08:35:09', 0, NULL, '2024-08-02 12:35:09', '2024-08-02 12:35:09'),
(1576, 1, '2024-08-02 08:45:05', '2024-08-02 08:45:05', 0, NULL, '2024-08-02 12:45:05', '2024-08-02 12:45:05'),
(1577, 2, '2024-08-02 08:45:05', '2024-08-02 08:45:05', 0, NULL, '2024-08-02 12:45:06', '2024-08-02 12:45:06'),
(1578, 3, '2024-08-02 08:45:06', '2024-08-02 08:45:06', 0, NULL, '2024-08-02 12:45:07', '2024-08-02 12:45:07'),
(1579, 5, '2024-08-02 08:45:07', '2024-08-02 08:45:07', 0, NULL, '2024-08-02 12:45:07', '2024-08-02 12:45:07'),
(1580, 1, '2024-08-02 08:55:05', '2024-08-02 08:55:05', 0, NULL, '2024-08-02 12:55:05', '2024-08-02 12:55:05'),
(1581, 2, '2024-08-02 08:55:05', '2024-08-02 08:55:05', 0, NULL, '2024-08-02 12:55:05', '2024-08-02 12:55:05'),
(1582, 3, '2024-08-02 08:55:05', '2024-08-02 08:55:05', 0, NULL, '2024-08-02 12:55:06', '2024-08-02 12:55:06'),
(1583, 5, '2024-08-02 08:55:06', '2024-08-02 08:55:06', 0, NULL, '2024-08-02 12:55:07', '2024-08-02 12:55:07'),
(1584, 1, '2024-08-02 09:00:06', '2024-08-02 09:00:06', 0, NULL, '2024-08-02 13:00:07', '2024-08-02 13:00:07'),
(1585, 2, '2024-08-02 09:00:07', '2024-08-02 09:00:07', 0, NULL, '2024-08-02 13:00:08', '2024-08-02 13:00:08'),
(1586, 3, '2024-08-02 09:00:08', '2024-08-02 09:00:08', 0, NULL, '2024-08-02 13:00:08', '2024-08-02 13:00:08'),
(1587, 1, '2024-08-02 09:05:08', '2024-08-02 09:05:08', 0, NULL, '2024-08-02 13:05:08', '2024-08-02 13:05:08'),
(1588, 2, '2024-08-02 09:05:09', '2024-08-02 09:05:09', 0, NULL, '2024-08-02 13:05:09', '2024-08-02 13:05:09'),
(1589, 5, '2024-08-02 09:05:09', '2024-08-02 09:05:09', 0, NULL, '2024-08-02 13:05:09', '2024-08-02 13:05:09'),
(1590, 3, '2024-08-02 09:10:05', '2024-08-02 09:10:05', 0, NULL, '2024-08-02 13:10:06', '2024-08-02 13:10:06'),
(1591, 1, '2024-08-02 09:15:06', '2024-08-02 09:15:06', 0, NULL, '2024-08-02 13:15:06', '2024-08-02 13:15:06'),
(1592, 2, '2024-08-02 09:15:07', '2024-08-02 09:15:07', 0, NULL, '2024-08-02 13:15:07', '2024-08-02 13:15:07'),
(1593, 3, '2024-08-02 09:15:07', '2024-08-02 09:15:07', 0, NULL, '2024-08-02 13:15:07', '2024-08-02 13:15:07'),
(1594, 5, '2024-08-02 09:15:08', '2024-08-02 09:15:08', 0, NULL, '2024-08-02 13:15:08', '2024-08-02 13:15:08'),
(1595, 1, '2024-08-02 09:20:08', '2024-08-02 09:20:08', 0, NULL, '2024-08-02 13:20:08', '2024-08-02 13:20:08'),
(1596, 2, '2024-08-02 09:20:08', '2024-08-02 09:20:08', 0, NULL, '2024-08-02 13:20:08', '2024-08-02 13:20:08'),
(1597, 3, '2024-08-02 09:20:09', '2024-08-02 09:20:09', 0, NULL, '2024-08-02 13:20:09', '2024-08-02 13:20:09'),
(1598, 5, '2024-08-02 09:25:03', '2024-08-02 09:25:03', 0, NULL, '2024-08-02 13:25:03', '2024-08-02 13:25:03'),
(1599, 1, '2024-08-02 09:30:06', '2024-08-02 09:30:06', 0, NULL, '2024-08-02 13:30:07', '2024-08-02 13:30:07'),
(1600, 2, '2024-08-02 09:30:07', '2024-08-02 09:30:07', 0, NULL, '2024-08-02 13:30:07', '2024-08-02 13:30:07'),
(1601, 3, '2024-08-02 09:30:08', '2024-08-02 09:30:08', 0, NULL, '2024-08-02 13:30:08', '2024-08-02 13:30:08'),
(1602, 5, '2024-08-02 09:30:09', '2024-08-02 09:30:09', 0, NULL, '2024-08-02 13:30:09', '2024-08-02 13:30:09'),
(1603, 1, '2024-08-02 09:40:03', '2024-08-02 09:40:03', 0, NULL, '2024-08-02 13:40:03', '2024-08-02 13:40:03'),
(1604, 2, '2024-08-02 09:40:03', '2024-08-02 09:40:03', 0, NULL, '2024-08-02 13:40:04', '2024-08-02 13:40:04'),
(1605, 3, '2024-08-02 09:40:04', '2024-08-02 09:40:04', 0, NULL, '2024-08-02 13:40:04', '2024-08-02 13:40:04'),
(1606, 5, '2024-08-02 09:40:04', '2024-08-02 09:40:04', 0, NULL, '2024-08-02 13:40:05', '2024-08-02 13:40:05'),
(1607, 1, '2024-08-02 09:45:06', '2024-08-02 09:45:06', 0, NULL, '2024-08-02 13:45:09', '2024-08-02 13:45:09'),
(1608, 2, '2024-08-02 09:45:10', '2024-08-02 09:45:10', 0, NULL, '2024-08-02 13:45:10', '2024-08-02 13:45:10'),
(1609, 3, '2024-08-02 09:45:10', '2024-08-02 09:45:10', 0, NULL, '2024-08-02 13:45:10', '2024-08-02 13:45:10'),
(1610, 5, '2024-08-02 09:45:10', '2024-08-02 09:45:10', 0, NULL, '2024-08-02 13:45:10', '2024-08-02 13:45:10'),
(1611, 1, '2024-08-02 09:55:05', '2024-08-02 09:55:05', 0, NULL, '2024-08-02 13:55:05', '2024-08-02 13:55:05'),
(1612, 2, '2024-08-02 09:55:06', '2024-08-02 09:55:06', 0, NULL, '2024-08-02 13:55:06', '2024-08-02 13:55:06'),
(1613, 3, '2024-08-02 09:55:06', '2024-08-02 09:55:06', 0, NULL, '2024-08-02 13:55:06', '2024-08-02 13:55:06'),
(1614, 5, '2024-08-02 09:55:07', '2024-08-02 09:55:07', 0, NULL, '2024-08-02 13:55:07', '2024-08-02 13:55:07'),
(1615, 1, '2024-08-02 10:00:06', '2024-08-02 10:00:06', 0, NULL, '2024-08-02 14:00:07', '2024-08-02 14:00:07'),
(1616, 1, '2024-08-02 10:05:08', '2024-08-02 10:05:08', 0, NULL, '2024-08-02 14:05:08', '2024-08-02 14:05:08'),
(1617, 2, '2024-08-02 10:05:09', '2024-08-02 10:05:09', 0, NULL, '2024-08-02 14:05:09', '2024-08-02 14:05:09'),
(1618, 3, '2024-08-02 10:05:10', '2024-08-02 10:05:10', 0, NULL, '2024-08-02 14:05:10', '2024-08-02 14:05:10'),
(1619, 5, '2024-08-02 10:05:10', '2024-08-02 10:05:10', 0, NULL, '2024-08-02 14:05:10', '2024-08-02 14:05:10'),
(1620, 1, '2024-08-02 10:15:08', '2024-08-02 10:15:08', 0, NULL, '2024-08-02 14:15:08', '2024-08-02 14:15:08'),
(1621, 2, '2024-08-02 10:15:09', '2024-08-02 10:15:09', 0, NULL, '2024-08-02 14:15:09', '2024-08-02 14:15:09'),
(1622, 3, '2024-08-02 10:15:11', '2024-08-02 10:15:11', 0, NULL, '2024-08-02 14:15:14', '2024-08-02 14:15:14'),
(1623, 5, '2024-08-02 10:15:14', '2024-08-02 10:15:14', 0, NULL, '2024-08-02 14:15:14', '2024-08-02 14:15:14'),
(1624, 1, '2024-08-02 10:25:02', '2024-08-02 10:25:02', 0, NULL, '2024-08-02 14:25:03', '2024-08-02 14:25:03'),
(1625, 2, '2024-08-02 10:25:03', '2024-08-02 10:25:03', 0, NULL, '2024-08-02 14:25:04', '2024-08-02 14:25:04'),
(1626, 3, '2024-08-02 10:25:04', '2024-08-02 10:25:04', 0, NULL, '2024-08-02 14:25:05', '2024-08-02 14:25:05'),
(1627, 5, '2024-08-02 10:25:05', '2024-08-02 10:25:05', 0, NULL, '2024-08-02 14:25:05', '2024-08-02 14:25:05'),
(1628, 1, '2024-08-02 10:30:11', '2024-08-02 10:30:11', 0, NULL, '2024-08-02 14:30:11', '2024-08-02 14:30:11'),
(1629, 2, '2024-08-02 10:30:11', '2024-08-02 10:30:11', 0, NULL, '2024-08-02 14:30:12', '2024-08-02 14:30:12'),
(1630, 3, '2024-08-02 10:30:12', '2024-08-02 10:30:12', 0, NULL, '2024-08-02 14:30:12', '2024-08-02 14:30:12'),
(1631, 5, '2024-08-02 10:30:12', '2024-08-02 10:30:12', 0, NULL, '2024-08-02 14:30:13', '2024-08-02 14:30:13'),
(1632, 1, '2024-08-02 10:40:04', '2024-08-02 10:40:04', 0, NULL, '2024-08-02 14:40:04', '2024-08-02 14:40:04'),
(1633, 2, '2024-08-02 10:40:05', '2024-08-02 10:40:05', 0, NULL, '2024-08-02 14:40:06', '2024-08-02 14:40:06'),
(1634, 3, '2024-08-02 10:40:07', '2024-08-02 10:40:07', 0, NULL, '2024-08-02 14:40:08', '2024-08-02 14:40:08'),
(1635, 5, '2024-08-02 10:40:08', '2024-08-02 10:40:08', 0, NULL, '2024-08-02 14:40:08', '2024-08-02 14:40:08'),
(1636, 1, '2024-08-02 10:50:04', '2024-08-02 10:50:04', 0, NULL, '2024-08-02 14:50:04', '2024-08-02 14:50:04'),
(1637, 2, '2024-08-02 10:50:04', '2024-08-02 10:50:04', 0, NULL, '2024-08-02 14:50:05', '2024-08-02 14:50:05'),
(1638, 3, '2024-08-02 10:50:05', '2024-08-02 10:50:05', 0, NULL, '2024-08-02 14:50:06', '2024-08-02 14:50:06'),
(1639, 5, '2024-08-02 10:50:06', '2024-08-02 10:50:06', 0, NULL, '2024-08-02 14:50:07', '2024-08-02 14:50:07'),
(1640, 1, '2024-08-02 10:55:10', '2024-08-02 10:55:10', 0, NULL, '2024-08-02 14:55:10', '2024-08-02 14:55:10'),
(1641, 2, '2024-08-02 10:55:11', '2024-08-02 10:55:11', 0, NULL, '2024-08-02 14:55:11', '2024-08-02 14:55:11'),
(1642, 3, '2024-08-02 10:55:11', '2024-08-02 10:55:11', 0, NULL, '2024-08-02 14:55:11', '2024-08-02 14:55:11'),
(1643, 5, '2024-08-02 10:55:11', '2024-08-02 10:55:11', 0, NULL, '2024-08-02 14:55:11', '2024-08-02 14:55:11'),
(1644, 1, '2024-08-02 11:05:06', '2024-08-02 11:05:06', 0, NULL, '2024-08-02 15:05:06', '2024-08-02 15:05:06'),
(1645, 2, '2024-08-02 11:05:07', '2024-08-02 11:05:07', 0, NULL, '2024-08-02 15:05:07', '2024-08-02 15:05:07'),
(1646, 3, '2024-08-02 11:05:07', '2024-08-02 11:05:07', 0, NULL, '2024-08-02 15:05:07', '2024-08-02 15:05:07'),
(1647, 5, '2024-08-02 11:05:07', '2024-08-02 11:05:07', 0, NULL, '2024-08-02 15:05:08', '2024-08-02 15:05:08'),
(1648, 1, '2024-08-02 11:15:06', '2024-08-02 11:15:06', 0, NULL, '2024-08-02 15:15:07', '2024-08-02 15:15:07'),
(1649, 2, '2024-08-02 11:15:08', '2024-08-02 11:15:08', 0, NULL, '2024-08-02 15:15:08', '2024-08-02 15:15:08'),
(1650, 3, '2024-08-02 11:15:08', '2024-08-02 11:15:08', 0, NULL, '2024-08-02 15:15:08', '2024-08-02 15:15:08'),
(1651, 5, '2024-08-02 11:15:08', '2024-08-02 11:15:09', 0, NULL, '2024-08-02 15:15:09', '2024-08-02 15:15:09'),
(1652, 1, '2024-08-02 11:20:07', '2024-08-02 11:20:07', 0, NULL, '2024-08-02 15:20:07', '2024-08-02 15:20:07'),
(1653, 2, '2024-08-02 11:25:07', '2024-08-02 11:25:07', 0, NULL, '2024-08-02 15:25:07', '2024-08-02 15:25:07'),
(1654, 3, '2024-08-02 11:25:08', '2024-08-02 11:25:08', 0, NULL, '2024-08-02 15:25:08', '2024-08-02 15:25:08'),
(1655, 5, '2024-08-02 11:25:08', '2024-08-02 11:25:08', 0, NULL, '2024-08-02 15:25:09', '2024-08-02 15:25:09'),
(1656, 1, '2024-08-02 11:30:04', '2024-08-02 11:30:04', 0, NULL, '2024-08-02 15:30:04', '2024-08-02 15:30:04'),
(1657, 2, '2024-08-02 11:35:05', '2024-08-02 11:35:05', 0, NULL, '2024-08-02 15:35:05', '2024-08-02 15:35:05'),
(1658, 3, '2024-08-02 11:35:05', '2024-08-02 11:35:05', 0, NULL, '2024-08-02 15:35:06', '2024-08-02 15:35:06'),
(1659, 5, '2024-08-02 11:35:07', '2024-08-02 11:35:07', 0, NULL, '2024-08-02 15:35:07', '2024-08-02 15:35:07'),
(1660, 1, '2024-08-02 11:40:08', '2024-08-02 11:40:08', 0, NULL, '2024-08-02 15:40:09', '2024-08-02 15:40:09'),
(1661, 2, '2024-08-02 11:40:09', '2024-08-02 11:40:09', 0, NULL, '2024-08-02 15:40:09', '2024-08-02 15:40:09'),
(1662, 3, '2024-08-02 11:40:09', '2024-08-02 11:40:09', 0, NULL, '2024-08-02 15:40:09', '2024-08-02 15:40:09'),
(1663, 1, '2024-08-02 11:45:10', '2024-08-02 11:45:10', 0, NULL, '2024-08-02 15:45:10', '2024-08-02 15:45:10'),
(1664, 5, '2024-08-02 11:45:10', '2024-08-02 11:45:10', 0, NULL, '2024-08-02 15:45:10', '2024-08-02 15:45:10'),
(1665, 2, '2024-08-02 11:50:02', '2024-08-02 11:50:02', 0, NULL, '2024-08-02 15:50:02', '2024-08-02 15:50:02'),
(1666, 3, '2024-08-02 11:50:03', '2024-08-02 11:50:03', 0, NULL, '2024-08-02 15:50:03', '2024-08-02 15:50:03'),
(1667, 1, '2024-08-02 11:55:06', '2024-08-02 11:55:07', 0, NULL, '2024-08-02 15:55:07', '2024-08-02 15:55:07'),
(1668, 2, '2024-08-02 11:55:07', '2024-08-02 11:55:07', 0, NULL, '2024-08-02 15:55:07', '2024-08-02 15:55:07'),
(1669, 3, '2024-08-02 11:55:07', '2024-08-02 11:55:07', 0, NULL, '2024-08-02 15:55:07', '2024-08-02 15:55:07'),
(1670, 5, '2024-08-02 11:55:08', '2024-08-02 11:55:08', 0, NULL, '2024-08-02 15:55:08', '2024-08-02 15:55:08'),
(1671, 1, '2024-08-02 12:05:07', '2024-08-02 12:05:07', 0, NULL, '2024-08-02 16:05:07', '2024-08-02 16:05:07'),
(1672, 2, '2024-08-02 12:05:07', '2024-08-02 12:05:07', 0, NULL, '2024-08-02 16:05:08', '2024-08-02 16:05:08'),
(1673, 3, '2024-08-02 12:05:08', '2024-08-02 12:05:08', 0, NULL, '2024-08-02 16:05:08', '2024-08-02 16:05:08'),
(1674, 5, '2024-08-02 12:05:08', '2024-08-02 12:05:08', 0, NULL, '2024-08-02 16:05:08', '2024-08-02 16:05:08'),
(1675, 1, '2024-08-02 12:15:07', '2024-08-02 12:15:07', 0, NULL, '2024-08-02 16:15:08', '2024-08-02 16:15:08'),
(1676, 2, '2024-08-02 12:15:08', '2024-08-02 12:15:08', 0, NULL, '2024-08-02 16:15:08', '2024-08-02 16:15:08'),
(1677, 3, '2024-08-02 12:15:08', '2024-08-02 12:15:08', 0, NULL, '2024-08-02 16:15:09', '2024-08-02 16:15:09'),
(1678, 5, '2024-08-02 12:15:09', '2024-08-02 12:15:09', 0, NULL, '2024-08-02 16:15:09', '2024-08-02 16:15:09'),
(1679, 1, '2024-08-02 12:25:04', '2024-08-02 12:25:04', 0, NULL, '2024-08-02 16:25:04', '2024-08-02 16:25:04'),
(1680, 2, '2024-08-02 12:25:05', '2024-08-02 12:25:05', 0, NULL, '2024-08-02 16:25:05', '2024-08-02 16:25:05'),
(1681, 3, '2024-08-02 12:25:05', '2024-08-02 12:25:05', 0, NULL, '2024-08-02 16:25:06', '2024-08-02 16:25:06'),
(1682, 5, '2024-08-02 12:25:06', '2024-08-02 12:25:06', 0, NULL, '2024-08-02 16:25:06', '2024-08-02 16:25:06'),
(1683, 1, '2024-08-02 12:30:05', '2024-08-02 12:30:05', 0, NULL, '2024-08-02 16:30:06', '2024-08-02 16:30:06'),
(1684, 2, '2024-08-02 12:35:03', '2024-08-02 12:35:03', 0, NULL, '2024-08-02 16:35:03', '2024-08-02 16:35:03'),
(1685, 3, '2024-08-02 12:35:03', '2024-08-02 12:35:03', 0, NULL, '2024-08-02 16:35:03', '2024-08-02 16:35:03'),
(1686, 5, '2024-08-02 12:35:04', '2024-08-02 12:35:04', 0, NULL, '2024-08-02 16:35:04', '2024-08-02 16:35:04'),
(1687, 1, '2024-08-02 12:40:05', '2024-08-02 12:40:05', 0, NULL, '2024-08-02 16:40:06', '2024-08-02 16:40:06'),
(1688, 2, '2024-08-02 12:40:06', '2024-08-02 12:40:06', 0, NULL, '2024-08-02 16:40:06', '2024-08-02 16:40:06'),
(1689, 3, '2024-08-02 12:40:06', '2024-08-02 12:40:06', 0, NULL, '2024-08-02 16:40:07', '2024-08-02 16:40:07'),
(1690, 5, '2024-08-02 12:40:07', '2024-08-02 12:40:07', 0, NULL, '2024-08-02 16:40:07', '2024-08-02 16:40:07'),
(1691, 1, '2024-08-02 12:45:09', '2024-08-02 12:45:09', 0, NULL, '2024-08-02 16:45:10', '2024-08-02 16:45:10'),
(1692, 2, '2024-08-02 12:45:10', '2024-08-02 12:45:10', 0, NULL, '2024-08-02 16:45:10', '2024-08-02 16:45:10'),
(1693, 3, '2024-08-02 12:45:10', '2024-08-02 12:45:10', 0, NULL, '2024-08-02 16:45:10', '2024-08-02 16:45:10'),
(1694, 5, '2024-08-02 12:45:11', '2024-08-02 12:45:11', 0, NULL, '2024-08-02 16:45:11', '2024-08-02 16:45:11'),
(1695, 1, '2024-08-02 12:55:04', '2024-08-02 12:55:04', 0, NULL, '2024-08-02 16:55:05', '2024-08-02 16:55:05'),
(1696, 2, '2024-08-02 12:55:05', '2024-08-02 12:55:05', 0, NULL, '2024-08-02 16:55:05', '2024-08-02 16:55:05'),
(1697, 3, '2024-08-02 12:55:06', '2024-08-02 12:55:06', 0, NULL, '2024-08-02 16:55:06', '2024-08-02 16:55:06'),
(1698, 5, '2024-08-02 12:55:06', '2024-08-02 12:55:06', 0, NULL, '2024-08-02 16:55:07', '2024-08-02 16:55:07'),
(1699, 1, '2024-08-02 13:00:05', '2024-08-02 13:00:05', 0, NULL, '2024-08-02 17:00:06', '2024-08-02 17:00:06'),
(1700, 2, '2024-08-02 13:05:03', '2024-08-02 13:05:03', 0, NULL, '2024-08-02 17:05:04', '2024-08-02 17:05:04'),
(1701, 3, '2024-08-02 13:05:04', '2024-08-02 13:05:04', 0, NULL, '2024-08-02 17:05:04', '2024-08-02 17:05:04'),
(1702, 5, '2024-08-02 13:05:05', '2024-08-02 13:05:05', 0, NULL, '2024-08-02 17:05:05', '2024-08-02 17:05:05'),
(1703, 1, '2024-08-02 13:10:06', '2024-08-02 13:10:07', 0, NULL, '2024-08-02 17:10:07', '2024-08-02 17:10:07'),
(1704, 2, '2024-08-02 13:10:08', '2024-08-02 13:10:08', 0, NULL, '2024-08-02 17:10:08', '2024-08-02 17:10:08'),
(1705, 3, '2024-08-02 13:10:09', '2024-08-02 13:10:09', 0, NULL, '2024-08-02 17:10:09', '2024-08-02 17:10:09'),
(1706, 5, '2024-08-02 13:10:09', '2024-08-02 13:10:10', 0, NULL, '2024-08-02 17:10:10', '2024-08-02 17:10:10'),
(1707, 1, '2024-08-02 13:15:09', '2024-08-02 13:15:09', 0, NULL, '2024-08-02 17:15:10', '2024-08-02 17:15:10'),
(1708, 2, '2024-08-02 13:15:10', '2024-08-02 13:15:10', 0, NULL, '2024-08-02 17:15:10', '2024-08-02 17:15:10'),
(1709, 3, '2024-08-02 13:20:07', '2024-08-02 13:20:07', 0, NULL, '2024-08-02 17:20:08', '2024-08-02 17:20:08'),
(1710, 5, '2024-08-02 13:20:08', '2024-08-02 13:20:08', 0, NULL, '2024-08-02 17:20:08', '2024-08-02 17:20:08'),
(1711, 1, '2024-08-02 13:25:04', '2024-08-02 13:25:04', 0, NULL, '2024-08-02 17:25:04', '2024-08-02 17:25:04'),
(1712, 2, '2024-08-02 13:25:05', '2024-08-02 13:25:05', 0, NULL, '2024-08-02 17:25:05', '2024-08-02 17:25:05'),
(1713, 1, '2024-08-02 13:30:09', '2024-08-02 13:30:10', 0, NULL, '2024-08-02 17:30:12', '2024-08-02 17:30:12'),
(1714, 2, '2024-08-02 13:30:12', '2024-08-02 13:30:12', 0, NULL, '2024-08-02 17:30:12', '2024-08-02 17:30:12'),
(1715, 3, '2024-08-02 13:30:13', '2024-08-02 13:30:13', 0, NULL, '2024-08-02 17:30:13', '2024-08-02 17:30:13'),
(1716, 5, '2024-08-02 13:30:13', '2024-08-02 13:30:13', 0, NULL, '2024-08-02 17:30:13', '2024-08-02 17:30:13'),
(1717, 1, '2024-08-02 13:40:06', '2024-08-02 13:40:06', 0, NULL, '2024-08-02 17:40:06', '2024-08-02 17:40:06'),
(1718, 2, '2024-08-02 13:40:07', '2024-08-02 13:40:07', 0, NULL, '2024-08-02 17:40:07', '2024-08-02 17:40:07'),
(1719, 3, '2024-08-02 13:40:07', '2024-08-02 13:40:07', 0, NULL, '2024-08-02 17:40:07', '2024-08-02 17:40:07'),
(1720, 5, '2024-08-02 13:40:07', '2024-08-02 13:40:07', 0, NULL, '2024-08-02 17:40:08', '2024-08-02 17:40:08'),
(1721, 1, '2024-08-02 13:45:07', '2024-08-02 13:45:07', 0, NULL, '2024-08-02 17:45:07', '2024-08-02 17:45:07'),
(1722, 2, '2024-08-02 13:50:07', '2024-08-02 13:50:07', 0, NULL, '2024-08-02 17:50:07', '2024-08-02 17:50:07'),
(1723, 3, '2024-08-02 13:50:07', '2024-08-02 13:50:07', 0, NULL, '2024-08-02 17:50:07', '2024-08-02 17:50:07'),
(1724, 5, '2024-08-02 13:50:08', '2024-08-02 13:50:08', 0, NULL, '2024-08-02 17:50:08', '2024-08-02 17:50:08'),
(1725, 1, '2024-08-02 13:55:06', '2024-08-02 13:55:06', 0, NULL, '2024-08-02 17:55:07', '2024-08-02 17:55:07'),
(1726, 2, '2024-08-02 14:00:06', '2024-08-02 14:00:06', 0, NULL, '2024-08-02 18:00:07', '2024-08-02 18:00:07'),
(1727, 3, '2024-08-02 14:00:07', '2024-08-02 14:00:07', 0, NULL, '2024-08-02 18:00:08', '2024-08-02 18:00:08'),
(1728, 5, '2024-08-02 14:00:08', '2024-08-02 14:00:08', 0, NULL, '2024-08-02 18:00:09', '2024-08-02 18:00:09'),
(1729, 1, '2024-08-02 14:05:04', '2024-08-02 14:05:04', 0, NULL, '2024-08-02 18:05:05', '2024-08-02 18:05:05'),
(1730, 1, '2024-08-02 14:10:07', '2024-08-02 14:10:07', 0, NULL, '2024-08-02 18:10:08', '2024-08-02 18:10:08'),
(1731, 2, '2024-08-02 14:10:08', '2024-08-02 14:10:08', 0, NULL, '2024-08-02 18:10:08', '2024-08-02 18:10:08'),
(1732, 3, '2024-08-02 14:10:08', '2024-08-02 14:10:08', 0, NULL, '2024-08-02 18:10:08', '2024-08-02 18:10:08'),
(1733, 5, '2024-08-02 14:10:09', '2024-08-02 14:10:09', 0, NULL, '2024-08-02 18:10:09', '2024-08-02 18:10:09'),
(1734, 1, '2024-08-02 14:15:09', '2024-08-02 14:15:09', 0, NULL, '2024-08-02 18:15:09', '2024-08-02 18:15:09'),
(1735, 2, '2024-08-02 14:15:09', '2024-08-02 14:15:09', 0, NULL, '2024-08-02 18:15:09', '2024-08-02 18:15:09'),
(1736, 3, '2024-08-02 14:15:10', '2024-08-02 14:15:10', 0, NULL, '2024-08-02 18:15:10', '2024-08-02 18:15:10'),
(1737, 5, '2024-08-02 14:20:05', '2024-08-02 14:20:06', 0, NULL, '2024-08-02 18:20:06', '2024-08-02 18:20:06'),
(1738, 1, '2024-08-02 14:25:04', '2024-08-02 14:25:05', 0, NULL, '2024-08-02 18:25:05', '2024-08-02 18:25:05'),
(1739, 2, '2024-08-02 14:25:05', '2024-08-02 14:25:05', 0, NULL, '2024-08-02 18:25:05', '2024-08-02 18:25:05'),
(1740, 3, '2024-08-02 14:25:06', '2024-08-02 14:25:06', 0, NULL, '2024-08-02 18:25:06', '2024-08-02 18:25:06'),
(1741, 5, '2024-08-02 14:30:05', '2024-08-02 14:30:05', 0, NULL, '2024-08-02 18:30:05', '2024-08-02 18:30:05'),
(1742, 1, '2024-08-02 14:35:03', '2024-08-02 14:35:03', 0, NULL, '2024-08-02 18:35:03', '2024-08-02 18:35:03'),
(1743, 2, '2024-08-02 14:35:03', '2024-08-02 14:35:03', 0, NULL, '2024-08-02 18:35:04', '2024-08-02 18:35:04'),
(1744, 3, '2024-08-02 14:35:08', '2024-08-02 14:35:08', 0, NULL, '2024-08-02 18:35:09', '2024-08-02 18:35:09'),
(1745, 1, '2024-08-02 14:40:05', '2024-08-02 14:40:05', 0, NULL, '2024-08-02 18:40:05', '2024-08-02 18:40:05'),
(1746, 2, '2024-08-02 14:40:05', '2024-08-02 14:40:05', 0, NULL, '2024-08-02 18:40:06', '2024-08-02 18:40:06'),
(1747, 5, '2024-08-02 14:40:10', '2024-08-02 14:40:10', 0, NULL, '2024-08-02 18:40:11', '2024-08-02 18:40:11'),
(1748, 3, '2024-08-02 14:45:03', '2024-08-02 14:45:03', 0, NULL, '2024-08-02 18:45:03', '2024-08-02 18:45:03'),
(1749, 1, '2024-08-02 14:50:06', '2024-08-02 14:50:06', 0, NULL, '2024-08-02 18:50:07', '2024-08-02 18:50:07'),
(1750, 2, '2024-08-02 14:50:07', '2024-08-02 14:50:07', 0, NULL, '2024-08-02 18:50:07', '2024-08-02 18:50:07'),
(1751, 3, '2024-08-02 14:50:07', '2024-08-02 14:50:07', 0, NULL, '2024-08-02 18:50:07', '2024-08-02 18:50:07'),
(1752, 5, '2024-08-02 14:50:07', '2024-08-02 14:50:07', 0, NULL, '2024-08-02 18:50:08', '2024-08-02 18:50:08'),
(1753, 1, '2024-08-02 15:00:08', '2024-08-02 15:00:09', 0, NULL, '2024-08-02 19:00:09', '2024-08-02 19:00:09'),
(1754, 2, '2024-08-02 15:00:09', '2024-08-02 15:00:09', 0, NULL, '2024-08-02 19:00:09', '2024-08-02 19:00:09'),
(1755, 3, '2024-08-02 15:00:09', '2024-08-02 15:00:09', 0, NULL, '2024-08-02 19:00:10', '2024-08-02 19:00:10'),
(1756, 5, '2024-08-02 15:00:11', '2024-08-02 15:00:11', 0, NULL, '2024-08-02 19:00:11', '2024-08-02 19:00:11'),
(1757, 1, '2024-08-02 15:05:12', '2024-08-02 15:05:12', 0, NULL, '2024-08-02 19:05:13', '2024-08-02 19:05:13'),
(1758, 2, '2024-08-02 15:05:13', '2024-08-02 15:05:13', 0, NULL, '2024-08-02 19:05:13', '2024-08-02 19:05:13'),
(1759, 3, '2024-08-02 15:05:13', '2024-08-02 15:05:13', 0, NULL, '2024-08-02 19:05:14', '2024-08-02 19:05:14'),
(1760, 5, '2024-08-02 15:05:14', '2024-08-02 15:05:14', 0, NULL, '2024-08-02 19:05:14', '2024-08-02 19:05:14'),
(1761, 1, '2024-08-02 15:15:06', '2024-08-02 15:15:06', 0, NULL, '2024-08-02 19:15:07', '2024-08-02 19:15:07'),
(1762, 2, '2024-08-02 15:15:07', '2024-08-02 15:15:08', 0, NULL, '2024-08-02 19:15:08', '2024-08-02 19:15:08'),
(1763, 3, '2024-08-02 15:15:08', '2024-08-02 15:15:08', 0, NULL, '2024-08-02 19:15:08', '2024-08-02 19:15:08'),
(1764, 5, '2024-08-02 15:15:09', '2024-08-02 15:15:09', 0, NULL, '2024-08-02 19:15:09', '2024-08-02 19:15:09'),
(1765, 1, '2024-08-02 15:25:03', '2024-08-02 15:25:03', 0, NULL, '2024-08-02 19:25:03', '2024-08-02 19:25:03'),
(1766, 2, '2024-08-02 15:25:04', '2024-08-02 15:25:04', 0, NULL, '2024-08-02 19:25:04', '2024-08-02 19:25:04'),
(1767, 3, '2024-08-02 15:25:05', '2024-08-02 15:25:05', 0, NULL, '2024-08-02 19:25:06', '2024-08-02 19:25:06'),
(1768, 5, '2024-08-02 15:25:07', '2024-08-02 15:25:07', 0, NULL, '2024-08-02 19:25:07', '2024-08-02 19:25:07'),
(1769, 1, '2024-08-02 15:30:09', '2024-08-02 15:30:09', 0, NULL, '2024-08-02 19:30:10', '2024-08-02 19:30:10'),
(1770, 2, '2024-08-02 15:30:10', '2024-08-02 15:30:10', 0, NULL, '2024-08-02 19:30:10', '2024-08-02 19:30:10'),
(1771, 3, '2024-08-02 15:30:10', '2024-08-02 15:30:10', 0, NULL, '2024-08-02 19:30:10', '2024-08-02 19:30:10'),
(1772, 5, '2024-08-02 15:30:11', '2024-08-02 15:30:11', 0, NULL, '2024-08-02 19:30:11', '2024-08-02 19:30:11'),
(1773, 1, '2024-08-02 15:35:11', '2024-08-02 15:35:12', 1, NULL, '2024-08-02 19:35:12', '2024-08-02 19:35:12'),
(1774, 2, '2024-08-02 15:35:12', '2024-08-02 15:35:12', 0, NULL, '2024-08-02 19:35:13', '2024-08-02 19:35:13'),
(1775, 3, '2024-08-02 15:35:13', '2024-08-02 15:35:13', 0, NULL, '2024-08-02 19:35:13', '2024-08-02 19:35:13'),
(1776, 5, '2024-08-02 15:40:06', '2024-08-02 15:40:06', 0, NULL, '2024-08-02 19:40:07', '2024-08-02 19:40:07'),
(1777, 1, '2024-08-02 15:45:06', '2024-08-02 15:45:06', 0, NULL, '2024-08-02 19:45:06', '2024-08-02 19:45:06'),
(1778, 2, '2024-08-02 15:45:06', '2024-08-02 15:45:06', 0, NULL, '2024-08-02 19:45:07', '2024-08-02 19:45:07'),
(1779, 3, '2024-08-02 15:45:07', '2024-08-02 15:45:07', 0, NULL, '2024-08-02 19:45:07', '2024-08-02 19:45:07'),
(1780, 5, '2024-08-02 15:50:05', '2024-08-02 15:50:05', 0, NULL, '2024-08-02 19:50:06', '2024-08-02 19:50:06'),
(1781, 1, '2024-08-02 15:55:04', '2024-08-02 15:55:05', 0, NULL, '2024-08-02 19:55:06', '2024-08-02 19:55:06'),
(1782, 2, '2024-08-02 15:55:06', '2024-08-02 15:55:06', 0, NULL, '2024-08-02 19:55:06', '2024-08-02 19:55:06'),
(1783, 3, '2024-08-02 15:55:07', '2024-08-02 15:55:07', 0, NULL, '2024-08-02 19:55:07', '2024-08-02 19:55:07'),
(1784, 1, '2024-08-02 16:00:06', '2024-08-02 16:00:06', 0, NULL, '2024-08-02 20:00:06', '2024-08-02 20:00:06'),
(1785, 5, '2024-08-02 16:00:07', '2024-08-02 16:00:07', 0, NULL, '2024-08-02 20:00:07', '2024-08-02 20:00:07'),
(1786, 2, '2024-08-02 16:05:03', '2024-08-02 16:05:03', 0, NULL, '2024-08-02 20:05:04', '2024-08-02 20:05:04'),
(1787, 3, '2024-08-02 16:05:04', '2024-08-02 16:05:04', 0, NULL, '2024-08-02 20:05:04', '2024-08-02 20:05:04'),
(1788, 1, '2024-08-02 16:10:04', '2024-08-02 16:10:04', 0, NULL, '2024-08-02 20:10:05', '2024-08-02 20:10:05'),
(1789, 2, '2024-08-02 16:10:06', '2024-08-02 16:10:06', 0, NULL, '2024-08-02 20:10:07', '2024-08-02 20:10:07'),
(1790, 5, '2024-08-02 16:10:07', '2024-08-02 16:10:07', 0, NULL, '2024-08-02 20:10:08', '2024-08-02 20:10:08'),
(1791, 1, '2024-08-02 16:15:12', '2024-08-02 16:15:13', 0, NULL, '2024-08-02 20:15:13', '2024-08-02 20:15:13'),
(1792, 2, '2024-08-02 16:15:13', '2024-08-02 16:15:13', 0, NULL, '2024-08-02 20:15:13', '2024-08-02 20:15:13'),
(1793, 3, '2024-08-02 16:15:13', '2024-08-02 16:15:13', 0, NULL, '2024-08-02 20:15:13', '2024-08-02 20:15:13'),
(1794, 5, '2024-08-02 16:15:14', '2024-08-02 16:15:14', 0, NULL, '2024-08-02 20:15:14', '2024-08-02 20:15:14'),
(1795, 1, '2024-08-02 16:25:09', '2024-08-02 16:25:10', 0, NULL, '2024-08-02 20:25:11', '2024-08-02 20:25:11'),
(1796, 2, '2024-08-02 16:25:11', '2024-08-02 16:25:11', 0, NULL, '2024-08-02 20:25:11', '2024-08-02 20:25:11'),
(1797, 3, '2024-08-02 16:25:11', '2024-08-02 16:25:11', 0, NULL, '2024-08-02 20:25:11', '2024-08-02 20:25:11'),
(1798, 5, '2024-08-02 16:25:11', '2024-08-02 16:25:11', 0, NULL, '2024-08-02 20:25:11', '2024-08-02 20:25:11'),
(1799, 1, '2024-08-02 16:35:05', '2024-08-02 16:35:05', 0, NULL, '2024-08-02 20:35:06', '2024-08-02 20:35:06'),
(1800, 2, '2024-08-02 16:35:06', '2024-08-02 16:35:06', 0, NULL, '2024-08-02 20:35:06', '2024-08-02 20:35:06'),
(1801, 3, '2024-08-02 16:35:06', '2024-08-02 16:35:06', 0, NULL, '2024-08-02 20:35:06', '2024-08-02 20:35:06'),
(1802, 5, '2024-08-02 16:35:07', '2024-08-02 16:35:07', 0, NULL, '2024-08-02 20:35:07', '2024-08-02 20:35:07'),
(1803, 1, '2024-08-02 16:45:06', '2024-08-02 16:45:06', 0, NULL, '2024-08-02 20:45:07', '2024-08-02 20:45:07'),
(1804, 2, '2024-08-02 16:45:07', '2024-08-02 16:45:07', 0, NULL, '2024-08-02 20:45:07', '2024-08-02 20:45:07'),
(1805, 3, '2024-08-02 16:45:08', '2024-08-02 16:45:08', 0, NULL, '2024-08-02 20:45:08', '2024-08-02 20:45:08'),
(1806, 5, '2024-08-02 16:45:08', '2024-08-02 16:45:08', 0, NULL, '2024-08-02 20:45:08', '2024-08-02 20:45:08'),
(1807, 1, '2024-08-02 16:50:08', '2024-08-02 16:50:09', 1, NULL, '2024-08-02 20:50:09', '2024-08-02 20:50:09'),
(1808, 2, '2024-08-02 16:50:09', '2024-08-02 16:50:09', 0, NULL, '2024-08-02 20:50:09', '2024-08-02 20:50:09'),
(1809, 3, '2024-08-02 16:55:04', '2024-08-02 16:55:04', 0, NULL, '2024-08-02 20:55:05', '2024-08-02 20:55:05'),
(1810, 5, '2024-08-02 16:55:06', '2024-08-02 16:55:06', 0, NULL, '2024-08-02 20:55:06', '2024-08-02 20:55:06'),
(1811, 1, '2024-08-02 17:00:05', '2024-08-02 17:00:05', 0, NULL, '2024-08-02 21:00:05', '2024-08-02 21:00:05'),
(1812, 2, '2024-08-02 17:00:06', '2024-08-02 17:00:06', 0, NULL, '2024-08-02 21:00:11', '2024-08-02 21:00:11'),
(1813, 3, '2024-08-02 17:00:12', '2024-08-02 17:00:12', 0, NULL, '2024-08-02 21:00:13', '2024-08-02 21:00:13'),
(1814, 1, '2024-08-02 17:05:08', '2024-08-02 17:05:08', 0, NULL, '2024-08-02 21:05:09', '2024-08-02 21:05:09'),
(1815, 2, '2024-08-02 17:05:09', '2024-08-02 17:05:09', 0, NULL, '2024-08-02 21:05:09', '2024-08-02 21:05:09'),
(1816, 5, '2024-08-02 17:05:09', '2024-08-02 17:05:09', 0, NULL, '2024-08-02 21:05:09', '2024-08-02 21:05:09'),
(1817, 3, '2024-08-02 17:10:07', '2024-08-02 17:10:07', 0, NULL, '2024-08-02 21:10:08', '2024-08-02 21:10:08'),
(1818, 1, '2024-08-02 17:15:04', '2024-08-02 17:15:04', 0, NULL, '2024-08-02 21:15:04', '2024-08-02 21:15:04'),
(1819, 2, '2024-08-02 17:15:04', '2024-08-02 17:15:04', 0, NULL, '2024-08-02 21:15:05', '2024-08-02 21:15:05'),
(1820, 5, '2024-08-02 17:15:05', '2024-08-02 17:15:05', 0, NULL, '2024-08-02 21:15:06', '2024-08-02 21:15:06'),
(1821, 3, '2024-08-02 17:20:02', '2024-08-02 17:20:02', 0, NULL, '2024-08-02 21:20:03', '2024-08-02 21:20:03'),
(1822, 1, '2024-08-02 17:25:03', '2024-08-02 17:25:03', 0, NULL, '2024-08-02 21:25:04', '2024-08-02 21:25:04');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(1823, 2, '2024-08-02 17:25:04', '2024-08-02 17:25:04', 0, NULL, '2024-08-02 21:25:05', '2024-08-02 21:25:05'),
(1824, 3, '2024-08-02 17:25:05', '2024-08-02 17:25:05', 0, NULL, '2024-08-02 21:25:06', '2024-08-02 21:25:06'),
(1825, 5, '2024-08-02 17:25:07', '2024-08-02 17:25:07', 0, NULL, '2024-08-02 21:25:07', '2024-08-02 21:25:07'),
(1826, 1, '2024-08-02 17:30:08', '2024-08-02 17:30:08', 0, NULL, '2024-08-02 21:30:08', '2024-08-02 21:30:08'),
(1827, 2, '2024-08-02 17:30:08', '2024-08-02 17:30:08', 0, NULL, '2024-08-02 21:30:09', '2024-08-02 21:30:09'),
(1828, 3, '2024-08-02 17:30:09', '2024-08-02 17:30:09', 0, NULL, '2024-08-02 21:30:09', '2024-08-02 21:30:09'),
(1829, 5, '2024-08-02 17:35:05', '2024-08-02 17:35:05', 0, NULL, '2024-08-02 21:35:10', '2024-08-02 21:35:10'),
(1830, 1, '2024-08-02 17:40:04', '2024-08-02 17:40:04', 0, NULL, '2024-08-02 21:40:05', '2024-08-02 21:40:05'),
(1831, 2, '2024-08-02 17:40:05', '2024-08-02 17:40:05', 0, NULL, '2024-08-02 21:40:06', '2024-08-02 21:40:06'),
(1832, 3, '2024-08-02 17:40:07', '2024-08-02 17:40:07', 0, NULL, '2024-08-02 21:40:08', '2024-08-02 21:40:08'),
(1833, 1, '2024-08-02 17:45:06', '2024-08-02 17:45:06', 0, NULL, '2024-08-02 21:45:07', '2024-08-02 21:45:07'),
(1834, 2, '2024-08-02 17:45:07', '2024-08-02 17:45:07', 0, NULL, '2024-08-02 21:45:07', '2024-08-02 21:45:07'),
(1835, 5, '2024-08-02 17:45:08', '2024-08-02 17:45:08', 0, NULL, '2024-08-02 21:45:08', '2024-08-02 21:45:08'),
(1836, 1, '2024-08-02 17:50:07', '2024-08-02 17:50:07', 0, NULL, '2024-08-02 21:50:07', '2024-08-02 21:50:07'),
(1837, 3, '2024-08-02 17:50:07', '2024-08-02 17:50:07', 0, NULL, '2024-08-02 21:50:08', '2024-08-02 21:50:08'),
(1838, 2, '2024-08-02 17:55:06', '2024-08-02 17:55:06', 0, NULL, '2024-08-02 21:55:07', '2024-08-02 21:55:07'),
(1839, 5, '2024-08-02 17:55:11', '2024-08-02 17:55:11', 0, NULL, '2024-08-02 21:55:12', '2024-08-02 21:55:12'),
(1840, 1, '2024-08-02 18:00:10', '2024-08-02 18:00:10', 0, NULL, '2024-08-02 22:00:11', '2024-08-02 22:00:11'),
(1841, 2, '2024-08-02 18:00:11', '2024-08-02 18:00:11', 0, NULL, '2024-08-02 22:00:11', '2024-08-02 22:00:11'),
(1842, 3, '2024-08-02 18:00:11', '2024-08-02 18:00:11', 0, NULL, '2024-08-02 22:00:12', '2024-08-02 22:00:12'),
(1843, 5, '2024-08-02 18:05:08', '2024-08-02 18:05:08', 0, NULL, '2024-08-02 22:05:10', '2024-08-02 22:05:10'),
(1844, 1, '2024-08-02 18:10:08', '2024-08-02 18:10:08', 0, NULL, '2024-08-02 22:10:08', '2024-08-02 22:10:08'),
(1845, 2, '2024-08-02 18:10:08', '2024-08-02 18:10:08', 0, NULL, '2024-08-02 22:10:09', '2024-08-02 22:10:09'),
(1846, 3, '2024-08-02 18:10:09', '2024-08-02 18:10:09', 0, NULL, '2024-08-02 22:10:09', '2024-08-02 22:10:09'),
(1847, 5, '2024-08-02 18:15:06', '2024-08-02 18:15:06', 0, NULL, '2024-08-02 22:15:07', '2024-08-02 22:15:07'),
(1848, 1, '2024-08-02 18:20:04', '2024-08-02 18:20:04', 0, NULL, '2024-08-02 22:20:05', '2024-08-02 22:20:05'),
(1849, 2, '2024-08-02 18:20:07', '2024-08-02 18:20:07', 0, NULL, '2024-08-02 22:20:07', '2024-08-02 22:20:07'),
(1850, 3, '2024-08-02 18:20:08', '2024-08-02 18:20:08', 0, NULL, '2024-08-02 22:20:08', '2024-08-02 22:20:08'),
(1851, 1, '2024-08-02 18:25:06', '2024-08-02 18:25:06', 0, NULL, '2024-08-02 22:25:07', '2024-08-02 22:25:07'),
(1852, 5, '2024-08-02 18:25:07', '2024-08-02 18:25:08', 0, NULL, '2024-08-02 22:25:08', '2024-08-02 22:25:08'),
(1853, 2, '2024-08-02 18:30:06', '2024-08-02 18:30:06', 0, NULL, '2024-08-02 22:30:07', '2024-08-02 22:30:07'),
(1854, 3, '2024-08-02 18:30:07', '2024-08-02 18:30:07', 0, NULL, '2024-08-02 22:30:08', '2024-08-02 22:30:08'),
(1855, 1, '2024-08-02 18:35:06', '2024-08-02 18:35:06', 0, NULL, '2024-08-02 22:35:06', '2024-08-02 22:35:06'),
(1856, 5, '2024-08-02 18:35:07', '2024-08-02 18:35:07', 0, NULL, '2024-08-02 22:35:08', '2024-08-02 22:35:08'),
(1857, 1, '2024-08-02 18:40:07', '2024-08-02 18:40:07', 0, NULL, '2024-08-02 22:40:07', '2024-08-02 22:40:07'),
(1858, 2, '2024-08-02 18:40:08', '2024-08-02 18:40:08', 0, NULL, '2024-08-02 22:40:08', '2024-08-02 22:40:08'),
(1859, 3, '2024-08-02 18:40:08', '2024-08-02 18:40:08', 0, NULL, '2024-08-02 22:40:09', '2024-08-02 22:40:09'),
(1860, 5, '2024-08-02 18:45:03', '2024-08-02 18:45:03', 0, NULL, '2024-08-02 22:45:04', '2024-08-02 22:45:04'),
(1861, 1, '2024-08-02 18:50:07', '2024-08-02 18:50:07', 0, NULL, '2024-08-02 22:50:07', '2024-08-02 22:50:07'),
(1862, 2, '2024-08-02 18:50:07', '2024-08-02 18:50:07', 0, NULL, '2024-08-02 22:50:08', '2024-08-02 22:50:08'),
(1863, 3, '2024-08-02 18:50:08', '2024-08-02 18:50:08', 0, NULL, '2024-08-02 22:50:09', '2024-08-02 22:50:09'),
(1864, 5, '2024-08-02 18:50:09', '2024-08-02 18:50:09', 0, NULL, '2024-08-02 22:50:09', '2024-08-02 22:50:09'),
(1865, 1, '2024-08-02 19:00:07', '2024-08-02 19:00:07', 0, NULL, '2024-08-02 23:00:07', '2024-08-02 23:00:07'),
(1866, 2, '2024-08-02 19:00:08', '2024-08-02 19:00:08', 0, NULL, '2024-08-02 23:00:08', '2024-08-02 23:00:08'),
(1867, 3, '2024-08-02 19:00:09', '2024-08-02 19:00:09', 0, NULL, '2024-08-02 23:00:09', '2024-08-02 23:00:09'),
(1868, 5, '2024-08-02 19:00:09', '2024-08-02 19:00:10', 0, NULL, '2024-08-02 23:00:10', '2024-08-02 23:00:10'),
(1869, 1, '2024-08-02 19:05:09', '2024-08-02 19:05:09', 0, NULL, '2024-08-02 23:05:10', '2024-08-02 23:05:10'),
(1870, 2, '2024-08-02 19:05:10', '2024-08-02 19:05:10', 0, NULL, '2024-08-02 23:05:11', '2024-08-02 23:05:11'),
(1871, 3, '2024-08-02 19:10:09', '2024-08-02 19:10:09', 0, NULL, '2024-08-02 23:10:09', '2024-08-02 23:10:09'),
(1872, 5, '2024-08-02 19:10:10', '2024-08-02 19:10:10', 0, NULL, '2024-08-02 23:10:10', '2024-08-02 23:10:10'),
(1873, 1, '2024-08-02 19:15:06', '2024-08-02 19:15:06', 0, NULL, '2024-08-02 23:15:06', '2024-08-02 23:15:06'),
(1874, 2, '2024-08-02 19:15:07', '2024-08-02 19:15:07', 0, NULL, '2024-08-02 23:15:07', '2024-08-02 23:15:07'),
(1875, 3, '2024-08-02 19:20:04', '2024-08-02 19:20:04', 0, NULL, '2024-08-02 23:20:04', '2024-08-02 23:20:04'),
(1876, 5, '2024-08-02 19:20:05', '2024-08-02 19:20:05', 0, NULL, '2024-08-02 23:20:07', '2024-08-02 23:20:07'),
(1877, 1, '2024-08-02 19:25:07', '2024-08-02 19:25:07', 0, NULL, '2024-08-02 23:25:08', '2024-08-02 23:25:08'),
(1878, 2, '2024-08-02 19:25:08', '2024-08-02 19:25:08', 0, NULL, '2024-08-02 23:25:09', '2024-08-02 23:25:09'),
(1879, 3, '2024-08-02 19:25:09', '2024-08-02 19:25:09', 0, NULL, '2024-08-02 23:25:09', '2024-08-02 23:25:09'),
(1880, 5, '2024-08-02 19:25:09', '2024-08-02 19:25:09', 0, NULL, '2024-08-02 23:25:10', '2024-08-02 23:25:10'),
(1881, 1, '2024-08-02 19:35:04', '2024-08-02 19:35:04', 0, NULL, '2024-08-02 23:35:04', '2024-08-02 23:35:04'),
(1882, 2, '2024-08-02 19:35:04', '2024-08-02 19:35:04', 0, NULL, '2024-08-02 23:35:04', '2024-08-02 23:35:04'),
(1883, 3, '2024-08-02 19:35:05', '2024-08-02 19:35:05', 0, NULL, '2024-08-02 23:35:05', '2024-08-02 23:35:05'),
(1884, 5, '2024-08-02 19:35:06', '2024-08-02 19:35:06', 0, NULL, '2024-08-02 23:35:07', '2024-08-02 23:35:07'),
(1885, 1, '2024-08-02 19:40:10', '2024-08-02 19:40:10', 0, NULL, '2024-08-02 23:40:11', '2024-08-02 23:40:11'),
(1886, 2, '2024-08-02 19:40:11', '2024-08-02 19:40:11', 0, NULL, '2024-08-02 23:40:11', '2024-08-02 23:40:11'),
(1887, 3, '2024-08-02 19:40:11', '2024-08-02 19:40:11', 0, NULL, '2024-08-02 23:40:11', '2024-08-02 23:40:11'),
(1888, 5, '2024-08-02 19:40:11', '2024-08-02 19:40:11', 0, NULL, '2024-08-02 23:40:11', '2024-08-02 23:40:11'),
(1889, 1, '2024-08-02 19:50:13', '2024-08-02 19:50:13', 0, NULL, '2024-08-02 23:50:13', '2024-08-02 23:50:13'),
(1890, 2, '2024-08-02 19:50:13', '2024-08-02 19:50:13', 0, NULL, '2024-08-02 23:50:13', '2024-08-02 23:50:13'),
(1891, 3, '2024-08-02 19:50:13', '2024-08-02 19:50:13', 0, NULL, '2024-08-02 23:50:13', '2024-08-02 23:50:13'),
(1892, 5, '2024-08-02 19:50:13', '2024-08-02 19:50:13', 0, NULL, '2024-08-02 23:50:14', '2024-08-02 23:50:14'),
(1893, 1, '2024-08-02 20:00:06', '2024-08-02 20:00:06', 0, NULL, '2024-08-03 00:00:06', '2024-08-03 00:00:06'),
(1894, 2, '2024-08-02 20:00:06', '2024-08-02 20:00:06', 0, NULL, '2024-08-03 00:00:07', '2024-08-03 00:00:07'),
(1895, 3, '2024-08-02 20:00:07', '2024-08-02 20:00:07', 0, NULL, '2024-08-03 00:00:07', '2024-08-03 00:00:07'),
(1896, 5, '2024-08-02 20:00:07', '2024-08-02 20:00:08', 0, NULL, '2024-08-03 00:00:08', '2024-08-03 00:00:08'),
(1897, 1, '2024-08-02 20:05:07', '2024-08-02 20:05:07', 0, NULL, '2024-08-03 00:05:07', '2024-08-03 00:05:07'),
(1898, 2, '2024-08-02 20:05:07', '2024-08-02 20:05:07', 0, NULL, '2024-08-03 00:05:08', '2024-08-03 00:05:08'),
(1899, 3, '2024-08-02 20:10:07', '2024-08-02 20:10:07', 0, NULL, '2024-08-03 00:10:08', '2024-08-03 00:10:08'),
(1900, 5, '2024-08-02 20:10:08', '2024-08-02 20:10:08', 0, NULL, '2024-08-03 00:10:08', '2024-08-03 00:10:08'),
(1901, 1, '2024-08-02 20:15:04', '2024-08-02 20:15:04', 0, NULL, '2024-08-03 00:15:05', '2024-08-03 00:15:05'),
(1902, 2, '2024-08-02 20:15:06', '2024-08-02 20:15:06', 0, NULL, '2024-08-03 00:15:06', '2024-08-03 00:15:06'),
(1903, 1, '2024-08-02 20:20:05', '2024-08-02 20:20:05', 0, NULL, '2024-08-03 00:20:05', '2024-08-03 00:20:05'),
(1904, 3, '2024-08-02 20:20:06', '2024-08-02 20:20:06', 0, NULL, '2024-08-03 00:20:06', '2024-08-03 00:20:06'),
(1905, 5, '2024-08-02 20:20:07', '2024-08-02 20:20:07', 0, NULL, '2024-08-03 00:20:08', '2024-08-03 00:20:08'),
(1906, 1, '2024-08-02 20:25:07', '2024-08-02 20:25:07', 0, NULL, '2024-08-03 00:25:07', '2024-08-03 00:25:07'),
(1907, 2, '2024-08-02 20:25:08', '2024-08-02 20:25:08', 0, NULL, '2024-08-03 00:25:09', '2024-08-03 00:25:09'),
(1908, 3, '2024-08-02 20:25:09', '2024-08-02 20:25:09', 0, NULL, '2024-08-03 00:25:10', '2024-08-03 00:25:10'),
(1909, 5, '2024-08-02 20:30:07', '2024-08-02 20:30:07', 0, NULL, '2024-08-03 00:30:08', '2024-08-03 00:30:08'),
(1910, 1, '2024-08-02 20:35:07', '2024-08-02 20:35:07', 0, NULL, '2024-08-03 00:35:07', '2024-08-03 00:35:07'),
(1911, 2, '2024-08-02 20:35:08', '2024-08-02 20:35:08', 0, NULL, '2024-08-03 00:35:08', '2024-08-03 00:35:08'),
(1912, 3, '2024-08-02 20:35:09', '2024-08-02 20:35:09', 0, NULL, '2024-08-03 00:35:09', '2024-08-03 00:35:09'),
(1913, 5, '2024-08-02 20:40:07', '2024-08-02 20:40:07', 0, NULL, '2024-08-03 00:40:08', '2024-08-03 00:40:08'),
(1914, 1, '2024-08-02 20:45:04', '2024-08-02 20:45:04', 0, NULL, '2024-08-03 00:45:04', '2024-08-03 00:45:04'),
(1915, 2, '2024-08-02 20:45:05', '2024-08-02 20:45:05', 0, NULL, '2024-08-03 00:45:05', '2024-08-03 00:45:05'),
(1916, 3, '2024-08-02 20:45:06', '2024-08-02 20:45:06', 0, NULL, '2024-08-03 00:45:06', '2024-08-03 00:45:06'),
(1917, 1, '2024-08-02 20:50:05', '2024-08-02 20:50:05', 0, NULL, '2024-08-03 00:50:05', '2024-08-03 00:50:05'),
(1918, 5, '2024-08-02 20:50:06', '2024-08-02 20:50:06', 0, NULL, '2024-08-03 00:50:06', '2024-08-03 00:50:06'),
(1919, 2, '2024-08-02 20:55:05', '2024-08-02 20:55:05', 0, NULL, '2024-08-03 00:55:06', '2024-08-03 00:55:06'),
(1920, 3, '2024-08-02 20:55:06', '2024-08-02 20:55:06', 0, NULL, '2024-08-03 00:55:06', '2024-08-03 00:55:06'),
(1921, 1, '2024-08-02 21:00:09', '2024-08-02 21:00:09', 0, NULL, '2024-08-03 01:00:09', '2024-08-03 01:00:09'),
(1922, 2, '2024-08-02 21:00:09', '2024-08-02 21:00:09', 0, NULL, '2024-08-03 01:00:10', '2024-08-03 01:00:10'),
(1923, 3, '2024-08-02 21:00:10', '2024-08-02 21:00:10', 0, NULL, '2024-08-03 01:00:10', '2024-08-03 01:00:10'),
(1924, 5, '2024-08-02 21:00:10', '2024-08-02 21:00:10', 0, NULL, '2024-08-03 01:00:11', '2024-08-03 01:00:11'),
(1925, 1, '2024-08-02 21:10:09', '2024-08-02 21:10:10', 0, NULL, '2024-08-03 01:10:10', '2024-08-03 01:10:10'),
(1926, 2, '2024-08-02 21:10:10', '2024-08-02 21:10:10', 0, NULL, '2024-08-03 01:10:10', '2024-08-03 01:10:10'),
(1927, 3, '2024-08-02 21:10:10', '2024-08-02 21:10:10', 0, NULL, '2024-08-03 01:10:11', '2024-08-03 01:10:11'),
(1928, 5, '2024-08-02 21:10:11', '2024-08-02 21:10:11', 0, NULL, '2024-08-03 01:10:11', '2024-08-03 01:10:11'),
(1929, 1, '2024-08-02 21:20:03', '2024-08-02 21:20:03', 0, NULL, '2024-08-03 01:20:04', '2024-08-03 01:20:04'),
(1930, 2, '2024-08-02 21:20:04', '2024-08-02 21:20:04', 0, NULL, '2024-08-03 01:20:05', '2024-08-03 01:20:05'),
(1931, 3, '2024-08-02 21:20:06', '2024-08-02 21:20:06', 0, NULL, '2024-08-03 01:20:06', '2024-08-03 01:20:06'),
(1932, 5, '2024-08-02 21:20:06', '2024-08-02 21:20:06', 0, NULL, '2024-08-03 01:20:07', '2024-08-03 01:20:07'),
(1933, 1, '2024-08-02 21:25:06', '2024-08-02 21:25:06', 0, NULL, '2024-08-03 01:25:07', '2024-08-03 01:25:07'),
(1934, 2, '2024-08-02 21:25:07', '2024-08-02 21:25:07', 0, NULL, '2024-08-03 01:25:08', '2024-08-03 01:25:08'),
(1935, 3, '2024-08-02 21:30:06', '2024-08-02 21:30:06', 0, NULL, '2024-08-03 01:30:07', '2024-08-03 01:30:07'),
(1936, 5, '2024-08-02 21:30:07', '2024-08-02 21:30:07', 0, NULL, '2024-08-03 01:30:08', '2024-08-03 01:30:08'),
(1937, 1, '2024-08-02 21:35:05', '2024-08-02 21:35:05', 0, NULL, '2024-08-03 01:35:05', '2024-08-03 01:35:05'),
(1938, 2, '2024-08-02 21:35:06', '2024-08-02 21:35:06', 0, NULL, '2024-08-03 01:35:06', '2024-08-03 01:35:06'),
(1939, 1, '2024-08-02 21:40:07', '2024-08-02 21:40:07', 0, NULL, '2024-08-03 01:40:08', '2024-08-03 01:40:08'),
(1940, 2, '2024-08-02 21:40:08', '2024-08-02 21:40:08', 0, NULL, '2024-08-03 01:40:09', '2024-08-03 01:40:09'),
(1941, 3, '2024-08-02 21:40:09', '2024-08-02 21:40:09', 0, NULL, '2024-08-03 01:40:09', '2024-08-03 01:40:09'),
(1942, 5, '2024-08-02 21:40:10', '2024-08-02 21:40:10', 0, NULL, '2024-08-03 01:40:10', '2024-08-03 01:40:10'),
(1943, 1, '2024-08-02 21:50:06', '2024-08-02 21:50:06', 0, NULL, '2024-08-03 01:50:07', '2024-08-03 01:50:07'),
(1944, 2, '2024-08-02 21:50:07', '2024-08-02 21:50:07', 0, NULL, '2024-08-03 01:50:07', '2024-08-03 01:50:07'),
(1945, 3, '2024-08-02 21:50:08', '2024-08-02 21:50:08', 0, NULL, '2024-08-03 01:50:09', '2024-08-03 01:50:09'),
(1946, 5, '2024-08-02 21:50:09', '2024-08-02 21:50:09', 0, NULL, '2024-08-03 01:50:09', '2024-08-03 01:50:09'),
(1947, 1, '2024-08-02 22:00:07', '2024-08-02 22:00:07', 0, NULL, '2024-08-03 02:00:07', '2024-08-03 02:00:07'),
(1948, 2, '2024-08-02 22:00:09', '2024-08-02 22:00:09', 0, NULL, '2024-08-03 02:00:10', '2024-08-03 02:00:10'),
(1949, 3, '2024-08-02 22:00:10', '2024-08-02 22:00:10', 0, NULL, '2024-08-03 02:00:11', '2024-08-03 02:00:11'),
(1950, 5, '2024-08-02 22:00:11', '2024-08-02 22:00:11', 0, NULL, '2024-08-03 02:00:11', '2024-08-03 02:00:11'),
(1951, 1, '2024-08-02 22:10:08', '2024-08-02 22:10:08', 0, NULL, '2024-08-03 02:10:09', '2024-08-03 02:10:09'),
(1952, 2, '2024-08-02 22:10:09', '2024-08-02 22:10:09', 0, NULL, '2024-08-03 02:10:09', '2024-08-03 02:10:09'),
(1953, 3, '2024-08-02 22:10:09', '2024-08-02 22:10:09', 0, NULL, '2024-08-03 02:10:10', '2024-08-03 02:10:10'),
(1954, 5, '2024-08-02 22:10:10', '2024-08-02 22:10:10', 0, NULL, '2024-08-03 02:10:10', '2024-08-03 02:10:10'),
(1955, 1, '2024-08-02 22:15:11', '2024-08-02 22:15:11', 0, NULL, '2024-08-03 02:15:12', '2024-08-03 02:15:12'),
(1956, 2, '2024-08-02 22:15:12', '2024-08-02 22:15:12', 0, NULL, '2024-08-03 02:15:12', '2024-08-03 02:15:12'),
(1957, 3, '2024-08-02 22:15:13', '2024-08-02 22:15:13', 0, NULL, '2024-08-03 02:15:13', '2024-08-03 02:15:13'),
(1958, 5, '2024-08-02 22:15:13', '2024-08-02 22:15:13', 0, NULL, '2024-08-03 02:15:13', '2024-08-03 02:15:13'),
(1959, 1, '2024-08-02 22:25:07', '2024-08-02 22:25:07', 0, NULL, '2024-08-03 02:25:07', '2024-08-03 02:25:07'),
(1960, 2, '2024-08-02 22:25:07', '2024-08-02 22:25:07', 0, NULL, '2024-08-03 02:25:08', '2024-08-03 02:25:08'),
(1961, 3, '2024-08-02 22:25:08', '2024-08-02 22:25:08', 0, NULL, '2024-08-03 02:25:08', '2024-08-03 02:25:08'),
(1962, 5, '2024-08-02 22:25:09', '2024-08-02 22:25:09', 0, NULL, '2024-08-03 02:25:09', '2024-08-03 02:25:09'),
(1963, 1, '2024-08-02 22:35:12', '2024-08-02 22:35:12', 0, NULL, '2024-08-03 02:35:12', '2024-08-03 02:35:12'),
(1964, 2, '2024-08-02 22:35:12', '2024-08-02 22:35:12', 0, NULL, '2024-08-03 02:35:13', '2024-08-03 02:35:13'),
(1965, 3, '2024-08-02 22:35:13', '2024-08-02 22:35:13', 0, NULL, '2024-08-03 02:35:13', '2024-08-03 02:35:13'),
(1966, 5, '2024-08-02 22:35:13', '2024-08-02 22:35:13', 0, NULL, '2024-08-03 02:35:13', '2024-08-03 02:35:13'),
(1967, 1, '2024-08-02 22:45:08', '2024-08-02 22:45:08', 0, NULL, '2024-08-03 02:45:09', '2024-08-03 02:45:09'),
(1968, 2, '2024-08-02 22:45:09', '2024-08-02 22:45:09', 0, NULL, '2024-08-03 02:45:09', '2024-08-03 02:45:09'),
(1969, 3, '2024-08-02 22:45:10', '2024-08-02 22:45:10', 0, NULL, '2024-08-03 02:45:10', '2024-08-03 02:45:10'),
(1970, 5, '2024-08-02 22:45:10', '2024-08-02 22:45:10', 0, NULL, '2024-08-03 02:45:11', '2024-08-03 02:45:11'),
(1971, 1, '2024-08-02 22:50:09', '2024-08-02 22:50:09', 0, NULL, '2024-08-03 02:50:09', '2024-08-03 02:50:09'),
(1972, 2, '2024-08-02 22:55:07', '2024-08-02 22:55:07', 0, NULL, '2024-08-03 02:55:07', '2024-08-03 02:55:07'),
(1973, 3, '2024-08-02 22:55:07', '2024-08-02 22:55:07', 0, NULL, '2024-08-03 02:55:08', '2024-08-03 02:55:08'),
(1974, 5, '2024-08-02 22:55:08', '2024-08-02 22:55:08', 0, NULL, '2024-08-03 02:55:08', '2024-08-03 02:55:08'),
(1975, 1, '2024-08-02 23:00:12', '2024-08-02 23:00:12', 0, NULL, '2024-08-03 03:00:12', '2024-08-03 03:00:12'),
(1976, 2, '2024-08-02 23:00:12', '2024-08-02 23:00:12', 0, NULL, '2024-08-03 03:00:12', '2024-08-03 03:00:12'),
(1977, 3, '2024-08-02 23:00:12', '2024-08-02 23:00:12', 0, NULL, '2024-08-03 03:00:13', '2024-08-03 03:00:13'),
(1978, 5, '2024-08-02 23:00:13', '2024-08-02 23:00:13', 0, NULL, '2024-08-03 03:00:13', '2024-08-03 03:00:13'),
(1979, 1, '2024-08-02 23:10:09', '2024-08-02 23:10:09', 0, NULL, '2024-08-03 03:10:09', '2024-08-03 03:10:09'),
(1980, 2, '2024-08-02 23:10:09', '2024-08-02 23:10:09', 0, NULL, '2024-08-03 03:10:09', '2024-08-03 03:10:09'),
(1981, 3, '2024-08-02 23:10:10', '2024-08-02 23:10:10', 0, NULL, '2024-08-03 03:10:10', '2024-08-03 03:10:10'),
(1982, 5, '2024-08-02 23:10:10', '2024-08-02 23:10:10', 0, NULL, '2024-08-03 03:10:10', '2024-08-03 03:10:10'),
(1983, 1, '2024-08-02 23:20:04', '2024-08-02 23:20:04', 0, NULL, '2024-08-03 03:20:05', '2024-08-03 03:20:05'),
(1984, 2, '2024-08-02 23:20:05', '2024-08-02 23:20:05', 0, NULL, '2024-08-03 03:20:06', '2024-08-03 03:20:06'),
(1985, 3, '2024-08-02 23:20:06', '2024-08-02 23:20:06', 0, NULL, '2024-08-03 03:20:07', '2024-08-03 03:20:07'),
(1986, 5, '2024-08-02 23:20:07', '2024-08-02 23:20:07', 0, NULL, '2024-08-03 03:20:12', '2024-08-03 03:20:12'),
(1987, 1, '2024-08-02 23:25:07', '2024-08-02 23:25:07', 0, NULL, '2024-08-03 03:25:08', '2024-08-03 03:25:08'),
(1988, 2, '2024-08-02 23:25:08', '2024-08-02 23:25:08', 0, NULL, '2024-08-03 03:25:08', '2024-08-03 03:25:08'),
(1989, 3, '2024-08-02 23:25:08', '2024-08-02 23:25:08', 0, NULL, '2024-08-03 03:25:09', '2024-08-03 03:25:09'),
(1990, 5, '2024-08-02 23:30:04', '2024-08-02 23:30:04', 0, NULL, '2024-08-03 03:30:05', '2024-08-03 03:30:05'),
(1991, 1, '2024-08-02 23:35:10', '2024-08-02 23:35:10', 0, NULL, '2024-08-03 03:35:10', '2024-08-03 03:35:10'),
(1992, 2, '2024-08-02 23:35:10', '2024-08-02 23:35:10', 0, NULL, '2024-08-03 03:35:11', '2024-08-03 03:35:11'),
(1993, 3, '2024-08-02 23:35:11', '2024-08-02 23:35:11', 0, NULL, '2024-08-03 03:35:11', '2024-08-03 03:35:11'),
(1994, 5, '2024-08-02 23:35:11', '2024-08-02 23:35:11', 0, NULL, '2024-08-03 03:35:11', '2024-08-03 03:35:11'),
(1995, 1, '2024-08-02 23:45:07', '2024-08-02 23:45:07', 0, NULL, '2024-08-03 03:45:08', '2024-08-03 03:45:08'),
(1996, 2, '2024-08-02 23:45:08', '2024-08-02 23:45:08', 0, NULL, '2024-08-03 03:45:08', '2024-08-03 03:45:08'),
(1997, 3, '2024-08-02 23:45:08', '2024-08-02 23:45:08', 0, NULL, '2024-08-03 03:45:08', '2024-08-03 03:45:08'),
(1998, 5, '2024-08-02 23:45:09', '2024-08-02 23:45:09', 0, NULL, '2024-08-03 03:45:09', '2024-08-03 03:45:09'),
(1999, 1, '2024-08-02 23:50:08', '2024-08-02 23:50:08', 0, NULL, '2024-08-03 03:50:09', '2024-08-03 03:50:09'),
(2000, 2, '2024-08-02 23:55:05', '2024-08-02 23:55:05', 0, NULL, '2024-08-03 03:55:05', '2024-08-03 03:55:05'),
(2001, 3, '2024-08-02 23:55:05', '2024-08-02 23:55:05', 0, NULL, '2024-08-03 03:55:05', '2024-08-03 03:55:05'),
(2002, 5, '2024-08-02 23:55:06', '2024-08-02 23:55:06', 0, NULL, '2024-08-03 03:55:06', '2024-08-03 03:55:06'),
(2003, 1, '2024-08-03 00:00:04', '2024-08-03 00:00:05', 0, NULL, '2024-08-03 04:00:05', '2024-08-03 04:00:05'),
(2004, 2, '2024-08-03 00:05:05', '2024-08-03 00:05:05', 0, NULL, '2024-08-03 04:05:06', '2024-08-03 04:05:06'),
(2005, 3, '2024-08-03 00:05:06', '2024-08-03 00:05:06', 0, NULL, '2024-08-03 04:05:07', '2024-08-03 04:05:07'),
(2006, 5, '2024-08-03 00:05:07', '2024-08-03 00:05:07', 0, NULL, '2024-08-03 04:05:07', '2024-08-03 04:05:07'),
(2007, 1, '2024-08-03 00:10:08', '2024-08-03 00:10:08', 0, NULL, '2024-08-03 04:10:08', '2024-08-03 04:10:08'),
(2008, 2, '2024-08-03 00:10:08', '2024-08-03 00:10:08', 0, NULL, '2024-08-03 04:10:09', '2024-08-03 04:10:09'),
(2009, 3, '2024-08-03 00:10:09', '2024-08-03 00:10:09', 0, NULL, '2024-08-03 04:10:09', '2024-08-03 04:10:09'),
(2010, 5, '2024-08-03 00:10:09', '2024-08-03 00:10:09', 0, NULL, '2024-08-03 04:10:10', '2024-08-03 04:10:10'),
(2011, 1, '2024-08-03 00:20:12', '2024-08-03 00:20:12', 0, NULL, '2024-08-03 04:20:12', '2024-08-03 04:20:12'),
(2012, 2, '2024-08-03 00:20:12', '2024-08-03 00:20:12', 0, NULL, '2024-08-03 04:20:13', '2024-08-03 04:20:13'),
(2013, 3, '2024-08-03 00:20:13', '2024-08-03 00:20:13', 0, NULL, '2024-08-03 04:20:13', '2024-08-03 04:20:13'),
(2014, 5, '2024-08-03 00:20:13', '2024-08-03 00:20:13', 0, NULL, '2024-08-03 04:20:14', '2024-08-03 04:20:14'),
(2015, 1, '2024-08-03 00:30:03', '2024-08-03 00:30:03', 0, NULL, '2024-08-03 04:30:04', '2024-08-03 04:30:04'),
(2016, 2, '2024-08-03 00:30:04', '2024-08-03 00:30:04', 0, NULL, '2024-08-03 04:30:04', '2024-08-03 04:30:04'),
(2017, 3, '2024-08-03 00:30:05', '2024-08-03 00:30:05', 0, NULL, '2024-08-03 04:30:05', '2024-08-03 04:30:05'),
(2018, 5, '2024-08-03 00:30:07', '2024-08-03 00:30:07', 0, NULL, '2024-08-03 04:30:08', '2024-08-03 04:30:08'),
(2019, 1, '2024-08-03 00:35:08', '2024-08-03 00:35:08', 0, NULL, '2024-08-03 04:35:09', '2024-08-03 04:35:09'),
(2020, 2, '2024-08-03 00:35:09', '2024-08-03 00:35:09', 0, NULL, '2024-08-03 04:35:09', '2024-08-03 04:35:09'),
(2021, 3, '2024-08-03 00:35:09', '2024-08-03 00:35:09', 0, NULL, '2024-08-03 04:35:10', '2024-08-03 04:35:10'),
(2022, 5, '2024-08-03 00:35:10', '2024-08-03 00:35:10', 0, NULL, '2024-08-03 04:35:10', '2024-08-03 04:35:10'),
(2023, 1, '2024-08-03 00:40:09', '2024-08-03 00:40:09', 0, NULL, '2024-08-03 04:40:10', '2024-08-03 04:40:10'),
(2024, 2, '2024-08-03 00:45:06', '2024-08-03 00:45:06', 0, NULL, '2024-08-03 04:45:06', '2024-08-03 04:45:06'),
(2025, 3, '2024-08-03 00:45:06', '2024-08-03 00:45:06', 0, NULL, '2024-08-03 04:45:07', '2024-08-03 04:45:07'),
(2026, 5, '2024-08-03 00:45:07', '2024-08-03 00:45:07', 0, NULL, '2024-08-03 04:45:07', '2024-08-03 04:45:07'),
(2027, 1, '2024-08-03 00:50:07', '2024-08-03 00:50:07', 0, NULL, '2024-08-03 04:50:08', '2024-08-03 04:50:08'),
(2028, 2, '2024-08-03 00:50:08', '2024-08-03 00:50:08', 0, NULL, '2024-08-03 04:50:08', '2024-08-03 04:50:08'),
(2029, 3, '2024-08-03 00:50:08', '2024-08-03 00:50:08', 0, NULL, '2024-08-03 04:50:09', '2024-08-03 04:50:09'),
(2030, 5, '2024-08-03 00:55:05', '2024-08-03 00:55:05', 0, NULL, '2024-08-03 04:55:06', '2024-08-03 04:55:06'),
(2031, 1, '2024-08-03 01:00:06', '2024-08-03 01:00:06', 0, NULL, '2024-08-03 05:00:08', '2024-08-03 05:00:08'),
(2032, 2, '2024-08-03 01:00:08', '2024-08-03 01:00:08', 0, NULL, '2024-08-03 05:00:09', '2024-08-03 05:00:09'),
(2033, 3, '2024-08-03 01:00:09', '2024-08-03 01:00:09', 0, NULL, '2024-08-03 05:00:09', '2024-08-03 05:00:09'),
(2034, 5, '2024-08-03 01:00:10', '2024-08-03 01:00:10', 0, NULL, '2024-08-03 05:00:10', '2024-08-03 05:00:10'),
(2035, 1, '2024-08-03 01:05:09', '2024-08-03 01:05:10', 0, NULL, '2024-08-03 05:05:10', '2024-08-03 05:05:10'),
(2036, 2, '2024-08-03 01:05:11', '2024-08-03 01:05:12', 0, NULL, '2024-08-03 05:05:12', '2024-08-03 05:05:12'),
(2037, 3, '2024-08-03 01:10:07', '2024-08-03 01:10:07', 0, NULL, '2024-08-03 05:10:08', '2024-08-03 05:10:08'),
(2038, 5, '2024-08-03 01:10:08', '2024-08-03 01:10:08', 0, NULL, '2024-08-03 05:10:09', '2024-08-03 05:10:09'),
(2039, 1, '2024-08-03 01:15:11', '2024-08-03 01:15:11', 0, NULL, '2024-08-03 05:15:11', '2024-08-03 05:15:11'),
(2040, 2, '2024-08-03 01:15:11', '2024-08-03 01:15:11', 0, NULL, '2024-08-03 05:15:11', '2024-08-03 05:15:11'),
(2041, 3, '2024-08-03 01:15:11', '2024-08-03 01:15:11', 0, NULL, '2024-08-03 05:15:12', '2024-08-03 05:15:12'),
(2042, 5, '2024-08-03 01:15:12', '2024-08-03 01:15:12', 0, NULL, '2024-08-03 05:15:12', '2024-08-03 05:15:12'),
(2043, 1, '2024-08-03 01:25:11', '2024-08-03 01:25:11', 0, NULL, '2024-08-03 05:25:11', '2024-08-03 05:25:11'),
(2044, 2, '2024-08-03 01:25:11', '2024-08-03 01:25:11', 0, NULL, '2024-08-03 05:25:12', '2024-08-03 05:25:12'),
(2045, 3, '2024-08-03 01:25:12', '2024-08-03 01:25:12', 0, NULL, '2024-08-03 05:25:12', '2024-08-03 05:25:12'),
(2046, 5, '2024-08-03 01:25:12', '2024-08-03 01:25:12', 0, NULL, '2024-08-03 05:25:12', '2024-08-03 05:25:12'),
(2047, 1, '2024-08-03 01:35:05', '2024-08-03 01:35:05', 0, NULL, '2024-08-03 05:35:05', '2024-08-03 05:35:05'),
(2048, 2, '2024-08-03 01:35:06', '2024-08-03 01:35:06', 0, NULL, '2024-08-03 05:35:07', '2024-08-03 05:35:07'),
(2049, 3, '2024-08-03 01:35:07', '2024-08-03 01:35:07', 0, NULL, '2024-08-03 05:35:07', '2024-08-03 05:35:07'),
(2050, 5, '2024-08-03 01:35:08', '2024-08-03 01:35:09', 1, NULL, '2024-08-03 05:35:09', '2024-08-03 05:35:09'),
(2051, 1, '2024-08-03 01:40:09', '2024-08-03 01:40:09', 0, NULL, '2024-08-03 05:40:10', '2024-08-03 05:40:10'),
(2052, 2, '2024-08-03 01:40:10', '2024-08-03 01:40:10', 0, NULL, '2024-08-03 05:40:10', '2024-08-03 05:40:10'),
(2053, 3, '2024-08-03 01:40:11', '2024-08-03 01:40:11', 0, NULL, '2024-08-03 05:40:11', '2024-08-03 05:40:11'),
(2054, 1, '2024-08-03 01:45:10', '2024-08-03 01:45:10', 0, NULL, '2024-08-03 05:45:11', '2024-08-03 05:45:11'),
(2055, 5, '2024-08-03 01:45:11', '2024-08-03 01:45:12', 0, NULL, '2024-08-03 05:45:12', '2024-08-03 05:45:12'),
(2056, 2, '2024-08-03 01:50:09', '2024-08-03 01:50:09', 0, NULL, '2024-08-03 05:50:09', '2024-08-03 05:50:09'),
(2057, 3, '2024-08-03 01:50:10', '2024-08-03 01:50:10', 0, NULL, '2024-08-03 05:50:10', '2024-08-03 05:50:10'),
(2058, 1, '2024-08-03 01:55:06', '2024-08-03 01:55:07', 0, NULL, '2024-08-03 05:55:07', '2024-08-03 05:55:07'),
(2059, 5, '2024-08-03 01:55:07', '2024-08-03 01:55:07', 0, NULL, '2024-08-03 05:55:07', '2024-08-03 05:55:07'),
(2060, 2, '2024-08-03 02:00:04', '2024-08-03 02:00:04', 0, NULL, '2024-08-03 06:00:05', '2024-08-03 06:00:05'),
(2061, 3, '2024-08-03 02:00:05', '2024-08-03 02:00:05', 0, NULL, '2024-08-03 06:00:06', '2024-08-03 06:00:06'),
(2062, 1, '2024-08-03 02:05:06', '2024-08-03 02:05:06', 0, NULL, '2024-08-03 06:05:06', '2024-08-03 06:05:06'),
(2063, 2, '2024-08-03 02:05:07', '2024-08-03 02:05:07', 0, NULL, '2024-08-03 06:05:07', '2024-08-03 06:05:07'),
(2064, 3, '2024-08-03 02:05:07', '2024-08-03 02:05:07', 0, NULL, '2024-08-03 06:05:07', '2024-08-03 06:05:07'),
(2065, 5, '2024-08-03 02:05:08', '2024-08-03 02:05:08', 0, NULL, '2024-08-03 06:05:08', '2024-08-03 06:05:08'),
(2066, 1, '2024-08-03 02:15:10', '2024-08-03 02:15:10', 0, NULL, '2024-08-03 06:15:10', '2024-08-03 06:15:10'),
(2067, 2, '2024-08-03 02:15:10', '2024-08-03 02:15:10', 0, NULL, '2024-08-03 06:15:10', '2024-08-03 06:15:10'),
(2068, 3, '2024-08-03 02:15:11', '2024-08-03 02:15:11', 0, NULL, '2024-08-03 06:15:11', '2024-08-03 06:15:11'),
(2069, 5, '2024-08-03 02:15:11', '2024-08-03 02:15:11', 0, NULL, '2024-08-03 06:15:12', '2024-08-03 06:15:12'),
(2070, 1, '2024-08-03 02:25:07', '2024-08-03 02:25:07', 0, NULL, '2024-08-03 06:25:07', '2024-08-03 06:25:07'),
(2071, 2, '2024-08-03 02:25:08', '2024-08-03 02:25:08', 0, NULL, '2024-08-03 06:25:09', '2024-08-03 06:25:09'),
(2072, 3, '2024-08-03 02:25:09', '2024-08-03 02:25:09', 0, NULL, '2024-08-03 06:25:09', '2024-08-03 06:25:09'),
(2073, 5, '2024-08-03 02:25:10', '2024-08-03 02:25:10', 0, NULL, '2024-08-03 06:25:10', '2024-08-03 06:25:10'),
(2074, 1, '2024-08-03 02:35:09', '2024-08-03 02:35:09', 0, NULL, '2024-08-03 06:35:10', '2024-08-03 06:35:10'),
(2075, 2, '2024-08-03 02:35:10', '2024-08-03 02:35:10', 0, NULL, '2024-08-03 06:35:10', '2024-08-03 06:35:10'),
(2076, 3, '2024-08-03 02:35:10', '2024-08-03 02:35:10', 0, NULL, '2024-08-03 06:35:10', '2024-08-03 06:35:10'),
(2077, 5, '2024-08-03 02:35:11', '2024-08-03 02:35:11', 0, NULL, '2024-08-03 06:35:11', '2024-08-03 06:35:11'),
(2078, 1, '2024-08-03 02:45:04', '2024-08-03 02:45:04', 0, NULL, '2024-08-03 06:45:05', '2024-08-03 06:45:05'),
(2079, 2, '2024-08-03 02:45:05', '2024-08-03 02:45:05', 0, NULL, '2024-08-03 06:45:05', '2024-08-03 06:45:05'),
(2080, 3, '2024-08-03 02:45:06', '2024-08-03 02:45:06', 0, NULL, '2024-08-03 06:45:06', '2024-08-03 06:45:06'),
(2081, 5, '2024-08-03 02:45:07', '2024-08-03 02:45:07', 0, NULL, '2024-08-03 06:45:07', '2024-08-03 06:45:07'),
(2082, 1, '2024-08-03 02:55:10', '2024-08-03 02:55:10', 0, NULL, '2024-08-03 06:55:10', '2024-08-03 06:55:10'),
(2083, 2, '2024-08-03 02:55:10', '2024-08-03 02:55:10', 0, NULL, '2024-08-03 06:55:10', '2024-08-03 06:55:10'),
(2084, 3, '2024-08-03 02:55:10', '2024-08-03 02:55:10', 0, NULL, '2024-08-03 06:55:11', '2024-08-03 06:55:11'),
(2085, 5, '2024-08-03 02:55:11', '2024-08-03 02:55:11', 0, NULL, '2024-08-03 06:55:11', '2024-08-03 06:55:11'),
(2086, 1, '2024-08-03 03:05:07', '2024-08-03 03:05:07', 0, NULL, '2024-08-03 07:05:08', '2024-08-03 07:05:08'),
(2087, 2, '2024-08-03 03:05:08', '2024-08-03 03:05:08', 0, NULL, '2024-08-03 07:05:08', '2024-08-03 07:05:08'),
(2088, 3, '2024-08-03 03:05:09', '2024-08-03 03:05:09', 0, NULL, '2024-08-03 07:05:09', '2024-08-03 07:05:09'),
(2089, 5, '2024-08-03 03:05:09', '2024-08-03 03:05:09', 0, NULL, '2024-08-03 07:05:10', '2024-08-03 07:05:10'),
(2090, 1, '2024-08-03 03:15:05', '2024-08-03 03:15:05', 0, NULL, '2024-08-03 07:15:06', '2024-08-03 07:15:06'),
(2091, 2, '2024-08-03 03:15:06', '2024-08-03 03:15:06', 0, NULL, '2024-08-03 07:15:07', '2024-08-03 07:15:07'),
(2092, 3, '2024-08-03 03:15:07', '2024-08-03 03:15:07', 0, NULL, '2024-08-03 07:15:08', '2024-08-03 07:15:08'),
(2093, 5, '2024-08-03 03:15:08', '2024-08-03 03:15:08', 0, NULL, '2024-08-03 07:15:08', '2024-08-03 07:15:08'),
(2094, 1, '2024-08-03 03:25:07', '2024-08-03 03:25:07', 0, NULL, '2024-08-03 07:25:07', '2024-08-03 07:25:07'),
(2095, 2, '2024-08-03 03:25:08', '2024-08-03 03:25:08', 0, NULL, '2024-08-03 07:25:09', '2024-08-03 07:25:09'),
(2096, 3, '2024-08-03 03:25:09', '2024-08-03 03:25:09', 0, NULL, '2024-08-03 07:25:09', '2024-08-03 07:25:09'),
(2097, 5, '2024-08-03 03:25:10', '2024-08-03 03:25:10', 0, NULL, '2024-08-03 07:25:10', '2024-08-03 07:25:10'),
(2098, 1, '2024-08-03 03:35:07', '2024-08-03 03:35:07', 0, NULL, '2024-08-03 07:35:07', '2024-08-03 07:35:07'),
(2099, 2, '2024-08-03 03:35:08', '2024-08-03 03:35:08', 0, NULL, '2024-08-03 07:35:08', '2024-08-03 07:35:08'),
(2100, 3, '2024-08-03 03:35:08', '2024-08-03 03:35:08', 0, NULL, '2024-08-03 07:35:09', '2024-08-03 07:35:09'),
(2101, 5, '2024-08-03 03:35:09', '2024-08-03 03:35:09', 0, NULL, '2024-08-03 07:35:09', '2024-08-03 07:35:09'),
(2102, 1, '2024-08-03 03:40:12', '2024-08-03 03:40:12', 0, NULL, '2024-08-03 07:40:12', '2024-08-03 07:40:12'),
(2103, 2, '2024-08-03 03:40:12', '2024-08-03 03:40:12', 0, NULL, '2024-08-03 07:40:13', '2024-08-03 07:40:13'),
(2104, 3, '2024-08-03 03:40:13', '2024-08-03 03:40:13', 0, NULL, '2024-08-03 07:40:13', '2024-08-03 07:40:13'),
(2105, 5, '2024-08-03 03:40:13', '2024-08-03 03:40:13', 0, NULL, '2024-08-03 07:40:13', '2024-08-03 07:40:13'),
(2106, 1, '2024-08-03 03:50:05', '2024-08-03 03:50:05', 0, NULL, '2024-08-03 07:50:05', '2024-08-03 07:50:05'),
(2107, 2, '2024-08-03 03:50:06', '2024-08-03 03:50:06', 0, NULL, '2024-08-03 07:50:06', '2024-08-03 07:50:06'),
(2108, 3, '2024-08-03 03:50:06', '2024-08-03 03:50:06', 0, NULL, '2024-08-03 07:50:07', '2024-08-03 07:50:07'),
(2109, 5, '2024-08-03 03:50:07', '2024-08-03 03:50:07', 0, NULL, '2024-08-03 07:50:08', '2024-08-03 07:50:08'),
(2110, 1, '2024-08-03 03:55:11', '2024-08-03 03:55:11', 0, NULL, '2024-08-03 07:55:11', '2024-08-03 07:55:11'),
(2111, 2, '2024-08-03 03:55:12', '2024-08-03 03:55:12', 0, NULL, '2024-08-03 07:55:12', '2024-08-03 07:55:12'),
(2112, 3, '2024-08-03 03:55:12', '2024-08-03 03:55:12', 0, NULL, '2024-08-03 07:55:12', '2024-08-03 07:55:12'),
(2113, 5, '2024-08-03 03:55:12', '2024-08-03 03:55:12', 0, NULL, '2024-08-03 07:55:12', '2024-08-03 07:55:12'),
(2114, 1, '2024-08-03 04:05:07', '2024-08-03 04:05:07', 0, NULL, '2024-08-03 08:05:07', '2024-08-03 08:05:07'),
(2115, 2, '2024-08-03 04:05:08', '2024-08-03 04:05:08', 0, NULL, '2024-08-03 08:05:08', '2024-08-03 08:05:08'),
(2116, 3, '2024-08-03 04:05:09', '2024-08-03 04:05:09', 0, NULL, '2024-08-03 08:05:09', '2024-08-03 08:05:09'),
(2117, 5, '2024-08-03 04:05:10', '2024-08-03 04:05:10', 0, NULL, '2024-08-03 08:05:10', '2024-08-03 08:05:10'),
(2118, 1, '2024-08-03 04:15:05', '2024-08-03 04:15:05', 0, NULL, '2024-08-03 08:15:06', '2024-08-03 08:15:06'),
(2119, 2, '2024-08-03 04:15:06', '2024-08-03 04:15:06', 0, NULL, '2024-08-03 08:15:09', '2024-08-03 08:15:09'),
(2120, 3, '2024-08-03 04:15:11', '2024-08-03 04:15:11', 0, NULL, '2024-08-03 08:15:12', '2024-08-03 08:15:12'),
(2121, 5, '2024-08-03 04:15:12', '2024-08-03 04:15:12', 0, NULL, '2024-08-03 08:15:12', '2024-08-03 08:15:12'),
(2122, 1, '2024-08-03 04:20:06', '2024-08-03 04:20:06', 0, NULL, '2024-08-03 08:20:06', '2024-08-03 08:20:06'),
(2123, 2, '2024-08-03 04:25:05', '2024-08-03 04:25:05', 0, NULL, '2024-08-03 08:25:06', '2024-08-03 08:25:06'),
(2124, 3, '2024-08-03 04:25:07', '2024-08-03 04:25:07', 0, NULL, '2024-08-03 08:25:07', '2024-08-03 08:25:07'),
(2125, 5, '2024-08-03 04:25:08', '2024-08-03 04:25:08', 0, NULL, '2024-08-03 08:25:08', '2024-08-03 08:25:08'),
(2126, 1, '2024-08-03 04:30:07', '2024-08-03 04:30:07', 0, NULL, '2024-08-03 08:30:07', '2024-08-03 08:30:07'),
(2127, 2, '2024-08-03 04:30:08', '2024-08-03 04:30:08', 0, NULL, '2024-08-03 08:30:08', '2024-08-03 08:30:08'),
(2128, 3, '2024-08-03 04:35:07', '2024-08-03 04:35:07', 0, NULL, '2024-08-03 08:35:08', '2024-08-03 08:35:08'),
(2129, 5, '2024-08-03 04:35:09', '2024-08-03 04:35:09', 0, NULL, '2024-08-03 08:35:10', '2024-08-03 08:35:10'),
(2130, 1, '2024-08-03 04:40:07', '2024-08-03 04:40:07', 0, NULL, '2024-08-03 08:40:07', '2024-08-03 08:40:07'),
(2131, 2, '2024-08-03 04:40:08', '2024-08-03 04:40:08', 0, NULL, '2024-08-03 08:40:08', '2024-08-03 08:40:08'),
(2132, 3, '2024-08-03 04:45:07', '2024-08-03 04:45:07', 0, NULL, '2024-08-03 08:45:07', '2024-08-03 08:45:07'),
(2133, 5, '2024-08-03 04:45:07', '2024-08-03 04:45:08', 0, NULL, '2024-08-03 08:45:08', '2024-08-03 08:45:08'),
(2134, 1, '2024-08-03 04:50:09', '2024-08-03 04:50:09', 0, NULL, '2024-08-03 08:50:09', '2024-08-03 08:50:09'),
(2135, 2, '2024-08-03 04:50:09', '2024-08-03 04:50:09', 0, NULL, '2024-08-03 08:50:10', '2024-08-03 08:50:10'),
(2136, 3, '2024-08-03 04:50:10', '2024-08-03 04:50:10', 0, NULL, '2024-08-03 08:50:10', '2024-08-03 08:50:10'),
(2137, 5, '2024-08-03 04:50:10', '2024-08-03 04:50:10', 0, NULL, '2024-08-03 08:50:10', '2024-08-03 08:50:10'),
(2138, 1, '2024-08-03 05:00:07', '2024-08-03 05:00:07', 0, NULL, '2024-08-03 09:00:07', '2024-08-03 09:00:07'),
(2139, 2, '2024-08-03 05:00:08', '2024-08-03 05:00:08', 0, NULL, '2024-08-03 09:00:08', '2024-08-03 09:00:08'),
(2140, 3, '2024-08-03 05:00:09', '2024-08-03 05:00:09', 0, NULL, '2024-08-03 09:00:09', '2024-08-03 09:00:09'),
(2141, 5, '2024-08-03 05:00:09', '2024-08-03 05:00:09', 0, NULL, '2024-08-03 09:00:10', '2024-08-03 09:00:10'),
(2142, 1, '2024-08-03 05:10:06', '2024-08-03 05:10:06', 0, NULL, '2024-08-03 09:10:07', '2024-08-03 09:10:07'),
(2143, 2, '2024-08-03 05:10:07', '2024-08-03 05:10:07', 0, NULL, '2024-08-03 09:10:08', '2024-08-03 09:10:08'),
(2144, 3, '2024-08-03 05:10:08', '2024-08-03 05:10:08', 0, NULL, '2024-08-03 09:10:08', '2024-08-03 09:10:08'),
(2145, 5, '2024-08-03 05:10:09', '2024-08-03 05:10:09', 0, NULL, '2024-08-03 09:10:09', '2024-08-03 09:10:09'),
(2146, 1, '2024-08-03 05:20:03', '2024-08-03 05:20:03', 0, NULL, '2024-08-03 09:20:04', '2024-08-03 09:20:04'),
(2147, 2, '2024-08-03 05:20:04', '2024-08-03 05:20:04', 0, NULL, '2024-08-03 09:20:04', '2024-08-03 09:20:04'),
(2148, 3, '2024-08-03 05:20:04', '2024-08-03 05:20:04', 0, NULL, '2024-08-03 09:20:05', '2024-08-03 09:20:05'),
(2149, 5, '2024-08-03 05:20:05', '2024-08-03 05:20:05', 0, NULL, '2024-08-03 09:20:06', '2024-08-03 09:20:06'),
(2150, 1, '2024-08-03 05:25:04', '2024-08-03 05:25:04', 0, NULL, '2024-08-03 09:25:05', '2024-08-03 09:25:05'),
(2151, 1, '2024-08-03 05:30:11', '2024-08-03 05:30:12', 0, NULL, '2024-08-03 09:30:12', '2024-08-03 09:30:12'),
(2152, 2, '2024-08-03 05:30:12', '2024-08-03 05:30:12', 0, NULL, '2024-08-03 09:30:12', '2024-08-03 09:30:12'),
(2153, 3, '2024-08-03 05:30:13', '2024-08-03 05:30:13', 0, NULL, '2024-08-03 09:30:13', '2024-08-03 09:30:13'),
(2154, 5, '2024-08-03 05:30:13', '2024-08-03 05:30:13', 0, NULL, '2024-08-03 09:30:13', '2024-08-03 09:30:13'),
(2155, 1, '2024-08-03 05:40:08', '2024-08-03 05:40:09', 0, NULL, '2024-08-03 09:40:09', '2024-08-03 09:40:09'),
(2156, 2, '2024-08-03 05:40:09', '2024-08-03 05:40:09', 0, NULL, '2024-08-03 09:40:10', '2024-08-03 09:40:10'),
(2157, 3, '2024-08-03 05:40:10', '2024-08-03 05:40:10', 0, NULL, '2024-08-03 09:40:10', '2024-08-03 09:40:10'),
(2158, 5, '2024-08-03 05:40:10', '2024-08-03 05:40:10', 0, NULL, '2024-08-03 09:40:11', '2024-08-03 09:40:11'),
(2159, 1, '2024-08-03 05:50:10', '2024-08-03 05:50:10', 0, NULL, '2024-08-03 09:50:10', '2024-08-03 09:50:10'),
(2160, 2, '2024-08-03 05:50:10', '2024-08-03 05:50:10', 0, NULL, '2024-08-03 09:50:11', '2024-08-03 09:50:11'),
(2161, 3, '2024-08-03 05:50:11', '2024-08-03 05:50:11', 0, NULL, '2024-08-03 09:50:11', '2024-08-03 09:50:11'),
(2162, 5, '2024-08-03 05:50:11', '2024-08-03 05:50:11', 0, NULL, '2024-08-03 09:50:11', '2024-08-03 09:50:11'),
(2163, 1, '2024-08-03 06:00:12', '2024-08-03 06:00:12', 0, NULL, '2024-08-03 10:00:12', '2024-08-03 10:00:12'),
(2164, 2, '2024-08-03 06:00:12', '2024-08-03 06:00:12', 0, NULL, '2024-08-03 10:00:12', '2024-08-03 10:00:12'),
(2165, 3, '2024-08-03 06:00:12', '2024-08-03 06:00:12', 0, NULL, '2024-08-03 10:00:12', '2024-08-03 10:00:12'),
(2166, 5, '2024-08-03 06:00:13', '2024-08-03 06:00:13', 0, NULL, '2024-08-03 10:00:13', '2024-08-03 10:00:13'),
(2167, 1, '2024-08-03 06:10:06', '2024-08-03 06:10:06', 0, NULL, '2024-08-03 10:10:07', '2024-08-03 10:10:07'),
(2168, 2, '2024-08-03 06:10:07', '2024-08-03 06:10:07', 0, NULL, '2024-08-03 10:10:08', '2024-08-03 10:10:08'),
(2169, 3, '2024-08-03 06:10:08', '2024-08-03 06:10:08', 0, NULL, '2024-08-03 10:10:08', '2024-08-03 10:10:08'),
(2170, 5, '2024-08-03 06:10:08', '2024-08-03 06:10:08', 0, NULL, '2024-08-03 10:10:09', '2024-08-03 10:10:09'),
(2171, 1, '2024-08-03 06:20:04', '2024-08-03 06:20:05', 0, NULL, '2024-08-03 10:20:06', '2024-08-03 10:20:06'),
(2172, 2, '2024-08-03 06:20:06', '2024-08-03 06:20:06', 0, NULL, '2024-08-03 10:20:07', '2024-08-03 10:20:07'),
(2173, 3, '2024-08-03 06:20:07', '2024-08-03 06:20:07', 0, NULL, '2024-08-03 10:20:07', '2024-08-03 10:20:07'),
(2174, 5, '2024-08-03 06:20:08', '2024-08-03 06:20:08', 0, NULL, '2024-08-03 10:20:08', '2024-08-03 10:20:08'),
(2175, 1, '2024-08-03 06:30:05', '2024-08-03 06:30:05', 0, NULL, '2024-08-03 10:30:06', '2024-08-03 10:30:06'),
(2176, 2, '2024-08-03 06:30:06', '2024-08-03 06:30:06', 0, NULL, '2024-08-03 10:30:11', '2024-08-03 10:30:11'),
(2177, 3, '2024-08-03 06:30:11', '2024-08-03 06:30:11', 0, NULL, '2024-08-03 10:30:11', '2024-08-03 10:30:11'),
(2178, 5, '2024-08-03 06:30:12', '2024-08-03 06:30:12', 0, NULL, '2024-08-03 10:30:12', '2024-08-03 10:30:12'),
(2179, 1, '2024-08-03 06:35:09', '2024-08-03 06:35:09', 0, NULL, '2024-08-03 10:35:09', '2024-08-03 10:35:09'),
(2180, 2, '2024-08-03 06:35:09', '2024-08-03 06:35:09', 0, NULL, '2024-08-03 10:35:09', '2024-08-03 10:35:09'),
(2181, 3, '2024-08-03 06:40:05', '2024-08-03 06:40:05', 0, NULL, '2024-08-03 10:40:06', '2024-08-03 10:40:06'),
(2182, 5, '2024-08-03 06:40:06', '2024-08-03 06:40:06', 0, NULL, '2024-08-03 10:40:07', '2024-08-03 10:40:07'),
(2183, 1, '2024-08-03 06:45:05', '2024-08-03 06:45:05', 0, NULL, '2024-08-03 10:45:05', '2024-08-03 10:45:05'),
(2184, 2, '2024-08-03 06:45:05', '2024-08-03 06:45:05', 0, NULL, '2024-08-03 10:45:06', '2024-08-03 10:45:06'),
(2185, 1, '2024-08-03 06:50:06', '2024-08-03 06:50:06', 0, NULL, '2024-08-03 10:50:09', '2024-08-03 10:50:09'),
(2186, 2, '2024-08-03 06:50:09', '2024-08-03 06:50:09', 0, NULL, '2024-08-03 10:50:09', '2024-08-03 10:50:09'),
(2187, 3, '2024-08-03 06:50:09', '2024-08-03 06:50:09', 0, NULL, '2024-08-03 10:50:09', '2024-08-03 10:50:09'),
(2188, 5, '2024-08-03 06:50:09', '2024-08-03 06:50:09', 0, NULL, '2024-08-03 10:50:09', '2024-08-03 10:50:09'),
(2189, 1, '2024-08-03 07:00:05', '2024-08-03 07:00:06', 0, NULL, '2024-08-03 11:00:06', '2024-08-03 11:00:06'),
(2190, 2, '2024-08-03 07:00:07', '2024-08-03 07:00:07', 0, NULL, '2024-08-03 11:00:07', '2024-08-03 11:00:07'),
(2191, 3, '2024-08-03 07:00:08', '2024-08-03 07:00:08', 0, NULL, '2024-08-03 11:00:08', '2024-08-03 11:00:08'),
(2192, 5, '2024-08-03 07:00:08', '2024-08-03 07:00:08', 0, NULL, '2024-08-03 11:00:09', '2024-08-03 11:00:09'),
(2193, 1, '2024-08-03 07:10:06', '2024-08-03 07:10:06', 0, NULL, '2024-08-03 11:10:06', '2024-08-03 11:10:06'),
(2194, 2, '2024-08-03 07:10:07', '2024-08-03 07:10:07', 0, NULL, '2024-08-03 11:10:08', '2024-08-03 11:10:08'),
(2195, 3, '2024-08-03 07:10:08', '2024-08-03 07:10:08', 0, NULL, '2024-08-03 11:10:08', '2024-08-03 11:10:08'),
(2196, 5, '2024-08-03 07:10:09', '2024-08-03 07:10:09', 0, NULL, '2024-08-03 11:10:09', '2024-08-03 11:10:09'),
(2197, 1, '2024-08-03 07:20:06', '2024-08-03 07:20:06', 0, NULL, '2024-08-03 11:20:07', '2024-08-03 11:20:07'),
(2198, 2, '2024-08-03 07:20:08', '2024-08-03 07:20:08', 0, NULL, '2024-08-03 11:20:08', '2024-08-03 11:20:08'),
(2199, 3, '2024-08-03 07:20:08', '2024-08-03 07:20:08', 0, NULL, '2024-08-03 11:20:11', '2024-08-03 11:20:11'),
(2200, 5, '2024-08-03 07:20:11', '2024-08-03 07:20:11', 0, NULL, '2024-08-03 11:20:11', '2024-08-03 11:20:11'),
(2201, 1, '2024-08-03 07:30:07', '2024-08-03 07:30:07', 0, NULL, '2024-08-03 11:30:07', '2024-08-03 11:30:07'),
(2202, 2, '2024-08-03 07:30:07', '2024-08-03 07:30:07', 0, NULL, '2024-08-03 11:30:07', '2024-08-03 11:30:07'),
(2203, 3, '2024-08-03 07:30:08', '2024-08-03 07:30:08', 0, NULL, '2024-08-03 11:30:08', '2024-08-03 11:30:08'),
(2204, 5, '2024-08-03 07:30:08', '2024-08-03 07:30:08', 0, NULL, '2024-08-03 11:30:08', '2024-08-03 11:30:08'),
(2205, 1, '2024-08-03 07:40:07', '2024-08-03 07:40:07', 0, NULL, '2024-08-03 11:40:07', '2024-08-03 11:40:07'),
(2206, 2, '2024-08-03 07:40:08', '2024-08-03 07:40:08', 0, NULL, '2024-08-03 11:40:08', '2024-08-03 11:40:08'),
(2207, 3, '2024-08-03 07:40:08', '2024-08-03 07:40:08', 0, NULL, '2024-08-03 11:40:09', '2024-08-03 11:40:09'),
(2208, 5, '2024-08-03 07:40:09', '2024-08-03 07:40:09', 0, NULL, '2024-08-03 11:40:10', '2024-08-03 11:40:10'),
(2209, 1, '2024-08-03 07:50:06', '2024-08-03 07:50:06', 0, NULL, '2024-08-03 11:50:06', '2024-08-03 11:50:06'),
(2210, 2, '2024-08-03 07:50:06', '2024-08-03 07:50:06', 0, NULL, '2024-08-03 11:50:06', '2024-08-03 11:50:06'),
(2211, 3, '2024-08-03 07:50:07', '2024-08-03 07:50:07', 0, NULL, '2024-08-03 11:50:07', '2024-08-03 11:50:07'),
(2212, 5, '2024-08-03 07:50:07', '2024-08-03 07:50:07', 0, NULL, '2024-08-03 11:50:07', '2024-08-03 11:50:07'),
(2213, 1, '2024-08-03 08:00:07', '2024-08-03 08:00:07', 0, NULL, '2024-08-03 12:00:08', '2024-08-03 12:00:08'),
(2214, 2, '2024-08-03 08:00:08', '2024-08-03 08:00:08', 0, NULL, '2024-08-03 12:00:09', '2024-08-03 12:00:09'),
(2215, 3, '2024-08-03 08:00:09', '2024-08-03 08:00:09', 0, NULL, '2024-08-03 12:00:09', '2024-08-03 12:00:09'),
(2216, 5, '2024-08-03 08:00:09', '2024-08-03 08:00:10', 0, NULL, '2024-08-03 12:00:10', '2024-08-03 12:00:10'),
(2217, 1, '2024-08-03 08:10:08', '2024-08-03 08:10:08', 0, NULL, '2024-08-03 12:10:09', '2024-08-03 12:10:09'),
(2218, 2, '2024-08-03 08:10:09', '2024-08-03 08:10:09', 0, NULL, '2024-08-03 12:10:09', '2024-08-03 12:10:09'),
(2219, 3, '2024-08-03 08:10:09', '2024-08-03 08:10:09', 0, NULL, '2024-08-03 12:10:10', '2024-08-03 12:10:10'),
(2220, 5, '2024-08-03 08:10:10', '2024-08-03 08:10:10', 0, NULL, '2024-08-03 12:10:10', '2024-08-03 12:10:10'),
(2221, 1, '2024-08-03 08:20:08', '2024-08-03 08:20:09', 0, NULL, '2024-08-03 12:20:09', '2024-08-03 12:20:09'),
(2222, 2, '2024-08-03 08:20:09', '2024-08-03 08:20:09', 0, NULL, '2024-08-03 12:20:10', '2024-08-03 12:20:10'),
(2223, 3, '2024-08-03 08:20:10', '2024-08-03 08:20:10', 0, NULL, '2024-08-03 12:20:10', '2024-08-03 12:20:10'),
(2224, 5, '2024-08-03 08:20:10', '2024-08-03 08:20:10', 0, NULL, '2024-08-03 12:20:11', '2024-08-03 12:20:11'),
(2225, 1, '2024-08-03 08:30:07', '2024-08-03 08:30:07', 0, NULL, '2024-08-03 12:30:07', '2024-08-03 12:30:07'),
(2226, 2, '2024-08-03 08:30:08', '2024-08-03 08:30:08', 0, NULL, '2024-08-03 12:30:08', '2024-08-03 12:30:08'),
(2227, 3, '2024-08-03 08:30:08', '2024-08-03 08:30:08', 0, NULL, '2024-08-03 12:30:08', '2024-08-03 12:30:08'),
(2228, 5, '2024-08-03 08:30:09', '2024-08-03 08:30:09', 0, NULL, '2024-08-03 12:30:09', '2024-08-03 12:30:09'),
(2229, 1, '2024-08-03 08:35:08', '2024-08-03 08:35:08', 0, NULL, '2024-08-03 12:35:08', '2024-08-03 12:35:08'),
(2230, 2, '2024-08-03 08:40:07', '2024-08-03 08:40:07', 0, NULL, '2024-08-03 12:40:07', '2024-08-03 12:40:07'),
(2231, 3, '2024-08-03 08:40:07', '2024-08-03 08:40:07', 0, NULL, '2024-08-03 12:40:08', '2024-08-03 12:40:08'),
(2232, 5, '2024-08-03 08:40:08', '2024-08-03 08:40:08', 0, NULL, '2024-08-03 12:40:08', '2024-08-03 12:40:08'),
(2233, 1, '2024-08-03 08:45:06', '2024-08-03 08:45:06', 0, NULL, '2024-08-03 12:45:07', '2024-08-03 12:45:07'),
(2234, 2, '2024-08-03 08:50:06', '2024-08-03 08:50:06', 0, NULL, '2024-08-03 12:50:06', '2024-08-03 12:50:06'),
(2235, 3, '2024-08-03 08:50:07', '2024-08-03 08:50:07', 0, NULL, '2024-08-03 12:50:07', '2024-08-03 12:50:07'),
(2236, 5, '2024-08-03 08:50:09', '2024-08-03 08:50:09', 0, NULL, '2024-08-03 12:50:10', '2024-08-03 12:50:10'),
(2237, 1, '2024-08-03 08:55:05', '2024-08-03 08:55:05', 0, NULL, '2024-08-03 12:55:05', '2024-08-03 12:55:05'),
(2238, 1, '2024-08-03 09:00:12', '2024-08-03 09:00:12', 0, NULL, '2024-08-03 13:00:12', '2024-08-03 13:00:12'),
(2239, 2, '2024-08-03 09:00:12', '2024-08-03 09:00:12', 0, NULL, '2024-08-03 13:00:12', '2024-08-03 13:00:12'),
(2240, 3, '2024-08-03 09:00:12', '2024-08-03 09:00:12', 0, NULL, '2024-08-03 13:00:12', '2024-08-03 13:00:12'),
(2241, 5, '2024-08-03 09:00:12', '2024-08-03 09:00:12', 0, NULL, '2024-08-03 13:00:13', '2024-08-03 13:00:13'),
(2242, 1, '2024-08-03 09:10:06', '2024-08-03 09:10:06', 0, NULL, '2024-08-03 13:10:07', '2024-08-03 13:10:07'),
(2243, 2, '2024-08-03 09:10:07', '2024-08-03 09:10:07', 0, NULL, '2024-08-03 13:10:07', '2024-08-03 13:10:07'),
(2244, 3, '2024-08-03 09:10:08', '2024-08-03 09:10:08', 0, NULL, '2024-08-03 13:10:08', '2024-08-03 13:10:08'),
(2245, 5, '2024-08-03 09:10:08', '2024-08-03 09:10:08', 0, NULL, '2024-08-03 13:10:08', '2024-08-03 13:10:08'),
(2246, 1, '2024-08-03 09:20:04', '2024-08-03 09:20:04', 0, NULL, '2024-08-03 13:20:05', '2024-08-03 13:20:05'),
(2247, 2, '2024-08-03 09:20:05', '2024-08-03 09:20:05', 0, NULL, '2024-08-03 13:20:06', '2024-08-03 13:20:06'),
(2248, 3, '2024-08-03 09:20:07', '2024-08-03 09:20:07', 0, NULL, '2024-08-03 13:20:07', '2024-08-03 13:20:07'),
(2249, 5, '2024-08-03 09:20:08', '2024-08-03 09:20:08', 0, NULL, '2024-08-03 13:20:08', '2024-08-03 13:20:08'),
(2250, 1, '2024-08-03 09:25:06', '2024-08-03 09:25:06', 0, NULL, '2024-08-03 13:25:07', '2024-08-03 13:25:07'),
(2251, 2, '2024-08-03 09:25:07', '2024-08-03 09:25:07', 0, NULL, '2024-08-03 13:25:07', '2024-08-03 13:25:07'),
(2252, 1, '2024-08-03 09:30:07', '2024-08-03 09:30:07', 0, NULL, '2024-08-03 13:30:08', '2024-08-03 13:30:08'),
(2253, 3, '2024-08-03 09:30:08', '2024-08-03 09:30:08', 0, NULL, '2024-08-03 13:30:08', '2024-08-03 13:30:08'),
(2254, 5, '2024-08-03 09:30:09', '2024-08-03 09:30:09', 0, NULL, '2024-08-03 13:30:09', '2024-08-03 13:30:09'),
(2255, 2, '2024-08-03 09:35:07', '2024-08-03 09:35:07', 0, NULL, '2024-08-03 13:35:07', '2024-08-03 13:35:07'),
(2256, 1, '2024-08-03 09:40:06', '2024-08-03 09:40:06', 0, NULL, '2024-08-03 13:40:07', '2024-08-03 13:40:07'),
(2257, 3, '2024-08-03 09:40:07', '2024-08-03 09:40:07', 0, NULL, '2024-08-03 13:40:07', '2024-08-03 13:40:07'),
(2258, 5, '2024-08-03 09:40:08', '2024-08-03 09:40:08', 0, NULL, '2024-08-03 13:40:08', '2024-08-03 13:40:08'),
(2259, 1, '2024-08-03 09:45:07', '2024-08-03 09:45:07', 0, NULL, '2024-08-03 13:45:07', '2024-08-03 13:45:07'),
(2260, 2, '2024-08-03 09:45:08', '2024-08-03 09:45:08', 0, NULL, '2024-08-03 13:45:08', '2024-08-03 13:45:08'),
(2261, 3, '2024-08-03 09:50:07', '2024-08-03 09:50:07', 0, NULL, '2024-08-03 13:50:07', '2024-08-03 13:50:07'),
(2262, 5, '2024-08-03 09:50:08', '2024-08-03 09:50:08', 0, NULL, '2024-08-03 13:50:08', '2024-08-03 13:50:08'),
(2263, 1, '2024-08-03 09:55:07', '2024-08-03 09:55:07', 0, NULL, '2024-08-03 13:55:07', '2024-08-03 13:55:07'),
(2264, 2, '2024-08-03 09:55:07', '2024-08-03 09:55:07', 0, NULL, '2024-08-03 13:55:08', '2024-08-03 13:55:08'),
(2265, 1, '2024-08-03 10:00:08', '2024-08-03 10:00:08', 0, NULL, '2024-08-03 14:00:08', '2024-08-03 14:00:08'),
(2266, 2, '2024-08-03 10:00:09', '2024-08-03 10:00:09', 0, NULL, '2024-08-03 14:00:10', '2024-08-03 14:00:10'),
(2267, 3, '2024-08-03 10:00:10', '2024-08-03 10:00:10', 0, NULL, '2024-08-03 14:00:10', '2024-08-03 14:00:10'),
(2268, 5, '2024-08-03 10:00:10', '2024-08-03 10:00:10', 0, NULL, '2024-08-03 14:00:11', '2024-08-03 14:00:11'),
(2269, 1, '2024-08-03 10:10:03', '2024-08-03 10:10:03', 0, NULL, '2024-08-03 14:10:04', '2024-08-03 14:10:04'),
(2270, 2, '2024-08-03 10:10:04', '2024-08-03 10:10:04', 0, NULL, '2024-08-03 14:10:11', '2024-08-03 14:10:11'),
(2271, 3, '2024-08-03 10:10:11', '2024-08-03 10:10:11', 0, NULL, '2024-08-03 14:10:11', '2024-08-03 14:10:11'),
(2272, 5, '2024-08-03 10:10:11', '2024-08-03 10:10:11', 0, NULL, '2024-08-03 14:10:11', '2024-08-03 14:10:11'),
(2273, 1, '2024-08-03 10:15:06', '2024-08-03 10:15:06', 0, NULL, '2024-08-03 14:15:07', '2024-08-03 14:15:07'),
(2274, 2, '2024-08-03 10:15:07', '2024-08-03 10:15:07', 0, NULL, '2024-08-03 14:15:07', '2024-08-03 14:15:07'),
(2275, 3, '2024-08-03 10:20:06', '2024-08-03 10:20:06', 0, NULL, '2024-08-03 14:20:06', '2024-08-03 14:20:06');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(2276, 5, '2024-08-03 10:20:07', '2024-08-03 10:20:07', 0, NULL, '2024-08-03 14:20:07', '2024-08-03 14:20:07'),
(2277, 1, '2024-08-03 10:25:08', '2024-08-03 10:25:08', 0, NULL, '2024-08-03 14:25:09', '2024-08-03 14:25:09'),
(2278, 2, '2024-08-03 10:25:09', '2024-08-03 10:25:09', 0, NULL, '2024-08-03 14:25:09', '2024-08-03 14:25:09'),
(2279, 3, '2024-08-03 10:25:09', '2024-08-03 10:25:09', 0, NULL, '2024-08-03 14:25:10', '2024-08-03 14:25:10'),
(2280, 5, '2024-08-03 10:25:10', '2024-08-03 10:25:10', 0, NULL, '2024-08-03 14:25:10', '2024-08-03 14:25:10'),
(2281, 1, '2024-08-03 10:35:05', '2024-08-03 10:35:05', 0, NULL, '2024-08-03 14:35:06', '2024-08-03 14:35:06'),
(2282, 2, '2024-08-03 10:35:06', '2024-08-03 10:35:06', 0, NULL, '2024-08-03 14:35:07', '2024-08-03 14:35:07'),
(2283, 3, '2024-08-03 10:35:07', '2024-08-03 10:35:07', 0, NULL, '2024-08-03 14:35:08', '2024-08-03 14:35:08'),
(2284, 5, '2024-08-03 10:35:08', '2024-08-03 10:35:08', 0, NULL, '2024-08-03 14:35:08', '2024-08-03 14:35:08'),
(2285, 1, '2024-08-03 10:45:06', '2024-08-03 10:45:06', 0, NULL, '2024-08-03 14:45:06', '2024-08-03 14:45:06'),
(2286, 2, '2024-08-03 10:45:06', '2024-08-03 10:45:06', 0, NULL, '2024-08-03 14:45:07', '2024-08-03 14:45:07'),
(2287, 3, '2024-08-03 10:45:07', '2024-08-03 10:45:07', 0, NULL, '2024-08-03 14:45:07', '2024-08-03 14:45:07'),
(2288, 5, '2024-08-03 10:45:08', '2024-08-03 10:45:08', 0, NULL, '2024-08-03 14:45:08', '2024-08-03 14:45:08'),
(2289, 1, '2024-08-03 10:50:08', '2024-08-03 10:50:08', 0, NULL, '2024-08-03 14:50:09', '2024-08-03 14:50:09'),
(2290, 2, '2024-08-03 10:50:09', '2024-08-03 10:50:09', 0, NULL, '2024-08-03 14:50:09', '2024-08-03 14:50:09'),
(2291, 3, '2024-08-03 10:50:10', '2024-08-03 10:50:10', 0, NULL, '2024-08-03 14:50:10', '2024-08-03 14:50:10'),
(2292, 5, '2024-08-03 10:55:07', '2024-08-03 10:55:07', 0, NULL, '2024-08-03 14:55:07', '2024-08-03 14:55:07'),
(2293, 1, '2024-08-03 11:00:05', '2024-08-03 11:00:05', 0, NULL, '2024-08-03 15:00:05', '2024-08-03 15:00:05'),
(2294, 2, '2024-08-03 11:00:05', '2024-08-03 11:00:05', 0, NULL, '2024-08-03 15:00:06', '2024-08-03 15:00:06'),
(2295, 3, '2024-08-03 11:00:12', '2024-08-03 11:00:12', 0, NULL, '2024-08-03 15:00:13', '2024-08-03 15:00:13'),
(2296, 1, '2024-08-03 11:05:07', '2024-08-03 11:05:07', 0, NULL, '2024-08-03 15:05:07', '2024-08-03 15:05:07'),
(2297, 2, '2024-08-03 11:05:07', '2024-08-03 11:05:07', 0, NULL, '2024-08-03 15:05:08', '2024-08-03 15:05:08'),
(2298, 5, '2024-08-03 11:05:08', '2024-08-03 11:05:08', 0, NULL, '2024-08-03 15:05:09', '2024-08-03 15:05:09'),
(2299, 1, '2024-08-03 11:10:09', '2024-08-03 11:10:09', 0, NULL, '2024-08-03 15:10:09', '2024-08-03 15:10:09'),
(2300, 2, '2024-08-03 11:10:10', '2024-08-03 11:10:10', 0, NULL, '2024-08-03 15:10:10', '2024-08-03 15:10:10'),
(2301, 3, '2024-08-03 11:10:10', '2024-08-03 11:10:10', 0, NULL, '2024-08-03 15:10:10', '2024-08-03 15:10:10'),
(2302, 5, '2024-08-03 11:10:10', '2024-08-03 11:10:10', 0, NULL, '2024-08-03 15:10:11', '2024-08-03 15:10:11'),
(2303, 1, '2024-08-03 11:20:06', '2024-08-03 11:20:06', 0, NULL, '2024-08-03 15:20:07', '2024-08-03 15:20:07'),
(2304, 2, '2024-08-03 11:20:08', '2024-08-03 11:20:08', 0, NULL, '2024-08-03 15:20:08', '2024-08-03 15:20:08'),
(2305, 3, '2024-08-03 11:20:09', '2024-08-03 11:20:09', 0, NULL, '2024-08-03 15:20:12', '2024-08-03 15:20:12'),
(2306, 5, '2024-08-03 11:20:12', '2024-08-03 11:20:12', 0, NULL, '2024-08-03 15:20:12', '2024-08-03 15:20:12'),
(2307, 1, '2024-08-03 11:30:04', '2024-08-03 11:30:04', 0, NULL, '2024-08-03 15:30:04', '2024-08-03 15:30:04'),
(2308, 2, '2024-08-03 11:30:05', '2024-08-03 11:30:05', 0, NULL, '2024-08-03 15:30:05', '2024-08-03 15:30:05'),
(2309, 3, '2024-08-03 11:30:06', '2024-08-03 11:30:06', 0, NULL, '2024-08-03 15:30:06', '2024-08-03 15:30:06'),
(2310, 5, '2024-08-03 11:30:06', '2024-08-03 11:30:06', 0, NULL, '2024-08-03 15:30:07', '2024-08-03 15:30:07'),
(2311, 1, '2024-08-03 11:35:05', '2024-08-03 11:35:05', 0, NULL, '2024-08-03 15:35:08', '2024-08-03 15:35:08'),
(2312, 1, '2024-08-03 11:40:06', '2024-08-03 11:40:06', 0, NULL, '2024-08-03 15:40:07', '2024-08-03 15:40:07'),
(2313, 2, '2024-08-03 11:40:07', '2024-08-03 11:40:07', 0, NULL, '2024-08-03 15:40:08', '2024-08-03 15:40:08'),
(2314, 3, '2024-08-03 11:40:08', '2024-08-03 11:40:08', 0, NULL, '2024-08-03 15:40:08', '2024-08-03 15:40:08'),
(2315, 5, '2024-08-03 11:40:09', '2024-08-03 11:40:09', 0, NULL, '2024-08-03 15:40:09', '2024-08-03 15:40:09'),
(2316, 1, '2024-08-03 11:50:05', '2024-08-03 11:50:05', 0, NULL, '2024-08-03 15:50:05', '2024-08-03 15:50:05'),
(2317, 2, '2024-08-03 11:50:06', '2024-08-03 11:50:06', 0, NULL, '2024-08-03 15:50:09', '2024-08-03 15:50:09'),
(2318, 3, '2024-08-03 11:50:09', '2024-08-03 11:50:09', 0, NULL, '2024-08-03 15:50:09', '2024-08-03 15:50:09'),
(2319, 5, '2024-08-03 11:50:09', '2024-08-03 11:50:09', 0, NULL, '2024-08-03 15:50:10', '2024-08-03 15:50:10'),
(2320, 1, '2024-08-03 11:55:09', '2024-08-03 11:55:09', 0, NULL, '2024-08-03 15:55:09', '2024-08-03 15:55:09'),
(2321, 2, '2024-08-03 11:55:09', '2024-08-03 11:55:09', 0, NULL, '2024-08-03 15:55:10', '2024-08-03 15:55:10'),
(2322, 3, '2024-08-03 12:00:07', '2024-08-03 12:00:08', 0, NULL, '2024-08-03 16:00:08', '2024-08-03 16:00:08'),
(2323, 5, '2024-08-03 12:00:09', '2024-08-03 12:00:09', 0, NULL, '2024-08-03 16:00:09', '2024-08-03 16:00:09'),
(2324, 1, '2024-08-03 12:05:04', '2024-08-03 12:05:04', 0, NULL, '2024-08-03 16:05:04', '2024-08-03 16:05:04'),
(2325, 2, '2024-08-03 12:05:05', '2024-08-03 12:05:05', 0, NULL, '2024-08-03 16:05:05', '2024-08-03 16:05:05'),
(2326, 1, '2024-08-03 12:10:05', '2024-08-03 12:10:05', 0, NULL, '2024-08-03 16:10:07', '2024-08-03 16:10:07'),
(2327, 3, '2024-08-03 12:10:08', '2024-08-03 12:10:08', 0, NULL, '2024-08-03 16:10:08', '2024-08-03 16:10:08'),
(2328, 5, '2024-08-03 12:10:08', '2024-08-03 12:10:08', 0, NULL, '2024-08-03 16:10:08', '2024-08-03 16:10:08'),
(2329, 1, '2024-08-03 12:15:09', '2024-08-03 12:15:09', 0, NULL, '2024-08-03 16:15:10', '2024-08-03 16:15:10'),
(2330, 2, '2024-08-03 12:15:10', '2024-08-03 12:15:10', 0, NULL, '2024-08-03 16:15:10', '2024-08-03 16:15:10'),
(2331, 3, '2024-08-03 12:15:10', '2024-08-03 12:15:10', 0, NULL, '2024-08-03 16:15:11', '2024-08-03 16:15:11'),
(2332, 5, '2024-08-03 12:15:11', '2024-08-03 12:15:11', 0, NULL, '2024-08-03 16:15:11', '2024-08-03 16:15:11'),
(2333, 1, '2024-08-03 12:25:06', '2024-08-03 12:25:07', 1, NULL, '2024-08-03 16:25:09', '2024-08-03 16:25:09'),
(2334, 2, '2024-08-03 12:25:09', '2024-08-03 12:25:09', 0, NULL, '2024-08-03 16:25:10', '2024-08-03 16:25:10'),
(2335, 3, '2024-08-03 12:25:10', '2024-08-03 12:25:10', 0, NULL, '2024-08-03 16:25:10', '2024-08-03 16:25:10'),
(2336, 5, '2024-08-03 12:25:10', '2024-08-03 12:25:10', 0, NULL, '2024-08-03 16:25:10', '2024-08-03 16:25:10'),
(2337, 1, '2024-08-03 12:35:08', '2024-08-03 12:35:08', 0, NULL, '2024-08-03 16:35:08', '2024-08-03 16:35:08'),
(2338, 2, '2024-08-03 12:35:09', '2024-08-03 12:35:09', 0, NULL, '2024-08-03 16:35:10', '2024-08-03 16:35:10'),
(2339, 3, '2024-08-03 12:35:10', '2024-08-03 12:35:10', 0, NULL, '2024-08-03 16:35:10', '2024-08-03 16:35:10'),
(2340, 5, '2024-08-03 12:35:11', '2024-08-03 12:35:11', 0, NULL, '2024-08-03 16:35:11', '2024-08-03 16:35:11'),
(2341, 1, '2024-08-03 12:45:04', '2024-08-03 12:45:04', 0, NULL, '2024-08-03 16:45:04', '2024-08-03 16:45:04'),
(2342, 2, '2024-08-03 12:45:05', '2024-08-03 12:45:05', 0, NULL, '2024-08-03 16:45:05', '2024-08-03 16:45:05'),
(2343, 3, '2024-08-03 12:45:06', '2024-08-03 12:45:06', 0, NULL, '2024-08-03 16:45:06', '2024-08-03 16:45:06'),
(2344, 5, '2024-08-03 12:45:07', '2024-08-03 12:45:07', 0, NULL, '2024-08-03 16:45:07', '2024-08-03 16:45:07'),
(2345, 1, '2024-08-03 12:50:10', '2024-08-03 12:50:10', 0, NULL, '2024-08-03 16:50:11', '2024-08-03 16:50:11'),
(2346, 2, '2024-08-03 12:50:11', '2024-08-03 12:50:11', 0, NULL, '2024-08-03 16:50:11', '2024-08-03 16:50:11'),
(2347, 3, '2024-08-03 12:50:11', '2024-08-03 12:50:11', 0, NULL, '2024-08-03 16:50:12', '2024-08-03 16:50:12'),
(2348, 5, '2024-08-03 12:50:12', '2024-08-03 12:50:12', 0, NULL, '2024-08-03 16:50:12', '2024-08-03 16:50:12'),
(2349, 1, '2024-08-03 13:00:11', '2024-08-03 13:00:11', 0, NULL, '2024-08-03 17:00:11', '2024-08-03 17:00:11'),
(2350, 2, '2024-08-03 13:00:11', '2024-08-03 13:00:11', 0, NULL, '2024-08-03 17:00:12', '2024-08-03 17:00:12'),
(2351, 3, '2024-08-03 13:00:12', '2024-08-03 13:00:12', 0, NULL, '2024-08-03 17:00:12', '2024-08-03 17:00:12'),
(2352, 5, '2024-08-03 13:00:12', '2024-08-03 13:00:12', 0, NULL, '2024-08-03 17:00:12', '2024-08-03 17:00:12'),
(2353, 1, '2024-08-03 13:10:05', '2024-08-03 13:10:05', 0, NULL, '2024-08-03 17:10:06', '2024-08-03 17:10:06'),
(2354, 2, '2024-08-03 13:10:06', '2024-08-03 13:10:06', 0, NULL, '2024-08-03 17:10:06', '2024-08-03 17:10:06'),
(2355, 3, '2024-08-03 13:10:07', '2024-08-03 13:10:07', 0, NULL, '2024-08-03 17:10:07', '2024-08-03 17:10:07'),
(2356, 5, '2024-08-03 13:10:07', '2024-08-03 13:10:07', 0, NULL, '2024-08-03 17:10:08', '2024-08-03 17:10:08'),
(2357, 1, '2024-08-03 13:15:09', '2024-08-03 13:15:09', 0, NULL, '2024-08-03 17:15:09', '2024-08-03 17:15:09'),
(2358, 2, '2024-08-03 13:15:09', '2024-08-03 13:15:09', 0, NULL, '2024-08-03 17:15:10', '2024-08-03 17:15:10'),
(2359, 3, '2024-08-03 13:15:10', '2024-08-03 13:15:10', 0, NULL, '2024-08-03 17:15:10', '2024-08-03 17:15:10'),
(2360, 5, '2024-08-03 13:15:10', '2024-08-03 13:15:10', 0, NULL, '2024-08-03 17:15:10', '2024-08-03 17:15:10'),
(2361, 1, '2024-08-03 13:25:08', '2024-08-03 13:25:08', 0, NULL, '2024-08-03 17:25:08', '2024-08-03 17:25:08'),
(2362, 2, '2024-08-03 13:25:08', '2024-08-03 13:25:08', 0, NULL, '2024-08-03 17:25:09', '2024-08-03 17:25:09'),
(2363, 3, '2024-08-03 13:25:09', '2024-08-03 13:25:09', 0, NULL, '2024-08-03 17:25:09', '2024-08-03 17:25:09'),
(2364, 5, '2024-08-03 13:25:09', '2024-08-03 13:25:09', 0, NULL, '2024-08-03 17:25:09', '2024-08-03 17:25:09'),
(2365, 1, '2024-08-03 13:35:09', '2024-08-03 13:35:09', 0, NULL, '2024-08-03 17:35:09', '2024-08-03 17:35:09'),
(2366, 2, '2024-08-03 13:35:10', '2024-08-03 13:35:10', 0, NULL, '2024-08-03 17:35:10', '2024-08-03 17:35:10'),
(2367, 3, '2024-08-03 13:35:10', '2024-08-03 13:35:10', 0, NULL, '2024-08-03 17:35:10', '2024-08-03 17:35:10'),
(2368, 5, '2024-08-03 13:35:10', '2024-08-03 13:35:10', 0, NULL, '2024-08-03 17:35:10', '2024-08-03 17:35:10'),
(2369, 1, '2024-08-03 13:45:04', '2024-08-03 13:45:04', 0, NULL, '2024-08-03 17:45:05', '2024-08-03 17:45:05'),
(2370, 2, '2024-08-03 13:45:06', '2024-08-03 13:45:06', 0, NULL, '2024-08-03 17:45:06', '2024-08-03 17:45:06'),
(2371, 3, '2024-08-03 13:45:06', '2024-08-03 13:45:06', 0, NULL, '2024-08-03 17:45:08', '2024-08-03 17:45:08'),
(2372, 5, '2024-08-03 13:45:08', '2024-08-03 13:45:08', 0, NULL, '2024-08-03 17:45:09', '2024-08-03 17:45:09'),
(2373, 1, '2024-08-03 13:50:13', '2024-08-03 13:50:13', 0, NULL, '2024-08-03 17:50:14', '2024-08-03 17:50:14'),
(2374, 2, '2024-08-03 13:50:14', '2024-08-03 13:50:14', 0, NULL, '2024-08-03 17:50:14', '2024-08-03 17:50:14'),
(2375, 3, '2024-08-03 13:50:14', '2024-08-03 13:50:14', 0, NULL, '2024-08-03 17:50:14', '2024-08-03 17:50:14'),
(2376, 5, '2024-08-03 13:50:14', '2024-08-03 13:50:14', 0, NULL, '2024-08-03 17:50:14', '2024-08-03 17:50:14'),
(2377, 1, '2024-08-03 14:00:04', '2024-08-03 14:00:04', 0, NULL, '2024-08-03 18:00:05', '2024-08-03 18:00:05'),
(2378, 2, '2024-08-03 14:00:05', '2024-08-03 14:00:05', 0, NULL, '2024-08-03 18:00:05', '2024-08-03 18:00:05'),
(2379, 3, '2024-08-03 14:00:06', '2024-08-03 14:00:06', 0, NULL, '2024-08-03 18:00:06', '2024-08-03 18:00:06'),
(2380, 5, '2024-08-03 14:00:06', '2024-08-03 14:00:06', 0, NULL, '2024-08-03 18:00:07', '2024-08-03 18:00:07'),
(2381, 1, '2024-08-03 14:10:03', '2024-08-03 14:10:03', 0, NULL, '2024-08-03 18:10:03', '2024-08-03 18:10:03'),
(2382, 2, '2024-08-03 14:10:04', '2024-08-03 14:10:04', 0, NULL, '2024-08-03 18:10:04', '2024-08-03 18:10:04'),
(2383, 3, '2024-08-03 14:10:04', '2024-08-03 14:10:04', 0, NULL, '2024-08-03 18:10:05', '2024-08-03 18:10:05'),
(2384, 5, '2024-08-03 14:10:05', '2024-08-03 14:10:05', 0, NULL, '2024-08-03 18:10:05', '2024-08-03 18:10:05'),
(2385, 1, '2024-08-03 14:15:09', '2024-08-03 14:15:09', 0, NULL, '2024-08-03 18:15:09', '2024-08-03 18:15:09'),
(2386, 2, '2024-08-03 14:15:10', '2024-08-03 14:15:10', 0, NULL, '2024-08-03 18:15:10', '2024-08-03 18:15:10'),
(2387, 3, '2024-08-03 14:15:10', '2024-08-03 14:15:10', 0, NULL, '2024-08-03 18:15:11', '2024-08-03 18:15:11'),
(2388, 5, '2024-08-03 14:15:12', '2024-08-03 14:15:12', 0, NULL, '2024-08-03 18:15:12', '2024-08-03 18:15:12'),
(2389, 1, '2024-08-03 14:25:11', '2024-08-03 14:25:11', 0, NULL, '2024-08-03 18:25:11', '2024-08-03 18:25:11'),
(2390, 2, '2024-08-03 14:25:12', '2024-08-03 14:25:12', 0, NULL, '2024-08-03 18:25:12', '2024-08-03 18:25:12'),
(2391, 3, '2024-08-03 14:25:12', '2024-08-03 14:25:12', 0, NULL, '2024-08-03 18:25:13', '2024-08-03 18:25:13'),
(2392, 5, '2024-08-03 14:25:13', '2024-08-03 14:25:13', 0, NULL, '2024-08-03 18:25:14', '2024-08-03 18:25:14'),
(2393, 1, '2024-08-03 14:35:08', '2024-08-03 14:35:08', 0, NULL, '2024-08-03 18:35:08', '2024-08-03 18:35:08'),
(2394, 2, '2024-08-03 14:35:08', '2024-08-03 14:35:08', 0, NULL, '2024-08-03 18:35:09', '2024-08-03 18:35:09'),
(2395, 3, '2024-08-03 14:35:09', '2024-08-03 14:35:09', 0, NULL, '2024-08-03 18:35:09', '2024-08-03 18:35:09'),
(2396, 5, '2024-08-03 14:35:09', '2024-08-03 14:35:09', 0, NULL, '2024-08-03 18:35:10', '2024-08-03 18:35:10'),
(2397, 1, '2024-08-03 14:45:04', '2024-08-03 14:45:04', 0, NULL, '2024-08-03 18:45:04', '2024-08-03 18:45:04'),
(2398, 2, '2024-08-03 14:45:05', '2024-08-03 14:45:05', 0, NULL, '2024-08-03 18:45:05', '2024-08-03 18:45:05'),
(2399, 3, '2024-08-03 14:45:09', '2024-08-03 14:45:09', 0, NULL, '2024-08-03 18:45:10', '2024-08-03 18:45:10'),
(2400, 5, '2024-08-03 14:45:11', '2024-08-03 14:45:11', 0, NULL, '2024-08-03 18:45:11', '2024-08-03 18:45:11'),
(2401, 1, '2024-08-03 14:50:09', '2024-08-03 14:50:09', 0, NULL, '2024-08-03 18:50:09', '2024-08-03 18:50:09'),
(2402, 2, '2024-08-03 14:50:09', '2024-08-03 14:50:09', 0, NULL, '2024-08-03 18:50:10', '2024-08-03 18:50:10'),
(2403, 3, '2024-08-03 14:55:05', '2024-08-03 14:55:05', 0, NULL, '2024-08-03 18:55:06', '2024-08-03 18:55:06'),
(2404, 5, '2024-08-03 14:55:06', '2024-08-03 14:55:07', 1, NULL, '2024-08-03 18:55:08', '2024-08-03 18:55:08'),
(2405, 1, '2024-08-03 15:00:08', '2024-08-03 15:00:08', 0, NULL, '2024-08-03 19:00:09', '2024-08-03 19:00:09'),
(2406, 2, '2024-08-03 15:00:10', '2024-08-03 15:00:10', 0, NULL, '2024-08-03 19:00:11', '2024-08-03 19:00:11'),
(2407, 3, '2024-08-03 15:00:11', '2024-08-03 15:00:11', 0, NULL, '2024-08-03 19:00:12', '2024-08-03 19:00:12'),
(2408, 5, '2024-08-03 15:00:12', '2024-08-03 15:00:12', 0, NULL, '2024-08-03 19:00:12', '2024-08-03 19:00:12'),
(2409, 1, '2024-08-03 15:10:06', '2024-08-03 15:10:06', 0, NULL, '2024-08-03 19:10:07', '2024-08-03 19:10:07'),
(2410, 2, '2024-08-03 15:10:07', '2024-08-03 15:10:07', 0, NULL, '2024-08-03 19:10:08', '2024-08-03 19:10:08'),
(2411, 3, '2024-08-03 15:10:08', '2024-08-03 15:10:08', 0, NULL, '2024-08-03 19:10:08', '2024-08-03 19:10:08'),
(2412, 5, '2024-08-03 15:10:09', '2024-08-03 15:10:09', 0, NULL, '2024-08-03 19:10:09', '2024-08-03 19:10:09'),
(2413, 1, '2024-08-03 15:20:04', '2024-08-03 15:20:04', 0, NULL, '2024-08-03 19:20:04', '2024-08-03 19:20:04'),
(2414, 2, '2024-08-03 15:20:05', '2024-08-03 15:20:05', 0, NULL, '2024-08-03 19:20:06', '2024-08-03 19:20:06'),
(2415, 3, '2024-08-03 15:20:07', '2024-08-03 15:20:07', 0, NULL, '2024-08-03 19:20:07', '2024-08-03 19:20:07'),
(2416, 5, '2024-08-03 15:20:08', '2024-08-03 15:20:08', 0, NULL, '2024-08-03 19:20:08', '2024-08-03 19:20:08'),
(2417, 1, '2024-08-03 15:25:07', '2024-08-03 15:25:07', 0, NULL, '2024-08-03 19:25:08', '2024-08-03 19:25:08'),
(2418, 2, '2024-08-03 15:25:08', '2024-08-03 15:25:08', 0, NULL, '2024-08-03 19:25:08', '2024-08-03 19:25:08'),
(2419, 1, '2024-08-03 15:30:11', '2024-08-03 15:30:11', 0, NULL, '2024-08-03 19:30:11', '2024-08-03 19:30:11'),
(2420, 2, '2024-08-03 15:30:11', '2024-08-03 15:30:11', 0, NULL, '2024-08-03 19:30:11', '2024-08-03 19:30:11'),
(2421, 3, '2024-08-03 15:30:11', '2024-08-03 15:30:11', 0, NULL, '2024-08-03 19:30:12', '2024-08-03 19:30:12'),
(2422, 5, '2024-08-03 15:30:12', '2024-08-03 15:30:12', 0, NULL, '2024-08-03 19:30:12', '2024-08-03 19:30:12'),
(2423, 1, '2024-08-03 15:40:09', '2024-08-03 15:40:09', 0, NULL, '2024-08-03 19:40:10', '2024-08-03 19:40:10'),
(2424, 2, '2024-08-03 15:40:10', '2024-08-03 15:40:10', 0, NULL, '2024-08-03 19:40:10', '2024-08-03 19:40:10'),
(2425, 3, '2024-08-03 15:40:11', '2024-08-03 15:40:11', 0, NULL, '2024-08-03 19:40:11', '2024-08-03 19:40:11'),
(2426, 5, '2024-08-03 15:40:11', '2024-08-03 15:40:11', 0, NULL, '2024-08-03 19:40:12', '2024-08-03 19:40:12'),
(2427, 1, '2024-08-03 15:50:08', '2024-08-03 15:50:08', 0, NULL, '2024-08-03 19:50:08', '2024-08-03 19:50:08'),
(2428, 2, '2024-08-03 15:50:08', '2024-08-03 15:50:08', 0, NULL, '2024-08-03 19:50:09', '2024-08-03 19:50:09'),
(2429, 3, '2024-08-03 15:50:09', '2024-08-03 15:50:09', 0, NULL, '2024-08-03 19:50:09', '2024-08-03 19:50:09'),
(2430, 5, '2024-08-03 15:50:09', '2024-08-03 15:50:09', 0, NULL, '2024-08-03 19:50:10', '2024-08-03 19:50:10'),
(2431, 1, '2024-08-03 16:00:08', '2024-08-03 16:00:08', 0, NULL, '2024-08-03 20:00:08', '2024-08-03 20:00:08'),
(2432, 2, '2024-08-03 16:00:08', '2024-08-03 16:00:08', 0, NULL, '2024-08-03 20:00:09', '2024-08-03 20:00:09'),
(2433, 3, '2024-08-03 16:00:09', '2024-08-03 16:00:09', 0, NULL, '2024-08-03 20:00:09', '2024-08-03 20:00:09'),
(2434, 5, '2024-08-03 16:00:10', '2024-08-03 16:00:10', 0, NULL, '2024-08-03 20:00:10', '2024-08-03 20:00:10'),
(2435, 1, '2024-08-03 16:10:07', '2024-08-03 16:10:07', 0, NULL, '2024-08-03 20:10:08', '2024-08-03 20:10:08'),
(2436, 2, '2024-08-03 16:10:08', '2024-08-03 16:10:08', 0, NULL, '2024-08-03 20:10:08', '2024-08-03 20:10:08'),
(2437, 3, '2024-08-03 16:10:09', '2024-08-03 16:10:09', 0, NULL, '2024-08-03 20:10:09', '2024-08-03 20:10:09'),
(2438, 5, '2024-08-03 16:10:09', '2024-08-03 16:10:09', 0, NULL, '2024-08-03 20:10:09', '2024-08-03 20:10:09'),
(2439, 1, '2024-08-03 16:15:10', '2024-08-03 16:15:10', 0, NULL, '2024-08-03 20:15:10', '2024-08-03 20:15:10'),
(2440, 2, '2024-08-03 16:15:10', '2024-08-03 16:15:10', 0, NULL, '2024-08-03 20:15:11', '2024-08-03 20:15:11'),
(2441, 3, '2024-08-03 16:15:11', '2024-08-03 16:15:11', 0, NULL, '2024-08-03 20:15:11', '2024-08-03 20:15:11'),
(2442, 5, '2024-08-03 16:15:11', '2024-08-03 16:15:11', 0, NULL, '2024-08-03 20:15:12', '2024-08-03 20:15:12'),
(2443, 1, '2024-08-03 16:25:06', '2024-08-03 16:25:06', 0, NULL, '2024-08-03 20:25:07', '2024-08-03 20:25:07'),
(2444, 2, '2024-08-03 16:25:07', '2024-08-03 16:25:07', 0, NULL, '2024-08-03 20:25:08', '2024-08-03 20:25:08'),
(2445, 3, '2024-08-03 16:25:08', '2024-08-03 16:25:08', 0, NULL, '2024-08-03 20:25:09', '2024-08-03 20:25:09'),
(2446, 5, '2024-08-03 16:25:09', '2024-08-03 16:25:09', 0, NULL, '2024-08-03 20:25:10', '2024-08-03 20:25:10'),
(2447, 1, '2024-08-03 16:30:09', '2024-08-03 16:30:09', 0, NULL, '2024-08-03 20:30:09', '2024-08-03 20:30:09'),
(2448, 2, '2024-08-03 16:30:09', '2024-08-03 16:30:09', 0, NULL, '2024-08-03 20:30:10', '2024-08-03 20:30:10'),
(2449, 3, '2024-08-03 16:30:11', '2024-08-03 16:30:11', 0, NULL, '2024-08-03 20:30:11', '2024-08-03 20:30:11'),
(2450, 5, '2024-08-03 16:35:07', '2024-08-03 16:35:07', 0, NULL, '2024-08-03 20:35:08', '2024-08-03 20:35:08'),
(2451, 1, '2024-08-03 16:40:07', '2024-08-03 16:40:07', 0, NULL, '2024-08-03 20:40:08', '2024-08-03 20:40:08'),
(2452, 2, '2024-08-03 16:40:08', '2024-08-03 16:40:08', 0, NULL, '2024-08-03 20:40:09', '2024-08-03 20:40:09'),
(2453, 3, '2024-08-03 16:40:09', '2024-08-03 16:40:09', 0, NULL, '2024-08-03 20:40:09', '2024-08-03 20:40:09'),
(2454, 1, '2024-08-03 16:45:11', '2024-08-03 16:45:11', 0, NULL, '2024-08-03 20:45:11', '2024-08-03 20:45:11'),
(2455, 2, '2024-08-03 16:45:11', '2024-08-03 16:45:11', 0, NULL, '2024-08-03 20:45:11', '2024-08-03 20:45:11'),
(2456, 3, '2024-08-03 16:45:11', '2024-08-03 16:45:11', 0, NULL, '2024-08-03 20:45:11', '2024-08-03 20:45:11'),
(2457, 5, '2024-08-03 16:45:11', '2024-08-03 16:45:11', 0, NULL, '2024-08-03 20:45:11', '2024-08-03 20:45:11'),
(2458, 1, '2024-08-03 16:55:05', '2024-08-03 16:55:05', 0, NULL, '2024-08-03 20:55:05', '2024-08-03 20:55:05'),
(2459, 2, '2024-08-03 16:55:05', '2024-08-03 16:55:05', 0, NULL, '2024-08-03 20:55:06', '2024-08-03 20:55:06'),
(2460, 3, '2024-08-03 16:55:06', '2024-08-03 16:55:06', 0, NULL, '2024-08-03 20:55:07', '2024-08-03 20:55:07'),
(2461, 5, '2024-08-03 16:55:07', '2024-08-03 16:55:07', 0, NULL, '2024-08-03 20:55:07', '2024-08-03 20:55:07'),
(2462, 1, '2024-08-03 17:00:09', '2024-08-03 17:00:09', 0, NULL, '2024-08-03 21:00:09', '2024-08-03 21:00:09'),
(2463, 2, '2024-08-03 17:00:10', '2024-08-03 17:00:10', 0, NULL, '2024-08-03 21:00:11', '2024-08-03 21:00:11'),
(2464, 3, '2024-08-03 17:00:11', '2024-08-03 17:00:11', 0, NULL, '2024-08-03 21:00:11', '2024-08-03 21:00:11'),
(2465, 5, '2024-08-03 17:00:11', '2024-08-03 17:00:11', 0, NULL, '2024-08-03 21:00:11', '2024-08-03 21:00:11'),
(2466, 1, '2024-08-03 17:10:06', '2024-08-03 17:10:06', 0, NULL, '2024-08-03 21:10:07', '2024-08-03 21:10:07'),
(2467, 2, '2024-08-03 17:10:07', '2024-08-03 17:10:07', 0, NULL, '2024-08-03 21:10:07', '2024-08-03 21:10:07'),
(2468, 3, '2024-08-03 17:10:08', '2024-08-03 17:10:08', 0, NULL, '2024-08-03 21:10:08', '2024-08-03 21:10:08'),
(2469, 5, '2024-08-03 17:10:09', '2024-08-03 17:10:09', 0, NULL, '2024-08-03 21:10:10', '2024-08-03 21:10:10'),
(2470, 1, '2024-08-03 17:20:04', '2024-08-03 17:20:04', 0, NULL, '2024-08-03 21:20:04', '2024-08-03 21:20:04'),
(2471, 2, '2024-08-03 17:20:05', '2024-08-03 17:20:05', 0, NULL, '2024-08-03 21:20:05', '2024-08-03 21:20:05'),
(2472, 3, '2024-08-03 17:20:06', '2024-08-03 17:20:06', 0, NULL, '2024-08-03 21:20:07', '2024-08-03 21:20:07'),
(2473, 5, '2024-08-03 17:20:07', '2024-08-03 17:20:07', 0, NULL, '2024-08-03 21:20:08', '2024-08-03 21:20:08'),
(2474, 1, '2024-08-03 17:25:05', '2024-08-03 17:25:05', 0, NULL, '2024-08-03 21:25:05', '2024-08-03 21:25:05'),
(2475, 1, '2024-08-03 17:30:11', '2024-08-03 17:30:11', 0, NULL, '2024-08-03 21:30:11', '2024-08-03 21:30:11'),
(2476, 2, '2024-08-03 17:30:11', '2024-08-03 17:30:11', 0, NULL, '2024-08-03 21:30:11', '2024-08-03 21:30:11'),
(2477, 3, '2024-08-03 17:30:12', '2024-08-03 17:30:12', 0, NULL, '2024-08-03 21:30:12', '2024-08-03 21:30:12'),
(2478, 5, '2024-08-03 17:30:12', '2024-08-03 17:30:12', 0, NULL, '2024-08-03 21:30:12', '2024-08-03 21:30:12'),
(2479, 1, '2024-08-03 17:40:10', '2024-08-03 17:40:10', 0, NULL, '2024-08-03 21:40:10', '2024-08-03 21:40:10'),
(2480, 2, '2024-08-03 17:40:10', '2024-08-03 17:40:10', 0, NULL, '2024-08-03 21:40:10', '2024-08-03 21:40:10'),
(2481, 3, '2024-08-03 17:40:10', '2024-08-03 17:40:10', 0, NULL, '2024-08-03 21:40:11', '2024-08-03 21:40:11'),
(2482, 5, '2024-08-03 17:40:11', '2024-08-03 17:40:11', 0, NULL, '2024-08-03 21:40:11', '2024-08-03 21:40:11'),
(2483, 1, '2024-08-03 17:50:06', '2024-08-03 17:50:06', 0, NULL, '2024-08-03 21:50:06', '2024-08-03 21:50:06'),
(2484, 2, '2024-08-03 17:50:06', '2024-08-03 17:50:06', 0, NULL, '2024-08-03 21:50:07', '2024-08-03 21:50:07'),
(2485, 3, '2024-08-03 17:50:07', '2024-08-03 17:50:07', 0, NULL, '2024-08-03 21:50:07', '2024-08-03 21:50:07'),
(2486, 5, '2024-08-03 17:50:08', '2024-08-03 17:50:08', 0, NULL, '2024-08-03 21:50:08', '2024-08-03 21:50:08'),
(2487, 1, '2024-08-03 17:55:07', '2024-08-03 17:55:07', 0, NULL, '2024-08-03 21:55:07', '2024-08-03 21:55:07'),
(2488, 2, '2024-08-03 17:55:07', '2024-08-03 17:55:07', 0, NULL, '2024-08-03 21:55:08', '2024-08-03 21:55:08'),
(2489, 1, '2024-08-03 18:00:08', '2024-08-03 18:00:08', 0, NULL, '2024-08-03 22:00:09', '2024-08-03 22:00:09'),
(2490, 2, '2024-08-03 18:00:09', '2024-08-03 18:00:09', 0, NULL, '2024-08-03 22:00:10', '2024-08-03 22:00:10'),
(2491, 3, '2024-08-03 18:00:10', '2024-08-03 18:00:10', 0, NULL, '2024-08-03 22:00:11', '2024-08-03 22:00:11'),
(2492, 5, '2024-08-03 18:00:11', '2024-08-03 18:00:11', 0, NULL, '2024-08-03 22:00:11', '2024-08-03 22:00:11'),
(2493, 1, '2024-08-03 18:05:10', '2024-08-03 18:05:10', 0, NULL, '2024-08-03 22:05:10', '2024-08-03 22:05:10'),
(2494, 2, '2024-08-03 18:05:10', '2024-08-03 18:05:10', 0, NULL, '2024-08-03 22:05:10', '2024-08-03 22:05:10'),
(2495, 3, '2024-08-03 18:10:10', '2024-08-03 18:10:10', 0, NULL, '2024-08-03 22:10:10', '2024-08-03 22:10:10'),
(2496, 5, '2024-08-03 18:10:10', '2024-08-03 18:10:10', 0, NULL, '2024-08-03 22:10:11', '2024-08-03 22:10:11'),
(2497, 1, '2024-08-03 18:15:07', '2024-08-03 18:15:07', 0, NULL, '2024-08-03 22:15:07', '2024-08-03 22:15:07'),
(2498, 2, '2024-08-03 18:15:08', '2024-08-03 18:15:08', 0, NULL, '2024-08-03 22:15:09', '2024-08-03 22:15:09'),
(2499, 3, '2024-08-03 18:20:04', '2024-08-03 18:20:04', 0, NULL, '2024-08-03 22:20:04', '2024-08-03 22:20:04'),
(2500, 5, '2024-08-03 18:20:04', '2024-08-03 18:20:04', 0, NULL, '2024-08-03 22:20:05', '2024-08-03 22:20:05'),
(2501, 1, '2024-08-03 18:25:06', '2024-08-03 18:25:06', 0, NULL, '2024-08-03 22:25:06', '2024-08-03 22:25:06'),
(2502, 2, '2024-08-03 18:25:07', '2024-08-03 18:25:07', 0, NULL, '2024-08-03 22:25:07', '2024-08-03 22:25:07'),
(2503, 3, '2024-08-03 18:25:07', '2024-08-03 18:25:07', 0, NULL, '2024-08-03 22:25:08', '2024-08-03 22:25:08'),
(2504, 5, '2024-08-03 18:25:08', '2024-08-03 18:25:08', 0, NULL, '2024-08-03 22:25:08', '2024-08-03 22:25:08'),
(2505, 1, '2024-08-03 18:30:07', '2024-08-03 18:30:07', 0, NULL, '2024-08-03 22:30:07', '2024-08-03 22:30:07'),
(2506, 2, '2024-08-03 18:35:04', '2024-08-03 18:35:04', 0, NULL, '2024-08-03 22:35:05', '2024-08-03 22:35:05'),
(2507, 3, '2024-08-03 18:35:05', '2024-08-03 18:35:05', 0, NULL, '2024-08-03 22:35:06', '2024-08-03 22:35:06'),
(2508, 5, '2024-08-03 18:35:06', '2024-08-03 18:35:06', 0, NULL, '2024-08-03 22:35:07', '2024-08-03 22:35:07'),
(2509, 1, '2024-08-03 18:40:07', '2024-08-03 18:40:07', 0, NULL, '2024-08-03 22:40:08', '2024-08-03 22:40:08'),
(2510, 2, '2024-08-03 18:40:08', '2024-08-03 18:40:08', 0, NULL, '2024-08-03 22:40:08', '2024-08-03 22:40:08'),
(2511, 3, '2024-08-03 18:40:09', '2024-08-03 18:40:09', 0, NULL, '2024-08-03 22:40:09', '2024-08-03 22:40:09'),
(2512, 5, '2024-08-03 18:40:09', '2024-08-03 18:40:09', 0, NULL, '2024-08-03 22:40:09', '2024-08-03 22:40:09'),
(2513, 1, '2024-08-03 18:45:08', '2024-08-03 18:45:08', 0, NULL, '2024-08-03 22:45:08', '2024-08-03 22:45:08'),
(2514, 2, '2024-08-03 18:50:07', '2024-08-03 18:50:11', 3, NULL, '2024-08-03 22:50:12', '2024-08-03 22:50:12'),
(2515, 3, '2024-08-03 18:50:12', '2024-08-03 18:50:12', 0, NULL, '2024-08-03 22:50:12', '2024-08-03 22:50:12'),
(2516, 5, '2024-08-03 18:50:13', '2024-08-03 18:50:13', 0, NULL, '2024-08-03 22:50:13', '2024-08-03 22:50:13'),
(2517, 1, '2024-08-03 18:55:05', '2024-08-03 18:55:05', 0, NULL, '2024-08-03 22:55:06', '2024-08-03 22:55:06'),
(2518, 2, '2024-08-03 19:00:04', '2024-08-03 19:00:04', 0, NULL, '2024-08-03 23:00:05', '2024-08-03 23:00:05'),
(2519, 3, '2024-08-03 19:00:06', '2024-08-03 19:00:06', 0, NULL, '2024-08-03 23:00:06', '2024-08-03 23:00:06'),
(2520, 5, '2024-08-03 19:00:07', '2024-08-03 19:00:07', 0, NULL, '2024-08-03 23:00:07', '2024-08-03 23:00:07'),
(2521, 1, '2024-08-03 19:05:04', '2024-08-03 19:05:04', 0, NULL, '2024-08-03 23:05:04', '2024-08-03 23:05:04'),
(2522, 1, '2024-08-03 19:10:07', '2024-08-03 19:10:07', 0, NULL, '2024-08-03 23:10:07', '2024-08-03 23:10:07'),
(2523, 2, '2024-08-03 19:10:08', '2024-08-03 19:10:08', 0, NULL, '2024-08-03 23:10:08', '2024-08-03 23:10:08'),
(2524, 3, '2024-08-03 19:10:09', '2024-08-03 19:10:09', 0, NULL, '2024-08-03 23:10:09', '2024-08-03 23:10:09'),
(2525, 5, '2024-08-03 19:10:09', '2024-08-03 19:10:09', 0, NULL, '2024-08-03 23:10:09', '2024-08-03 23:10:09'),
(2526, 1, '2024-08-03 19:15:10', '2024-08-03 19:15:10', 0, NULL, '2024-08-03 23:15:10', '2024-08-03 23:15:10'),
(2527, 2, '2024-08-03 19:15:10', '2024-08-03 19:15:10', 0, NULL, '2024-08-03 23:15:10', '2024-08-03 23:15:10'),
(2528, 3, '2024-08-03 19:15:10', '2024-08-03 19:15:10', 0, NULL, '2024-08-03 23:15:11', '2024-08-03 23:15:11'),
(2529, 5, '2024-08-03 19:15:11', '2024-08-03 19:15:11', 0, NULL, '2024-08-03 23:15:11', '2024-08-03 23:15:11'),
(2530, 1, '2024-08-03 19:25:06', '2024-08-03 19:25:06', 0, NULL, '2024-08-03 23:25:06', '2024-08-03 23:25:06'),
(2531, 2, '2024-08-03 19:25:06', '2024-08-03 19:25:06', 0, NULL, '2024-08-03 23:25:06', '2024-08-03 23:25:06'),
(2532, 3, '2024-08-03 19:25:07', '2024-08-03 19:25:07', 0, NULL, '2024-08-03 23:25:07', '2024-08-03 23:25:07'),
(2533, 5, '2024-08-03 19:25:07', '2024-08-03 19:25:07', 0, NULL, '2024-08-03 23:25:08', '2024-08-03 23:25:08'),
(2534, 1, '2024-08-03 19:35:07', '2024-08-03 19:35:07', 0, NULL, '2024-08-03 23:35:08', '2024-08-03 23:35:08'),
(2535, 2, '2024-08-03 19:35:08', '2024-08-03 19:35:08', 0, NULL, '2024-08-03 23:35:08', '2024-08-03 23:35:08'),
(2536, 3, '2024-08-03 19:35:08', '2024-08-03 19:35:08', 0, NULL, '2024-08-03 23:35:08', '2024-08-03 23:35:08'),
(2537, 5, '2024-08-03 19:35:08', '2024-08-03 19:35:08', 0, NULL, '2024-08-03 23:35:09', '2024-08-03 23:35:09'),
(2538, 1, '2024-08-03 19:45:09', '2024-08-03 19:45:09', 0, NULL, '2024-08-03 23:45:09', '2024-08-03 23:45:09'),
(2539, 2, '2024-08-03 19:45:09', '2024-08-03 19:45:09', 0, NULL, '2024-08-03 23:45:10', '2024-08-03 23:45:10'),
(2540, 3, '2024-08-03 19:45:10', '2024-08-03 19:45:10', 0, NULL, '2024-08-03 23:45:10', '2024-08-03 23:45:10'),
(2541, 5, '2024-08-03 19:45:10', '2024-08-03 19:45:10', 0, NULL, '2024-08-03 23:45:10', '2024-08-03 23:45:10'),
(2542, 1, '2024-08-03 19:55:09', '2024-08-03 19:55:09', 0, NULL, '2024-08-03 23:55:09', '2024-08-03 23:55:09'),
(2543, 2, '2024-08-03 19:55:09', '2024-08-03 19:55:09', 0, NULL, '2024-08-03 23:55:09', '2024-08-03 23:55:09'),
(2544, 3, '2024-08-03 19:55:10', '2024-08-03 19:55:10', 0, NULL, '2024-08-03 23:55:10', '2024-08-03 23:55:10'),
(2545, 5, '2024-08-03 19:55:10', '2024-08-03 19:55:10', 0, NULL, '2024-08-03 23:55:10', '2024-08-03 23:55:10'),
(2546, 1, '2024-08-03 20:05:10', '2024-08-03 20:05:10', 0, NULL, '2024-08-04 00:05:10', '2024-08-04 00:05:10'),
(2547, 2, '2024-08-03 20:05:10', '2024-08-03 20:05:10', 0, NULL, '2024-08-04 00:05:10', '2024-08-04 00:05:10'),
(2548, 3, '2024-08-03 20:05:11', '2024-08-03 20:05:11', 0, NULL, '2024-08-04 00:05:11', '2024-08-04 00:05:11'),
(2549, 5, '2024-08-03 20:05:11', '2024-08-03 20:05:11', 0, NULL, '2024-08-04 00:05:11', '2024-08-04 00:05:11'),
(2550, 1, '2024-08-03 20:15:07', '2024-08-03 20:15:07', 0, NULL, '2024-08-04 00:15:07', '2024-08-04 00:15:07'),
(2551, 2, '2024-08-03 20:15:08', '2024-08-03 20:15:08', 0, NULL, '2024-08-04 00:15:08', '2024-08-04 00:15:08'),
(2552, 3, '2024-08-03 20:15:09', '2024-08-03 20:15:09', 0, NULL, '2024-08-04 00:15:09', '2024-08-04 00:15:09'),
(2553, 5, '2024-08-03 20:15:09', '2024-08-03 20:15:09', 0, NULL, '2024-08-04 00:15:09', '2024-08-04 00:15:09'),
(2554, 1, '2024-08-03 20:25:09', '2024-08-03 20:25:09', 0, NULL, '2024-08-04 00:25:11', '2024-08-04 00:25:11'),
(2555, 2, '2024-08-03 20:25:11', '2024-08-03 20:25:11', 0, NULL, '2024-08-04 00:25:11', '2024-08-04 00:25:11'),
(2556, 3, '2024-08-03 20:25:11', '2024-08-03 20:25:11', 0, NULL, '2024-08-04 00:25:11', '2024-08-04 00:25:11'),
(2557, 5, '2024-08-03 20:25:11', '2024-08-03 20:25:11', 0, NULL, '2024-08-04 00:25:12', '2024-08-04 00:25:12'),
(2558, 1, '2024-08-03 20:35:04', '2024-08-03 20:35:04', 0, NULL, '2024-08-04 00:35:06', '2024-08-04 00:35:06'),
(2559, 2, '2024-08-03 20:35:07', '2024-08-03 20:35:07', 0, NULL, '2024-08-04 00:35:07', '2024-08-04 00:35:07'),
(2560, 3, '2024-08-03 20:35:07', '2024-08-03 20:35:07', 0, NULL, '2024-08-04 00:35:08', '2024-08-04 00:35:08'),
(2561, 5, '2024-08-03 20:35:08', '2024-08-03 20:35:08', 0, NULL, '2024-08-04 00:35:08', '2024-08-04 00:35:08'),
(2562, 1, '2024-08-03 20:40:07', '2024-08-03 20:40:07', 0, NULL, '2024-08-04 00:40:07', '2024-08-04 00:40:07'),
(2563, 1, '2024-08-03 20:45:08', '2024-08-03 20:45:08', 0, NULL, '2024-08-04 00:45:08', '2024-08-04 00:45:08'),
(2564, 2, '2024-08-03 20:45:09', '2024-08-03 20:45:09', 0, NULL, '2024-08-04 00:45:09', '2024-08-04 00:45:09'),
(2565, 3, '2024-08-03 20:45:10', '2024-08-03 20:45:10', 0, NULL, '2024-08-04 00:45:10', '2024-08-04 00:45:10'),
(2566, 5, '2024-08-03 20:45:10', '2024-08-03 20:45:10', 0, NULL, '2024-08-04 00:45:11', '2024-08-04 00:45:11'),
(2567, 1, '2024-08-03 20:55:07', '2024-08-03 20:55:07', 0, NULL, '2024-08-04 00:55:08', '2024-08-04 00:55:08'),
(2568, 2, '2024-08-03 20:55:10', '2024-08-03 20:55:10', 0, NULL, '2024-08-04 00:55:12', '2024-08-04 00:55:12'),
(2569, 3, '2024-08-03 20:55:12', '2024-08-03 20:55:12', 0, NULL, '2024-08-04 00:55:12', '2024-08-04 00:55:12'),
(2570, 5, '2024-08-03 20:55:12', '2024-08-03 20:55:12', 0, NULL, '2024-08-04 00:55:12', '2024-08-04 00:55:12'),
(2571, 1, '2024-08-03 21:05:07', '2024-08-03 21:05:07', 0, NULL, '2024-08-04 01:05:07', '2024-08-04 01:05:07'),
(2572, 2, '2024-08-03 21:05:07', '2024-08-03 21:05:07', 0, NULL, '2024-08-04 01:05:08', '2024-08-04 01:05:08'),
(2573, 3, '2024-08-03 21:05:08', '2024-08-03 21:05:08', 0, NULL, '2024-08-04 01:05:08', '2024-08-04 01:05:08'),
(2574, 5, '2024-08-03 21:05:09', '2024-08-03 21:05:09', 0, NULL, '2024-08-04 01:05:09', '2024-08-04 01:05:09'),
(2575, 1, '2024-08-03 21:15:07', '2024-08-03 21:15:07', 0, NULL, '2024-08-04 01:15:07', '2024-08-04 01:15:07'),
(2576, 2, '2024-08-03 21:15:08', '2024-08-03 21:15:08', 0, NULL, '2024-08-04 01:15:08', '2024-08-04 01:15:08'),
(2577, 3, '2024-08-03 21:15:08', '2024-08-03 21:15:08', 0, NULL, '2024-08-04 01:15:09', '2024-08-04 01:15:09'),
(2578, 5, '2024-08-03 21:15:09', '2024-08-03 21:15:09', 0, NULL, '2024-08-04 01:15:09', '2024-08-04 01:15:09'),
(2579, 1, '2024-08-03 21:20:10', '2024-08-03 21:20:10', 0, NULL, '2024-08-04 01:20:10', '2024-08-04 01:20:10'),
(2580, 2, '2024-08-03 21:20:11', '2024-08-03 21:20:11', 0, NULL, '2024-08-04 01:20:11', '2024-08-04 01:20:11'),
(2581, 3, '2024-08-03 21:20:11', '2024-08-03 21:20:11', 0, NULL, '2024-08-04 01:20:12', '2024-08-04 01:20:12'),
(2582, 5, '2024-08-03 21:20:12', '2024-08-03 21:20:12', 0, NULL, '2024-08-04 01:20:12', '2024-08-04 01:20:12'),
(2583, 1, '2024-08-03 21:30:05', '2024-08-03 21:30:05', 0, NULL, '2024-08-04 01:30:06', '2024-08-04 01:30:06'),
(2584, 2, '2024-08-03 21:30:06', '2024-08-03 21:30:06', 0, NULL, '2024-08-04 01:30:07', '2024-08-04 01:30:07'),
(2585, 3, '2024-08-03 21:30:07', '2024-08-03 21:30:07', 0, NULL, '2024-08-04 01:30:08', '2024-08-04 01:30:08'),
(2586, 5, '2024-08-03 21:30:09', '2024-08-03 21:30:09', 0, NULL, '2024-08-04 01:30:10', '2024-08-04 01:30:10'),
(2587, 1, '2024-08-03 21:40:05', '2024-08-03 21:40:05', 0, NULL, '2024-08-04 01:40:06', '2024-08-04 01:40:06'),
(2588, 2, '2024-08-03 21:40:07', '2024-08-03 21:40:07', 0, NULL, '2024-08-04 01:40:07', '2024-08-04 01:40:07'),
(2589, 3, '2024-08-03 21:40:08', '2024-08-03 21:40:08', 0, NULL, '2024-08-04 01:40:11', '2024-08-04 01:40:11'),
(2590, 5, '2024-08-03 21:40:12', '2024-08-03 21:40:12', 0, NULL, '2024-08-04 01:40:12', '2024-08-04 01:40:12'),
(2591, 1, '2024-08-03 21:45:09', '2024-08-03 21:45:09', 0, NULL, '2024-08-04 01:45:09', '2024-08-04 01:45:09'),
(2592, 2, '2024-08-03 21:45:09', '2024-08-03 21:45:09', 0, NULL, '2024-08-04 01:45:10', '2024-08-04 01:45:10'),
(2593, 3, '2024-08-03 21:45:10', '2024-08-03 21:45:10', 0, NULL, '2024-08-04 01:45:10', '2024-08-04 01:45:10'),
(2594, 5, '2024-08-03 21:50:05', '2024-08-03 21:50:05', 0, NULL, '2024-08-04 01:50:05', '2024-08-04 01:50:05'),
(2595, 1, '2024-08-03 21:55:04', '2024-08-03 21:55:04', 0, NULL, '2024-08-04 01:55:04', '2024-08-04 01:55:04'),
(2596, 2, '2024-08-03 21:55:05', '2024-08-03 21:55:05', 0, NULL, '2024-08-04 01:55:05', '2024-08-04 01:55:05'),
(2597, 3, '2024-08-03 21:55:06', '2024-08-03 21:55:06', 0, NULL, '2024-08-04 01:55:06', '2024-08-04 01:55:06'),
(2598, 1, '2024-08-03 22:00:06', '2024-08-03 22:00:06', 0, NULL, '2024-08-04 02:00:06', '2024-08-04 02:00:06'),
(2599, 2, '2024-08-03 22:00:07', '2024-08-03 22:00:07', 0, NULL, '2024-08-04 02:00:07', '2024-08-04 02:00:07'),
(2600, 5, '2024-08-03 22:00:07', '2024-08-03 22:00:07', 0, NULL, '2024-08-04 02:00:08', '2024-08-04 02:00:08'),
(2601, 3, '2024-08-03 22:05:05', '2024-08-03 22:05:05', 0, NULL, '2024-08-04 02:05:06', '2024-08-04 02:05:06'),
(2602, 1, '2024-08-03 22:10:07', '2024-08-03 22:10:07', 0, NULL, '2024-08-04 02:10:07', '2024-08-04 02:10:07'),
(2603, 2, '2024-08-03 22:10:08', '2024-08-03 22:10:08', 0, NULL, '2024-08-04 02:10:08', '2024-08-04 02:10:08'),
(2604, 3, '2024-08-03 22:10:08', '2024-08-03 22:10:08', 0, NULL, '2024-08-04 02:10:08', '2024-08-04 02:10:08'),
(2605, 5, '2024-08-03 22:10:09', '2024-08-03 22:10:09', 0, NULL, '2024-08-04 02:10:09', '2024-08-04 02:10:09'),
(2606, 1, '2024-08-03 22:20:06', '2024-08-03 22:20:06', 0, NULL, '2024-08-04 02:20:06', '2024-08-04 02:20:06'),
(2607, 2, '2024-08-03 22:20:06', '2024-08-03 22:20:06', 0, NULL, '2024-08-04 02:20:07', '2024-08-04 02:20:07'),
(2608, 3, '2024-08-03 22:20:07', '2024-08-03 22:20:07', 0, NULL, '2024-08-04 02:20:07', '2024-08-04 02:20:07'),
(2609, 5, '2024-08-03 22:20:08', '2024-08-03 22:20:08', 0, NULL, '2024-08-04 02:20:08', '2024-08-04 02:20:08'),
(2610, 1, '2024-08-03 22:25:09', '2024-08-03 22:25:09', 0, NULL, '2024-08-04 02:25:10', '2024-08-04 02:25:10'),
(2611, 2, '2024-08-03 22:25:10', '2024-08-03 22:25:10', 0, NULL, '2024-08-04 02:25:10', '2024-08-04 02:25:10'),
(2612, 3, '2024-08-03 22:25:10', '2024-08-03 22:25:10', 0, NULL, '2024-08-04 02:25:11', '2024-08-04 02:25:11'),
(2613, 5, '2024-08-03 22:25:11', '2024-08-03 22:25:11', 0, NULL, '2024-08-04 02:25:11', '2024-08-04 02:25:11'),
(2614, 1, '2024-08-03 22:30:12', '2024-08-03 22:30:12', 0, NULL, '2024-08-04 02:30:12', '2024-08-04 02:30:12'),
(2615, 2, '2024-08-03 22:30:12', '2024-08-03 22:30:12', 0, NULL, '2024-08-04 02:30:12', '2024-08-04 02:30:12'),
(2616, 3, '2024-08-03 22:30:12', '2024-08-03 22:30:12', 0, NULL, '2024-08-04 02:30:13', '2024-08-04 02:30:13'),
(2617, 5, '2024-08-03 22:35:08', '2024-08-03 22:35:08', 0, NULL, '2024-08-04 02:35:09', '2024-08-04 02:35:09'),
(2618, 1, '2024-08-03 22:40:08', '2024-08-03 22:40:08', 0, NULL, '2024-08-04 02:40:08', '2024-08-04 02:40:08'),
(2619, 2, '2024-08-03 22:40:09', '2024-08-03 22:40:09', 0, NULL, '2024-08-04 02:40:09', '2024-08-04 02:40:09'),
(2620, 3, '2024-08-03 22:40:09', '2024-08-03 22:40:09', 0, NULL, '2024-08-04 02:40:09', '2024-08-04 02:40:09'),
(2621, 5, '2024-08-03 22:45:08', '2024-08-03 22:45:08', 0, NULL, '2024-08-04 02:45:08', '2024-08-04 02:45:08'),
(2622, 1, '2024-08-03 22:50:07', '2024-08-03 22:50:07', 0, NULL, '2024-08-04 02:50:08', '2024-08-04 02:50:08'),
(2623, 2, '2024-08-03 22:50:08', '2024-08-03 22:50:08', 0, NULL, '2024-08-04 02:50:08', '2024-08-04 02:50:08'),
(2624, 3, '2024-08-03 22:50:09', '2024-08-03 22:50:09', 0, NULL, '2024-08-04 02:50:09', '2024-08-04 02:50:09'),
(2625, 5, '2024-08-03 22:55:05', '2024-08-03 22:55:05', 0, NULL, '2024-08-04 02:55:05', '2024-08-04 02:55:05'),
(2626, 1, '2024-08-03 23:00:06', '2024-08-03 23:00:06', 0, NULL, '2024-08-04 03:00:07', '2024-08-04 03:00:07'),
(2627, 2, '2024-08-03 23:00:09', '2024-08-03 23:00:09', 0, NULL, '2024-08-04 03:00:09', '2024-08-04 03:00:09'),
(2628, 3, '2024-08-03 23:00:10', '2024-08-03 23:00:10', 0, NULL, '2024-08-04 03:00:10', '2024-08-04 03:00:10'),
(2629, 5, '2024-08-03 23:00:10', '2024-08-03 23:00:10', 0, NULL, '2024-08-04 03:00:10', '2024-08-04 03:00:10'),
(2630, 1, '2024-08-03 23:10:06', '2024-08-03 23:10:06', 0, NULL, '2024-08-04 03:10:08', '2024-08-04 03:10:08'),
(2631, 2, '2024-08-03 23:10:09', '2024-08-03 23:10:09', 0, NULL, '2024-08-04 03:10:10', '2024-08-04 03:10:10'),
(2632, 3, '2024-08-03 23:10:10', '2024-08-03 23:10:10', 0, NULL, '2024-08-04 03:10:10', '2024-08-04 03:10:10'),
(2633, 5, '2024-08-03 23:10:10', '2024-08-03 23:10:10', 0, NULL, '2024-08-04 03:10:10', '2024-08-04 03:10:10'),
(2634, 1, '2024-08-03 23:20:04', '2024-08-03 23:20:04', 0, NULL, '2024-08-04 03:20:05', '2024-08-04 03:20:05'),
(2635, 2, '2024-08-03 23:20:05', '2024-08-03 23:20:05', 0, NULL, '2024-08-04 03:20:06', '2024-08-04 03:20:06'),
(2636, 3, '2024-08-03 23:20:07', '2024-08-03 23:20:07', 0, NULL, '2024-08-04 03:20:07', '2024-08-04 03:20:07'),
(2637, 5, '2024-08-03 23:20:08', '2024-08-03 23:20:08', 0, NULL, '2024-08-04 03:20:08', '2024-08-04 03:20:08'),
(2638, 1, '2024-08-03 23:25:07', '2024-08-03 23:25:07', 0, NULL, '2024-08-04 03:25:07', '2024-08-04 03:25:07'),
(2639, 2, '2024-08-03 23:30:07', '2024-08-03 23:30:07', 0, NULL, '2024-08-04 03:30:07', '2024-08-04 03:30:07'),
(2640, 3, '2024-08-03 23:30:08', '2024-08-03 23:30:08', 0, NULL, '2024-08-04 03:30:08', '2024-08-04 03:30:08'),
(2641, 5, '2024-08-03 23:30:09', '2024-08-03 23:30:09', 0, NULL, '2024-08-04 03:30:09', '2024-08-04 03:30:09'),
(2642, 1, '2024-08-03 23:35:08', '2024-08-03 23:35:08', 0, NULL, '2024-08-04 03:35:08', '2024-08-04 03:35:08'),
(2643, 2, '2024-08-03 23:35:09', '2024-08-03 23:35:09', 0, NULL, '2024-08-04 03:35:09', '2024-08-04 03:35:09'),
(2644, 3, '2024-08-03 23:40:07', '2024-08-03 23:40:07', 0, NULL, '2024-08-04 03:40:07', '2024-08-04 03:40:07'),
(2645, 5, '2024-08-03 23:40:08', '2024-08-03 23:40:08', 0, NULL, '2024-08-04 03:40:08', '2024-08-04 03:40:08'),
(2646, 1, '2024-08-03 23:45:05', '2024-08-03 23:45:05', 0, NULL, '2024-08-04 03:45:06', '2024-08-04 03:45:06'),
(2647, 2, '2024-08-03 23:45:06', '2024-08-03 23:45:06', 0, NULL, '2024-08-04 03:45:06', '2024-08-04 03:45:06'),
(2648, 1, '2024-08-03 23:50:07', '2024-08-03 23:50:07', 0, NULL, '2024-08-04 03:50:07', '2024-08-04 03:50:07'),
(2649, 2, '2024-08-03 23:50:07', '2024-08-03 23:50:07', 0, NULL, '2024-08-04 03:50:08', '2024-08-04 03:50:08'),
(2650, 3, '2024-08-03 23:50:08', '2024-08-03 23:50:08', 0, NULL, '2024-08-04 03:50:09', '2024-08-04 03:50:09'),
(2651, 5, '2024-08-03 23:50:09', '2024-08-03 23:50:09', 0, NULL, '2024-08-04 03:50:09', '2024-08-04 03:50:09'),
(2652, 1, '2024-08-04 00:00:08', '2024-08-04 00:00:08', 0, NULL, '2024-08-04 04:00:08', '2024-08-04 04:00:08'),
(2653, 2, '2024-08-04 00:00:09', '2024-08-04 00:00:09', 0, NULL, '2024-08-04 04:00:09', '2024-08-04 04:00:09'),
(2654, 3, '2024-08-04 00:00:10', '2024-08-04 00:00:10', 0, NULL, '2024-08-04 04:00:10', '2024-08-04 04:00:10'),
(2655, 5, '2024-08-04 00:00:10', '2024-08-04 00:00:10', 0, NULL, '2024-08-04 04:00:11', '2024-08-04 04:00:11'),
(2656, 1, '2024-08-04 00:10:04', '2024-08-04 00:10:04', 0, NULL, '2024-08-04 04:10:04', '2024-08-04 04:10:04'),
(2657, 2, '2024-08-04 00:10:05', '2024-08-04 00:10:05', 0, NULL, '2024-08-04 04:10:06', '2024-08-04 04:10:06'),
(2658, 3, '2024-08-04 00:10:06', '2024-08-04 00:10:06', 0, NULL, '2024-08-04 04:10:07', '2024-08-04 04:10:07'),
(2659, 5, '2024-08-04 00:10:07', '2024-08-04 00:10:08', 0, NULL, '2024-08-04 04:10:09', '2024-08-04 04:10:09'),
(2660, 1, '2024-08-04 00:20:07', '2024-08-04 00:20:07', 0, NULL, '2024-08-04 04:20:07', '2024-08-04 04:20:07'),
(2661, 2, '2024-08-04 00:20:08', '2024-08-04 00:20:08', 0, NULL, '2024-08-04 04:20:08', '2024-08-04 04:20:08'),
(2662, 3, '2024-08-04 00:20:08', '2024-08-04 00:20:08', 0, NULL, '2024-08-04 04:20:08', '2024-08-04 04:20:08'),
(2663, 5, '2024-08-04 00:20:09', '2024-08-04 00:20:09', 0, NULL, '2024-08-04 04:20:09', '2024-08-04 04:20:09'),
(2664, 1, '2024-08-04 00:30:08', '2024-08-04 00:30:08', 0, NULL, '2024-08-04 04:30:08', '2024-08-04 04:30:08'),
(2665, 2, '2024-08-04 00:30:09', '2024-08-04 00:30:09', 0, NULL, '2024-08-04 04:30:09', '2024-08-04 04:30:09'),
(2666, 3, '2024-08-04 00:30:09', '2024-08-04 00:30:09', 0, NULL, '2024-08-04 04:30:10', '2024-08-04 04:30:10'),
(2667, 5, '2024-08-04 00:30:10', '2024-08-04 00:30:10', 0, NULL, '2024-08-04 04:30:10', '2024-08-04 04:30:10'),
(2668, 1, '2024-08-04 00:40:05', '2024-08-04 00:40:05', 0, NULL, '2024-08-04 04:40:06', '2024-08-04 04:40:06'),
(2669, 2, '2024-08-04 00:40:06', '2024-08-04 00:40:06', 0, NULL, '2024-08-04 04:40:06', '2024-08-04 04:40:06'),
(2670, 3, '2024-08-04 00:40:07', '2024-08-04 00:40:07', 0, NULL, '2024-08-04 04:40:07', '2024-08-04 04:40:07'),
(2671, 5, '2024-08-04 00:40:07', '2024-08-04 00:40:07', 0, NULL, '2024-08-04 04:40:07', '2024-08-04 04:40:07'),
(2672, 1, '2024-08-04 00:45:07', '2024-08-04 00:45:07', 0, NULL, '2024-08-04 04:45:07', '2024-08-04 04:45:07'),
(2673, 2, '2024-08-04 00:45:07', '2024-08-04 00:45:07', 0, NULL, '2024-08-04 04:45:08', '2024-08-04 04:45:08'),
(2674, 3, '2024-08-04 00:50:07', '2024-08-04 00:50:07', 0, NULL, '2024-08-04 04:50:07', '2024-08-04 04:50:07'),
(2675, 5, '2024-08-04 00:50:07', '2024-08-04 00:50:08', 0, NULL, '2024-08-04 04:50:09', '2024-08-04 04:50:09'),
(2676, 1, '2024-08-04 00:55:04', '2024-08-04 00:55:04', 0, NULL, '2024-08-04 04:55:04', '2024-08-04 04:55:04'),
(2677, 2, '2024-08-04 00:55:05', '2024-08-04 00:55:05', 0, NULL, '2024-08-04 04:55:05', '2024-08-04 04:55:05'),
(2678, 1, '2024-08-04 01:00:09', '2024-08-04 01:00:09', 0, NULL, '2024-08-04 05:00:10', '2024-08-04 05:00:10'),
(2679, 2, '2024-08-04 01:00:10', '2024-08-04 01:00:10', 0, NULL, '2024-08-04 05:00:11', '2024-08-04 05:00:11'),
(2680, 3, '2024-08-04 01:00:11', '2024-08-04 01:00:11', 0, NULL, '2024-08-04 05:00:11', '2024-08-04 05:00:11'),
(2681, 5, '2024-08-04 01:00:12', '2024-08-04 01:00:12', 0, NULL, '2024-08-04 05:00:14', '2024-08-04 05:00:14'),
(2682, 1, '2024-08-04 01:10:07', '2024-08-04 01:10:07', 0, NULL, '2024-08-04 05:10:08', '2024-08-04 05:10:08'),
(2683, 2, '2024-08-04 01:10:08', '2024-08-04 01:10:08', 0, NULL, '2024-08-04 05:10:09', '2024-08-04 05:10:09'),
(2684, 3, '2024-08-04 01:10:09', '2024-08-04 01:10:09', 0, NULL, '2024-08-04 05:10:09', '2024-08-04 05:10:09'),
(2685, 5, '2024-08-04 01:10:10', '2024-08-04 01:10:10', 0, NULL, '2024-08-04 05:10:10', '2024-08-04 05:10:10'),
(2686, 1, '2024-08-04 01:20:08', '2024-08-04 01:20:08', 0, NULL, '2024-08-04 05:20:09', '2024-08-04 05:20:09'),
(2687, 2, '2024-08-04 01:20:09', '2024-08-04 01:20:09', 0, NULL, '2024-08-04 05:20:09', '2024-08-04 05:20:09'),
(2688, 3, '2024-08-04 01:20:10', '2024-08-04 01:20:10', 0, NULL, '2024-08-04 05:20:10', '2024-08-04 05:20:10'),
(2689, 5, '2024-08-04 01:20:10', '2024-08-04 01:20:10', 0, NULL, '2024-08-04 05:20:10', '2024-08-04 05:20:10'),
(2690, 1, '2024-08-04 01:30:06', '2024-08-04 01:30:06', 0, NULL, '2024-08-04 05:30:06', '2024-08-04 05:30:06'),
(2691, 2, '2024-08-04 01:30:06', '2024-08-04 01:30:06', 0, NULL, '2024-08-04 05:30:07', '2024-08-04 05:30:07'),
(2692, 3, '2024-08-04 01:30:08', '2024-08-04 01:30:08', 0, NULL, '2024-08-04 05:30:08', '2024-08-04 05:30:08'),
(2693, 5, '2024-08-04 01:30:09', '2024-08-04 01:30:09', 0, NULL, '2024-08-04 05:30:09', '2024-08-04 05:30:09'),
(2694, 1, '2024-08-04 01:40:04', '2024-08-04 01:40:04', 0, NULL, '2024-08-04 05:40:05', '2024-08-04 05:40:05'),
(2695, 2, '2024-08-04 01:40:05', '2024-08-04 01:40:05', 0, NULL, '2024-08-04 05:40:05', '2024-08-04 05:40:05'),
(2696, 3, '2024-08-04 01:40:05', '2024-08-04 01:40:05', 0, NULL, '2024-08-04 05:40:06', '2024-08-04 05:40:06'),
(2697, 5, '2024-08-04 01:40:06', '2024-08-04 01:40:06', 0, NULL, '2024-08-04 05:40:07', '2024-08-04 05:40:07'),
(2698, 1, '2024-08-04 01:45:06', '2024-08-04 01:45:06', 0, NULL, '2024-08-04 05:45:06', '2024-08-04 05:45:06'),
(2699, 2, '2024-08-04 01:45:06', '2024-08-04 01:45:06', 0, NULL, '2024-08-04 05:45:06', '2024-08-04 05:45:06'),
(2700, 3, '2024-08-04 01:45:07', '2024-08-04 01:45:07', 0, NULL, '2024-08-04 05:45:07', '2024-08-04 05:45:07'),
(2701, 1, '2024-08-04 01:50:09', '2024-08-04 01:50:09', 0, NULL, '2024-08-04 05:50:09', '2024-08-04 05:50:09'),
(2702, 2, '2024-08-04 01:50:09', '2024-08-04 01:50:09', 0, NULL, '2024-08-04 05:50:10', '2024-08-04 05:50:10'),
(2703, 3, '2024-08-04 01:50:10', '2024-08-04 01:50:10', 0, NULL, '2024-08-04 05:50:10', '2024-08-04 05:50:10'),
(2704, 5, '2024-08-04 01:50:10', '2024-08-04 01:50:10', 0, NULL, '2024-08-04 05:50:10', '2024-08-04 05:50:10'),
(2705, 1, '2024-08-04 02:00:08', '2024-08-04 02:00:08', 0, NULL, '2024-08-04 06:00:08', '2024-08-04 06:00:08'),
(2706, 2, '2024-08-04 02:00:08', '2024-08-04 02:00:08', 0, NULL, '2024-08-04 06:00:09', '2024-08-04 06:00:09'),
(2707, 3, '2024-08-04 02:00:09', '2024-08-04 02:00:09', 0, NULL, '2024-08-04 06:00:10', '2024-08-04 06:00:10'),
(2708, 5, '2024-08-04 02:00:10', '2024-08-04 02:00:10', 0, NULL, '2024-08-04 06:00:10', '2024-08-04 06:00:10'),
(2709, 1, '2024-08-04 02:10:05', '2024-08-04 02:10:05', 0, NULL, '2024-08-04 06:10:06', '2024-08-04 06:10:06'),
(2710, 2, '2024-08-04 02:10:07', '2024-08-04 02:10:07', 0, NULL, '2024-08-04 06:10:07', '2024-08-04 06:10:07'),
(2711, 3, '2024-08-04 02:10:07', '2024-08-04 02:10:07', 0, NULL, '2024-08-04 06:10:08', '2024-08-04 06:10:08'),
(2712, 5, '2024-08-04 02:10:08', '2024-08-04 02:10:08', 0, NULL, '2024-08-04 06:10:08', '2024-08-04 06:10:08'),
(2713, 1, '2024-08-04 02:20:04', '2024-08-04 02:20:04', 0, NULL, '2024-08-04 06:20:05', '2024-08-04 06:20:05'),
(2714, 2, '2024-08-04 02:20:05', '2024-08-04 02:20:05', 0, NULL, '2024-08-04 06:20:05', '2024-08-04 06:20:05'),
(2715, 3, '2024-08-04 02:20:05', '2024-08-04 02:20:05', 0, NULL, '2024-08-04 06:20:06', '2024-08-04 06:20:06'),
(2716, 5, '2024-08-04 02:20:06', '2024-08-04 02:20:06', 0, NULL, '2024-08-04 06:20:06', '2024-08-04 06:20:06'),
(2717, 1, '2024-08-04 02:25:11', '2024-08-04 02:25:11', 0, NULL, '2024-08-04 06:25:11', '2024-08-04 06:25:11'),
(2718, 2, '2024-08-04 02:25:11', '2024-08-04 02:25:11', 0, NULL, '2024-08-04 06:25:11', '2024-08-04 06:25:11'),
(2719, 3, '2024-08-04 02:25:11', '2024-08-04 02:25:11', 0, NULL, '2024-08-04 06:25:11', '2024-08-04 06:25:11'),
(2720, 5, '2024-08-04 02:25:12', '2024-08-04 02:25:12', 0, NULL, '2024-08-04 06:25:12', '2024-08-04 06:25:12'),
(2721, 1, '2024-08-04 02:35:08', '2024-08-04 02:35:08', 0, NULL, '2024-08-04 06:35:08', '2024-08-04 06:35:08'),
(2722, 2, '2024-08-04 02:35:08', '2024-08-04 02:35:08', 0, NULL, '2024-08-04 06:35:09', '2024-08-04 06:35:09'),
(2723, 3, '2024-08-04 02:35:09', '2024-08-04 02:35:09', 0, NULL, '2024-08-04 06:35:09', '2024-08-04 06:35:09'),
(2724, 5, '2024-08-04 02:35:09', '2024-08-04 02:35:09', 0, NULL, '2024-08-04 06:35:09', '2024-08-04 06:35:09'),
(2725, 1, '2024-08-04 02:45:05', '2024-08-04 02:45:06', 0, NULL, '2024-08-04 06:45:06', '2024-08-04 06:45:06'),
(2726, 2, '2024-08-04 02:45:06', '2024-08-04 02:45:06', 0, NULL, '2024-08-04 06:45:07', '2024-08-04 06:45:07'),
(2727, 3, '2024-08-04 02:45:07', '2024-08-04 02:45:07', 0, NULL, '2024-08-04 06:45:07', '2024-08-04 06:45:07'),
(2728, 5, '2024-08-04 02:45:08', '2024-08-04 02:45:08', 0, NULL, '2024-08-04 06:45:08', '2024-08-04 06:45:08');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(2729, 1, '2024-08-04 02:55:08', '2024-08-04 02:55:08', 0, NULL, '2024-08-04 06:55:08', '2024-08-04 06:55:08'),
(2730, 2, '2024-08-04 02:55:08', '2024-08-04 02:55:08', 0, NULL, '2024-08-04 06:55:09', '2024-08-04 06:55:09'),
(2731, 3, '2024-08-04 02:55:09', '2024-08-04 02:55:09', 0, NULL, '2024-08-04 06:55:09', '2024-08-04 06:55:09'),
(2732, 5, '2024-08-04 02:55:09', '2024-08-04 02:55:09', 0, NULL, '2024-08-04 06:55:09', '2024-08-04 06:55:09'),
(2733, 1, '2024-08-04 03:05:07', '2024-08-04 03:05:07', 0, NULL, '2024-08-04 07:05:08', '2024-08-04 07:05:08'),
(2734, 2, '2024-08-04 03:05:08', '2024-08-04 03:05:08', 0, NULL, '2024-08-04 07:05:08', '2024-08-04 07:05:08'),
(2735, 3, '2024-08-04 03:05:08', '2024-08-04 03:05:08', 0, NULL, '2024-08-04 07:05:09', '2024-08-04 07:05:09'),
(2736, 5, '2024-08-04 03:05:09', '2024-08-04 03:05:09', 0, NULL, '2024-08-04 07:05:09', '2024-08-04 07:05:09'),
(2737, 1, '2024-08-04 03:15:03', '2024-08-04 03:15:03', 0, NULL, '2024-08-04 07:15:04', '2024-08-04 07:15:04'),
(2738, 2, '2024-08-04 03:15:05', '2024-08-04 03:15:05', 0, NULL, '2024-08-04 07:15:05', '2024-08-04 07:15:05'),
(2739, 3, '2024-08-04 03:15:05', '2024-08-04 03:15:05', 0, NULL, '2024-08-04 07:15:06', '2024-08-04 07:15:06'),
(2740, 5, '2024-08-04 03:15:06', '2024-08-04 03:15:06', 0, NULL, '2024-08-04 07:15:06', '2024-08-04 07:15:06'),
(2741, 1, '2024-08-04 03:20:05', '2024-08-04 03:20:07', 1, NULL, '2024-08-04 07:20:07', '2024-08-04 07:20:07'),
(2742, 2, '2024-08-04 03:25:05', '2024-08-04 03:25:05', 0, NULL, '2024-08-04 07:25:06', '2024-08-04 07:25:06'),
(2743, 3, '2024-08-04 03:25:06', '2024-08-04 03:25:06', 0, NULL, '2024-08-04 07:25:07', '2024-08-04 07:25:07'),
(2744, 5, '2024-08-04 03:25:07', '2024-08-04 03:25:07', 0, NULL, '2024-08-04 07:25:08', '2024-08-04 07:25:08'),
(2745, 1, '2024-08-04 03:30:05', '2024-08-04 03:30:05', 0, NULL, '2024-08-04 07:30:06', '2024-08-04 07:30:06'),
(2746, 1, '2024-08-04 03:35:07', '2024-08-04 03:35:07', 0, NULL, '2024-08-04 07:35:07', '2024-08-04 07:35:07'),
(2747, 2, '2024-08-04 03:35:07', '2024-08-04 03:35:07', 0, NULL, '2024-08-04 07:35:08', '2024-08-04 07:35:08'),
(2748, 3, '2024-08-04 03:35:08', '2024-08-04 03:35:08', 0, NULL, '2024-08-04 07:35:08', '2024-08-04 07:35:08'),
(2749, 5, '2024-08-04 03:35:08', '2024-08-04 03:35:08', 0, NULL, '2024-08-04 07:35:08', '2024-08-04 07:35:08'),
(2750, 1, '2024-08-04 03:45:09', '2024-08-04 03:45:09', 0, NULL, '2024-08-04 07:45:09', '2024-08-04 07:45:09'),
(2751, 2, '2024-08-04 03:45:10', '2024-08-04 03:45:10', 0, NULL, '2024-08-04 07:45:10', '2024-08-04 07:45:10'),
(2752, 3, '2024-08-04 03:45:10', '2024-08-04 03:45:10', 0, NULL, '2024-08-04 07:45:10', '2024-08-04 07:45:10'),
(2753, 5, '2024-08-04 03:45:10', '2024-08-04 03:45:10', 0, NULL, '2024-08-04 07:45:10', '2024-08-04 07:45:10'),
(2754, 1, '2024-08-04 03:55:08', '2024-08-04 03:55:08', 0, NULL, '2024-08-04 07:55:08', '2024-08-04 07:55:08'),
(2755, 2, '2024-08-04 03:55:08', '2024-08-04 03:55:08', 0, NULL, '2024-08-04 07:55:08', '2024-08-04 07:55:08'),
(2756, 3, '2024-08-04 03:55:08', '2024-08-04 03:55:08', 0, NULL, '2024-08-04 07:55:09', '2024-08-04 07:55:09'),
(2757, 5, '2024-08-04 03:55:09', '2024-08-04 03:55:09', 0, NULL, '2024-08-04 07:55:09', '2024-08-04 07:55:09'),
(2758, 1, '2024-08-04 04:05:06', '2024-08-04 04:05:06', 0, NULL, '2024-08-04 08:05:06', '2024-08-04 08:05:06'),
(2759, 2, '2024-08-04 04:05:07', '2024-08-04 04:05:07', 0, NULL, '2024-08-04 08:05:07', '2024-08-04 08:05:07'),
(2760, 3, '2024-08-04 04:05:09', '2024-08-04 04:05:09', 0, NULL, '2024-08-04 08:05:09', '2024-08-04 08:05:09'),
(2761, 5, '2024-08-04 04:05:09', '2024-08-04 04:05:09', 0, NULL, '2024-08-04 08:05:09', '2024-08-04 08:05:09'),
(2762, 1, '2024-08-04 04:10:08', '2024-08-04 04:10:08', 0, NULL, '2024-08-04 08:10:08', '2024-08-04 08:10:08'),
(2763, 2, '2024-08-04 04:10:09', '2024-08-04 04:10:09', 0, NULL, '2024-08-04 08:10:09', '2024-08-04 08:10:09'),
(2764, 3, '2024-08-04 04:15:03', '2024-08-04 04:15:04', 0, NULL, '2024-08-04 08:15:04', '2024-08-04 08:15:04'),
(2765, 5, '2024-08-04 04:15:04', '2024-08-04 04:15:04', 0, NULL, '2024-08-04 08:15:05', '2024-08-04 08:15:05'),
(2766, 1, '2024-08-04 04:20:05', '2024-08-04 04:20:06', 0, NULL, '2024-08-04 08:20:06', '2024-08-04 08:20:06'),
(2767, 2, '2024-08-04 04:20:06', '2024-08-04 04:20:06', 0, NULL, '2024-08-04 08:20:07', '2024-08-04 08:20:07'),
(2768, 3, '2024-08-04 04:20:07', '2024-08-04 04:20:07', 0, NULL, '2024-08-04 08:20:07', '2024-08-04 08:20:07'),
(2769, 5, '2024-08-04 04:20:07', '2024-08-04 04:20:08', 0, NULL, '2024-08-04 08:20:08', '2024-08-04 08:20:08'),
(2770, 1, '2024-08-04 04:30:10', '2024-08-04 04:30:10', 0, NULL, '2024-08-04 08:30:10', '2024-08-04 08:30:10'),
(2771, 2, '2024-08-04 04:30:10', '2024-08-04 04:30:10', 0, NULL, '2024-08-04 08:30:10', '2024-08-04 08:30:10'),
(2772, 3, '2024-08-04 04:30:11', '2024-08-04 04:30:11', 0, NULL, '2024-08-04 08:30:11', '2024-08-04 08:30:11'),
(2773, 5, '2024-08-04 04:30:11', '2024-08-04 04:30:11', 0, NULL, '2024-08-04 08:30:11', '2024-08-04 08:30:11'),
(2774, 1, '2024-08-04 04:40:02', '2024-08-04 04:40:02', 0, NULL, '2024-08-04 08:40:02', '2024-08-04 08:40:02'),
(2775, 2, '2024-08-04 04:40:02', '2024-08-04 04:40:02', 0, NULL, '2024-08-04 08:40:03', '2024-08-04 08:40:03'),
(2776, 3, '2024-08-04 04:40:03', '2024-08-04 04:40:03', 0, NULL, '2024-08-04 08:40:03', '2024-08-04 08:40:03'),
(2777, 5, '2024-08-04 04:40:03', '2024-08-04 04:40:03', 0, NULL, '2024-08-04 08:40:04', '2024-08-04 08:40:04'),
(2778, 1, '2024-08-04 04:45:05', '2024-08-04 04:45:05', 0, NULL, '2024-08-04 08:45:05', '2024-08-04 08:45:05'),
(2779, 2, '2024-08-04 04:45:06', '2024-08-04 04:45:06', 0, NULL, '2024-08-04 08:45:06', '2024-08-04 08:45:06'),
(2780, 3, '2024-08-04 04:45:06', '2024-08-04 04:45:06', 0, NULL, '2024-08-04 08:45:07', '2024-08-04 08:45:07'),
(2781, 5, '2024-08-04 04:45:07', '2024-08-04 04:45:07', 0, NULL, '2024-08-04 08:45:08', '2024-08-04 08:45:08'),
(2782, 1, '2024-08-04 04:50:06', '2024-08-04 04:50:06', 0, NULL, '2024-08-04 08:50:06', '2024-08-04 08:50:06'),
(2783, 2, '2024-08-04 04:55:05', '2024-08-04 04:55:05', 0, NULL, '2024-08-04 08:55:05', '2024-08-04 08:55:05'),
(2784, 3, '2024-08-04 04:55:06', '2024-08-04 04:55:06', 0, NULL, '2024-08-04 08:55:10', '2024-08-04 08:55:10'),
(2785, 5, '2024-08-04 04:55:10', '2024-08-04 04:55:10', 0, NULL, '2024-08-04 08:55:11', '2024-08-04 08:55:11'),
(2786, 1, '2024-08-04 05:00:11', '2024-08-04 05:00:11', 0, NULL, '2024-08-04 09:00:11', '2024-08-04 09:00:11'),
(2787, 2, '2024-08-04 05:00:11', '2024-08-04 05:00:11', 0, NULL, '2024-08-04 09:00:12', '2024-08-04 09:00:12'),
(2788, 3, '2024-08-04 05:00:12', '2024-08-04 05:00:12', 0, NULL, '2024-08-04 09:00:12', '2024-08-04 09:00:12'),
(2789, 5, '2024-08-04 05:05:07', '2024-08-04 05:05:07', 0, NULL, '2024-08-04 09:05:07', '2024-08-04 09:05:07'),
(2790, 1, '2024-08-04 05:10:04', '2024-08-04 05:10:04', 0, NULL, '2024-08-04 09:10:05', '2024-08-04 09:10:05'),
(2791, 2, '2024-08-04 05:10:07', '2024-08-04 05:10:07', 0, NULL, '2024-08-04 09:10:07', '2024-08-04 09:10:07'),
(2792, 3, '2024-08-04 05:10:07', '2024-08-04 05:10:07', 0, NULL, '2024-08-04 09:10:08', '2024-08-04 09:10:08'),
(2793, 1, '2024-08-04 05:15:06', '2024-08-04 05:15:07', 0, NULL, '2024-08-04 09:15:07', '2024-08-04 09:15:07'),
(2794, 5, '2024-08-04 05:15:07', '2024-08-04 05:15:07', 0, NULL, '2024-08-04 09:15:08', '2024-08-04 09:15:08'),
(2795, 2, '2024-08-04 05:20:05', '2024-08-04 05:20:05', 0, NULL, '2024-08-04 09:20:05', '2024-08-04 09:20:05'),
(2796, 3, '2024-08-04 05:20:05', '2024-08-04 05:20:05', 0, NULL, '2024-08-04 09:20:06', '2024-08-04 09:20:06'),
(2797, 1, '2024-08-04 05:25:04', '2024-08-04 05:25:04', 0, NULL, '2024-08-04 09:25:04', '2024-08-04 09:25:04'),
(2798, 5, '2024-08-04 05:25:05', '2024-08-04 05:25:05', 0, NULL, '2024-08-04 09:25:05', '2024-08-04 09:25:05'),
(2799, 1, '2024-08-04 05:30:05', '2024-08-04 05:30:05', 0, NULL, '2024-08-04 09:30:06', '2024-08-04 09:30:06'),
(2800, 2, '2024-08-04 05:30:06', '2024-08-04 05:30:06', 0, NULL, '2024-08-04 09:30:07', '2024-08-04 09:30:07'),
(2801, 3, '2024-08-04 05:30:07', '2024-08-04 05:30:07', 0, NULL, '2024-08-04 09:30:07', '2024-08-04 09:30:07'),
(2802, 5, '2024-08-04 05:35:04', '2024-08-04 05:35:04', 0, NULL, '2024-08-04 09:35:04', '2024-08-04 09:35:04'),
(2803, 1, '2024-08-04 05:40:06', '2024-08-04 05:40:06', 0, NULL, '2024-08-04 09:40:07', '2024-08-04 09:40:07'),
(2804, 2, '2024-08-04 05:40:07', '2024-08-04 05:40:07', 0, NULL, '2024-08-04 09:40:08', '2024-08-04 09:40:08'),
(2805, 3, '2024-08-04 05:40:08', '2024-08-04 05:40:08', 0, NULL, '2024-08-04 09:40:09', '2024-08-04 09:40:09'),
(2806, 5, '2024-08-04 05:40:09', '2024-08-04 05:40:09', 0, NULL, '2024-08-04 09:40:09', '2024-08-04 09:40:09'),
(2807, 1, '2024-08-04 05:50:07', '2024-08-04 05:50:07', 0, NULL, '2024-08-04 09:50:07', '2024-08-04 09:50:07'),
(2808, 2, '2024-08-04 05:50:07', '2024-08-04 05:50:07', 0, NULL, '2024-08-04 09:50:07', '2024-08-04 09:50:07'),
(2809, 3, '2024-08-04 05:50:08', '2024-08-04 05:50:08', 0, NULL, '2024-08-04 09:50:08', '2024-08-04 09:50:08'),
(2810, 5, '2024-08-04 05:50:08', '2024-08-04 05:50:08', 0, NULL, '2024-08-04 09:50:08', '2024-08-04 09:50:08'),
(2811, 1, '2024-08-04 06:00:08', '2024-08-04 06:00:08', 0, NULL, '2024-08-04 10:00:10', '2024-08-04 10:00:10'),
(2812, 2, '2024-08-04 06:00:11', '2024-08-04 06:00:11', 0, NULL, '2024-08-04 10:00:11', '2024-08-04 10:00:11'),
(2813, 3, '2024-08-04 06:00:11', '2024-08-04 06:00:11', 0, NULL, '2024-08-04 10:00:12', '2024-08-04 10:00:12'),
(2814, 5, '2024-08-04 06:00:12', '2024-08-04 06:00:12', 0, NULL, '2024-08-04 10:00:12', '2024-08-04 10:00:12'),
(2815, 1, '2024-08-04 06:10:09', '2024-08-04 06:10:10', 0, NULL, '2024-08-04 10:10:10', '2024-08-04 10:10:10'),
(2816, 2, '2024-08-04 06:10:10', '2024-08-04 06:10:10', 0, NULL, '2024-08-04 10:10:10', '2024-08-04 10:10:10'),
(2817, 3, '2024-08-04 06:10:10', '2024-08-04 06:10:10', 0, NULL, '2024-08-04 10:10:10', '2024-08-04 10:10:10'),
(2818, 5, '2024-08-04 06:10:10', '2024-08-04 06:10:10', 0, NULL, '2024-08-04 10:10:10', '2024-08-04 10:10:10'),
(2819, 1, '2024-08-04 06:20:03', '2024-08-04 06:20:03', 0, NULL, '2024-08-04 10:20:03', '2024-08-04 10:20:03'),
(2820, 2, '2024-08-04 06:20:04', '2024-08-04 06:20:04', 0, NULL, '2024-08-04 10:20:04', '2024-08-04 10:20:04'),
(2821, 3, '2024-08-04 06:20:05', '2024-08-04 06:20:05', 0, NULL, '2024-08-04 10:20:05', '2024-08-04 10:20:05'),
(2822, 5, '2024-08-04 06:20:06', '2024-08-04 06:20:06', 0, NULL, '2024-08-04 10:20:06', '2024-08-04 10:20:06'),
(2823, 1, '2024-08-04 06:25:04', '2024-08-04 06:25:04', 0, NULL, '2024-08-04 10:25:04', '2024-08-04 10:25:04'),
(2824, 1, '2024-08-04 06:30:07', '2024-08-04 06:30:07', 0, NULL, '2024-08-04 10:30:07', '2024-08-04 10:30:07'),
(2825, 2, '2024-08-04 06:30:08', '2024-08-04 06:30:08', 0, NULL, '2024-08-04 10:30:08', '2024-08-04 10:30:08'),
(2826, 3, '2024-08-04 06:30:08', '2024-08-04 06:30:08', 0, NULL, '2024-08-04 10:30:09', '2024-08-04 10:30:09'),
(2827, 5, '2024-08-04 06:30:09', '2024-08-04 06:30:09', 0, NULL, '2024-08-04 10:30:09', '2024-08-04 10:30:09'),
(2828, 1, '2024-08-04 06:40:06', '2024-08-04 06:40:06', 0, NULL, '2024-08-04 10:40:07', '2024-08-04 10:40:07'),
(2829, 2, '2024-08-04 06:40:07', '2024-08-04 06:40:07', 0, NULL, '2024-08-04 10:40:07', '2024-08-04 10:40:07'),
(2830, 3, '2024-08-04 06:40:08', '2024-08-04 06:40:08', 0, NULL, '2024-08-04 10:40:08', '2024-08-04 10:40:08'),
(2831, 5, '2024-08-04 06:40:08', '2024-08-04 06:40:08', 0, NULL, '2024-08-04 10:40:08', '2024-08-04 10:40:08'),
(2832, 1, '2024-08-04 06:50:07', '2024-08-04 06:50:07', 0, NULL, '2024-08-04 10:50:08', '2024-08-04 10:50:08'),
(2833, 2, '2024-08-04 06:50:08', '2024-08-04 06:50:08', 0, NULL, '2024-08-04 10:50:08', '2024-08-04 10:50:08'),
(2834, 3, '2024-08-04 06:50:08', '2024-08-04 06:50:08', 0, NULL, '2024-08-04 10:50:09', '2024-08-04 10:50:09'),
(2835, 5, '2024-08-04 06:50:09', '2024-08-04 06:50:09', 0, NULL, '2024-08-04 10:50:09', '2024-08-04 10:50:09'),
(2836, 1, '2024-08-04 07:00:04', '2024-08-04 07:00:04', 0, NULL, '2024-08-04 11:00:04', '2024-08-04 11:00:04'),
(2837, 2, '2024-08-04 07:00:04', '2024-08-04 07:00:04', 0, NULL, '2024-08-04 11:00:05', '2024-08-04 11:00:05'),
(2838, 3, '2024-08-04 07:00:05', '2024-08-04 07:00:05', 0, NULL, '2024-08-04 11:00:05', '2024-08-04 11:00:05'),
(2839, 5, '2024-08-04 07:00:05', '2024-08-04 07:00:05', 0, NULL, '2024-08-04 11:00:06', '2024-08-04 11:00:06'),
(2840, 1, '2024-08-04 07:05:06', '2024-08-04 07:05:06', 0, NULL, '2024-08-04 11:05:07', '2024-08-04 11:05:07'),
(2841, 2, '2024-08-04 07:05:07', '2024-08-04 07:05:07', 0, NULL, '2024-08-04 11:05:07', '2024-08-04 11:05:07'),
(2842, 3, '2024-08-04 07:05:07', '2024-08-04 07:05:07', 0, NULL, '2024-08-04 11:05:08', '2024-08-04 11:05:08'),
(2843, 5, '2024-08-04 07:05:08', '2024-08-04 07:05:08', 0, NULL, '2024-08-04 11:05:08', '2024-08-04 11:05:08'),
(2844, 1, '2024-08-04 07:15:07', '2024-08-04 07:15:07', 0, NULL, '2024-08-04 11:15:07', '2024-08-04 11:15:07'),
(2845, 2, '2024-08-04 07:15:07', '2024-08-04 07:15:07', 0, NULL, '2024-08-04 11:15:07', '2024-08-04 11:15:07'),
(2846, 3, '2024-08-04 07:15:08', '2024-08-04 07:15:08', 0, NULL, '2024-08-04 11:15:08', '2024-08-04 11:15:08'),
(2847, 5, '2024-08-04 07:15:08', '2024-08-04 07:15:08', 0, NULL, '2024-08-04 11:15:08', '2024-08-04 11:15:08'),
(2848, 1, '2024-08-04 07:25:04', '2024-08-04 07:25:04', 0, NULL, '2024-08-04 11:25:04', '2024-08-04 11:25:04'),
(2849, 2, '2024-08-04 07:25:04', '2024-08-04 07:25:04', 0, NULL, '2024-08-04 11:25:05', '2024-08-04 11:25:05'),
(2850, 3, '2024-08-04 07:25:05', '2024-08-04 07:25:05', 0, NULL, '2024-08-04 11:25:05', '2024-08-04 11:25:05'),
(2851, 5, '2024-08-04 07:25:05', '2024-08-04 07:25:05', 0, NULL, '2024-08-04 11:25:06', '2024-08-04 11:25:06'),
(2852, 1, '2024-08-04 07:30:05', '2024-08-04 07:30:05', 0, NULL, '2024-08-04 11:30:05', '2024-08-04 11:30:05'),
(2853, 2, '2024-08-04 07:30:05', '2024-08-04 07:30:05', 0, NULL, '2024-08-04 11:30:06', '2024-08-04 11:30:06'),
(2854, 3, '2024-08-04 07:35:05', '2024-08-04 07:35:05', 0, NULL, '2024-08-04 11:35:06', '2024-08-04 11:35:06'),
(2855, 5, '2024-08-04 07:35:06', '2024-08-04 07:35:06', 0, NULL, '2024-08-04 11:35:06', '2024-08-04 11:35:06'),
(2856, 1, '2024-08-04 07:40:05', '2024-08-04 07:40:05', 0, NULL, '2024-08-04 11:40:06', '2024-08-04 11:40:06'),
(2857, 2, '2024-08-04 07:40:06', '2024-08-04 07:40:06', 0, NULL, '2024-08-04 11:40:06', '2024-08-04 11:40:06'),
(2858, 1, '2024-08-04 07:45:07', '2024-08-04 07:45:07', 0, NULL, '2024-08-04 11:45:07', '2024-08-04 11:45:07'),
(2859, 2, '2024-08-04 07:45:07', '2024-08-04 07:45:07', 0, NULL, '2024-08-04 11:45:08', '2024-08-04 11:45:08'),
(2860, 3, '2024-08-04 07:45:08', '2024-08-04 07:45:08', 0, NULL, '2024-08-04 11:45:08', '2024-08-04 11:45:08'),
(2861, 5, '2024-08-04 07:45:08', '2024-08-04 07:45:08', 0, NULL, '2024-08-04 11:45:08', '2024-08-04 11:45:08'),
(2862, 1, '2024-08-04 07:55:03', '2024-08-04 07:55:03', 0, NULL, '2024-08-04 11:55:03', '2024-08-04 11:55:03'),
(2863, 2, '2024-08-04 07:55:04', '2024-08-04 07:55:04', 0, NULL, '2024-08-04 11:55:04', '2024-08-04 11:55:04'),
(2864, 3, '2024-08-04 07:55:04', '2024-08-04 07:55:04', 0, NULL, '2024-08-04 11:55:04', '2024-08-04 11:55:04'),
(2865, 5, '2024-08-04 07:55:05', '2024-08-04 07:55:05', 0, NULL, '2024-08-04 11:55:05', '2024-08-04 11:55:05'),
(2866, 1, '2024-08-04 08:00:09', '2024-08-04 08:00:09', 0, NULL, '2024-08-04 12:00:09', '2024-08-04 12:00:09'),
(2867, 2, '2024-08-04 08:00:10', '2024-08-04 08:00:10', 0, NULL, '2024-08-04 12:00:10', '2024-08-04 12:00:10'),
(2868, 3, '2024-08-04 08:00:10', '2024-08-04 08:00:10', 0, NULL, '2024-08-04 12:00:10', '2024-08-04 12:00:10'),
(2869, 5, '2024-08-04 08:00:11', '2024-08-04 08:00:11', 0, NULL, '2024-08-04 12:00:11', '2024-08-04 12:00:11'),
(2870, 1, '2024-08-04 08:10:05', '2024-08-04 08:10:05', 0, NULL, '2024-08-04 12:10:05', '2024-08-04 12:10:05'),
(2871, 2, '2024-08-04 08:10:05', '2024-08-04 08:10:05', 0, NULL, '2024-08-04 12:10:06', '2024-08-04 12:10:06'),
(2872, 3, '2024-08-04 08:10:06', '2024-08-04 08:10:06', 0, NULL, '2024-08-04 12:10:06', '2024-08-04 12:10:06'),
(2873, 5, '2024-08-04 08:10:06', '2024-08-04 08:10:06', 0, NULL, '2024-08-04 12:10:07', '2024-08-04 12:10:07'),
(2874, 1, '2024-08-04 08:15:07', '2024-08-04 08:15:07', 0, NULL, '2024-08-04 12:15:08', '2024-08-04 12:15:08'),
(2875, 2, '2024-08-04 08:15:08', '2024-08-04 08:15:08', 0, NULL, '2024-08-04 12:15:08', '2024-08-04 12:15:08'),
(2876, 3, '2024-08-04 08:20:07', '2024-08-04 08:20:08', 1, NULL, '2024-08-04 12:20:09', '2024-08-04 12:20:09'),
(2877, 5, '2024-08-04 08:20:09', '2024-08-04 08:20:09', 0, NULL, '2024-08-04 12:20:09', '2024-08-04 12:20:09'),
(2878, 1, '2024-08-04 08:25:06', '2024-08-04 08:25:06', 0, NULL, '2024-08-04 12:25:06', '2024-08-04 12:25:06'),
(2879, 2, '2024-08-04 08:25:07', '2024-08-04 08:25:07', 0, NULL, '2024-08-04 12:25:07', '2024-08-04 12:25:07'),
(2880, 3, '2024-08-04 08:30:02', '2024-08-04 08:30:02', 0, NULL, '2024-08-04 12:30:02', '2024-08-04 12:30:02'),
(2881, 5, '2024-08-04 08:30:03', '2024-08-04 08:30:03', 0, NULL, '2024-08-04 12:30:03', '2024-08-04 12:30:03'),
(2882, 1, '2024-08-04 08:35:03', '2024-08-04 08:35:03', 0, NULL, '2024-08-04 12:35:04', '2024-08-04 12:35:04'),
(2883, 2, '2024-08-04 08:35:04', '2024-08-04 08:35:04', 0, NULL, '2024-08-04 12:35:04', '2024-08-04 12:35:04'),
(2884, 3, '2024-08-04 08:35:05', '2024-08-04 08:35:05', 0, NULL, '2024-08-04 12:35:05', '2024-08-04 12:35:05'),
(2885, 1, '2024-08-04 08:40:06', '2024-08-04 08:40:07', 0, NULL, '2024-08-04 12:40:07', '2024-08-04 12:40:07'),
(2886, 2, '2024-08-04 08:40:08', '2024-08-04 08:40:08', 0, NULL, '2024-08-04 12:40:08', '2024-08-04 12:40:08'),
(2887, 3, '2024-08-04 08:40:08', '2024-08-04 08:40:08', 0, NULL, '2024-08-04 12:40:08', '2024-08-04 12:40:08'),
(2888, 5, '2024-08-04 08:40:09', '2024-08-04 08:40:09', 0, NULL, '2024-08-04 12:40:09', '2024-08-04 12:40:09'),
(2889, 1, '2024-08-04 08:50:03', '2024-08-04 08:50:03', 0, NULL, '2024-08-04 12:50:03', '2024-08-04 12:50:03'),
(2890, 2, '2024-08-04 08:50:03', '2024-08-04 08:50:03', 0, NULL, '2024-08-04 12:50:03', '2024-08-04 12:50:03'),
(2891, 3, '2024-08-04 08:50:04', '2024-08-04 08:50:04', 0, NULL, '2024-08-04 12:50:04', '2024-08-04 12:50:04'),
(2892, 5, '2024-08-04 08:50:05', '2024-08-04 08:50:05', 0, NULL, '2024-08-04 12:50:05', '2024-08-04 12:50:05'),
(2893, 1, '2024-08-04 08:55:07', '2024-08-04 08:55:07', 0, NULL, '2024-08-04 12:55:08', '2024-08-04 12:55:08'),
(2894, 2, '2024-08-04 08:55:08', '2024-08-04 08:55:08', 0, NULL, '2024-08-04 12:55:08', '2024-08-04 12:55:08'),
(2895, 3, '2024-08-04 08:55:08', '2024-08-04 08:55:08', 0, NULL, '2024-08-04 12:55:08', '2024-08-04 12:55:08'),
(2896, 5, '2024-08-04 08:55:08', '2024-08-04 08:55:08', 0, NULL, '2024-08-04 12:55:08', '2024-08-04 12:55:08'),
(2897, 1, '2024-08-04 09:05:03', '2024-08-04 09:05:03', 0, NULL, '2024-08-04 13:05:03', '2024-08-04 13:05:03'),
(2898, 2, '2024-08-04 09:05:04', '2024-08-04 09:05:04', 0, NULL, '2024-08-04 13:05:04', '2024-08-04 13:05:04'),
(2899, 3, '2024-08-04 09:05:04', '2024-08-04 09:05:04', 0, NULL, '2024-08-04 13:05:05', '2024-08-04 13:05:05'),
(2900, 5, '2024-08-04 09:05:05', '2024-08-04 09:05:05', 0, NULL, '2024-08-04 13:05:05', '2024-08-04 13:05:05'),
(2901, 1, '2024-08-04 09:10:07', '2024-08-04 09:10:07', 0, NULL, '2024-08-04 13:10:07', '2024-08-04 13:10:07'),
(2902, 2, '2024-08-04 09:10:07', '2024-08-04 09:10:07', 0, NULL, '2024-08-04 13:10:07', '2024-08-04 13:10:07'),
(2903, 3, '2024-08-04 09:10:08', '2024-08-04 09:10:08', 0, NULL, '2024-08-04 13:10:08', '2024-08-04 13:10:08'),
(2904, 5, '2024-08-04 09:10:08', '2024-08-04 09:10:08', 0, NULL, '2024-08-04 13:10:08', '2024-08-04 13:10:08'),
(2905, 1, '2024-08-04 09:20:06', '2024-08-04 09:20:06', 0, NULL, '2024-08-04 13:20:06', '2024-08-04 13:20:06'),
(2906, 2, '2024-08-04 09:20:06', '2024-08-04 09:20:06', 0, NULL, '2024-08-04 13:20:06', '2024-08-04 13:20:06'),
(2907, 3, '2024-08-04 09:20:07', '2024-08-04 09:20:07', 0, NULL, '2024-08-04 13:20:07', '2024-08-04 13:20:07'),
(2908, 5, '2024-08-04 09:20:07', '2024-08-04 09:20:08', 0, NULL, '2024-08-04 13:20:08', '2024-08-04 13:20:08'),
(2909, 1, '2024-08-04 09:30:06', '2024-08-04 09:30:06', 0, NULL, '2024-08-04 13:30:06', '2024-08-04 13:30:06'),
(2910, 2, '2024-08-04 09:30:07', '2024-08-04 09:30:07', 0, NULL, '2024-08-04 13:30:07', '2024-08-04 13:30:07'),
(2911, 3, '2024-08-04 09:30:07', '2024-08-04 09:30:07', 0, NULL, '2024-08-04 13:30:08', '2024-08-04 13:30:08'),
(2912, 5, '2024-08-04 09:30:09', '2024-08-04 09:30:09', 0, NULL, '2024-08-04 13:30:10', '2024-08-04 13:30:10'),
(2913, 1, '2024-08-04 09:40:05', '2024-08-04 09:40:05', 0, NULL, '2024-08-04 13:40:05', '2024-08-04 13:40:05'),
(2914, 2, '2024-08-04 09:40:05', '2024-08-04 09:40:05', 0, NULL, '2024-08-04 13:40:06', '2024-08-04 13:40:06'),
(2915, 3, '2024-08-04 09:40:06', '2024-08-04 09:40:06', 0, NULL, '2024-08-04 13:40:07', '2024-08-04 13:40:07'),
(2916, 5, '2024-08-04 09:40:07', '2024-08-04 09:40:07', 0, NULL, '2024-08-04 13:40:07', '2024-08-04 13:40:07'),
(2917, 1, '2024-08-04 09:50:04', '2024-08-04 09:50:04', 0, NULL, '2024-08-04 13:50:05', '2024-08-04 13:50:05'),
(2918, 2, '2024-08-04 09:50:05', '2024-08-04 09:50:05', 0, NULL, '2024-08-04 13:50:05', '2024-08-04 13:50:05'),
(2919, 3, '2024-08-04 09:50:06', '2024-08-04 09:50:06', 0, NULL, '2024-08-04 13:50:06', '2024-08-04 13:50:06'),
(2920, 5, '2024-08-04 09:50:06', '2024-08-04 09:50:06', 0, NULL, '2024-08-04 13:50:09', '2024-08-04 13:50:09'),
(2921, 1, '2024-08-04 09:55:05', '2024-08-04 09:55:05', 0, NULL, '2024-08-04 13:55:05', '2024-08-04 13:55:05'),
(2922, 2, '2024-08-04 10:00:03', '2024-08-04 10:00:03', 0, NULL, '2024-08-04 14:00:04', '2024-08-04 14:00:04'),
(2923, 3, '2024-08-04 10:00:04', '2024-08-04 10:00:04', 0, NULL, '2024-08-04 14:00:05', '2024-08-04 14:00:05'),
(2924, 5, '2024-08-04 10:00:05', '2024-08-04 10:00:05', 0, NULL, '2024-08-04 14:00:05', '2024-08-04 14:00:05'),
(2925, 1, '2024-08-04 10:05:06', '2024-08-04 10:05:06', 0, NULL, '2024-08-04 14:05:06', '2024-08-04 14:05:06'),
(2926, 2, '2024-08-04 10:05:07', '2024-08-04 10:05:07', 0, NULL, '2024-08-04 14:05:07', '2024-08-04 14:05:07'),
(2927, 3, '2024-08-04 10:05:08', '2024-08-04 10:05:08', 0, NULL, '2024-08-04 14:05:08', '2024-08-04 14:05:08'),
(2928, 5, '2024-08-04 10:05:08', '2024-08-04 10:05:08', 0, NULL, '2024-08-04 14:05:09', '2024-08-04 14:05:09'),
(2929, 1, '2024-08-04 10:15:06', '2024-08-04 10:15:06', 0, NULL, '2024-08-04 14:15:07', '2024-08-04 14:15:07'),
(2930, 2, '2024-08-04 10:15:08', '2024-08-04 10:15:08', 0, NULL, '2024-08-04 14:15:09', '2024-08-04 14:15:09'),
(2931, 3, '2024-08-04 10:15:09', '2024-08-04 10:15:09', 0, NULL, '2024-08-04 14:15:09', '2024-08-04 14:15:09'),
(2932, 5, '2024-08-04 10:15:09', '2024-08-04 10:15:09', 0, NULL, '2024-08-04 14:15:10', '2024-08-04 14:15:10'),
(2933, 1, '2024-08-04 10:20:07', '2024-08-04 10:20:07', 0, NULL, '2024-08-04 14:20:08', '2024-08-04 14:20:08'),
(2934, 2, '2024-08-04 10:25:04', '2024-08-04 10:25:04', 0, NULL, '2024-08-04 14:25:04', '2024-08-04 14:25:04'),
(2935, 3, '2024-08-04 10:25:05', '2024-08-04 10:25:05', 0, NULL, '2024-08-04 14:25:05', '2024-08-04 14:25:05'),
(2936, 5, '2024-08-04 10:25:05', '2024-08-04 10:25:05', 0, NULL, '2024-08-04 14:25:05', '2024-08-04 14:25:05'),
(2937, 1, '2024-08-04 10:30:06', '2024-08-04 10:30:06', 0, NULL, '2024-08-04 14:30:07', '2024-08-04 14:30:07'),
(2938, 2, '2024-08-04 10:30:07', '2024-08-04 10:30:07', 0, NULL, '2024-08-04 14:30:08', '2024-08-04 14:30:08'),
(2939, 3, '2024-08-04 10:30:09', '2024-08-04 10:30:09', 0, NULL, '2024-08-04 14:30:09', '2024-08-04 14:30:09'),
(2940, 5, '2024-08-04 10:30:09', '2024-08-04 10:30:09', 0, NULL, '2024-08-04 14:30:10', '2024-08-04 14:30:10'),
(2941, 1, '2024-08-04 10:40:05', '2024-08-04 10:40:05', 0, NULL, '2024-08-04 14:40:06', '2024-08-04 14:40:06'),
(2942, 2, '2024-08-04 10:40:06', '2024-08-04 10:40:06', 0, NULL, '2024-08-04 14:40:07', '2024-08-04 14:40:07'),
(2943, 3, '2024-08-04 10:40:07', '2024-08-04 10:40:07', 0, NULL, '2024-08-04 14:40:07', '2024-08-04 14:40:07'),
(2944, 5, '2024-08-04 10:40:07', '2024-08-04 10:40:07', 0, NULL, '2024-08-04 14:40:08', '2024-08-04 14:40:08'),
(2945, 1, '2024-08-04 10:45:06', '2024-08-04 10:45:06', 0, NULL, '2024-08-04 14:45:07', '2024-08-04 14:45:07'),
(2946, 2, '2024-08-04 10:50:03', '2024-08-04 10:50:03', 0, NULL, '2024-08-04 14:50:04', '2024-08-04 14:50:04'),
(2947, 3, '2024-08-04 10:50:04', '2024-08-04 10:50:04', 0, NULL, '2024-08-04 14:50:05', '2024-08-04 14:50:05'),
(2948, 5, '2024-08-04 10:50:05', '2024-08-04 10:50:05', 0, NULL, '2024-08-04 14:50:05', '2024-08-04 14:50:05'),
(2949, 1, '2024-08-04 10:55:04', '2024-08-04 10:55:04', 0, NULL, '2024-08-04 14:55:04', '2024-08-04 14:55:04'),
(2950, 2, '2024-08-04 10:55:05', '2024-08-04 10:55:05', 0, NULL, '2024-08-04 14:55:05', '2024-08-04 14:55:05'),
(2951, 1, '2024-08-04 11:00:07', '2024-08-04 11:00:07', 0, NULL, '2024-08-04 15:00:08', '2024-08-04 15:00:08'),
(2952, 3, '2024-08-04 11:00:09', '2024-08-04 11:00:09', 0, NULL, '2024-08-04 15:00:09', '2024-08-04 15:00:09'),
(2953, 5, '2024-08-04 11:00:10', '2024-08-04 11:00:10', 0, NULL, '2024-08-04 15:00:11', '2024-08-04 15:00:11'),
(2954, 2, '2024-08-04 11:05:04', '2024-08-04 11:05:04', 0, NULL, '2024-08-04 15:05:04', '2024-08-04 15:05:04'),
(2955, 1, '2024-08-04 11:10:05', '2024-08-04 11:10:05', 0, NULL, '2024-08-04 15:10:06', '2024-08-04 15:10:06'),
(2956, 2, '2024-08-04 11:10:06', '2024-08-04 11:10:06', 0, NULL, '2024-08-04 15:10:07', '2024-08-04 15:10:07'),
(2957, 3, '2024-08-04 11:10:07', '2024-08-04 11:10:07', 0, NULL, '2024-08-04 15:10:07', '2024-08-04 15:10:07'),
(2958, 5, '2024-08-04 11:10:08', '2024-08-04 11:10:08', 0, NULL, '2024-08-04 15:10:08', '2024-08-04 15:10:08'),
(2959, 1, '2024-08-04 11:20:05', '2024-08-04 11:20:05', 0, NULL, '2024-08-04 15:20:05', '2024-08-04 15:20:05'),
(2960, 2, '2024-08-04 11:20:05', '2024-08-04 11:20:05', 0, NULL, '2024-08-04 15:20:06', '2024-08-04 15:20:06'),
(2961, 3, '2024-08-04 11:20:07', '2024-08-04 11:20:07', 0, NULL, '2024-08-04 15:20:07', '2024-08-04 15:20:07'),
(2962, 5, '2024-08-04 11:20:08', '2024-08-04 11:20:08', 0, NULL, '2024-08-04 15:20:08', '2024-08-04 15:20:08'),
(2963, 1, '2024-08-04 11:30:04', '2024-08-04 11:30:04', 0, NULL, '2024-08-04 15:30:04', '2024-08-04 15:30:04'),
(2964, 2, '2024-08-04 11:30:04', '2024-08-04 11:30:04', 0, NULL, '2024-08-04 15:30:05', '2024-08-04 15:30:05'),
(2965, 3, '2024-08-04 11:30:05', '2024-08-04 11:30:05', 0, NULL, '2024-08-04 15:30:06', '2024-08-04 15:30:06'),
(2966, 5, '2024-08-04 11:30:06', '2024-08-04 11:30:07', 0, NULL, '2024-08-04 15:30:07', '2024-08-04 15:30:07'),
(2967, 1, '2024-08-04 11:40:03', '2024-08-04 11:40:03', 0, NULL, '2024-08-04 15:40:03', '2024-08-04 15:40:03'),
(2968, 2, '2024-08-04 11:40:03', '2024-08-04 11:40:03', 0, NULL, '2024-08-04 15:40:04', '2024-08-04 15:40:04'),
(2969, 3, '2024-08-04 11:40:04', '2024-08-04 11:40:04', 0, NULL, '2024-08-04 15:40:05', '2024-08-04 15:40:05'),
(2970, 5, '2024-08-04 11:40:05', '2024-08-04 11:40:05', 0, NULL, '2024-08-04 15:40:05', '2024-08-04 15:40:05'),
(2971, 1, '2024-08-04 11:45:05', '2024-08-04 11:45:05', 0, NULL, '2024-08-04 15:45:05', '2024-08-04 15:45:05'),
(2972, 2, '2024-08-04 11:45:06', '2024-08-04 11:45:06', 0, NULL, '2024-08-04 15:45:10', '2024-08-04 15:45:10'),
(2973, 3, '2024-08-04 11:45:10', '2024-08-04 11:45:10', 0, NULL, '2024-08-04 15:45:10', '2024-08-04 15:45:10'),
(2974, 5, '2024-08-04 11:50:04', '2024-08-04 11:50:04', 0, NULL, '2024-08-04 15:50:05', '2024-08-04 15:50:05'),
(2975, 1, '2024-08-04 11:55:04', '2024-08-04 11:55:04', 0, NULL, '2024-08-04 15:55:05', '2024-08-04 15:55:05'),
(2976, 2, '2024-08-04 11:55:06', '2024-08-04 11:55:06', 0, NULL, '2024-08-04 15:55:06', '2024-08-04 15:55:06'),
(2977, 3, '2024-08-04 11:55:09', '2024-08-04 11:55:09', 0, NULL, '2024-08-04 15:55:09', '2024-08-04 15:55:09'),
(2978, 1, '2024-08-04 12:00:09', '2024-08-04 12:00:09', 0, NULL, '2024-08-04 16:00:10', '2024-08-04 16:00:10'),
(2979, 2, '2024-08-04 12:00:10', '2024-08-04 12:00:10', 0, NULL, '2024-08-04 16:00:10', '2024-08-04 16:00:10'),
(2980, 5, '2024-08-04 12:00:10', '2024-08-04 12:00:10', 0, NULL, '2024-08-04 16:00:11', '2024-08-04 16:00:11'),
(2981, 3, '2024-08-04 12:05:04', '2024-08-04 12:05:04', 0, NULL, '2024-08-04 16:05:05', '2024-08-04 16:05:05'),
(2982, 1, '2024-08-04 12:10:04', '2024-08-04 12:10:04', 0, NULL, '2024-08-04 16:10:05', '2024-08-04 16:10:05'),
(2983, 2, '2024-08-04 12:10:05', '2024-08-04 12:10:05', 0, NULL, '2024-08-04 16:10:05', '2024-08-04 16:10:05'),
(2984, 5, '2024-08-04 12:10:06', '2024-08-04 12:10:06', 0, NULL, '2024-08-04 16:10:07', '2024-08-04 16:10:07'),
(2985, 1, '2024-08-04 12:15:06', '2024-08-04 12:15:06', 0, NULL, '2024-08-04 16:15:06', '2024-08-04 16:15:06'),
(2986, 3, '2024-08-04 12:15:06', '2024-08-04 12:15:06', 0, NULL, '2024-08-04 16:15:07', '2024-08-04 16:15:07'),
(2987, 1, '2024-08-04 12:20:07', '2024-08-04 12:20:07', 0, NULL, '2024-08-04 16:20:07', '2024-08-04 16:20:07'),
(2988, 2, '2024-08-04 12:20:08', '2024-08-04 12:20:08', 0, NULL, '2024-08-04 16:20:08', '2024-08-04 16:20:08'),
(2989, 3, '2024-08-04 12:20:08', '2024-08-04 12:20:08', 0, NULL, '2024-08-04 16:20:08', '2024-08-04 16:20:08'),
(2990, 5, '2024-08-04 12:20:09', '2024-08-04 12:20:09', 0, NULL, '2024-08-04 16:20:09', '2024-08-04 16:20:09'),
(2991, 1, '2024-08-04 12:30:04', '2024-08-04 12:30:04', 0, NULL, '2024-08-04 16:30:04', '2024-08-04 16:30:04'),
(2992, 2, '2024-08-04 12:30:04', '2024-08-04 12:30:04', 0, NULL, '2024-08-04 16:30:04', '2024-08-04 16:30:04'),
(2993, 3, '2024-08-04 12:30:05', '2024-08-04 12:30:05', 0, NULL, '2024-08-04 16:30:05', '2024-08-04 16:30:05'),
(2994, 5, '2024-08-04 12:30:06', '2024-08-04 12:30:06', 0, NULL, '2024-08-04 16:30:06', '2024-08-04 16:30:06'),
(2995, 1, '2024-08-04 12:35:05', '2024-08-04 12:35:05', 0, NULL, '2024-08-04 16:35:06', '2024-08-04 16:35:06'),
(2996, 2, '2024-08-04 12:35:06', '2024-08-04 12:35:06', 0, NULL, '2024-08-04 16:35:07', '2024-08-04 16:35:07'),
(2997, 3, '2024-08-04 12:40:04', '2024-08-04 12:40:04', 0, NULL, '2024-08-04 16:40:04', '2024-08-04 16:40:04'),
(2998, 5, '2024-08-04 12:40:04', '2024-08-04 12:40:04', 0, NULL, '2024-08-04 16:40:05', '2024-08-04 16:40:05'),
(2999, 1, '2024-08-04 12:45:06', '2024-08-04 12:45:06', 0, NULL, '2024-08-04 16:45:08', '2024-08-04 16:45:08'),
(3000, 2, '2024-08-04 12:45:09', '2024-08-04 12:45:09', 0, NULL, '2024-08-04 16:45:09', '2024-08-04 16:45:09'),
(3001, 3, '2024-08-04 12:45:09', '2024-08-04 12:45:09', 0, NULL, '2024-08-04 16:45:09', '2024-08-04 16:45:09'),
(3002, 5, '2024-08-04 12:45:09', '2024-08-04 12:45:09', 0, NULL, '2024-08-04 16:45:10', '2024-08-04 16:45:10'),
(3003, 1, '2024-08-04 12:55:09', '2024-08-04 12:55:09', 0, NULL, '2024-08-04 16:55:10', '2024-08-04 16:55:10'),
(3004, 2, '2024-08-04 12:55:10', '2024-08-04 12:55:10', 0, NULL, '2024-08-04 16:55:10', '2024-08-04 16:55:10'),
(3005, 3, '2024-08-04 12:55:10', '2024-08-04 12:55:10', 0, NULL, '2024-08-04 16:55:10', '2024-08-04 16:55:10'),
(3006, 5, '2024-08-04 12:55:10', '2024-08-04 12:55:10', 0, NULL, '2024-08-04 16:55:10', '2024-08-04 16:55:10'),
(3007, 1, '2024-08-04 13:05:08', '2024-08-04 13:05:08', 0, NULL, '2024-08-04 17:05:08', '2024-08-04 17:05:08'),
(3008, 2, '2024-08-04 13:05:08', '2024-08-04 13:05:08', 0, NULL, '2024-08-04 17:05:09', '2024-08-04 17:05:09'),
(3009, 3, '2024-08-04 13:05:09', '2024-08-04 13:05:09', 0, NULL, '2024-08-04 17:05:09', '2024-08-04 17:05:09'),
(3010, 5, '2024-08-04 13:05:10', '2024-08-04 13:05:10', 0, NULL, '2024-08-04 17:05:10', '2024-08-04 17:05:10'),
(3011, 1, '2024-08-04 13:15:05', '2024-08-04 13:15:06', 0, NULL, '2024-08-04 17:15:06', '2024-08-04 17:15:06'),
(3012, 2, '2024-08-04 13:15:07', '2024-08-04 13:15:07', 0, NULL, '2024-08-04 17:15:07', '2024-08-04 17:15:07'),
(3013, 3, '2024-08-04 13:15:07', '2024-08-04 13:15:07', 0, NULL, '2024-08-04 17:15:08', '2024-08-04 17:15:08'),
(3014, 5, '2024-08-04 13:15:08', '2024-08-04 13:15:08', 0, NULL, '2024-08-04 17:15:08', '2024-08-04 17:15:08'),
(3015, 1, '2024-08-04 13:25:08', '2024-08-04 13:25:08', 0, NULL, '2024-08-04 17:25:08', '2024-08-04 17:25:08'),
(3016, 2, '2024-08-04 13:25:09', '2024-08-04 13:25:09', 0, NULL, '2024-08-04 17:25:09', '2024-08-04 17:25:09'),
(3017, 3, '2024-08-04 13:25:10', '2024-08-04 13:25:10', 0, NULL, '2024-08-04 17:25:10', '2024-08-04 17:25:10'),
(3018, 5, '2024-08-04 13:25:10', '2024-08-04 13:25:10', 0, NULL, '2024-08-04 17:25:10', '2024-08-04 17:25:10'),
(3019, 1, '2024-08-04 13:35:04', '2024-08-04 13:35:04', 0, NULL, '2024-08-04 17:35:04', '2024-08-04 17:35:04'),
(3020, 2, '2024-08-04 13:35:05', '2024-08-04 13:35:05', 0, NULL, '2024-08-04 17:35:06', '2024-08-04 17:35:06'),
(3021, 3, '2024-08-04 13:35:06', '2024-08-04 13:35:06', 0, NULL, '2024-08-04 17:35:06', '2024-08-04 17:35:06'),
(3022, 5, '2024-08-04 13:35:06', '2024-08-04 13:35:06', 0, NULL, '2024-08-04 17:35:07', '2024-08-04 17:35:07'),
(3023, 1, '2024-08-04 13:40:11', '2024-08-04 13:40:12', 0, NULL, '2024-08-04 17:40:12', '2024-08-04 17:40:12'),
(3024, 2, '2024-08-04 13:40:12', '2024-08-04 13:40:12', 0, NULL, '2024-08-04 17:40:12', '2024-08-04 17:40:12'),
(3025, 3, '2024-08-04 13:40:12', '2024-08-04 13:40:12', 0, NULL, '2024-08-04 17:40:12', '2024-08-04 17:40:12'),
(3026, 5, '2024-08-04 13:40:13', '2024-08-04 13:40:13', 0, NULL, '2024-08-04 17:40:13', '2024-08-04 17:40:13'),
(3027, 1, '2024-08-04 13:50:05', '2024-08-04 13:50:05', 0, NULL, '2024-08-04 17:50:05', '2024-08-04 17:50:05'),
(3028, 2, '2024-08-04 13:50:05', '2024-08-04 13:50:05', 0, NULL, '2024-08-04 17:50:06', '2024-08-04 17:50:06'),
(3029, 3, '2024-08-04 13:50:06', '2024-08-04 13:50:06', 0, NULL, '2024-08-04 17:50:07', '2024-08-04 17:50:07'),
(3030, 5, '2024-08-04 13:50:07', '2024-08-04 13:50:07', 0, NULL, '2024-08-04 17:50:07', '2024-08-04 17:50:07'),
(3031, 1, '2024-08-04 13:55:08', '2024-08-04 13:55:08', 0, NULL, '2024-08-04 17:55:08', '2024-08-04 17:55:08'),
(3032, 2, '2024-08-04 13:55:09', '2024-08-04 13:55:09', 0, NULL, '2024-08-04 17:55:09', '2024-08-04 17:55:09'),
(3033, 3, '2024-08-04 13:55:10', '2024-08-04 13:55:10', 0, NULL, '2024-08-04 17:55:10', '2024-08-04 17:55:10'),
(3034, 5, '2024-08-04 13:55:10', '2024-08-04 13:55:10', 0, NULL, '2024-08-04 17:55:10', '2024-08-04 17:55:10'),
(3035, 1, '2024-08-04 14:00:12', '2024-08-04 14:00:12', 0, NULL, '2024-08-04 18:00:13', '2024-08-04 18:00:13'),
(3036, 2, '2024-08-04 14:00:13', '2024-08-04 14:00:13', 0, NULL, '2024-08-04 18:00:13', '2024-08-04 18:00:13'),
(3037, 3, '2024-08-04 14:00:13', '2024-08-04 14:00:13', 0, NULL, '2024-08-04 18:00:13', '2024-08-04 18:00:13'),
(3038, 5, '2024-08-04 14:00:13', '2024-08-04 14:00:13', 0, NULL, '2024-08-04 18:00:14', '2024-08-04 18:00:14'),
(3039, 1, '2024-08-04 14:10:05', '2024-08-04 14:10:05', 0, NULL, '2024-08-04 18:10:05', '2024-08-04 18:10:05'),
(3040, 2, '2024-08-04 14:10:06', '2024-08-04 14:10:06', 0, NULL, '2024-08-04 18:10:06', '2024-08-04 18:10:06'),
(3041, 3, '2024-08-04 14:10:06', '2024-08-04 14:10:06', 0, NULL, '2024-08-04 18:10:07', '2024-08-04 18:10:07'),
(3042, 5, '2024-08-04 14:10:07', '2024-08-04 14:10:07', 0, NULL, '2024-08-04 18:10:08', '2024-08-04 18:10:08'),
(3043, 1, '2024-08-04 14:15:06', '2024-08-04 14:15:06', 0, NULL, '2024-08-04 18:15:06', '2024-08-04 18:15:06'),
(3044, 2, '2024-08-04 14:20:05', '2024-08-04 14:20:05', 0, NULL, '2024-08-04 18:20:05', '2024-08-04 18:20:05'),
(3045, 3, '2024-08-04 14:20:05', '2024-08-04 14:20:05', 0, NULL, '2024-08-04 18:20:06', '2024-08-04 18:20:06'),
(3046, 5, '2024-08-04 14:20:07', '2024-08-04 14:20:07', 0, NULL, '2024-08-04 18:20:07', '2024-08-04 18:20:07'),
(3047, 1, '2024-08-04 14:25:09', '2024-08-04 14:25:09', 0, NULL, '2024-08-04 18:25:10', '2024-08-04 18:25:10'),
(3048, 2, '2024-08-04 14:25:10', '2024-08-04 14:25:10', 0, NULL, '2024-08-04 18:25:11', '2024-08-04 18:25:11'),
(3049, 3, '2024-08-04 14:25:11', '2024-08-04 14:25:11', 0, NULL, '2024-08-04 18:25:11', '2024-08-04 18:25:11'),
(3050, 5, '2024-08-04 14:25:12', '2024-08-04 14:25:12', 0, NULL, '2024-08-04 18:25:12', '2024-08-04 18:25:12'),
(3051, 1, '2024-08-04 14:35:07', '2024-08-04 14:35:07', 0, NULL, '2024-08-04 18:35:08', '2024-08-04 18:35:08'),
(3052, 2, '2024-08-04 14:35:08', '2024-08-04 14:35:08', 0, NULL, '2024-08-04 18:35:08', '2024-08-04 18:35:08'),
(3053, 3, '2024-08-04 14:35:09', '2024-08-04 14:35:09', 0, NULL, '2024-08-04 18:35:09', '2024-08-04 18:35:09'),
(3054, 5, '2024-08-04 14:35:09', '2024-08-04 14:35:09', 0, NULL, '2024-08-04 18:35:09', '2024-08-04 18:35:09'),
(3055, 1, '2024-08-04 14:45:06', '2024-08-04 14:45:06', 0, NULL, '2024-08-04 18:45:07', '2024-08-04 18:45:07'),
(3056, 2, '2024-08-04 14:45:07', '2024-08-04 14:45:07', 0, NULL, '2024-08-04 18:45:08', '2024-08-04 18:45:08'),
(3057, 3, '2024-08-04 14:45:08', '2024-08-04 14:45:08', 0, NULL, '2024-08-04 18:45:08', '2024-08-04 18:45:08'),
(3058, 5, '2024-08-04 14:45:08', '2024-08-04 14:45:08', 0, NULL, '2024-08-04 18:45:09', '2024-08-04 18:45:09'),
(3059, 1, '2024-08-04 14:55:04', '2024-08-04 14:55:04', 0, NULL, '2024-08-04 18:55:05', '2024-08-04 18:55:05'),
(3060, 2, '2024-08-04 14:55:06', '2024-08-04 14:55:06', 0, NULL, '2024-08-04 18:55:06', '2024-08-04 18:55:06'),
(3061, 3, '2024-08-04 14:55:07', '2024-08-04 14:55:07', 0, NULL, '2024-08-04 18:55:07', '2024-08-04 18:55:07'),
(3062, 5, '2024-08-04 14:55:08', '2024-08-04 14:55:08', 0, NULL, '2024-08-04 18:55:08', '2024-08-04 18:55:08'),
(3063, 1, '2024-08-04 15:00:08', '2024-08-04 15:00:08', 0, NULL, '2024-08-04 19:00:08', '2024-08-04 19:00:08'),
(3064, 2, '2024-08-04 15:00:09', '2024-08-04 15:00:09', 0, NULL, '2024-08-04 19:00:09', '2024-08-04 19:00:09'),
(3065, 3, '2024-08-04 15:00:10', '2024-08-04 15:00:10', 0, NULL, '2024-08-04 19:00:10', '2024-08-04 19:00:10'),
(3066, 5, '2024-08-04 15:05:04', '2024-08-04 15:05:04', 0, NULL, '2024-08-04 19:05:04', '2024-08-04 19:05:04'),
(3067, 1, '2024-08-04 15:10:06', '2024-08-04 15:10:06', 0, NULL, '2024-08-04 19:10:07', '2024-08-04 19:10:07'),
(3068, 2, '2024-08-04 15:10:08', '2024-08-04 15:10:08', 0, NULL, '2024-08-04 19:10:09', '2024-08-04 19:10:09'),
(3069, 3, '2024-08-04 15:10:09', '2024-08-04 15:10:09', 0, NULL, '2024-08-04 19:10:10', '2024-08-04 19:10:10'),
(3070, 5, '2024-08-04 15:10:10', '2024-08-04 15:10:10', 0, NULL, '2024-08-04 19:10:10', '2024-08-04 19:10:10'),
(3071, 1, '2024-08-04 15:20:04', '2024-08-04 15:20:04', 0, NULL, '2024-08-04 19:20:04', '2024-08-04 19:20:04'),
(3072, 2, '2024-08-04 15:20:05', '2024-08-04 15:20:05', 0, NULL, '2024-08-04 19:20:05', '2024-08-04 19:20:05'),
(3073, 3, '2024-08-04 15:20:06', '2024-08-04 15:20:06', 0, NULL, '2024-08-04 19:20:06', '2024-08-04 19:20:06'),
(3074, 5, '2024-08-04 15:20:07', '2024-08-04 15:20:07', 0, NULL, '2024-08-04 19:20:07', '2024-08-04 19:20:07'),
(3075, 1, '2024-08-04 15:30:09', '2024-08-04 15:30:10', 0, NULL, '2024-08-04 19:30:11', '2024-08-04 19:30:11'),
(3076, 2, '2024-08-04 15:30:11', '2024-08-04 15:30:11', 0, NULL, '2024-08-04 19:30:11', '2024-08-04 19:30:11'),
(3077, 3, '2024-08-04 15:30:12', '2024-08-04 15:30:12', 0, NULL, '2024-08-04 19:30:12', '2024-08-04 19:30:12'),
(3078, 5, '2024-08-04 15:30:12', '2024-08-04 15:30:12', 0, NULL, '2024-08-04 19:30:12', '2024-08-04 19:30:12'),
(3079, 1, '2024-08-04 15:40:08', '2024-08-04 15:40:08', 0, NULL, '2024-08-04 19:40:09', '2024-08-04 19:40:09'),
(3080, 2, '2024-08-04 15:40:09', '2024-08-04 15:40:09', 0, NULL, '2024-08-04 19:40:09', '2024-08-04 19:40:09'),
(3081, 3, '2024-08-04 15:40:09', '2024-08-04 15:40:09', 0, NULL, '2024-08-04 19:40:09', '2024-08-04 19:40:09'),
(3082, 5, '2024-08-04 15:40:09', '2024-08-04 15:40:09', 0, NULL, '2024-08-04 19:40:09', '2024-08-04 19:40:09'),
(3083, 1, '2024-08-04 15:45:11', '2024-08-04 15:45:11', 0, NULL, '2024-08-04 19:45:12', '2024-08-04 19:45:12'),
(3084, 2, '2024-08-04 15:45:12', '2024-08-04 15:45:12', 0, NULL, '2024-08-04 19:45:12', '2024-08-04 19:45:12'),
(3085, 3, '2024-08-04 15:45:12', '2024-08-04 15:45:12', 0, NULL, '2024-08-04 19:45:12', '2024-08-04 19:45:12'),
(3086, 5, '2024-08-04 15:45:12', '2024-08-04 15:45:12', 0, NULL, '2024-08-04 19:45:13', '2024-08-04 19:45:13'),
(3087, 1, '2024-08-04 15:55:04', '2024-08-04 15:55:04', 0, NULL, '2024-08-04 19:55:04', '2024-08-04 19:55:04'),
(3088, 2, '2024-08-04 15:55:05', '2024-08-04 15:55:05', 0, NULL, '2024-08-04 19:55:05', '2024-08-04 19:55:05'),
(3089, 3, '2024-08-04 15:55:05', '2024-08-04 15:55:05', 0, NULL, '2024-08-04 19:55:05', '2024-08-04 19:55:05'),
(3090, 5, '2024-08-04 15:55:06', '2024-08-04 15:55:06', 0, NULL, '2024-08-04 19:55:06', '2024-08-04 19:55:06'),
(3091, 1, '2024-08-04 16:00:06', '2024-08-04 16:00:06', 0, NULL, '2024-08-04 20:00:06', '2024-08-04 20:00:06'),
(3092, 2, '2024-08-04 16:00:07', '2024-08-04 16:00:07', 0, NULL, '2024-08-04 20:00:07', '2024-08-04 20:00:07'),
(3093, 3, '2024-08-04 16:00:08', '2024-08-04 16:00:08', 0, NULL, '2024-08-04 20:00:08', '2024-08-04 20:00:08'),
(3094, 1, '2024-08-04 16:05:10', '2024-08-04 16:05:10', 0, NULL, '2024-08-04 20:05:10', '2024-08-04 20:05:10'),
(3095, 2, '2024-08-04 16:05:10', '2024-08-04 16:05:10', 0, NULL, '2024-08-04 20:05:11', '2024-08-04 20:05:11'),
(3096, 3, '2024-08-04 16:05:11', '2024-08-04 16:05:11', 0, NULL, '2024-08-04 20:05:11', '2024-08-04 20:05:11'),
(3097, 5, '2024-08-04 16:05:11', '2024-08-04 16:05:11', 0, NULL, '2024-08-04 20:05:11', '2024-08-04 20:05:11'),
(3098, 1, '2024-08-04 16:15:07', '2024-08-04 16:15:08', 0, NULL, '2024-08-04 20:15:08', '2024-08-04 20:15:08'),
(3099, 2, '2024-08-04 16:15:09', '2024-08-04 16:15:09', 0, NULL, '2024-08-04 20:15:09', '2024-08-04 20:15:09'),
(3100, 3, '2024-08-04 16:15:09', '2024-08-04 16:15:09', 0, NULL, '2024-08-04 20:15:09', '2024-08-04 20:15:09'),
(3101, 5, '2024-08-04 16:15:09', '2024-08-04 16:15:10', 0, NULL, '2024-08-04 20:15:10', '2024-08-04 20:15:10'),
(3102, 1, '2024-08-04 16:25:05', '2024-08-04 16:25:05', 0, NULL, '2024-08-04 20:25:05', '2024-08-04 20:25:05'),
(3103, 2, '2024-08-04 16:25:06', '2024-08-04 16:25:06', 0, NULL, '2024-08-04 20:25:06', '2024-08-04 20:25:06'),
(3104, 3, '2024-08-04 16:25:06', '2024-08-04 16:25:06', 0, NULL, '2024-08-04 20:25:06', '2024-08-04 20:25:06'),
(3105, 5, '2024-08-04 16:25:07', '2024-08-04 16:25:07', 0, NULL, '2024-08-04 20:25:07', '2024-08-04 20:25:07'),
(3106, 1, '2024-08-04 16:30:06', '2024-08-04 16:30:06', 0, NULL, '2024-08-04 20:30:07', '2024-08-04 20:30:07'),
(3107, 2, '2024-08-04 16:35:04', '2024-08-04 16:35:04', 0, NULL, '2024-08-04 20:35:05', '2024-08-04 20:35:05'),
(3108, 3, '2024-08-04 16:35:05', '2024-08-04 16:35:05', 0, NULL, '2024-08-04 20:35:05', '2024-08-04 20:35:05'),
(3109, 5, '2024-08-04 16:35:06', '2024-08-04 16:35:06', 0, NULL, '2024-08-04 20:35:06', '2024-08-04 20:35:06'),
(3110, 1, '2024-08-04 16:40:02', '2024-08-04 16:40:03', 0, NULL, '2024-08-04 20:40:03', '2024-08-04 20:40:03'),
(3111, 1, '2024-08-04 16:45:05', '2024-08-04 16:45:05', 0, NULL, '2024-08-04 20:45:05', '2024-08-04 20:45:05'),
(3112, 2, '2024-08-04 16:45:05', '2024-08-04 16:45:05', 0, NULL, '2024-08-04 20:45:06', '2024-08-04 20:45:06'),
(3113, 3, '2024-08-04 16:45:06', '2024-08-04 16:45:06', 0, NULL, '2024-08-04 20:45:06', '2024-08-04 20:45:06'),
(3114, 5, '2024-08-04 16:45:07', '2024-08-04 16:45:07', 0, NULL, '2024-08-04 20:45:07', '2024-08-04 20:45:07'),
(3115, 1, '2024-08-04 16:50:07', '2024-08-04 16:50:07', 0, NULL, '2024-08-04 20:50:07', '2024-08-04 20:50:07'),
(3116, 2, '2024-08-04 16:50:07', '2024-08-04 16:50:07', 0, NULL, '2024-08-04 20:50:08', '2024-08-04 20:50:08'),
(3117, 3, '2024-08-04 16:50:08', '2024-08-04 16:50:08', 0, NULL, '2024-08-04 20:50:08', '2024-08-04 20:50:08'),
(3118, 5, '2024-08-04 16:55:05', '2024-08-04 16:55:05', 0, NULL, '2024-08-04 20:55:05', '2024-08-04 20:55:05'),
(3119, 1, '2024-08-04 17:00:09', '2024-08-04 17:00:09', 0, NULL, '2024-08-04 21:00:12', '2024-08-04 21:00:12'),
(3120, 2, '2024-08-04 17:00:13', '2024-08-04 17:00:13', 0, NULL, '2024-08-04 21:00:14', '2024-08-04 21:00:14'),
(3121, 3, '2024-08-04 17:00:15', '2024-08-04 17:00:15', 0, NULL, '2024-08-04 21:00:16', '2024-08-04 21:00:16'),
(3122, 5, '2024-08-04 17:00:18', '2024-08-04 17:00:18', 0, NULL, '2024-08-04 21:00:18', '2024-08-04 21:00:18'),
(3123, 1, '2024-08-04 17:10:08', '2024-08-04 17:10:08', 0, NULL, '2024-08-04 21:10:08', '2024-08-04 21:10:08'),
(3124, 2, '2024-08-04 17:10:08', '2024-08-04 17:10:08', 0, NULL, '2024-08-04 21:10:09', '2024-08-04 21:10:09'),
(3125, 3, '2024-08-04 17:10:11', '2024-08-04 17:10:11', 0, NULL, '2024-08-04 21:10:12', '2024-08-04 21:10:12'),
(3126, 5, '2024-08-04 17:10:12', '2024-08-04 17:10:12', 0, NULL, '2024-08-04 21:10:12', '2024-08-04 21:10:12'),
(3127, 1, '2024-08-04 17:20:06', '2024-08-04 17:20:06', 0, NULL, '2024-08-04 21:20:06', '2024-08-04 21:20:06'),
(3128, 2, '2024-08-04 17:20:07', '2024-08-04 17:20:07', 0, NULL, '2024-08-04 21:20:07', '2024-08-04 21:20:07'),
(3129, 3, '2024-08-04 17:20:07', '2024-08-04 17:20:07', 0, NULL, '2024-08-04 21:20:07', '2024-08-04 21:20:07'),
(3130, 5, '2024-08-04 17:20:08', '2024-08-04 17:20:08', 0, NULL, '2024-08-04 21:20:08', '2024-08-04 21:20:08'),
(3131, 1, '2024-08-04 17:30:05', '2024-08-04 17:30:06', 0, NULL, '2024-08-04 21:30:06', '2024-08-04 21:30:06'),
(3132, 2, '2024-08-04 17:30:07', '2024-08-04 17:30:07', 0, NULL, '2024-08-04 21:30:07', '2024-08-04 21:30:07'),
(3133, 3, '2024-08-04 17:30:07', '2024-08-04 17:30:07', 0, NULL, '2024-08-04 21:30:07', '2024-08-04 21:30:07'),
(3134, 5, '2024-08-04 17:30:08', '2024-08-04 17:30:08', 0, NULL, '2024-08-04 21:30:10', '2024-08-04 21:30:10'),
(3135, 1, '2024-08-04 17:35:07', '2024-08-04 17:35:07', 0, NULL, '2024-08-04 21:35:08', '2024-08-04 21:35:08'),
(3136, 2, '2024-08-04 17:40:05', '2024-08-04 17:40:05', 0, NULL, '2024-08-04 21:40:05', '2024-08-04 21:40:05'),
(3137, 3, '2024-08-04 17:40:06', '2024-08-04 17:40:06', 0, NULL, '2024-08-04 21:40:06', '2024-08-04 21:40:06'),
(3138, 5, '2024-08-04 17:40:07', '2024-08-04 17:40:07', 0, NULL, '2024-08-04 21:40:07', '2024-08-04 21:40:07'),
(3139, 1, '2024-08-04 17:45:05', '2024-08-04 17:45:05', 0, NULL, '2024-08-04 21:45:05', '2024-08-04 21:45:05'),
(3140, 1, '2024-08-04 17:50:07', '2024-08-04 17:50:07', 0, NULL, '2024-08-04 21:50:07', '2024-08-04 21:50:07'),
(3141, 2, '2024-08-04 17:50:08', '2024-08-04 17:50:08', 0, NULL, '2024-08-04 21:50:08', '2024-08-04 21:50:08'),
(3142, 3, '2024-08-04 17:50:09', '2024-08-04 17:50:09', 0, NULL, '2024-08-04 21:50:09', '2024-08-04 21:50:09'),
(3143, 5, '2024-08-04 17:50:09', '2024-08-04 17:50:09', 0, NULL, '2024-08-04 21:50:09', '2024-08-04 21:50:09'),
(3144, 1, '2024-08-04 18:00:11', '2024-08-04 18:00:11', 0, NULL, '2024-08-04 22:00:11', '2024-08-04 22:00:11'),
(3145, 2, '2024-08-04 18:00:11', '2024-08-04 18:00:11', 0, NULL, '2024-08-04 22:00:12', '2024-08-04 22:00:12'),
(3146, 3, '2024-08-04 18:00:12', '2024-08-04 18:00:12', 0, NULL, '2024-08-04 22:00:12', '2024-08-04 22:00:12'),
(3147, 5, '2024-08-04 18:00:12', '2024-08-04 18:00:12', 0, NULL, '2024-08-04 22:00:12', '2024-08-04 22:00:12'),
(3148, 1, '2024-08-04 18:10:09', '2024-08-04 18:10:09', 0, NULL, '2024-08-04 22:10:09', '2024-08-04 22:10:09'),
(3149, 2, '2024-08-04 18:10:10', '2024-08-04 18:10:10', 0, NULL, '2024-08-04 22:10:10', '2024-08-04 22:10:10'),
(3150, 3, '2024-08-04 18:10:10', '2024-08-04 18:10:10', 0, NULL, '2024-08-04 22:10:10', '2024-08-04 22:10:10'),
(3151, 5, '2024-08-04 18:10:10', '2024-08-04 18:10:10', 0, NULL, '2024-08-04 22:10:11', '2024-08-04 22:10:11'),
(3152, 1, '2024-08-04 18:20:04', '2024-08-04 18:20:04', 0, NULL, '2024-08-04 22:20:05', '2024-08-04 22:20:05'),
(3153, 2, '2024-08-04 18:20:05', '2024-08-04 18:20:05', 0, NULL, '2024-08-04 22:20:05', '2024-08-04 22:20:05'),
(3154, 3, '2024-08-04 18:20:06', '2024-08-04 18:20:06', 0, NULL, '2024-08-04 22:20:07', '2024-08-04 22:20:07'),
(3155, 5, '2024-08-04 18:20:07', '2024-08-04 18:20:07', 0, NULL, '2024-08-04 22:20:08', '2024-08-04 22:20:08'),
(3156, 1, '2024-08-04 18:25:07', '2024-08-04 18:25:07', 0, NULL, '2024-08-04 22:25:07', '2024-08-04 22:25:07'),
(3157, 2, '2024-08-04 18:25:07', '2024-08-04 18:25:07', 0, NULL, '2024-08-04 22:25:08', '2024-08-04 22:25:08'),
(3158, 3, '2024-08-04 18:25:08', '2024-08-04 18:25:08', 0, NULL, '2024-08-04 22:25:08', '2024-08-04 22:25:08'),
(3159, 5, '2024-08-04 18:30:06', '2024-08-04 18:30:06', 0, NULL, '2024-08-04 22:30:07', '2024-08-04 22:30:07'),
(3160, 1, '2024-08-04 18:35:09', '2024-08-04 18:35:09', 0, NULL, '2024-08-04 22:35:10', '2024-08-04 22:35:10'),
(3161, 2, '2024-08-04 18:35:10', '2024-08-04 18:35:10', 0, NULL, '2024-08-04 22:35:10', '2024-08-04 22:35:10'),
(3162, 3, '2024-08-04 18:35:10', '2024-08-04 18:35:10', 0, NULL, '2024-08-04 22:35:11', '2024-08-04 22:35:11'),
(3163, 5, '2024-08-04 18:35:11', '2024-08-04 18:35:11', 0, NULL, '2024-08-04 22:35:11', '2024-08-04 22:35:11'),
(3164, 1, '2024-08-04 18:45:07', '2024-08-04 18:45:07', 0, NULL, '2024-08-04 22:45:07', '2024-08-04 22:45:07'),
(3165, 2, '2024-08-04 18:45:08', '2024-08-04 18:45:08', 0, NULL, '2024-08-04 22:45:08', '2024-08-04 22:45:08'),
(3166, 3, '2024-08-04 18:45:09', '2024-08-04 18:45:09', 0, NULL, '2024-08-04 22:45:11', '2024-08-04 22:45:11'),
(3167, 5, '2024-08-04 18:45:12', '2024-08-04 18:45:12', 0, NULL, '2024-08-04 22:45:12', '2024-08-04 22:45:12'),
(3168, 1, '2024-08-04 18:55:05', '2024-08-04 18:55:06', 0, NULL, '2024-08-04 22:55:06', '2024-08-04 22:55:06'),
(3169, 2, '2024-08-04 18:55:06', '2024-08-04 18:55:06', 0, NULL, '2024-08-04 22:55:07', '2024-08-04 22:55:07'),
(3170, 3, '2024-08-04 18:55:08', '2024-08-04 18:55:08', 0, NULL, '2024-08-04 22:55:08', '2024-08-04 22:55:08'),
(3171, 5, '2024-08-04 18:55:08', '2024-08-04 18:55:08', 0, NULL, '2024-08-04 22:55:08', '2024-08-04 22:55:08'),
(3172, 1, '2024-08-04 19:05:10', '2024-08-04 19:05:10', 0, NULL, '2024-08-04 23:05:11', '2024-08-04 23:05:11'),
(3173, 2, '2024-08-04 19:05:11', '2024-08-04 19:05:11', 0, NULL, '2024-08-04 23:05:11', '2024-08-04 23:05:11'),
(3174, 3, '2024-08-04 19:05:11', '2024-08-04 19:05:11', 0, NULL, '2024-08-04 23:05:11', '2024-08-04 23:05:11'),
(3175, 5, '2024-08-04 19:05:11', '2024-08-04 19:05:11', 0, NULL, '2024-08-04 23:05:12', '2024-08-04 23:05:12'),
(3176, 1, '2024-08-04 19:15:07', '2024-08-04 19:15:07', 0, NULL, '2024-08-04 23:15:07', '2024-08-04 23:15:07'),
(3177, 2, '2024-08-04 19:15:08', '2024-08-04 19:15:08', 0, NULL, '2024-08-04 23:15:08', '2024-08-04 23:15:08'),
(3178, 3, '2024-08-04 19:15:08', '2024-08-04 19:15:08', 0, NULL, '2024-08-04 23:15:08', '2024-08-04 23:15:08'),
(3179, 5, '2024-08-04 19:15:09', '2024-08-04 19:15:09', 0, NULL, '2024-08-04 23:15:09', '2024-08-04 23:15:09'),
(3180, 1, '2024-08-04 19:25:05', '2024-08-04 19:25:05', 0, NULL, '2024-08-04 23:25:05', '2024-08-04 23:25:05'),
(3181, 2, '2024-08-04 19:25:06', '2024-08-04 19:25:06', 0, NULL, '2024-08-04 23:25:07', '2024-08-04 23:25:07');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(3182, 3, '2024-08-04 19:25:07', '2024-08-04 19:25:07', 0, NULL, '2024-08-04 23:25:07', '2024-08-04 23:25:07'),
(3183, 5, '2024-08-04 19:25:08', '2024-08-04 19:25:08', 0, NULL, '2024-08-04 23:25:08', '2024-08-04 23:25:08'),
(3184, 1, '2024-08-04 19:30:09', '2024-08-04 19:30:09', 0, NULL, '2024-08-04 23:30:10', '2024-08-04 23:30:10'),
(3185, 2, '2024-08-04 19:30:10', '2024-08-04 19:30:10', 0, NULL, '2024-08-04 23:30:10', '2024-08-04 23:30:10'),
(3186, 3, '2024-08-04 19:30:10', '2024-08-04 19:30:10', 0, NULL, '2024-08-04 23:30:11', '2024-08-04 23:30:11'),
(3187, 5, '2024-08-04 19:30:11', '2024-08-04 19:30:11', 0, NULL, '2024-08-04 23:30:11', '2024-08-04 23:30:11'),
(3188, 1, '2024-08-04 19:40:05', '2024-08-04 19:40:05', 0, NULL, '2024-08-04 23:40:05', '2024-08-04 23:40:05'),
(3189, 2, '2024-08-04 19:40:06', '2024-08-04 19:40:06', 0, NULL, '2024-08-04 23:40:07', '2024-08-04 23:40:07'),
(3190, 3, '2024-08-04 19:40:07', '2024-08-04 19:40:07', 0, NULL, '2024-08-04 23:40:08', '2024-08-04 23:40:08'),
(3191, 5, '2024-08-04 19:40:08', '2024-08-04 19:40:08', 0, NULL, '2024-08-04 23:40:09', '2024-08-04 23:40:09'),
(3192, 1, '2024-08-04 19:45:07', '2024-08-04 19:45:07', 0, NULL, '2024-08-04 23:45:07', '2024-08-04 23:45:07'),
(3193, 1, '2024-08-04 19:50:11', '2024-08-04 19:50:11', 0, NULL, '2024-08-04 23:50:12', '2024-08-04 23:50:12'),
(3194, 2, '2024-08-04 19:50:12', '2024-08-04 19:50:12', 0, NULL, '2024-08-04 23:50:12', '2024-08-04 23:50:12'),
(3195, 3, '2024-08-04 19:50:13', '2024-08-04 19:50:13', 0, NULL, '2024-08-04 23:50:13', '2024-08-04 23:50:13'),
(3196, 5, '2024-08-04 19:50:13', '2024-08-04 19:50:13', 0, NULL, '2024-08-04 23:50:13', '2024-08-04 23:50:13'),
(3197, 1, '2024-08-04 20:00:15', '2024-08-04 20:00:15', 0, NULL, '2024-08-05 00:00:16', '2024-08-05 00:00:16'),
(3198, 2, '2024-08-04 20:00:16', '2024-08-04 20:00:16', 0, NULL, '2024-08-05 00:00:16', '2024-08-05 00:00:16'),
(3199, 3, '2024-08-04 20:00:16', '2024-08-04 20:00:16', 0, NULL, '2024-08-05 00:00:17', '2024-08-05 00:00:17'),
(3200, 5, '2024-08-04 20:00:17', '2024-08-04 20:00:17', 0, NULL, '2024-08-05 00:00:17', '2024-08-05 00:00:17'),
(3201, 1, '2024-08-04 20:10:11', '2024-08-04 20:10:11', 0, NULL, '2024-08-05 00:10:11', '2024-08-05 00:10:11'),
(3202, 2, '2024-08-04 20:10:11', '2024-08-04 20:10:11', 0, NULL, '2024-08-05 00:10:12', '2024-08-05 00:10:12'),
(3203, 3, '2024-08-04 20:10:12', '2024-08-04 20:10:12', 0, NULL, '2024-08-05 00:10:12', '2024-08-05 00:10:12'),
(3204, 5, '2024-08-04 20:10:12', '2024-08-04 20:10:12', 0, NULL, '2024-08-05 00:10:12', '2024-08-05 00:10:12'),
(3205, 1, '2024-08-04 20:20:11', '2024-08-04 20:20:12', 0, NULL, '2024-08-05 00:20:12', '2024-08-05 00:20:12'),
(3206, 2, '2024-08-04 20:20:12', '2024-08-04 20:20:12', 0, NULL, '2024-08-05 00:20:12', '2024-08-05 00:20:12'),
(3207, 3, '2024-08-04 20:20:12', '2024-08-04 20:20:12', 0, NULL, '2024-08-05 00:20:13', '2024-08-05 00:20:13'),
(3208, 5, '2024-08-04 20:20:13', '2024-08-04 20:20:13', 0, NULL, '2024-08-05 00:20:13', '2024-08-05 00:20:13'),
(3209, 1, '2024-08-04 20:30:10', '2024-08-04 20:30:10', 0, NULL, '2024-08-05 00:30:11', '2024-08-05 00:30:11'),
(3210, 2, '2024-08-04 20:30:11', '2024-08-04 20:30:11', 0, NULL, '2024-08-05 00:30:11', '2024-08-05 00:30:11'),
(3211, 3, '2024-08-04 20:30:11', '2024-08-04 20:30:11', 0, NULL, '2024-08-05 00:30:11', '2024-08-05 00:30:11'),
(3212, 5, '2024-08-04 20:30:12', '2024-08-04 20:30:12', 0, NULL, '2024-08-05 00:30:12', '2024-08-05 00:30:12'),
(3213, 1, '2024-08-04 20:40:06', '2024-08-04 20:40:06', 0, NULL, '2024-08-05 00:40:06', '2024-08-05 00:40:06'),
(3214, 2, '2024-08-04 20:40:06', '2024-08-04 20:40:06', 0, NULL, '2024-08-05 00:40:07', '2024-08-05 00:40:07'),
(3215, 3, '2024-08-04 20:40:07', '2024-08-04 20:40:07', 0, NULL, '2024-08-05 00:40:08', '2024-08-05 00:40:08'),
(3216, 5, '2024-08-04 20:40:08', '2024-08-04 20:40:08', 0, NULL, '2024-08-05 00:40:08', '2024-08-05 00:40:08'),
(3217, 1, '2024-08-04 20:45:08', '2024-08-04 20:45:08', 0, NULL, '2024-08-05 00:45:08', '2024-08-05 00:45:08'),
(3218, 2, '2024-08-04 20:45:09', '2024-08-04 20:45:09', 0, NULL, '2024-08-05 00:45:09', '2024-08-05 00:45:09'),
(3219, 3, '2024-08-04 20:45:09', '2024-08-04 20:45:09', 0, NULL, '2024-08-05 00:45:09', '2024-08-05 00:45:09'),
(3220, 5, '2024-08-04 20:50:04', '2024-08-04 20:50:04', 0, NULL, '2024-08-05 00:50:05', '2024-08-05 00:50:05'),
(3221, 1, '2024-08-04 20:55:07', '2024-08-04 20:55:07', 0, NULL, '2024-08-05 00:55:08', '2024-08-05 00:55:08'),
(3222, 2, '2024-08-04 20:55:08', '2024-08-04 20:55:08', 0, NULL, '2024-08-05 00:55:08', '2024-08-05 00:55:08'),
(3223, 3, '2024-08-04 20:55:08', '2024-08-04 20:55:08', 0, NULL, '2024-08-05 00:55:08', '2024-08-05 00:55:08'),
(3224, 5, '2024-08-04 20:55:08', '2024-08-04 20:55:08', 0, NULL, '2024-08-05 00:55:09', '2024-08-05 00:55:09'),
(3225, 1, '2024-08-04 21:00:08', '2024-08-04 21:00:08', 0, NULL, '2024-08-05 01:00:09', '2024-08-05 01:00:09'),
(3226, 2, '2024-08-04 21:05:04', '2024-08-04 21:05:04', 0, NULL, '2024-08-05 01:05:05', '2024-08-05 01:05:05'),
(3227, 3, '2024-08-04 21:05:06', '2024-08-04 21:05:06', 0, NULL, '2024-08-05 01:05:06', '2024-08-05 01:05:06'),
(3228, 5, '2024-08-04 21:05:06', '2024-08-04 21:05:06', 0, NULL, '2024-08-05 01:05:07', '2024-08-05 01:05:07'),
(3229, 1, '2024-08-04 21:10:04', '2024-08-04 21:10:04', 0, NULL, '2024-08-05 01:10:04', '2024-08-05 01:10:04'),
(3230, 1, '2024-08-04 21:15:07', '2024-08-04 21:15:07', 0, NULL, '2024-08-05 01:15:08', '2024-08-05 01:15:08'),
(3231, 2, '2024-08-04 21:15:12', '2024-08-04 21:15:12', 0, NULL, '2024-08-05 01:15:13', '2024-08-05 01:15:13'),
(3232, 3, '2024-08-04 21:15:13', '2024-08-04 21:15:13', 0, NULL, '2024-08-05 01:15:13', '2024-08-05 01:15:13'),
(3233, 5, '2024-08-04 21:15:13', '2024-08-04 21:15:13', 0, NULL, '2024-08-05 01:15:14', '2024-08-05 01:15:14'),
(3234, 1, '2024-08-04 21:25:07', '2024-08-04 21:25:07', 0, NULL, '2024-08-05 01:25:07', '2024-08-05 01:25:07'),
(3235, 2, '2024-08-04 21:25:08', '2024-08-04 21:25:08', 0, NULL, '2024-08-05 01:25:08', '2024-08-05 01:25:08'),
(3236, 3, '2024-08-04 21:25:09', '2024-08-04 21:25:09', 0, NULL, '2024-08-05 01:25:09', '2024-08-05 01:25:09'),
(3237, 5, '2024-08-04 21:25:09', '2024-08-04 21:25:09', 0, NULL, '2024-08-05 01:25:10', '2024-08-05 01:25:10'),
(3238, 1, '2024-08-04 21:35:05', '2024-08-04 21:35:05', 0, NULL, '2024-08-05 01:35:06', '2024-08-05 01:35:06'),
(3239, 2, '2024-08-04 21:35:06', '2024-08-04 21:35:06', 0, NULL, '2024-08-05 01:35:07', '2024-08-05 01:35:07'),
(3240, 3, '2024-08-04 21:35:07', '2024-08-04 21:35:07', 0, NULL, '2024-08-05 01:35:08', '2024-08-05 01:35:08'),
(3241, 5, '2024-08-04 21:35:09', '2024-08-04 21:35:09', 0, NULL, '2024-08-05 01:35:09', '2024-08-05 01:35:09'),
(3242, 1, '2024-08-04 21:40:08', '2024-08-04 21:40:08', 0, NULL, '2024-08-05 01:40:08', '2024-08-05 01:40:08'),
(3243, 2, '2024-08-04 21:45:04', '2024-08-04 21:45:05', 0, NULL, '2024-08-05 01:45:05', '2024-08-05 01:45:05'),
(3244, 3, '2024-08-04 21:45:05', '2024-08-04 21:45:05', 0, NULL, '2024-08-05 01:45:06', '2024-08-05 01:45:06'),
(3245, 5, '2024-08-04 21:45:06', '2024-08-04 21:45:06', 0, NULL, '2024-08-05 01:45:06', '2024-08-05 01:45:06'),
(3246, 1, '2024-08-04 21:50:11', '2024-08-04 21:50:12', 0, NULL, '2024-08-05 01:50:12', '2024-08-05 01:50:12'),
(3247, 2, '2024-08-04 21:50:12', '2024-08-04 21:50:12', 0, NULL, '2024-08-05 01:50:12', '2024-08-05 01:50:12'),
(3248, 3, '2024-08-04 21:50:13', '2024-08-04 21:50:13', 0, NULL, '2024-08-05 01:50:13', '2024-08-05 01:50:13'),
(3249, 5, '2024-08-04 21:50:13', '2024-08-04 21:50:13', 0, NULL, '2024-08-05 01:50:13', '2024-08-05 01:50:13'),
(3250, 1, '2024-08-04 22:00:10', '2024-08-04 22:00:12', 1, NULL, '2024-08-05 02:00:12', '2024-08-05 02:00:12'),
(3251, 2, '2024-08-04 22:00:13', '2024-08-04 22:00:13', 0, NULL, '2024-08-05 02:00:14', '2024-08-05 02:00:14'),
(3252, 3, '2024-08-04 22:00:14', '2024-08-04 22:00:14', 0, NULL, '2024-08-05 02:00:14', '2024-08-05 02:00:14'),
(3253, 5, '2024-08-04 22:00:14', '2024-08-04 22:00:15', 0, NULL, '2024-08-05 02:00:15', '2024-08-05 02:00:15'),
(3254, 1, '2024-08-04 22:10:04', '2024-08-04 22:10:04', 0, NULL, '2024-08-05 02:10:05', '2024-08-05 02:10:05'),
(3255, 2, '2024-08-04 22:10:05', '2024-08-04 22:10:05', 0, NULL, '2024-08-05 02:10:06', '2024-08-05 02:10:06'),
(3256, 3, '2024-08-04 22:10:06', '2024-08-04 22:10:06', 0, NULL, '2024-08-05 02:10:06', '2024-08-05 02:10:06'),
(3257, 5, '2024-08-04 22:10:07', '2024-08-04 22:10:07', 0, NULL, '2024-08-05 02:10:07', '2024-08-05 02:10:07'),
(3258, 1, '2024-08-04 22:15:06', '2024-08-04 22:15:06', 0, NULL, '2024-08-05 02:15:07', '2024-08-05 02:15:07'),
(3259, 2, '2024-08-04 22:15:08', '2024-08-04 22:15:08', 0, NULL, '2024-08-05 02:15:08', '2024-08-05 02:15:08'),
(3260, 3, '2024-08-04 22:20:06', '2024-08-04 22:20:06', 0, NULL, '2024-08-05 02:20:07', '2024-08-05 02:20:07'),
(3261, 5, '2024-08-04 22:20:07', '2024-08-04 22:20:07', 0, NULL, '2024-08-05 02:20:08', '2024-08-05 02:20:08'),
(3262, 1, '2024-08-04 22:25:07', '2024-08-04 22:25:07', 0, NULL, '2024-08-05 02:25:07', '2024-08-05 02:25:07'),
(3263, 2, '2024-08-04 22:25:08', '2024-08-04 22:25:08', 0, NULL, '2024-08-05 02:25:08', '2024-08-05 02:25:08'),
(3264, 3, '2024-08-04 22:25:08', '2024-08-04 22:25:08', 0, NULL, '2024-08-05 02:25:08', '2024-08-05 02:25:08'),
(3265, 1, '2024-08-04 22:30:08', '2024-08-04 22:30:08', 0, NULL, '2024-08-05 02:30:08', '2024-08-05 02:30:08'),
(3266, 5, '2024-08-04 22:30:08', '2024-08-04 22:30:08', 0, NULL, '2024-08-05 02:30:09', '2024-08-05 02:30:09'),
(3267, 2, '2024-08-04 22:35:07', '2024-08-04 22:35:07', 0, NULL, '2024-08-05 02:35:08', '2024-08-05 02:35:08'),
(3268, 3, '2024-08-04 22:35:08', '2024-08-04 22:35:08', 0, NULL, '2024-08-05 02:35:08', '2024-08-05 02:35:08'),
(3269, 1, '2024-08-04 22:40:10', '2024-08-04 22:40:10', 0, NULL, '2024-08-05 02:40:10', '2024-08-05 02:40:10'),
(3270, 2, '2024-08-04 22:40:10', '2024-08-04 22:40:10', 0, NULL, '2024-08-05 02:40:10', '2024-08-05 02:40:10'),
(3271, 3, '2024-08-04 22:40:11', '2024-08-04 22:40:11', 0, NULL, '2024-08-05 02:40:11', '2024-08-05 02:40:11'),
(3272, 5, '2024-08-04 22:40:11', '2024-08-04 22:40:11', 0, NULL, '2024-08-05 02:40:11', '2024-08-05 02:40:11'),
(3273, 1, '2024-08-04 22:50:08', '2024-08-04 22:50:08', 0, NULL, '2024-08-05 02:50:09', '2024-08-05 02:50:09'),
(3274, 2, '2024-08-04 22:50:09', '2024-08-04 22:50:09', 0, NULL, '2024-08-05 02:50:09', '2024-08-05 02:50:09'),
(3275, 3, '2024-08-04 22:50:10', '2024-08-04 22:50:10', 0, NULL, '2024-08-05 02:50:10', '2024-08-05 02:50:10'),
(3276, 5, '2024-08-04 22:50:10', '2024-08-04 22:50:11', 0, NULL, '2024-08-05 02:50:11', '2024-08-05 02:50:11'),
(3277, 1, '2024-08-04 23:00:12', '2024-08-04 23:00:12', 0, NULL, '2024-08-05 03:00:12', '2024-08-05 03:00:12'),
(3278, 2, '2024-08-04 23:00:13', '2024-08-04 23:00:13', 0, NULL, '2024-08-05 03:00:13', '2024-08-05 03:00:13'),
(3279, 3, '2024-08-04 23:00:13', '2024-08-04 23:00:13', 0, NULL, '2024-08-05 03:00:14', '2024-08-05 03:00:14'),
(3280, 5, '2024-08-04 23:00:14', '2024-08-04 23:00:14', 0, NULL, '2024-08-05 03:00:14', '2024-08-05 03:00:14'),
(3281, 1, '2024-08-04 23:10:08', '2024-08-04 23:10:08', 0, NULL, '2024-08-05 03:10:09', '2024-08-05 03:10:09'),
(3282, 2, '2024-08-04 23:10:09', '2024-08-04 23:10:09', 0, NULL, '2024-08-05 03:10:09', '2024-08-05 03:10:09'),
(3283, 3, '2024-08-04 23:10:09', '2024-08-04 23:10:09', 0, NULL, '2024-08-05 03:10:10', '2024-08-05 03:10:10'),
(3284, 5, '2024-08-04 23:10:10', '2024-08-04 23:10:10', 0, NULL, '2024-08-05 03:10:10', '2024-08-05 03:10:10'),
(3285, 1, '2024-08-04 23:20:06', '2024-08-04 23:20:06', 0, NULL, '2024-08-05 03:20:07', '2024-08-05 03:20:07'),
(3286, 2, '2024-08-04 23:20:07', '2024-08-04 23:20:07', 0, NULL, '2024-08-05 03:20:08', '2024-08-05 03:20:08'),
(3287, 3, '2024-08-04 23:20:09', '2024-08-04 23:20:09', 0, NULL, '2024-08-05 03:20:09', '2024-08-05 03:20:09'),
(3288, 5, '2024-08-04 23:20:10', '2024-08-04 23:20:10', 0, NULL, '2024-08-05 03:20:10', '2024-08-05 03:20:10'),
(3289, 1, '2024-08-04 23:25:10', '2024-08-04 23:25:12', 1, NULL, '2024-08-05 03:25:13', '2024-08-05 03:25:13'),
(3290, 2, '2024-08-04 23:25:13', '2024-08-04 23:25:13', 0, NULL, '2024-08-05 03:25:13', '2024-08-05 03:25:13'),
(3291, 3, '2024-08-04 23:25:14', '2024-08-04 23:25:14', 0, NULL, '2024-08-05 03:25:14', '2024-08-05 03:25:14'),
(3292, 5, '2024-08-04 23:30:09', '2024-08-04 23:30:09', 0, NULL, '2024-08-05 03:30:09', '2024-08-05 03:30:09'),
(3293, 1, '2024-08-04 23:35:07', '2024-08-04 23:35:07', 0, NULL, '2024-08-05 03:35:08', '2024-08-05 03:35:08'),
(3294, 2, '2024-08-04 23:35:08', '2024-08-04 23:35:08', 0, NULL, '2024-08-05 03:35:08', '2024-08-05 03:35:08'),
(3295, 3, '2024-08-04 23:35:09', '2024-08-04 23:35:09', 0, NULL, '2024-08-05 03:35:09', '2024-08-05 03:35:09'),
(3296, 5, '2024-08-04 23:40:03', '2024-08-04 23:40:03', 0, NULL, '2024-08-05 03:40:04', '2024-08-05 03:40:04'),
(3297, 1, '2024-08-04 23:45:07', '2024-08-04 23:45:07', 0, NULL, '2024-08-05 03:45:08', '2024-08-05 03:45:08'),
(3298, 2, '2024-08-04 23:45:08', '2024-08-04 23:45:08', 0, NULL, '2024-08-05 03:45:09', '2024-08-05 03:45:09'),
(3299, 3, '2024-08-04 23:45:10', '2024-08-04 23:45:10', 0, NULL, '2024-08-05 03:45:10', '2024-08-05 03:45:10'),
(3300, 5, '2024-08-04 23:45:10', '2024-08-04 23:45:10', 0, NULL, '2024-08-05 03:45:10', '2024-08-05 03:45:10'),
(3301, 1, '2024-08-04 23:50:10', '2024-08-04 23:50:10', 0, NULL, '2024-08-05 03:50:10', '2024-08-05 03:50:10'),
(3302, 2, '2024-08-04 23:50:11', '2024-08-04 23:50:11', 0, NULL, '2024-08-05 03:50:11', '2024-08-05 03:50:11'),
(3303, 3, '2024-08-04 23:55:08', '2024-08-04 23:55:08', 0, NULL, '2024-08-05 03:55:08', '2024-08-05 03:55:08'),
(3304, 5, '2024-08-04 23:55:09', '2024-08-04 23:55:09', 0, NULL, '2024-08-05 03:55:10', '2024-08-05 03:55:10'),
(3305, 1, '2024-08-05 00:00:07', '2024-08-05 00:00:08', 1, NULL, '2024-08-05 04:00:08', '2024-08-05 04:00:08'),
(3306, 2, '2024-08-05 00:00:09', '2024-08-05 00:00:09', 0, NULL, '2024-08-05 04:00:09', '2024-08-05 04:00:09'),
(3307, 3, '2024-08-05 00:05:04', '2024-08-05 00:05:04', 0, NULL, '2024-08-05 04:05:05', '2024-08-05 04:05:05'),
(3308, 5, '2024-08-05 00:05:10', '2024-08-05 00:05:10', 0, NULL, '2024-08-05 04:05:10', '2024-08-05 04:05:10'),
(3309, 1, '2024-08-05 00:10:06', '2024-08-05 00:10:06', 0, NULL, '2024-08-05 04:10:07', '2024-08-05 04:10:07'),
(3310, 2, '2024-08-05 00:10:08', '2024-08-05 00:10:08', 0, NULL, '2024-08-05 04:10:09', '2024-08-05 04:10:09'),
(3311, 3, '2024-08-05 00:10:09', '2024-08-05 00:10:09', 0, NULL, '2024-08-05 04:10:09', '2024-08-05 04:10:09'),
(3312, 5, '2024-08-05 00:15:06', '2024-08-05 00:15:06', 0, NULL, '2024-08-05 04:15:07', '2024-08-05 04:15:07'),
(3313, 1, '2024-08-05 00:20:05', '2024-08-05 00:20:05', 0, NULL, '2024-08-05 04:20:05', '2024-08-05 04:20:05'),
(3314, 2, '2024-08-05 00:20:06', '2024-08-05 00:20:06', 0, NULL, '2024-08-05 04:20:06', '2024-08-05 04:20:06'),
(3315, 3, '2024-08-05 00:20:06', '2024-08-05 00:20:06', 0, NULL, '2024-08-05 04:20:06', '2024-08-05 04:20:06'),
(3316, 1, '2024-08-05 00:25:10', '2024-08-05 00:25:10', 0, NULL, '2024-08-05 04:25:12', '2024-08-05 04:25:12'),
(3317, 2, '2024-08-05 00:25:12', '2024-08-05 00:25:12', 0, NULL, '2024-08-05 04:25:12', '2024-08-05 04:25:12'),
(3318, 3, '2024-08-05 00:25:13', '2024-08-05 00:25:13', 0, NULL, '2024-08-05 04:25:13', '2024-08-05 04:25:13'),
(3319, 5, '2024-08-05 00:25:13', '2024-08-05 00:25:13', 0, NULL, '2024-08-05 04:25:14', '2024-08-05 04:25:14'),
(3320, 1, '2024-08-05 00:35:07', '2024-08-05 00:35:07', 0, NULL, '2024-08-05 04:35:07', '2024-08-05 04:35:07'),
(3321, 2, '2024-08-05 00:35:08', '2024-08-05 00:35:08', 0, NULL, '2024-08-05 04:35:08', '2024-08-05 04:35:08'),
(3322, 3, '2024-08-05 00:35:08', '2024-08-05 00:35:08', 0, NULL, '2024-08-05 04:35:09', '2024-08-05 04:35:09'),
(3323, 5, '2024-08-05 00:35:09', '2024-08-05 00:35:09', 0, NULL, '2024-08-05 04:35:09', '2024-08-05 04:35:09'),
(3324, 1, '2024-08-05 00:45:10', '2024-08-05 00:45:10', 0, NULL, '2024-08-05 04:45:10', '2024-08-05 04:45:10'),
(3325, 2, '2024-08-05 00:45:10', '2024-08-05 00:45:10', 0, NULL, '2024-08-05 04:45:10', '2024-08-05 04:45:10'),
(3326, 3, '2024-08-05 00:45:11', '2024-08-05 00:45:11', 0, NULL, '2024-08-05 04:45:11', '2024-08-05 04:45:11'),
(3327, 5, '2024-08-05 00:45:11', '2024-08-05 00:45:11', 0, NULL, '2024-08-05 04:45:11', '2024-08-05 04:45:11'),
(3328, 1, '2024-08-05 00:55:07', '2024-08-05 00:55:07', 0, NULL, '2024-08-05 04:55:08', '2024-08-05 04:55:08'),
(3329, 2, '2024-08-05 00:55:08', '2024-08-05 00:55:08', 0, NULL, '2024-08-05 04:55:08', '2024-08-05 04:55:08'),
(3330, 3, '2024-08-05 00:55:09', '2024-08-05 00:55:09', 0, NULL, '2024-08-05 04:55:09', '2024-08-05 04:55:09'),
(3331, 5, '2024-08-05 00:55:09', '2024-08-05 00:55:09', 0, NULL, '2024-08-05 04:55:10', '2024-08-05 04:55:10'),
(3332, 1, '2024-08-05 01:00:08', '2024-08-05 01:00:08', 0, NULL, '2024-08-05 05:00:08', '2024-08-05 05:00:08'),
(3333, 2, '2024-08-05 01:05:07', '2024-08-05 01:05:07', 0, NULL, '2024-08-05 05:05:07', '2024-08-05 05:05:07'),
(3334, 3, '2024-08-05 01:05:08', '2024-08-05 01:05:08', 0, NULL, '2024-08-05 05:05:09', '2024-08-05 05:05:09'),
(3335, 5, '2024-08-05 01:05:10', '2024-08-05 01:05:10', 0, NULL, '2024-08-05 05:05:10', '2024-08-05 05:05:10'),
(3336, 1, '2024-08-05 01:10:06', '2024-08-05 01:10:06', 0, NULL, '2024-08-05 05:10:07', '2024-08-05 05:10:07'),
(3337, 2, '2024-08-05 01:15:05', '2024-08-05 01:15:05', 0, NULL, '2024-08-05 05:15:05', '2024-08-05 05:15:05'),
(3338, 3, '2024-08-05 01:15:05', '2024-08-05 01:15:05', 0, NULL, '2024-08-05 05:15:06', '2024-08-05 05:15:06'),
(3339, 5, '2024-08-05 01:15:06', '2024-08-05 01:15:06', 0, NULL, '2024-08-05 05:15:07', '2024-08-05 05:15:07'),
(3340, 1, '2024-08-05 01:20:05', '2024-08-05 01:20:05', 0, NULL, '2024-08-05 05:20:05', '2024-08-05 05:20:05'),
(3341, 1, '2024-08-05 01:25:08', '2024-08-05 01:25:08', 0, NULL, '2024-08-05 05:25:08', '2024-08-05 05:25:08'),
(3342, 2, '2024-08-05 01:25:08', '2024-08-05 01:25:08', 0, NULL, '2024-08-05 05:25:09', '2024-08-05 05:25:09'),
(3343, 3, '2024-08-05 01:25:09', '2024-08-05 01:25:09', 0, NULL, '2024-08-05 05:25:09', '2024-08-05 05:25:09'),
(3344, 5, '2024-08-05 01:25:09', '2024-08-05 01:25:09', 0, NULL, '2024-08-05 05:25:10', '2024-08-05 05:25:10'),
(3345, 1, '2024-08-05 01:35:11', '2024-08-05 01:35:11', 0, NULL, '2024-08-05 05:35:11', '2024-08-05 05:35:11'),
(3346, 2, '2024-08-05 01:35:12', '2024-08-05 01:35:12', 0, NULL, '2024-08-05 05:35:12', '2024-08-05 05:35:12'),
(3347, 3, '2024-08-05 01:35:12', '2024-08-05 01:35:12', 0, NULL, '2024-08-05 05:35:12', '2024-08-05 05:35:12'),
(3348, 5, '2024-08-05 01:35:12', '2024-08-05 01:35:12', 0, NULL, '2024-08-05 05:35:13', '2024-08-05 05:35:13'),
(3349, 1, '2024-08-05 01:45:08', '2024-08-05 01:45:09', 0, NULL, '2024-08-05 05:45:09', '2024-08-05 05:45:09'),
(3350, 2, '2024-08-05 01:45:10', '2024-08-05 01:45:10', 0, NULL, '2024-08-05 05:45:10', '2024-08-05 05:45:10'),
(3351, 3, '2024-08-05 01:45:10', '2024-08-05 01:45:10', 0, NULL, '2024-08-05 05:45:11', '2024-08-05 05:45:11'),
(3352, 5, '2024-08-05 01:45:11', '2024-08-05 01:45:11', 0, NULL, '2024-08-05 05:45:11', '2024-08-05 05:45:11'),
(3353, 1, '2024-08-05 01:55:05', '2024-08-05 01:55:05', 0, NULL, '2024-08-05 05:55:06', '2024-08-05 05:55:06'),
(3354, 2, '2024-08-05 01:55:08', '2024-08-05 01:55:08', 0, NULL, '2024-08-05 05:55:08', '2024-08-05 05:55:08'),
(3355, 3, '2024-08-05 01:55:08', '2024-08-05 01:55:08', 0, NULL, '2024-08-05 05:55:09', '2024-08-05 05:55:09'),
(3356, 5, '2024-08-05 01:55:09', '2024-08-05 01:55:09', 0, NULL, '2024-08-05 05:55:09', '2024-08-05 05:55:09'),
(3357, 1, '2024-08-05 02:00:09', '2024-08-05 02:00:10', 0, NULL, '2024-08-05 06:00:10', '2024-08-05 06:00:10'),
(3358, 2, '2024-08-05 02:00:10', '2024-08-05 02:00:10', 0, NULL, '2024-08-05 06:00:10', '2024-08-05 06:00:10'),
(3359, 3, '2024-08-05 02:00:11', '2024-08-05 02:00:11', 0, NULL, '2024-08-05 06:00:11', '2024-08-05 06:00:11'),
(3360, 5, '2024-08-05 02:05:03', '2024-08-05 02:05:03', 0, NULL, '2024-08-05 06:05:04', '2024-08-05 06:05:04'),
(3361, 1, '2024-08-05 02:10:10', '2024-08-05 02:10:11', 1, NULL, '2024-08-05 06:10:11', '2024-08-05 06:10:11'),
(3362, 2, '2024-08-05 02:10:11', '2024-08-05 02:10:11', 0, NULL, '2024-08-05 06:10:12', '2024-08-05 06:10:12'),
(3363, 3, '2024-08-05 02:10:12', '2024-08-05 02:10:12', 0, NULL, '2024-08-05 06:10:12', '2024-08-05 06:10:12'),
(3364, 5, '2024-08-05 02:10:12', '2024-08-05 02:10:12', 0, NULL, '2024-08-05 06:10:12', '2024-08-05 06:10:12'),
(3365, 1, '2024-08-05 02:20:04', '2024-08-05 02:20:04', 0, NULL, '2024-08-05 06:20:05', '2024-08-05 06:20:05'),
(3366, 2, '2024-08-05 02:20:05', '2024-08-05 02:20:05', 0, NULL, '2024-08-05 06:20:05', '2024-08-05 06:20:05'),
(3367, 3, '2024-08-05 02:20:06', '2024-08-05 02:20:06', 0, NULL, '2024-08-05 06:20:06', '2024-08-05 06:20:06'),
(3368, 5, '2024-08-05 02:20:06', '2024-08-05 02:20:06', 0, NULL, '2024-08-05 06:20:07', '2024-08-05 06:20:07'),
(3369, 1, '2024-08-05 02:25:09', '2024-08-05 02:25:09', 0, NULL, '2024-08-05 06:25:10', '2024-08-05 06:25:10'),
(3370, 2, '2024-08-05 02:25:10', '2024-08-05 02:25:10', 0, NULL, '2024-08-05 06:25:10', '2024-08-05 06:25:10'),
(3371, 3, '2024-08-05 02:25:10', '2024-08-05 02:25:10', 0, NULL, '2024-08-05 06:25:11', '2024-08-05 06:25:11'),
(3372, 5, '2024-08-05 02:25:11', '2024-08-05 02:25:11', 0, NULL, '2024-08-05 06:25:12', '2024-08-05 06:25:12'),
(3373, 1, '2024-08-05 02:35:09', '2024-08-05 02:35:09', 0, NULL, '2024-08-05 06:35:10', '2024-08-05 06:35:10'),
(3374, 2, '2024-08-05 02:35:10', '2024-08-05 02:35:10', 0, NULL, '2024-08-05 06:35:10', '2024-08-05 06:35:10'),
(3375, 3, '2024-08-05 02:35:10', '2024-08-05 02:35:10', 0, NULL, '2024-08-05 06:35:11', '2024-08-05 06:35:11'),
(3376, 5, '2024-08-05 02:35:11', '2024-08-05 02:35:11', 0, NULL, '2024-08-05 06:35:11', '2024-08-05 06:35:11'),
(3377, 1, '2024-08-05 02:45:09', '2024-08-05 02:45:09', 0, NULL, '2024-08-05 06:45:10', '2024-08-05 06:45:10'),
(3378, 2, '2024-08-05 02:45:10', '2024-08-05 02:45:10', 0, NULL, '2024-08-05 06:45:10', '2024-08-05 06:45:10'),
(3379, 3, '2024-08-05 02:45:10', '2024-08-05 02:45:10', 0, NULL, '2024-08-05 06:45:10', '2024-08-05 06:45:10'),
(3380, 5, '2024-08-05 02:45:11', '2024-08-05 02:45:11', 0, NULL, '2024-08-05 06:45:11', '2024-08-05 06:45:11'),
(3381, 1, '2024-08-05 02:55:08', '2024-08-05 02:55:08', 0, NULL, '2024-08-05 06:55:08', '2024-08-05 06:55:08'),
(3382, 2, '2024-08-05 02:55:09', '2024-08-05 02:55:09', 0, NULL, '2024-08-05 06:55:09', '2024-08-05 06:55:09'),
(3383, 3, '2024-08-05 02:55:09', '2024-08-05 02:55:09', 0, NULL, '2024-08-05 06:55:10', '2024-08-05 06:55:10'),
(3384, 5, '2024-08-05 02:55:10', '2024-08-05 02:55:10', 0, NULL, '2024-08-05 06:55:10', '2024-08-05 06:55:10'),
(3385, 1, '2024-08-05 03:05:12', '2024-08-05 03:05:12', 0, NULL, '2024-08-05 07:05:12', '2024-08-05 07:05:12'),
(3386, 2, '2024-08-05 03:05:12', '2024-08-05 03:05:12', 0, NULL, '2024-08-05 07:05:12', '2024-08-05 07:05:12'),
(3387, 3, '2024-08-05 03:05:12', '2024-08-05 03:05:12', 0, NULL, '2024-08-05 07:05:13', '2024-08-05 07:05:13'),
(3388, 5, '2024-08-05 03:05:13', '2024-08-05 03:05:13', 0, NULL, '2024-08-05 07:05:13', '2024-08-05 07:05:13'),
(3389, 1, '2024-08-05 03:15:14', '2024-08-05 03:15:14', 0, NULL, '2024-08-05 07:15:14', '2024-08-05 07:15:14'),
(3390, 2, '2024-08-05 03:15:14', '2024-08-05 03:15:14', 0, NULL, '2024-08-05 07:15:14', '2024-08-05 07:15:14'),
(3391, 3, '2024-08-05 03:15:15', '2024-08-05 03:15:15', 0, NULL, '2024-08-05 07:15:16', '2024-08-05 07:15:16'),
(3392, 5, '2024-08-05 03:15:16', '2024-08-05 03:15:16', 0, NULL, '2024-08-05 07:15:17', '2024-08-05 07:15:17'),
(3393, 1, '2024-08-05 03:25:09', '2024-08-05 03:25:09', 0, NULL, '2024-08-05 07:25:10', '2024-08-05 07:25:10'),
(3394, 2, '2024-08-05 03:25:10', '2024-08-05 03:25:10', 0, NULL, '2024-08-05 07:25:11', '2024-08-05 07:25:11'),
(3395, 3, '2024-08-05 03:25:11', '2024-08-05 03:25:11', 0, NULL, '2024-08-05 07:25:11', '2024-08-05 07:25:11'),
(3396, 5, '2024-08-05 03:25:11', '2024-08-05 03:25:11', 0, NULL, '2024-08-05 07:25:11', '2024-08-05 07:25:11'),
(3397, 1, '2024-08-05 03:35:07', '2024-08-05 03:35:07', 0, NULL, '2024-08-05 07:35:08', '2024-08-05 07:35:08'),
(3398, 2, '2024-08-05 03:35:09', '2024-08-05 03:35:09', 0, NULL, '2024-08-05 07:35:09', '2024-08-05 07:35:09'),
(3399, 3, '2024-08-05 03:35:09', '2024-08-05 03:35:09', 0, NULL, '2024-08-05 07:35:10', '2024-08-05 07:35:10'),
(3400, 5, '2024-08-05 03:35:10', '2024-08-05 03:35:10', 0, NULL, '2024-08-05 07:35:10', '2024-08-05 07:35:10'),
(3401, 1, '2024-08-05 03:45:04', '2024-08-05 03:45:04', 0, NULL, '2024-08-05 07:45:04', '2024-08-05 07:45:04'),
(3402, 2, '2024-08-05 03:45:05', '2024-08-05 03:45:05', 0, NULL, '2024-08-05 07:45:05', '2024-08-05 07:45:05'),
(3403, 3, '2024-08-05 03:45:06', '2024-08-05 03:45:06', 0, NULL, '2024-08-05 07:45:07', '2024-08-05 07:45:07'),
(3404, 5, '2024-08-05 03:45:08', '2024-08-05 03:45:08', 0, NULL, '2024-08-05 07:45:09', '2024-08-05 07:45:09'),
(3405, 1, '2024-08-05 03:50:07', '2024-08-05 03:50:07', 0, NULL, '2024-08-05 07:50:08', '2024-08-05 07:50:08'),
(3406, 2, '2024-08-05 03:50:08', '2024-08-05 03:50:08', 0, NULL, '2024-08-05 07:50:08', '2024-08-05 07:50:08'),
(3407, 1, '2024-08-05 03:55:11', '2024-08-05 03:55:11', 0, NULL, '2024-08-05 07:55:12', '2024-08-05 07:55:12'),
(3408, 2, '2024-08-05 03:55:13', '2024-08-05 03:55:13', 0, NULL, '2024-08-05 07:55:13', '2024-08-05 07:55:13'),
(3409, 3, '2024-08-05 03:55:13', '2024-08-05 03:55:13', 0, NULL, '2024-08-05 07:55:13', '2024-08-05 07:55:13'),
(3410, 5, '2024-08-05 03:55:14', '2024-08-05 03:55:14', 0, NULL, '2024-08-05 07:55:14', '2024-08-05 07:55:14'),
(3411, 1, '2024-08-05 04:05:06', '2024-08-05 04:05:06', 0, NULL, '2024-08-05 08:05:07', '2024-08-05 08:05:07'),
(3412, 2, '2024-08-05 04:05:07', '2024-08-05 04:05:07', 0, NULL, '2024-08-05 08:05:08', '2024-08-05 08:05:08'),
(3413, 3, '2024-08-05 04:05:09', '2024-08-05 04:05:09', 0, NULL, '2024-08-05 08:05:09', '2024-08-05 08:05:09'),
(3414, 5, '2024-08-05 04:05:09', '2024-08-05 04:05:09', 0, NULL, '2024-08-05 08:05:10', '2024-08-05 08:05:10'),
(3415, 1, '2024-08-05 04:15:05', '2024-08-05 04:15:05', 0, NULL, '2024-08-05 08:15:07', '2024-08-05 08:15:07'),
(3416, 2, '2024-08-05 04:15:10', '2024-08-05 04:15:10', 0, NULL, '2024-08-05 08:15:10', '2024-08-05 08:15:10'),
(3417, 3, '2024-08-05 04:15:11', '2024-08-05 04:15:11', 0, NULL, '2024-08-05 08:15:11', '2024-08-05 08:15:11'),
(3418, 5, '2024-08-05 04:15:11', '2024-08-05 04:15:11', 0, NULL, '2024-08-05 08:15:11', '2024-08-05 08:15:11'),
(3419, 1, '2024-08-05 04:25:06', '2024-08-05 04:25:06', 0, NULL, '2024-08-05 08:25:07', '2024-08-05 08:25:07'),
(3420, 2, '2024-08-05 04:25:07', '2024-08-05 04:25:07', 0, NULL, '2024-08-05 08:25:07', '2024-08-05 08:25:07'),
(3421, 3, '2024-08-05 04:25:08', '2024-08-05 04:25:08', 0, NULL, '2024-08-05 08:25:08', '2024-08-05 08:25:08'),
(3422, 5, '2024-08-05 04:25:08', '2024-08-05 04:25:08', 0, NULL, '2024-08-05 08:25:08', '2024-08-05 08:25:08'),
(3423, 1, '2024-08-05 04:30:07', '2024-08-05 04:30:07', 0, NULL, '2024-08-05 08:30:08', '2024-08-05 08:30:08'),
(3424, 2, '2024-08-05 04:35:06', '2024-08-05 04:35:06', 0, NULL, '2024-08-05 08:35:06', '2024-08-05 08:35:06'),
(3425, 3, '2024-08-05 04:35:06', '2024-08-05 04:35:06', 0, NULL, '2024-08-05 08:35:07', '2024-08-05 08:35:07'),
(3426, 5, '2024-08-05 04:35:07', '2024-08-05 04:35:07', 0, NULL, '2024-08-05 08:35:08', '2024-08-05 08:35:08'),
(3427, 1, '2024-08-05 04:40:13', '2024-08-05 04:40:13', 0, NULL, '2024-08-05 08:40:13', '2024-08-05 08:40:13'),
(3428, 2, '2024-08-05 04:40:14', '2024-08-05 04:40:14', 0, NULL, '2024-08-05 08:40:14', '2024-08-05 08:40:14'),
(3429, 3, '2024-08-05 04:40:14', '2024-08-05 04:40:14', 0, NULL, '2024-08-05 08:40:14', '2024-08-05 08:40:14'),
(3430, 5, '2024-08-05 04:40:14', '2024-08-05 04:40:14', 0, NULL, '2024-08-05 08:40:15', '2024-08-05 08:40:15'),
(3431, 1, '2024-08-05 04:50:06', '2024-08-05 04:50:06', 0, NULL, '2024-08-05 08:50:07', '2024-08-05 08:50:07'),
(3432, 2, '2024-08-05 04:50:07', '2024-08-05 04:50:07', 0, NULL, '2024-08-05 08:50:08', '2024-08-05 08:50:08'),
(3433, 3, '2024-08-05 04:50:08', '2024-08-05 04:50:08', 0, NULL, '2024-08-05 08:50:08', '2024-08-05 08:50:08'),
(3434, 5, '2024-08-05 04:50:09', '2024-08-05 04:50:09', 0, NULL, '2024-08-05 08:50:09', '2024-08-05 08:50:09'),
(3435, 1, '2024-08-05 04:55:07', '2024-08-05 04:55:07', 0, NULL, '2024-08-05 08:55:08', '2024-08-05 08:55:08'),
(3436, 1, '2024-08-05 05:00:09', '2024-08-05 05:00:09', 0, NULL, '2024-08-05 09:00:09', '2024-08-05 09:00:09'),
(3437, 2, '2024-08-05 05:00:09', '2024-08-05 05:00:09', 0, NULL, '2024-08-05 09:00:09', '2024-08-05 09:00:09'),
(3438, 3, '2024-08-05 05:00:10', '2024-08-05 05:00:10', 0, NULL, '2024-08-05 09:00:10', '2024-08-05 09:00:10'),
(3439, 5, '2024-08-05 05:00:10', '2024-08-05 05:00:10', 0, NULL, '2024-08-05 09:00:10', '2024-08-05 09:00:10'),
(3440, 1, '2024-08-05 05:10:11', '2024-08-05 05:10:11', 0, NULL, '2024-08-05 09:10:11', '2024-08-05 09:10:11'),
(3441, 2, '2024-08-05 05:10:12', '2024-08-05 05:10:12', 0, NULL, '2024-08-05 09:10:12', '2024-08-05 09:10:12'),
(3442, 3, '2024-08-05 05:10:12', '2024-08-05 05:10:12', 0, NULL, '2024-08-05 09:10:12', '2024-08-05 09:10:12'),
(3443, 5, '2024-08-05 05:10:12', '2024-08-05 05:10:12', 0, NULL, '2024-08-05 09:10:12', '2024-08-05 09:10:12'),
(3444, 1, '2024-08-05 05:20:05', '2024-08-05 05:20:05', 0, NULL, '2024-08-05 09:20:06', '2024-08-05 09:20:06'),
(3445, 2, '2024-08-05 05:20:06', '2024-08-05 05:20:06', 0, NULL, '2024-08-05 09:20:07', '2024-08-05 09:20:07'),
(3446, 3, '2024-08-05 05:20:07', '2024-08-05 05:20:07', 0, NULL, '2024-08-05 09:20:08', '2024-08-05 09:20:08'),
(3447, 5, '2024-08-05 05:20:09', '2024-08-05 05:20:09', 0, NULL, '2024-08-05 09:20:09', '2024-08-05 09:20:09'),
(3448, 1, '2024-08-05 05:25:08', '2024-08-05 05:25:08', 0, NULL, '2024-08-05 09:25:09', '2024-08-05 09:25:09'),
(3449, 2, '2024-08-05 05:25:09', '2024-08-05 05:25:09', 0, NULL, '2024-08-05 09:25:09', '2024-08-05 09:25:09'),
(3450, 3, '2024-08-05 05:25:09', '2024-08-05 05:25:09', 0, NULL, '2024-08-05 09:25:10', '2024-08-05 09:25:10'),
(3451, 5, '2024-08-05 05:30:04', '2024-08-05 05:30:04', 0, NULL, '2024-08-05 09:30:05', '2024-08-05 09:30:05'),
(3452, 1, '2024-08-05 05:35:07', '2024-08-05 05:35:07', 0, NULL, '2024-08-05 09:35:10', '2024-08-05 09:35:10'),
(3453, 2, '2024-08-05 05:35:10', '2024-08-05 05:35:10', 0, NULL, '2024-08-05 09:35:11', '2024-08-05 09:35:11'),
(3454, 3, '2024-08-05 05:35:11', '2024-08-05 05:35:11', 0, NULL, '2024-08-05 09:35:11', '2024-08-05 09:35:11'),
(3455, 5, '2024-08-05 05:35:11', '2024-08-05 05:35:11', 0, NULL, '2024-08-05 09:35:11', '2024-08-05 09:35:11'),
(3456, 1, '2024-08-05 05:40:08', '2024-08-05 05:40:09', 0, NULL, '2024-08-05 09:40:10', '2024-08-05 09:40:10'),
(3457, 2, '2024-08-05 05:45:07', '2024-08-05 05:45:07', 0, NULL, '2024-08-05 09:45:08', '2024-08-05 09:45:08'),
(3458, 3, '2024-08-05 05:45:08', '2024-08-05 05:45:08', 0, NULL, '2024-08-05 09:45:08', '2024-08-05 09:45:08'),
(3459, 5, '2024-08-05 05:45:09', '2024-08-05 05:45:09', 0, NULL, '2024-08-05 09:45:09', '2024-08-05 09:45:09'),
(3460, 1, '2024-08-05 05:50:04', '2024-08-05 05:50:04', 0, NULL, '2024-08-05 09:50:04', '2024-08-05 09:50:04'),
(3461, 1, '2024-08-05 05:55:10', '2024-08-05 05:55:10', 0, NULL, '2024-08-05 09:55:10', '2024-08-05 09:55:10'),
(3462, 2, '2024-08-05 05:55:11', '2024-08-05 05:55:11', 0, NULL, '2024-08-05 09:55:11', '2024-08-05 09:55:11'),
(3463, 3, '2024-08-05 05:55:11', '2024-08-05 05:55:11', 0, NULL, '2024-08-05 09:55:11', '2024-08-05 09:55:11'),
(3464, 5, '2024-08-05 05:55:11', '2024-08-05 05:55:11', 0, NULL, '2024-08-05 09:55:12', '2024-08-05 09:55:12'),
(3465, 1, '2024-08-05 06:05:08', '2024-08-05 06:05:08', 0, NULL, '2024-08-05 10:05:09', '2024-08-05 10:05:09'),
(3466, 2, '2024-08-05 06:05:10', '2024-08-05 06:05:10', 0, NULL, '2024-08-05 10:05:11', '2024-08-05 10:05:11'),
(3467, 3, '2024-08-05 06:05:12', '2024-08-05 06:05:12', 0, NULL, '2024-08-05 10:05:13', '2024-08-05 10:05:13'),
(3468, 5, '2024-08-05 06:05:13', '2024-08-05 06:05:13', 0, NULL, '2024-08-05 10:05:13', '2024-08-05 10:05:13'),
(3469, 1, '2024-08-05 06:15:09', '2024-08-05 06:15:09', 0, NULL, '2024-08-05 10:15:09', '2024-08-05 10:15:09'),
(3470, 2, '2024-08-05 06:15:10', '2024-08-05 06:15:10', 0, NULL, '2024-08-05 10:15:10', '2024-08-05 10:15:10'),
(3471, 3, '2024-08-05 06:15:10', '2024-08-05 06:15:10', 0, NULL, '2024-08-05 10:15:10', '2024-08-05 10:15:10'),
(3472, 5, '2024-08-05 06:15:10', '2024-08-05 06:15:10', 0, NULL, '2024-08-05 10:15:10', '2024-08-05 10:15:10'),
(3473, 1, '2024-08-05 06:25:04', '2024-08-05 06:25:04', 0, NULL, '2024-08-05 10:25:05', '2024-08-05 10:25:05'),
(3474, 2, '2024-08-05 06:25:06', '2024-08-05 06:25:06', 0, NULL, '2024-08-05 10:25:07', '2024-08-05 10:25:07'),
(3475, 3, '2024-08-05 06:25:08', '2024-08-05 06:25:08', 0, NULL, '2024-08-05 10:25:08', '2024-08-05 10:25:08'),
(3476, 5, '2024-08-05 06:25:09', '2024-08-05 06:25:09', 0, NULL, '2024-08-05 10:25:09', '2024-08-05 10:25:09'),
(3477, 1, '2024-08-05 06:30:06', '2024-08-05 06:30:06', 0, NULL, '2024-08-05 10:30:07', '2024-08-05 10:30:07'),
(3478, 1, '2024-08-05 06:35:10', '2024-08-05 06:35:10', 0, NULL, '2024-08-05 10:35:10', '2024-08-05 10:35:10'),
(3479, 2, '2024-08-05 06:35:10', '2024-08-05 06:35:10', 0, NULL, '2024-08-05 10:35:10', '2024-08-05 10:35:10'),
(3480, 3, '2024-08-05 06:35:10', '2024-08-05 06:35:11', 0, NULL, '2024-08-05 10:35:11', '2024-08-05 10:35:11'),
(3481, 5, '2024-08-05 06:35:11', '2024-08-05 06:35:11', 0, NULL, '2024-08-05 10:35:11', '2024-08-05 10:35:11'),
(3482, 1, '2024-08-05 06:45:07', '2024-08-05 06:45:07', 0, NULL, '2024-08-05 10:45:09', '2024-08-05 10:45:09'),
(3483, 2, '2024-08-05 06:45:09', '2024-08-05 06:45:09', 0, NULL, '2024-08-05 10:45:09', '2024-08-05 10:45:09'),
(3484, 3, '2024-08-05 06:45:10', '2024-08-05 06:45:10', 0, NULL, '2024-08-05 10:45:10', '2024-08-05 10:45:10'),
(3485, 5, '2024-08-05 06:45:10', '2024-08-05 06:45:10', 0, NULL, '2024-08-05 10:45:10', '2024-08-05 10:45:10'),
(3486, 1, '2024-08-05 06:50:08', '2024-08-05 06:50:08', 0, NULL, '2024-08-05 10:50:09', '2024-08-05 10:50:09'),
(3487, 2, '2024-08-05 06:55:08', '2024-08-05 06:55:08', 0, NULL, '2024-08-05 10:55:08', '2024-08-05 10:55:08'),
(3488, 3, '2024-08-05 06:55:09', '2024-08-05 06:55:09', 0, NULL, '2024-08-05 10:55:10', '2024-08-05 10:55:10'),
(3489, 5, '2024-08-05 06:55:10', '2024-08-05 06:55:10', 0, NULL, '2024-08-05 10:55:11', '2024-08-05 10:55:11'),
(3490, 1, '2024-08-05 07:00:06', '2024-08-05 07:00:06', 0, NULL, '2024-08-05 11:00:06', '2024-08-05 11:00:06'),
(3491, 2, '2024-08-05 07:05:05', '2024-08-05 07:05:05', 0, NULL, '2024-08-05 11:05:06', '2024-08-05 11:05:06'),
(3492, 3, '2024-08-05 07:05:06', '2024-08-05 07:05:06', 0, NULL, '2024-08-05 11:05:06', '2024-08-05 11:05:06'),
(3493, 5, '2024-08-05 07:05:07', '2024-08-05 07:05:07', 0, NULL, '2024-08-05 11:05:07', '2024-08-05 11:05:07'),
(3494, 1, '2024-08-05 07:10:06', '2024-08-05 07:10:06', 0, NULL, '2024-08-05 11:10:07', '2024-08-05 11:10:07'),
(3495, 2, '2024-08-05 07:10:07', '2024-08-05 07:10:07', 0, NULL, '2024-08-05 11:10:07', '2024-08-05 11:10:07'),
(3496, 1, '2024-08-05 07:15:07', '2024-08-05 07:15:07', 0, NULL, '2024-08-05 11:15:07', '2024-08-05 11:15:07'),
(3497, 3, '2024-08-05 07:15:07', '2024-08-05 07:15:07', 0, NULL, '2024-08-05 11:15:08', '2024-08-05 11:15:08'),
(3498, 5, '2024-08-05 07:15:08', '2024-08-05 07:15:08', 0, NULL, '2024-08-05 11:15:08', '2024-08-05 11:15:08'),
(3499, 2, '2024-08-05 07:20:07', '2024-08-05 07:20:07', 0, NULL, '2024-08-05 11:20:07', '2024-08-05 11:20:07'),
(3500, 1, '2024-08-05 07:25:04', '2024-08-05 07:25:04', 0, NULL, '2024-08-05 11:25:04', '2024-08-05 11:25:04'),
(3501, 3, '2024-08-05 07:25:05', '2024-08-05 07:25:05', 0, NULL, '2024-08-05 11:25:05', '2024-08-05 11:25:05'),
(3502, 5, '2024-08-05 07:25:05', '2024-08-05 07:25:05', 0, NULL, '2024-08-05 11:25:06', '2024-08-05 11:25:06'),
(3503, 1, '2024-08-05 07:30:05', '2024-08-05 07:30:05', 0, NULL, '2024-08-05 11:30:05', '2024-08-05 11:30:05'),
(3504, 2, '2024-08-05 07:30:09', '2024-08-05 07:30:09', 0, NULL, '2024-08-05 11:30:11', '2024-08-05 11:30:11'),
(3505, 1, '2024-08-05 07:35:06', '2024-08-05 07:35:06', 0, NULL, '2024-08-05 11:35:07', '2024-08-05 11:35:07'),
(3506, 3, '2024-08-05 07:35:07', '2024-08-05 07:35:07', 0, NULL, '2024-08-05 11:35:07', '2024-08-05 11:35:07'),
(3507, 5, '2024-08-05 07:35:07', '2024-08-05 07:35:07', 0, NULL, '2024-08-05 11:35:08', '2024-08-05 11:35:08'),
(3508, 1, '2024-08-05 07:40:11', '2024-08-05 07:40:11', 0, NULL, '2024-08-05 11:40:11', '2024-08-05 11:40:11'),
(3509, 2, '2024-08-05 07:40:11', '2024-08-05 07:40:11', 0, NULL, '2024-08-05 11:40:11', '2024-08-05 11:40:11'),
(3510, 3, '2024-08-05 07:40:11', '2024-08-05 07:40:11', 0, NULL, '2024-08-05 11:40:12', '2024-08-05 11:40:12'),
(3511, 5, '2024-08-05 07:40:12', '2024-08-05 07:40:12', 0, NULL, '2024-08-05 11:40:12', '2024-08-05 11:40:12'),
(3512, 1, '2024-08-05 07:50:07', '2024-08-05 07:50:07', 0, NULL, '2024-08-05 11:50:07', '2024-08-05 11:50:07'),
(3513, 2, '2024-08-05 07:50:08', '2024-08-05 07:50:08', 0, NULL, '2024-08-05 11:50:08', '2024-08-05 11:50:08'),
(3514, 3, '2024-08-05 07:50:08', '2024-08-05 07:50:08', 0, NULL, '2024-08-05 11:50:08', '2024-08-05 11:50:08'),
(3515, 5, '2024-08-05 07:50:09', '2024-08-05 07:50:09', 0, NULL, '2024-08-05 11:50:09', '2024-08-05 11:50:09'),
(3516, 1, '2024-08-05 08:00:07', '2024-08-05 08:00:07', 0, NULL, '2024-08-05 12:00:07', '2024-08-05 12:00:07'),
(3517, 2, '2024-08-05 08:00:08', '2024-08-05 08:00:08', 0, NULL, '2024-08-05 12:00:08', '2024-08-05 12:00:08'),
(3518, 3, '2024-08-05 08:00:09', '2024-08-05 08:00:09', 0, NULL, '2024-08-05 12:00:09', '2024-08-05 12:00:09'),
(3519, 5, '2024-08-05 08:00:09', '2024-08-05 08:00:09', 0, NULL, '2024-08-05 12:00:09', '2024-08-05 12:00:09'),
(3520, 1, '2024-08-05 08:10:03', '2024-08-05 08:10:03', 0, NULL, '2024-08-05 12:10:04', '2024-08-05 12:10:04'),
(3521, 2, '2024-08-05 08:10:04', '2024-08-05 08:10:04', 0, NULL, '2024-08-05 12:10:04', '2024-08-05 12:10:04'),
(3522, 3, '2024-08-05 08:10:05', '2024-08-05 08:10:05', 0, NULL, '2024-08-05 12:10:05', '2024-08-05 12:10:05'),
(3523, 5, '2024-08-05 08:10:05', '2024-08-05 08:10:06', 0, NULL, '2024-08-05 12:10:06', '2024-08-05 12:10:06'),
(3524, 1, '2024-08-05 08:15:04', '2024-08-05 08:15:05', 0, NULL, '2024-08-05 12:15:05', '2024-08-05 12:15:05'),
(3525, 1, '2024-08-05 08:20:06', '2024-08-05 08:20:06', 0, NULL, '2024-08-05 12:20:07', '2024-08-05 12:20:07'),
(3526, 2, '2024-08-05 08:20:07', '2024-08-05 08:20:07', 0, NULL, '2024-08-05 12:20:08', '2024-08-05 12:20:08'),
(3527, 3, '2024-08-05 08:20:08', '2024-08-05 08:20:08', 0, NULL, '2024-08-05 12:20:09', '2024-08-05 12:20:09'),
(3528, 5, '2024-08-05 08:20:09', '2024-08-05 08:20:09', 0, NULL, '2024-08-05 12:20:09', '2024-08-05 12:20:09'),
(3529, 1, '2024-08-05 08:30:04', '2024-08-05 08:30:04', 0, NULL, '2024-08-05 12:30:04', '2024-08-05 12:30:04'),
(3530, 2, '2024-08-05 08:30:04', '2024-08-05 08:30:04', 0, NULL, '2024-08-05 12:30:05', '2024-08-05 12:30:05'),
(3531, 3, '2024-08-05 08:30:05', '2024-08-05 08:30:05', 0, NULL, '2024-08-05 12:30:06', '2024-08-05 12:30:06'),
(3532, 5, '2024-08-05 08:30:06', '2024-08-05 08:30:06', 0, NULL, '2024-08-05 12:30:07', '2024-08-05 12:30:07'),
(3533, 1, '2024-08-05 08:40:03', '2024-08-05 08:40:03', 0, NULL, '2024-08-05 12:40:03', '2024-08-05 12:40:03'),
(3534, 2, '2024-08-05 08:40:04', '2024-08-05 08:40:04', 0, NULL, '2024-08-05 12:40:04', '2024-08-05 12:40:04'),
(3535, 3, '2024-08-05 08:40:04', '2024-08-05 08:40:04', 0, NULL, '2024-08-05 12:40:05', '2024-08-05 12:40:05'),
(3536, 5, '2024-08-05 08:40:05', '2024-08-05 08:40:05', 0, NULL, '2024-08-05 12:40:05', '2024-08-05 12:40:05'),
(3537, 1, '2024-08-05 08:45:07', '2024-08-05 08:45:07', 0, NULL, '2024-08-05 12:45:07', '2024-08-05 12:45:07'),
(3538, 2, '2024-08-05 08:45:08', '2024-08-05 08:45:08', 0, NULL, '2024-08-05 12:45:08', '2024-08-05 12:45:08'),
(3539, 3, '2024-08-05 08:45:08', '2024-08-05 08:45:08', 0, NULL, '2024-08-05 12:45:08', '2024-08-05 12:45:08'),
(3540, 5, '2024-08-05 08:45:09', '2024-08-05 08:45:09', 0, NULL, '2024-08-05 12:45:09', '2024-08-05 12:45:09'),
(3541, 1, '2024-08-05 08:55:03', '2024-08-05 08:55:03', 0, NULL, '2024-08-05 12:55:04', '2024-08-05 12:55:04'),
(3542, 2, '2024-08-05 08:55:04', '2024-08-05 08:55:04', 0, NULL, '2024-08-05 12:55:05', '2024-08-05 12:55:05'),
(3543, 3, '2024-08-05 08:55:06', '2024-08-05 08:55:06', 0, NULL, '2024-08-05 12:55:06', '2024-08-05 12:55:06'),
(3544, 5, '2024-08-05 08:55:06', '2024-08-05 08:55:06', 0, NULL, '2024-08-05 12:55:07', '2024-08-05 12:55:07'),
(3545, 1, '2024-08-05 09:05:06', '2024-08-05 09:05:07', 1, NULL, '2024-08-05 13:05:11', '2024-08-05 13:05:11'),
(3546, 2, '2024-08-05 09:05:11', '2024-08-05 09:05:11', 0, NULL, '2024-08-05 13:05:11', '2024-08-05 13:05:11'),
(3547, 3, '2024-08-05 09:05:11', '2024-08-05 09:05:11', 0, NULL, '2024-08-05 13:05:11', '2024-08-05 13:05:11'),
(3548, 5, '2024-08-05 09:05:11', '2024-08-05 09:05:11', 0, NULL, '2024-08-05 13:05:11', '2024-08-05 13:05:11'),
(3549, 1, '2024-08-05 09:15:08', '2024-08-05 09:15:08', 0, NULL, '2024-08-05 13:15:08', '2024-08-05 13:15:08'),
(3550, 2, '2024-08-05 09:15:08', '2024-08-05 09:15:08', 0, NULL, '2024-08-05 13:15:09', '2024-08-05 13:15:09'),
(3551, 3, '2024-08-05 09:15:09', '2024-08-05 09:15:09', 0, NULL, '2024-08-05 13:15:09', '2024-08-05 13:15:09'),
(3552, 5, '2024-08-05 09:15:09', '2024-08-05 09:15:09', 0, NULL, '2024-08-05 13:15:09', '2024-08-05 13:15:09'),
(3553, 1, '2024-08-05 09:25:07', '2024-08-05 09:25:07', 0, NULL, '2024-08-05 13:25:07', '2024-08-05 13:25:07'),
(3554, 2, '2024-08-05 09:25:07', '2024-08-05 09:25:07', 0, NULL, '2024-08-05 13:25:08', '2024-08-05 13:25:08'),
(3555, 3, '2024-08-05 09:25:08', '2024-08-05 09:25:08', 0, NULL, '2024-08-05 13:25:08', '2024-08-05 13:25:08'),
(3556, 5, '2024-08-05 09:25:09', '2024-08-05 09:25:09', 0, NULL, '2024-08-05 13:25:09', '2024-08-05 13:25:09'),
(3557, 1, '2024-08-05 09:35:05', '2024-08-05 09:35:05', 0, NULL, '2024-08-05 13:35:06', '2024-08-05 13:35:06'),
(3558, 2, '2024-08-05 09:35:06', '2024-08-05 09:35:06', 0, NULL, '2024-08-05 13:35:06', '2024-08-05 13:35:06'),
(3559, 3, '2024-08-05 09:35:07', '2024-08-05 09:35:07', 0, NULL, '2024-08-05 13:35:07', '2024-08-05 13:35:07'),
(3560, 5, '2024-08-05 09:35:07', '2024-08-05 09:35:07', 0, NULL, '2024-08-05 13:35:07', '2024-08-05 13:35:07'),
(3561, 1, '2024-08-05 09:45:06', '2024-08-05 09:45:06', 0, NULL, '2024-08-05 13:45:06', '2024-08-05 13:45:06'),
(3562, 2, '2024-08-05 09:45:07', '2024-08-05 09:45:07', 0, NULL, '2024-08-05 13:45:07', '2024-08-05 13:45:07'),
(3563, 3, '2024-08-05 09:45:07', '2024-08-05 09:45:07', 0, NULL, '2024-08-05 13:45:07', '2024-08-05 13:45:07'),
(3564, 5, '2024-08-05 09:45:08', '2024-08-05 09:45:08', 0, NULL, '2024-08-05 13:45:08', '2024-08-05 13:45:08'),
(3565, 1, '2024-08-05 09:55:07', '2024-08-05 09:55:07', 0, NULL, '2024-08-05 13:55:07', '2024-08-05 13:55:07'),
(3566, 2, '2024-08-05 09:55:08', '2024-08-05 09:55:08', 0, NULL, '2024-08-05 13:55:08', '2024-08-05 13:55:08'),
(3567, 3, '2024-08-05 09:55:08', '2024-08-05 09:55:08', 0, NULL, '2024-08-05 13:55:09', '2024-08-05 13:55:09'),
(3568, 5, '2024-08-05 09:55:09', '2024-08-05 09:55:09', 0, NULL, '2024-08-05 13:55:09', '2024-08-05 13:55:09'),
(3569, 1, '2024-08-05 10:05:06', '2024-08-05 10:05:06', 0, NULL, '2024-08-05 14:05:07', '2024-08-05 14:05:07'),
(3570, 2, '2024-08-05 10:05:07', '2024-08-05 10:05:07', 0, NULL, '2024-08-05 14:05:08', '2024-08-05 14:05:08'),
(3571, 3, '2024-08-05 10:05:08', '2024-08-05 10:05:08', 0, NULL, '2024-08-05 14:05:08', '2024-08-05 14:05:08'),
(3572, 5, '2024-08-05 10:05:09', '2024-08-05 10:05:09', 0, NULL, '2024-08-05 14:05:09', '2024-08-05 14:05:09'),
(3573, 1, '2024-08-05 10:10:08', '2024-08-05 10:10:08', 0, NULL, '2024-08-05 14:10:08', '2024-08-05 14:10:08'),
(3574, 2, '2024-08-05 10:15:07', '2024-08-05 10:15:07', 0, NULL, '2024-08-05 14:15:07', '2024-08-05 14:15:07'),
(3575, 3, '2024-08-05 10:15:08', '2024-08-05 10:15:08', 0, NULL, '2024-08-05 14:15:08', '2024-08-05 14:15:08'),
(3576, 5, '2024-08-05 10:15:08', '2024-08-05 10:15:08', 0, NULL, '2024-08-05 14:15:09', '2024-08-05 14:15:09'),
(3577, 1, '2024-08-05 10:20:09', '2024-08-05 10:20:09', 0, NULL, '2024-08-05 14:20:09', '2024-08-05 14:20:09'),
(3578, 2, '2024-08-05 10:20:09', '2024-08-05 10:20:09', 0, NULL, '2024-08-05 14:20:10', '2024-08-05 14:20:10'),
(3579, 3, '2024-08-05 10:20:10', '2024-08-05 10:20:10', 0, NULL, '2024-08-05 14:20:10', '2024-08-05 14:20:10'),
(3580, 5, '2024-08-05 10:20:10', '2024-08-05 10:20:10', 0, NULL, '2024-08-05 14:20:10', '2024-08-05 14:20:10'),
(3581, 1, '2024-08-05 10:30:07', '2024-08-05 10:30:07', 0, NULL, '2024-08-05 14:30:10', '2024-08-05 14:30:10'),
(3582, 2, '2024-08-05 10:30:11', '2024-08-05 10:30:11', 0, NULL, '2024-08-05 14:30:11', '2024-08-05 14:30:11'),
(3583, 3, '2024-08-05 10:30:11', '2024-08-05 10:30:11', 0, NULL, '2024-08-05 14:30:11', '2024-08-05 14:30:11'),
(3584, 5, '2024-08-05 10:30:11', '2024-08-05 10:30:11', 0, NULL, '2024-08-05 14:30:11', '2024-08-05 14:30:11'),
(3585, 1, '2024-08-05 10:35:10', '2024-08-05 10:35:10', 0, NULL, '2024-08-05 14:35:10', '2024-08-05 14:35:10'),
(3586, 2, '2024-08-05 10:40:04', '2024-08-05 10:40:04', 0, NULL, '2024-08-05 14:40:04', '2024-08-05 14:40:04'),
(3587, 3, '2024-08-05 10:40:05', '2024-08-05 10:40:05', 0, NULL, '2024-08-05 14:40:06', '2024-08-05 14:40:06'),
(3588, 5, '2024-08-05 10:40:06', '2024-08-05 10:40:06', 0, NULL, '2024-08-05 14:40:10', '2024-08-05 14:40:10'),
(3589, 1, '2024-08-05 10:45:07', '2024-08-05 10:45:07', 0, NULL, '2024-08-05 14:45:07', '2024-08-05 14:45:07'),
(3590, 2, '2024-08-05 10:45:07', '2024-08-05 10:45:07', 0, NULL, '2024-08-05 14:45:08', '2024-08-05 14:45:08'),
(3591, 3, '2024-08-05 10:45:08', '2024-08-05 10:45:08', 0, NULL, '2024-08-05 14:45:08', '2024-08-05 14:45:08'),
(3592, 5, '2024-08-05 10:45:08', '2024-08-05 10:45:08', 0, NULL, '2024-08-05 14:45:08', '2024-08-05 14:45:08'),
(3593, 1, '2024-08-05 10:50:08', '2024-08-05 10:50:08', 0, NULL, '2024-08-05 14:50:08', '2024-08-05 14:50:08'),
(3594, 2, '2024-08-05 10:50:08', '2024-08-05 10:50:08', 0, NULL, '2024-08-05 14:50:09', '2024-08-05 14:50:09'),
(3595, 3, '2024-08-05 10:55:03', '2024-08-05 10:55:03', 0, NULL, '2024-08-05 14:55:04', '2024-08-05 14:55:04'),
(3596, 5, '2024-08-05 10:55:04', '2024-08-05 10:55:04', 0, NULL, '2024-08-05 14:55:09', '2024-08-05 14:55:09'),
(3597, 1, '2024-08-05 11:00:09', '2024-08-05 11:00:09', 0, NULL, '2024-08-05 15:00:09', '2024-08-05 15:00:09'),
(3598, 2, '2024-08-05 11:00:09', '2024-08-05 11:00:09', 0, NULL, '2024-08-05 15:00:10', '2024-08-05 15:00:10'),
(3599, 3, '2024-08-05 11:00:10', '2024-08-05 11:00:10', 0, NULL, '2024-08-05 15:00:10', '2024-08-05 15:00:10'),
(3600, 5, '2024-08-05 11:00:10', '2024-08-05 11:00:10', 0, NULL, '2024-08-05 15:00:10', '2024-08-05 15:00:10'),
(3601, 1, '2024-08-05 11:10:05', '2024-08-05 11:10:05', 0, NULL, '2024-08-05 15:10:05', '2024-08-05 15:10:05'),
(3602, 2, '2024-08-05 11:10:05', '2024-08-05 11:10:05', 0, NULL, '2024-08-05 15:10:06', '2024-08-05 15:10:06'),
(3603, 3, '2024-08-05 11:10:06', '2024-08-05 11:10:06', 0, NULL, '2024-08-05 15:10:07', '2024-08-05 15:10:07'),
(3604, 5, '2024-08-05 11:10:07', '2024-08-05 11:10:07', 0, NULL, '2024-08-05 15:10:07', '2024-08-05 15:10:07'),
(3605, 1, '2024-08-05 11:15:07', '2024-08-05 11:15:07', 0, NULL, '2024-08-05 15:15:08', '2024-08-05 15:15:08'),
(3606, 2, '2024-08-05 11:15:09', '2024-08-05 11:15:09', 0, NULL, '2024-08-05 15:15:09', '2024-08-05 15:15:09'),
(3607, 3, '2024-08-05 11:15:10', '2024-08-05 11:15:10', 0, NULL, '2024-08-05 15:15:10', '2024-08-05 15:15:10'),
(3608, 5, '2024-08-05 11:20:03', '2024-08-05 11:20:03', 0, NULL, '2024-08-05 15:20:04', '2024-08-05 15:20:04'),
(3609, 1, '2024-08-05 11:25:04', '2024-08-05 11:25:04', 0, NULL, '2024-08-05 15:25:04', '2024-08-05 15:25:04'),
(3610, 2, '2024-08-05 11:25:05', '2024-08-05 11:25:05', 0, NULL, '2024-08-05 15:25:05', '2024-08-05 15:25:05'),
(3611, 3, '2024-08-05 11:25:05', '2024-08-05 11:25:05', 0, NULL, '2024-08-05 15:25:05', '2024-08-05 15:25:05'),
(3612, 5, '2024-08-05 11:25:06', '2024-08-05 11:25:06', 0, NULL, '2024-08-05 15:25:06', '2024-08-05 15:25:06'),
(3613, 1, '2024-08-05 11:30:08', '2024-08-05 11:30:08', 0, NULL, '2024-08-05 15:30:08', '2024-08-05 15:30:08'),
(3614, 2, '2024-08-05 11:30:09', '2024-08-05 11:30:09', 0, NULL, '2024-08-05 15:30:09', '2024-08-05 15:30:09'),
(3615, 3, '2024-08-05 11:30:09', '2024-08-05 11:30:09', 0, NULL, '2024-08-05 15:30:10', '2024-08-05 15:30:10'),
(3616, 5, '2024-08-05 11:30:10', '2024-08-05 11:30:10', 0, NULL, '2024-08-05 15:30:10', '2024-08-05 15:30:10'),
(3617, 1, '2024-08-05 11:40:03', '2024-08-05 11:40:03', 0, NULL, '2024-08-05 15:40:04', '2024-08-05 15:40:04'),
(3618, 2, '2024-08-05 11:40:04', '2024-08-05 11:40:04', 0, NULL, '2024-08-05 15:40:05', '2024-08-05 15:40:05'),
(3619, 3, '2024-08-05 11:40:05', '2024-08-05 11:40:05', 0, NULL, '2024-08-05 15:40:10', '2024-08-05 15:40:10'),
(3620, 5, '2024-08-05 11:40:10', '2024-08-05 11:40:10', 0, NULL, '2024-08-05 15:40:10', '2024-08-05 15:40:10'),
(3621, 1, '2024-08-05 11:45:06', '2024-08-05 11:45:06', 0, NULL, '2024-08-05 15:45:06', '2024-08-05 15:45:06'),
(3622, 2, '2024-08-05 11:45:07', '2024-08-05 11:45:07', 0, NULL, '2024-08-05 15:45:07', '2024-08-05 15:45:07'),
(3623, 3, '2024-08-05 11:45:07', '2024-08-05 11:45:07', 0, NULL, '2024-08-05 15:45:07', '2024-08-05 15:45:07'),
(3624, 1, '2024-08-05 11:50:10', '2024-08-05 11:50:10', 0, NULL, '2024-08-05 15:50:10', '2024-08-05 15:50:10'),
(3625, 2, '2024-08-05 11:50:10', '2024-08-05 11:50:10', 0, NULL, '2024-08-05 15:50:10', '2024-08-05 15:50:10'),
(3626, 3, '2024-08-05 11:50:11', '2024-08-05 11:50:11', 0, NULL, '2024-08-05 15:50:11', '2024-08-05 15:50:11'),
(3627, 5, '2024-08-05 11:50:11', '2024-08-05 11:50:11', 0, NULL, '2024-08-05 15:50:11', '2024-08-05 15:50:11'),
(3628, 1, '2024-08-05 12:00:07', '2024-08-05 12:00:07', 0, NULL, '2024-08-05 16:00:08', '2024-08-05 16:00:08'),
(3629, 2, '2024-08-05 12:00:08', '2024-08-05 12:00:08', 0, NULL, '2024-08-05 16:00:08', '2024-08-05 16:00:08'),
(3630, 3, '2024-08-05 12:00:09', '2024-08-05 12:00:09', 0, NULL, '2024-08-05 16:00:10', '2024-08-05 16:00:10'),
(3631, 5, '2024-08-05 12:00:10', '2024-08-05 12:00:10', 0, NULL, '2024-08-05 16:00:10', '2024-08-05 16:00:10'),
(3632, 1, '2024-08-05 12:10:05', '2024-08-05 12:10:05', 0, NULL, '2024-08-05 16:10:06', '2024-08-05 16:10:06'),
(3633, 2, '2024-08-05 12:10:06', '2024-08-05 12:10:06', 0, NULL, '2024-08-05 16:10:06', '2024-08-05 16:10:06'),
(3634, 3, '2024-08-05 12:10:06', '2024-08-05 12:10:06', 0, NULL, '2024-08-05 16:10:07', '2024-08-05 16:10:07');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(3635, 5, '2024-08-05 12:10:08', '2024-08-05 12:10:08', 0, NULL, '2024-08-05 16:10:08', '2024-08-05 16:10:08'),
(3636, 1, '2024-08-05 12:15:10', '2024-08-05 12:15:10', 0, NULL, '2024-08-05 16:15:10', '2024-08-05 16:15:10'),
(3637, 2, '2024-08-05 12:15:11', '2024-08-05 12:15:11', 0, NULL, '2024-08-05 16:15:11', '2024-08-05 16:15:11'),
(3638, 3, '2024-08-05 12:15:11', '2024-08-05 12:15:11', 0, NULL, '2024-08-05 16:15:11', '2024-08-05 16:15:11'),
(3639, 5, '2024-08-05 12:15:11', '2024-08-05 12:15:11', 0, NULL, '2024-08-05 16:15:12', '2024-08-05 16:15:12'),
(3640, 1, '2024-08-05 12:25:05', '2024-08-05 12:25:05', 0, NULL, '2024-08-05 16:25:06', '2024-08-05 16:25:06'),
(3641, 2, '2024-08-05 12:25:06', '2024-08-05 12:25:06', 0, NULL, '2024-08-05 16:25:06', '2024-08-05 16:25:06'),
(3642, 3, '2024-08-05 12:25:10', '2024-08-05 12:25:10', 0, NULL, '2024-08-05 16:25:11', '2024-08-05 16:25:11'),
(3643, 5, '2024-08-05 12:25:11', '2024-08-05 12:25:11', 0, NULL, '2024-08-05 16:25:11', '2024-08-05 16:25:11'),
(3644, 1, '2024-08-05 12:35:12', '2024-08-05 12:35:12', 0, NULL, '2024-08-05 16:35:12', '2024-08-05 16:35:12'),
(3645, 2, '2024-08-05 12:35:12', '2024-08-05 12:35:12', 0, NULL, '2024-08-05 16:35:12', '2024-08-05 16:35:12'),
(3646, 3, '2024-08-05 12:35:12', '2024-08-05 12:35:12', 0, NULL, '2024-08-05 16:35:12', '2024-08-05 16:35:12'),
(3647, 5, '2024-08-05 12:35:13', '2024-08-05 12:35:13', 0, NULL, '2024-08-05 16:35:13', '2024-08-05 16:35:13'),
(3648, 1, '2024-08-05 12:45:07', '2024-08-05 12:45:07', 0, NULL, '2024-08-05 16:45:08', '2024-08-05 16:45:08'),
(3649, 2, '2024-08-05 12:45:08', '2024-08-05 12:45:08', 0, NULL, '2024-08-05 16:45:08', '2024-08-05 16:45:08'),
(3650, 3, '2024-08-05 12:45:08', '2024-08-05 12:45:08', 0, NULL, '2024-08-05 16:45:09', '2024-08-05 16:45:09'),
(3651, 5, '2024-08-05 12:45:09', '2024-08-05 12:45:09', 0, NULL, '2024-08-05 16:45:09', '2024-08-05 16:45:09'),
(3652, 1, '2024-08-05 12:55:07', '2024-08-05 12:55:07', 0, NULL, '2024-08-05 16:55:07', '2024-08-05 16:55:07'),
(3653, 2, '2024-08-05 12:55:08', '2024-08-05 12:55:08', 0, NULL, '2024-08-05 16:55:08', '2024-08-05 16:55:08'),
(3654, 3, '2024-08-05 12:55:08', '2024-08-05 12:55:08', 0, NULL, '2024-08-05 16:55:08', '2024-08-05 16:55:08'),
(3655, 5, '2024-08-05 12:55:08', '2024-08-05 12:55:10', 2, NULL, '2024-08-05 16:55:11', '2024-08-05 16:55:11'),
(3656, 1, '2024-08-05 13:05:07', '2024-08-05 13:05:07', 0, NULL, '2024-08-05 17:05:07', '2024-08-05 17:05:07'),
(3657, 2, '2024-08-05 13:05:07', '2024-08-05 13:05:07', 0, NULL, '2024-08-05 17:05:08', '2024-08-05 17:05:08'),
(3658, 3, '2024-08-05 13:05:08', '2024-08-05 13:05:08', 0, NULL, '2024-08-05 17:05:08', '2024-08-05 17:05:08'),
(3659, 5, '2024-08-05 13:05:08', '2024-08-05 13:05:08', 0, NULL, '2024-08-05 17:05:09', '2024-08-05 17:05:09'),
(3660, 1, '2024-08-05 13:15:10', '2024-08-05 13:15:10', 0, NULL, '2024-08-05 17:15:10', '2024-08-05 17:15:10'),
(3661, 2, '2024-08-05 13:15:10', '2024-08-05 13:15:10', 0, NULL, '2024-08-05 17:15:10', '2024-08-05 17:15:10'),
(3662, 3, '2024-08-05 13:15:11', '2024-08-05 13:15:11', 0, NULL, '2024-08-05 17:15:11', '2024-08-05 17:15:11'),
(3663, 5, '2024-08-05 13:15:11', '2024-08-05 13:15:11', 0, NULL, '2024-08-05 17:15:11', '2024-08-05 17:15:11'),
(3664, 1, '2024-08-05 13:25:05', '2024-08-05 13:25:05', 0, NULL, '2024-08-05 17:25:06', '2024-08-05 17:25:06'),
(3665, 2, '2024-08-05 13:25:06', '2024-08-05 13:25:06', 0, NULL, '2024-08-05 17:25:06', '2024-08-05 17:25:06'),
(3666, 3, '2024-08-05 13:25:07', '2024-08-05 13:25:07', 0, NULL, '2024-08-05 17:25:07', '2024-08-05 17:25:07'),
(3667, 5, '2024-08-05 13:25:08', '2024-08-05 13:25:08', 0, NULL, '2024-08-05 17:25:08', '2024-08-05 17:25:08'),
(3668, 1, '2024-08-05 13:30:09', '2024-08-05 13:30:09', 0, NULL, '2024-08-05 17:30:09', '2024-08-05 17:30:09'),
(3669, 2, '2024-08-05 13:30:10', '2024-08-05 13:30:10', 0, NULL, '2024-08-05 17:30:10', '2024-08-05 17:30:10'),
(3670, 3, '2024-08-05 13:30:11', '2024-08-05 13:30:11', 0, NULL, '2024-08-05 17:30:11', '2024-08-05 17:30:11'),
(3671, 5, '2024-08-05 13:30:11', '2024-08-05 13:30:11', 0, NULL, '2024-08-05 17:30:12', '2024-08-05 17:30:12'),
(3672, 1, '2024-08-05 13:40:02', '2024-08-05 13:40:02', 0, NULL, '2024-08-05 17:40:02', '2024-08-05 17:40:02'),
(3673, 2, '2024-08-05 13:40:02', '2024-08-05 13:40:02', 0, NULL, '2024-08-05 17:40:03', '2024-08-05 17:40:03'),
(3674, 3, '2024-08-05 13:40:03', '2024-08-05 13:40:03', 0, NULL, '2024-08-05 17:40:03', '2024-08-05 17:40:03'),
(3675, 5, '2024-08-05 13:40:03', '2024-08-05 13:40:03', 0, NULL, '2024-08-05 17:40:04', '2024-08-05 17:40:04'),
(3676, 1, '2024-08-05 13:45:07', '2024-08-05 13:45:07', 0, NULL, '2024-08-05 17:45:07', '2024-08-05 17:45:07'),
(3677, 2, '2024-08-05 13:45:08', '2024-08-05 13:45:08', 0, NULL, '2024-08-05 17:45:08', '2024-08-05 17:45:08'),
(3678, 3, '2024-08-05 13:45:09', '2024-08-05 13:45:09', 0, NULL, '2024-08-05 17:45:09', '2024-08-05 17:45:09'),
(3679, 5, '2024-08-05 13:45:09', '2024-08-05 13:45:09', 0, NULL, '2024-08-05 17:45:09', '2024-08-05 17:45:09'),
(3680, 1, '2024-08-05 13:55:09', '2024-08-05 13:55:09', 0, NULL, '2024-08-05 17:55:09', '2024-08-05 17:55:09'),
(3681, 2, '2024-08-05 13:55:09', '2024-08-05 13:55:09', 0, NULL, '2024-08-05 17:55:09', '2024-08-05 17:55:09'),
(3682, 3, '2024-08-05 13:55:09', '2024-08-05 13:55:09', 0, NULL, '2024-08-05 17:55:09', '2024-08-05 17:55:09'),
(3683, 5, '2024-08-05 13:55:10', '2024-08-05 13:55:10', 0, NULL, '2024-08-05 17:55:10', '2024-08-05 17:55:10'),
(3684, 1, '2024-08-05 14:05:04', '2024-08-05 14:05:04', 0, NULL, '2024-08-05 18:05:05', '2024-08-05 18:05:05'),
(3685, 2, '2024-08-05 14:05:08', '2024-08-05 14:05:08', 0, NULL, '2024-08-05 18:05:08', '2024-08-05 18:05:08'),
(3686, 3, '2024-08-05 14:05:08', '2024-08-05 14:05:08', 0, NULL, '2024-08-05 18:05:09', '2024-08-05 18:05:09'),
(3687, 5, '2024-08-05 14:05:09', '2024-08-05 14:05:09', 0, NULL, '2024-08-05 18:05:09', '2024-08-05 18:05:09'),
(3688, 1, '2024-08-05 14:10:12', '2024-08-05 14:10:12', 0, NULL, '2024-08-05 18:10:12', '2024-08-05 18:10:12'),
(3689, 2, '2024-08-05 14:10:12', '2024-08-05 14:10:12', 0, NULL, '2024-08-05 18:10:12', '2024-08-05 18:10:12'),
(3690, 3, '2024-08-05 14:10:13', '2024-08-05 14:10:13', 0, NULL, '2024-08-05 18:10:13', '2024-08-05 18:10:13'),
(3691, 5, '2024-08-05 14:10:13', '2024-08-05 14:10:13', 0, NULL, '2024-08-05 18:10:13', '2024-08-05 18:10:13'),
(3692, 1, '2024-08-05 14:20:05', '2024-08-05 14:20:06', 0, NULL, '2024-08-05 18:20:06', '2024-08-05 18:20:06'),
(3693, 2, '2024-08-05 14:20:07', '2024-08-05 14:20:07', 0, NULL, '2024-08-05 18:20:07', '2024-08-05 18:20:07'),
(3694, 3, '2024-08-05 14:20:08', '2024-08-05 14:20:08', 0, NULL, '2024-08-05 18:20:08', '2024-08-05 18:20:08'),
(3695, 5, '2024-08-05 14:20:08', '2024-08-05 14:20:08', 0, NULL, '2024-08-05 18:20:09', '2024-08-05 18:20:09'),
(3696, 1, '2024-08-05 14:30:04', '2024-08-05 14:30:04', 0, NULL, '2024-08-05 18:30:05', '2024-08-05 18:30:05'),
(3697, 2, '2024-08-05 14:30:06', '2024-08-05 14:30:06', 0, NULL, '2024-08-05 18:30:06', '2024-08-05 18:30:06'),
(3698, 3, '2024-08-05 14:30:06', '2024-08-05 14:30:06', 0, NULL, '2024-08-05 18:30:06', '2024-08-05 18:30:06'),
(3699, 5, '2024-08-05 14:30:07', '2024-08-05 14:30:07', 0, NULL, '2024-08-05 18:30:07', '2024-08-05 18:30:07'),
(3700, 1, '2024-08-05 14:35:11', '2024-08-05 14:35:11', 0, NULL, '2024-08-05 18:35:11', '2024-08-05 18:35:11'),
(3701, 2, '2024-08-05 14:35:11', '2024-08-05 14:35:11', 0, NULL, '2024-08-05 18:35:11', '2024-08-05 18:35:11'),
(3702, 3, '2024-08-05 14:35:12', '2024-08-05 14:35:12', 0, NULL, '2024-08-05 18:35:12', '2024-08-05 18:35:12'),
(3703, 5, '2024-08-05 14:35:12', '2024-08-05 14:35:12', 0, NULL, '2024-08-05 18:35:12', '2024-08-05 18:35:12'),
(3704, 1, '2024-08-05 14:45:08', '2024-08-05 14:45:08', 0, NULL, '2024-08-05 18:45:09', '2024-08-05 18:45:09'),
(3705, 2, '2024-08-05 14:45:09', '2024-08-05 14:45:09', 0, NULL, '2024-08-05 18:45:09', '2024-08-05 18:45:09'),
(3706, 3, '2024-08-05 14:45:10', '2024-08-05 14:45:10', 0, NULL, '2024-08-05 18:45:10', '2024-08-05 18:45:10'),
(3707, 5, '2024-08-05 14:45:10', '2024-08-05 14:45:10', 0, NULL, '2024-08-05 18:45:10', '2024-08-05 18:45:10'),
(3708, 1, '2024-08-05 14:55:05', '2024-08-05 14:55:05', 0, NULL, '2024-08-05 18:55:06', '2024-08-05 18:55:06'),
(3709, 2, '2024-08-05 14:55:07', '2024-08-05 14:55:07', 0, NULL, '2024-08-05 18:55:07', '2024-08-05 18:55:07'),
(3710, 3, '2024-08-05 14:55:08', '2024-08-05 14:55:08', 0, NULL, '2024-08-05 18:55:08', '2024-08-05 18:55:08'),
(3711, 5, '2024-08-05 14:55:08', '2024-08-05 14:55:08', 0, NULL, '2024-08-05 18:55:08', '2024-08-05 18:55:08'),
(3712, 1, '2024-08-05 15:00:08', '2024-08-05 15:00:08', 0, NULL, '2024-08-05 19:00:08', '2024-08-05 19:00:08'),
(3713, 2, '2024-08-05 15:00:08', '2024-08-05 15:00:08', 0, NULL, '2024-08-05 19:00:09', '2024-08-05 19:00:09'),
(3714, 3, '2024-08-05 15:05:03', '2024-08-05 15:05:04', 0, NULL, '2024-08-05 19:05:04', '2024-08-05 19:05:04'),
(3715, 5, '2024-08-05 15:05:05', '2024-08-05 15:05:05', 0, NULL, '2024-08-05 19:05:06', '2024-08-05 19:05:06'),
(3716, 1, '2024-08-05 15:10:08', '2024-08-05 15:10:08', 0, NULL, '2024-08-05 19:10:08', '2024-08-05 19:10:08'),
(3717, 2, '2024-08-05 15:10:09', '2024-08-05 15:10:09', 0, NULL, '2024-08-05 19:10:09', '2024-08-05 19:10:09'),
(3718, 3, '2024-08-05 15:10:09', '2024-08-05 15:10:09', 0, NULL, '2024-08-05 19:10:10', '2024-08-05 19:10:10'),
(3719, 5, '2024-08-05 15:10:11', '2024-08-05 15:10:11', 0, NULL, '2024-08-05 19:10:11', '2024-08-05 19:10:11'),
(3720, 1, '2024-08-05 15:20:07', '2024-08-05 15:20:07', 0, NULL, '2024-08-05 19:20:07', '2024-08-05 19:20:07'),
(3721, 2, '2024-08-05 15:20:08', '2024-08-05 15:20:08', 0, NULL, '2024-08-05 19:20:08', '2024-08-05 19:20:08'),
(3722, 3, '2024-08-05 15:20:09', '2024-08-05 15:20:09', 0, NULL, '2024-08-05 19:20:09', '2024-08-05 19:20:09'),
(3723, 5, '2024-08-05 15:20:10', '2024-08-05 15:20:10', 0, NULL, '2024-08-05 19:20:10', '2024-08-05 19:20:10'),
(3724, 1, '2024-08-05 15:25:09', '2024-08-05 15:25:09', 0, NULL, '2024-08-05 19:25:10', '2024-08-05 19:25:10'),
(3725, 2, '2024-08-05 15:25:10', '2024-08-05 15:25:10', 0, NULL, '2024-08-05 19:25:10', '2024-08-05 19:25:10'),
(3726, 1, '2024-08-05 15:30:10', '2024-08-05 15:30:10', 0, NULL, '2024-08-05 19:30:11', '2024-08-05 19:30:11'),
(3727, 3, '2024-08-05 15:30:11', '2024-08-05 15:30:11', 0, NULL, '2024-08-05 19:30:11', '2024-08-05 19:30:11'),
(3728, 5, '2024-08-05 15:30:11', '2024-08-05 15:30:11', 0, NULL, '2024-08-05 19:30:12', '2024-08-05 19:30:12'),
(3729, 2, '2024-08-05 15:35:05', '2024-08-05 15:35:05', 0, NULL, '2024-08-05 19:35:05', '2024-08-05 19:35:05'),
(3730, 1, '2024-08-05 15:40:07', '2024-08-05 15:40:08', 0, NULL, '2024-08-05 19:40:08', '2024-08-05 19:40:08'),
(3731, 2, '2024-08-05 15:40:09', '2024-08-05 15:40:09', 0, NULL, '2024-08-05 19:40:09', '2024-08-05 19:40:09'),
(3732, 3, '2024-08-05 15:40:09', '2024-08-05 15:40:09', 0, NULL, '2024-08-05 19:40:10', '2024-08-05 19:40:10'),
(3733, 5, '2024-08-05 15:40:10', '2024-08-05 15:40:10', 0, NULL, '2024-08-05 19:40:10', '2024-08-05 19:40:10'),
(3734, 1, '2024-08-05 15:50:06', '2024-08-05 15:50:07', 0, NULL, '2024-08-05 19:50:08', '2024-08-05 19:50:08'),
(3735, 2, '2024-08-05 15:50:08', '2024-08-05 15:50:08', 0, NULL, '2024-08-05 19:50:08', '2024-08-05 19:50:08'),
(3736, 3, '2024-08-05 15:50:09', '2024-08-05 15:50:09', 0, NULL, '2024-08-05 19:50:09', '2024-08-05 19:50:09'),
(3737, 5, '2024-08-05 15:50:09', '2024-08-05 15:50:09', 0, NULL, '2024-08-05 19:50:09', '2024-08-05 19:50:09'),
(3738, 1, '2024-08-05 16:00:12', '2024-08-05 16:00:12', 0, NULL, '2024-08-05 20:00:12', '2024-08-05 20:00:12'),
(3739, 2, '2024-08-05 16:00:13', '2024-08-05 16:00:13', 0, NULL, '2024-08-05 20:00:13', '2024-08-05 20:00:13'),
(3740, 3, '2024-08-05 16:00:13', '2024-08-05 16:00:13', 0, NULL, '2024-08-05 20:00:13', '2024-08-05 20:00:13'),
(3741, 5, '2024-08-05 16:00:13', '2024-08-05 16:00:13', 0, NULL, '2024-08-05 20:00:13', '2024-08-05 20:00:13'),
(3742, 1, '2024-08-05 16:10:10', '2024-08-05 16:10:10', 0, NULL, '2024-08-05 20:10:10', '2024-08-05 20:10:10'),
(3743, 2, '2024-08-05 16:10:10', '2024-08-05 16:10:10', 0, NULL, '2024-08-05 20:10:11', '2024-08-05 20:10:11'),
(3744, 3, '2024-08-05 16:10:11', '2024-08-05 16:10:11', 0, NULL, '2024-08-05 20:10:11', '2024-08-05 20:10:11'),
(3745, 5, '2024-08-05 16:10:11', '2024-08-05 16:10:11', 0, NULL, '2024-08-05 20:10:11', '2024-08-05 20:10:11'),
(3746, 1, '2024-08-05 16:20:03', '2024-08-05 16:20:03', 0, NULL, '2024-08-05 20:20:04', '2024-08-05 20:20:04'),
(3747, 2, '2024-08-05 16:20:08', '2024-08-05 16:20:08', 0, NULL, '2024-08-05 20:20:09', '2024-08-05 20:20:09'),
(3748, 3, '2024-08-05 16:20:09', '2024-08-05 16:20:09', 0, NULL, '2024-08-05 20:20:09', '2024-08-05 20:20:09'),
(3749, 5, '2024-08-05 16:20:10', '2024-08-05 16:20:10', 0, NULL, '2024-08-05 20:20:10', '2024-08-05 20:20:10'),
(3750, 1, '2024-08-05 16:25:07', '2024-08-05 16:25:07', 0, NULL, '2024-08-05 20:25:07', '2024-08-05 20:25:07'),
(3751, 1, '2024-08-05 16:30:11', '2024-08-05 16:30:11', 0, NULL, '2024-08-05 20:30:11', '2024-08-05 20:30:11'),
(3752, 2, '2024-08-05 16:30:12', '2024-08-05 16:30:12', 0, NULL, '2024-08-05 20:30:12', '2024-08-05 20:30:12'),
(3753, 3, '2024-08-05 16:30:12', '2024-08-05 16:30:12', 0, NULL, '2024-08-05 20:30:12', '2024-08-05 20:30:12'),
(3754, 5, '2024-08-05 16:30:12', '2024-08-05 16:30:12', 0, NULL, '2024-08-05 20:30:12', '2024-08-05 20:30:12'),
(3755, 1, '2024-08-05 16:40:04', '2024-08-05 16:40:04', 0, NULL, '2024-08-05 20:40:04', '2024-08-05 20:40:04'),
(3756, 2, '2024-08-05 16:40:10', '2024-08-05 16:40:10', 0, NULL, '2024-08-05 20:40:13', '2024-08-05 20:40:13'),
(3757, 3, '2024-08-05 16:40:13', '2024-08-05 16:40:13', 0, NULL, '2024-08-05 20:40:13', '2024-08-05 20:40:13'),
(3758, 5, '2024-08-05 16:40:13', '2024-08-05 16:40:13', 0, NULL, '2024-08-05 20:40:14', '2024-08-05 20:40:14'),
(3759, 1, '2024-08-05 16:45:09', '2024-08-05 16:45:09', 0, NULL, '2024-08-05 20:45:09', '2024-08-05 20:45:09'),
(3760, 2, '2024-08-05 16:50:07', '2024-08-05 16:50:07', 0, NULL, '2024-08-05 20:50:08', '2024-08-05 20:50:08'),
(3761, 3, '2024-08-05 16:50:08', '2024-08-05 16:50:08', 0, NULL, '2024-08-05 20:50:08', '2024-08-05 20:50:08'),
(3762, 5, '2024-08-05 16:50:09', '2024-08-05 16:50:09', 0, NULL, '2024-08-05 20:50:10', '2024-08-05 20:50:10'),
(3763, 1, '2024-08-05 16:55:06', '2024-08-05 16:55:06', 0, NULL, '2024-08-05 20:55:07', '2024-08-05 20:55:07'),
(3764, 2, '2024-08-05 17:00:05', '2024-08-05 17:00:05', 0, NULL, '2024-08-05 21:00:06', '2024-08-05 21:00:06'),
(3765, 3, '2024-08-05 17:00:06', '2024-08-05 17:00:06', 0, NULL, '2024-08-05 21:00:07', '2024-08-05 21:00:07'),
(3766, 5, '2024-08-05 17:00:07', '2024-08-05 17:00:07', 0, NULL, '2024-08-05 21:00:07', '2024-08-05 21:00:07'),
(3767, 1, '2024-08-05 17:05:04', '2024-08-05 17:05:04', 0, NULL, '2024-08-05 21:05:05', '2024-08-05 21:05:05'),
(3768, 1, '2024-08-05 17:10:10', '2024-08-05 17:10:10', 0, NULL, '2024-08-05 21:10:11', '2024-08-05 21:10:11'),
(3769, 2, '2024-08-05 17:10:11', '2024-08-05 17:10:11', 0, NULL, '2024-08-05 21:10:11', '2024-08-05 21:10:11'),
(3770, 3, '2024-08-05 17:10:11', '2024-08-05 17:10:11', 0, NULL, '2024-08-05 21:10:12', '2024-08-05 21:10:12'),
(3771, 5, '2024-08-05 17:10:12', '2024-08-05 17:10:12', 0, NULL, '2024-08-05 21:10:12', '2024-08-05 21:10:12'),
(3772, 1, '2024-08-05 17:20:06', '2024-08-05 17:20:06', 0, NULL, '2024-08-05 21:20:07', '2024-08-05 21:20:07'),
(3773, 2, '2024-08-05 17:20:07', '2024-08-05 17:20:07', 0, NULL, '2024-08-05 21:20:07', '2024-08-05 21:20:07'),
(3774, 3, '2024-08-05 17:20:08', '2024-08-05 17:20:08', 0, NULL, '2024-08-05 21:20:08', '2024-08-05 21:20:08'),
(3775, 5, '2024-08-05 17:20:08', '2024-08-05 17:20:08', 0, NULL, '2024-08-05 21:20:08', '2024-08-05 21:20:08'),
(3776, 1, '2024-08-05 17:30:11', '2024-08-05 17:30:11', 0, NULL, '2024-08-05 21:30:11', '2024-08-05 21:30:11'),
(3777, 2, '2024-08-05 17:30:11', '2024-08-05 17:30:11', 0, NULL, '2024-08-05 21:30:11', '2024-08-05 21:30:11'),
(3778, 3, '2024-08-05 17:30:12', '2024-08-05 17:30:12', 0, NULL, '2024-08-05 21:30:12', '2024-08-05 21:30:12'),
(3779, 5, '2024-08-05 17:30:12', '2024-08-05 17:30:12', 0, NULL, '2024-08-05 21:30:12', '2024-08-05 21:30:12'),
(3780, 1, '2024-08-05 17:40:04', '2024-08-05 17:40:04', 0, NULL, '2024-08-05 21:40:04', '2024-08-05 21:40:04'),
(3781, 2, '2024-08-05 17:40:06', '2024-08-05 17:40:06', 0, NULL, '2024-08-05 21:40:11', '2024-08-05 21:40:11'),
(3782, 3, '2024-08-05 17:40:12', '2024-08-05 17:40:12', 0, NULL, '2024-08-05 21:40:12', '2024-08-05 21:40:12'),
(3783, 5, '2024-08-05 17:40:12', '2024-08-05 17:40:12', 0, NULL, '2024-08-05 21:40:12', '2024-08-05 21:40:12'),
(3784, 1, '2024-08-05 17:45:06', '2024-08-05 17:45:06', 0, NULL, '2024-08-05 21:45:07', '2024-08-05 21:45:07'),
(3785, 2, '2024-08-05 17:50:06', '2024-08-05 17:50:06', 0, NULL, '2024-08-05 21:50:06', '2024-08-05 21:50:06'),
(3786, 3, '2024-08-05 17:50:07', '2024-08-05 17:50:07', 0, NULL, '2024-08-05 21:50:07', '2024-08-05 21:50:07'),
(3787, 5, '2024-08-05 17:50:08', '2024-08-05 17:50:08', 0, NULL, '2024-08-05 21:50:08', '2024-08-05 21:50:08'),
(3788, 1, '2024-08-05 17:55:04', '2024-08-05 17:55:04', 0, NULL, '2024-08-05 21:55:05', '2024-08-05 21:55:05'),
(3789, 1, '2024-08-05 18:00:14', '2024-08-05 18:00:14', 0, NULL, '2024-08-05 22:00:15', '2024-08-05 22:00:15'),
(3790, 2, '2024-08-05 18:00:15', '2024-08-05 18:00:15', 0, NULL, '2024-08-05 22:00:15', '2024-08-05 22:00:15'),
(3791, 3, '2024-08-05 18:00:15', '2024-08-05 18:00:15', 0, NULL, '2024-08-05 22:00:15', '2024-08-05 22:00:15'),
(3792, 5, '2024-08-05 18:00:15', '2024-08-05 18:00:15', 0, NULL, '2024-08-05 22:00:15', '2024-08-05 22:00:15'),
(3793, 1, '2024-08-05 18:10:05', '2024-08-05 18:10:05', 0, NULL, '2024-08-05 22:10:06', '2024-08-05 22:10:06'),
(3794, 2, '2024-08-05 18:10:07', '2024-08-05 18:10:07', 0, NULL, '2024-08-05 22:10:08', '2024-08-05 22:10:08'),
(3795, 3, '2024-08-05 18:10:08', '2024-08-05 18:10:08', 0, NULL, '2024-08-05 22:10:09', '2024-08-05 22:10:09'),
(3796, 5, '2024-08-05 18:10:09', '2024-08-05 18:10:09', 0, NULL, '2024-08-05 22:10:10', '2024-08-05 22:10:10'),
(3797, 1, '2024-08-05 18:15:12', '2024-08-05 18:15:12', 0, NULL, '2024-08-05 22:15:12', '2024-08-05 22:15:12'),
(3798, 2, '2024-08-05 18:15:12', '2024-08-05 18:15:12', 0, NULL, '2024-08-05 22:15:13', '2024-08-05 22:15:13'),
(3799, 3, '2024-08-05 18:15:13', '2024-08-05 18:15:13', 0, NULL, '2024-08-05 22:15:13', '2024-08-05 22:15:13'),
(3800, 5, '2024-08-05 18:15:13', '2024-08-05 18:15:13', 0, NULL, '2024-08-05 22:15:13', '2024-08-05 22:15:13'),
(3801, 1, '2024-08-05 18:25:04', '2024-08-05 18:25:04', 0, NULL, '2024-08-05 22:25:04', '2024-08-05 22:25:04'),
(3802, 2, '2024-08-05 18:25:05', '2024-08-05 18:25:05', 0, NULL, '2024-08-05 22:25:05', '2024-08-05 22:25:05'),
(3803, 3, '2024-08-05 18:25:05', '2024-08-05 18:25:05', 0, NULL, '2024-08-05 22:25:06', '2024-08-05 22:25:06'),
(3804, 5, '2024-08-05 18:25:06', '2024-08-05 18:25:06', 0, NULL, '2024-08-05 22:25:06', '2024-08-05 22:25:06'),
(3805, 1, '2024-08-05 18:30:05', '2024-08-05 18:30:05', 0, NULL, '2024-08-05 22:30:05', '2024-08-05 22:30:05'),
(3806, 2, '2024-08-05 18:35:05', '2024-08-05 18:35:05', 0, NULL, '2024-08-05 22:35:05', '2024-08-05 22:35:05'),
(3807, 3, '2024-08-05 18:35:06', '2024-08-05 18:35:06', 0, NULL, '2024-08-05 22:35:06', '2024-08-05 22:35:06'),
(3808, 5, '2024-08-05 18:35:06', '2024-08-05 18:35:06', 0, NULL, '2024-08-05 22:35:07', '2024-08-05 22:35:07'),
(3809, 1, '2024-08-05 18:40:10', '2024-08-05 18:40:10', 0, NULL, '2024-08-05 22:40:10', '2024-08-05 22:40:10'),
(3810, 2, '2024-08-05 18:40:10', '2024-08-05 18:40:10', 0, NULL, '2024-08-05 22:40:11', '2024-08-05 22:40:11'),
(3811, 3, '2024-08-05 18:40:11', '2024-08-05 18:40:11', 0, NULL, '2024-08-05 22:40:11', '2024-08-05 22:40:11'),
(3812, 5, '2024-08-05 18:40:11', '2024-08-05 18:40:11', 0, NULL, '2024-08-05 22:40:11', '2024-08-05 22:40:11'),
(3813, 1, '2024-08-05 18:50:05', '2024-08-05 18:50:05', 0, NULL, '2024-08-05 22:50:05', '2024-08-05 22:50:05'),
(3814, 2, '2024-08-05 18:50:06', '2024-08-05 18:50:06', 0, NULL, '2024-08-05 22:50:06', '2024-08-05 22:50:06'),
(3815, 3, '2024-08-05 18:50:07', '2024-08-05 18:50:07', 0, NULL, '2024-08-05 22:50:07', '2024-08-05 22:50:07'),
(3816, 5, '2024-08-05 18:50:07', '2024-08-05 18:50:07', 0, NULL, '2024-08-05 22:50:08', '2024-08-05 22:50:08'),
(3817, 1, '2024-08-05 19:00:08', '2024-08-05 19:00:08', 0, NULL, '2024-08-05 23:00:08', '2024-08-05 23:00:08'),
(3818, 2, '2024-08-05 19:00:09', '2024-08-05 19:00:09', 0, NULL, '2024-08-05 23:00:09', '2024-08-05 23:00:09'),
(3819, 3, '2024-08-05 19:00:09', '2024-08-05 19:00:09', 0, NULL, '2024-08-05 23:00:10', '2024-08-05 23:00:10'),
(3820, 5, '2024-08-05 19:00:10', '2024-08-05 19:00:10', 0, NULL, '2024-08-05 23:00:11', '2024-08-05 23:00:11'),
(3821, 1, '2024-08-05 19:05:11', '2024-08-05 19:05:11', 0, NULL, '2024-08-05 23:05:11', '2024-08-05 23:05:11'),
(3822, 2, '2024-08-05 19:05:11', '2024-08-05 19:05:11', 0, NULL, '2024-08-05 23:05:12', '2024-08-05 23:05:12'),
(3823, 3, '2024-08-05 19:05:13', '2024-08-05 19:05:13', 0, NULL, '2024-08-05 23:05:13', '2024-08-05 23:05:13'),
(3824, 5, '2024-08-05 19:10:05', '2024-08-05 19:10:05', 0, NULL, '2024-08-05 23:10:06', '2024-08-05 23:10:06'),
(3825, 1, '2024-08-05 19:15:08', '2024-08-05 19:15:08', 0, NULL, '2024-08-05 23:15:08', '2024-08-05 23:15:08'),
(3826, 2, '2024-08-05 19:15:09', '2024-08-05 19:15:09', 0, NULL, '2024-08-05 23:15:10', '2024-08-05 23:15:10'),
(3827, 3, '2024-08-05 19:15:10', '2024-08-05 19:15:10', 0, NULL, '2024-08-05 23:15:10', '2024-08-05 23:15:10'),
(3828, 5, '2024-08-05 19:15:10', '2024-08-05 19:15:10', 0, NULL, '2024-08-05 23:15:10', '2024-08-05 23:15:10'),
(3829, 1, '2024-08-05 19:25:05', '2024-08-05 19:25:05', 0, NULL, '2024-08-05 23:25:05', '2024-08-05 23:25:05'),
(3830, 2, '2024-08-05 19:25:05', '2024-08-05 19:25:05', 0, NULL, '2024-08-05 23:25:05', '2024-08-05 23:25:05'),
(3831, 3, '2024-08-05 19:25:06', '2024-08-05 19:25:06', 0, NULL, '2024-08-05 23:25:06', '2024-08-05 23:25:06'),
(3832, 5, '2024-08-05 19:25:06', '2024-08-05 19:25:06', 0, NULL, '2024-08-05 23:25:07', '2024-08-05 23:25:07'),
(3833, 1, '2024-08-05 19:30:06', '2024-08-05 19:30:06', 0, NULL, '2024-08-05 23:30:06', '2024-08-05 23:30:06'),
(3834, 2, '2024-08-05 19:30:07', '2024-08-05 19:30:07', 0, NULL, '2024-08-05 23:30:07', '2024-08-05 23:30:07'),
(3835, 3, '2024-08-05 19:35:06', '2024-08-05 19:35:06', 0, NULL, '2024-08-05 23:35:07', '2024-08-05 23:35:07'),
(3836, 5, '2024-08-05 19:35:09', '2024-08-05 19:35:09', 0, NULL, '2024-08-05 23:35:09', '2024-08-05 23:35:09'),
(3837, 1, '2024-08-05 19:40:05', '2024-08-05 19:40:05', 0, NULL, '2024-08-05 23:40:06', '2024-08-05 23:40:06'),
(3838, 2, '2024-08-05 19:40:06', '2024-08-05 19:40:06', 0, NULL, '2024-08-05 23:40:10', '2024-08-05 23:40:10'),
(3839, 1, '2024-08-05 19:45:06', '2024-08-05 19:45:06', 0, NULL, '2024-08-05 23:45:06', '2024-08-05 23:45:06'),
(3840, 3, '2024-08-05 19:45:07', '2024-08-05 19:45:07', 0, NULL, '2024-08-05 23:45:07', '2024-08-05 23:45:07'),
(3841, 5, '2024-08-05 19:45:08', '2024-08-05 19:45:08', 0, NULL, '2024-08-05 23:45:08', '2024-08-05 23:45:08'),
(3842, 2, '2024-08-05 19:50:05', '2024-08-05 19:50:05', 0, NULL, '2024-08-05 23:50:06', '2024-08-05 23:50:06'),
(3843, 1, '2024-08-05 19:55:03', '2024-08-05 19:55:03', 0, NULL, '2024-08-05 23:55:04', '2024-08-05 23:55:04'),
(3844, 3, '2024-08-05 19:55:04', '2024-08-05 19:55:04', 0, NULL, '2024-08-05 23:55:04', '2024-08-05 23:55:04'),
(3845, 5, '2024-08-05 19:55:05', '2024-08-05 19:55:05', 0, NULL, '2024-08-05 23:55:05', '2024-08-05 23:55:05'),
(3846, 2, '2024-08-05 20:00:03', '2024-08-05 20:00:03', 0, NULL, '2024-08-06 00:00:03', '2024-08-06 00:00:03'),
(3847, 1, '2024-08-05 20:05:04', '2024-08-05 20:05:04', 0, NULL, '2024-08-06 00:05:05', '2024-08-06 00:05:05'),
(3848, 2, '2024-08-05 20:05:06', '2024-08-05 20:05:06', 0, NULL, '2024-08-06 00:05:06', '2024-08-06 00:05:06'),
(3849, 3, '2024-08-05 20:05:07', '2024-08-05 20:05:07', 0, NULL, '2024-08-06 00:05:07', '2024-08-06 00:05:07'),
(3850, 5, '2024-08-05 20:05:08', '2024-08-05 20:05:08', 0, NULL, '2024-08-06 00:05:08', '2024-08-06 00:05:08'),
(3851, 1, '2024-08-05 20:10:07', '2024-08-05 20:10:07', 0, NULL, '2024-08-06 00:10:07', '2024-08-06 00:10:07'),
(3852, 2, '2024-08-05 20:10:08', '2024-08-05 20:10:08', 0, NULL, '2024-08-06 00:10:08', '2024-08-06 00:10:08'),
(3853, 1, '2024-08-05 20:15:14', '2024-08-05 20:15:15', 1, NULL, '2024-08-06 00:15:17', '2024-08-06 00:15:17'),
(3854, 2, '2024-08-05 20:15:17', '2024-08-05 20:15:17', 0, NULL, '2024-08-06 00:15:17', '2024-08-06 00:15:17'),
(3855, 3, '2024-08-05 20:15:18', '2024-08-05 20:15:18', 0, NULL, '2024-08-06 00:15:18', '2024-08-06 00:15:18'),
(3856, 5, '2024-08-05 20:15:18', '2024-08-05 20:15:18', 0, NULL, '2024-08-06 00:15:19', '2024-08-06 00:15:19'),
(3857, 1, '2024-08-05 20:25:07', '2024-08-05 20:25:07', 0, NULL, '2024-08-06 00:25:07', '2024-08-06 00:25:07'),
(3858, 2, '2024-08-05 20:25:07', '2024-08-05 20:25:07', 0, NULL, '2024-08-06 00:25:08', '2024-08-06 00:25:08'),
(3859, 3, '2024-08-05 20:25:08', '2024-08-05 20:25:08', 0, NULL, '2024-08-06 00:25:09', '2024-08-06 00:25:09'),
(3860, 5, '2024-08-05 20:25:09', '2024-08-05 20:25:09', 0, NULL, '2024-08-06 00:25:09', '2024-08-06 00:25:09'),
(3861, 1, '2024-08-05 20:35:06', '2024-08-05 20:35:06', 0, NULL, '2024-08-06 00:35:07', '2024-08-06 00:35:07'),
(3862, 2, '2024-08-05 20:35:07', '2024-08-05 20:35:07', 0, NULL, '2024-08-06 00:35:11', '2024-08-06 00:35:11'),
(3863, 3, '2024-08-05 20:35:11', '2024-08-05 20:35:11', 0, NULL, '2024-08-06 00:35:11', '2024-08-06 00:35:11'),
(3864, 5, '2024-08-05 20:35:11', '2024-08-05 20:35:11', 0, NULL, '2024-08-06 00:35:11', '2024-08-06 00:35:11'),
(3865, 1, '2024-08-05 20:45:04', '2024-08-05 20:45:04', 0, NULL, '2024-08-06 00:45:04', '2024-08-06 00:45:04'),
(3866, 2, '2024-08-05 20:45:05', '2024-08-05 20:45:05', 0, NULL, '2024-08-06 00:45:05', '2024-08-06 00:45:05'),
(3867, 3, '2024-08-05 20:45:06', '2024-08-05 20:45:06', 0, NULL, '2024-08-06 00:45:07', '2024-08-06 00:45:07'),
(3868, 5, '2024-08-05 20:45:11', '2024-08-05 20:45:11', 0, NULL, '2024-08-06 00:45:11', '2024-08-06 00:45:11'),
(3869, 1, '2024-08-05 20:50:11', '2024-08-05 20:50:11', 0, NULL, '2024-08-06 00:50:11', '2024-08-06 00:50:11'),
(3870, 2, '2024-08-05 20:50:11', '2024-08-05 20:50:11', 0, NULL, '2024-08-06 00:50:11', '2024-08-06 00:50:11'),
(3871, 3, '2024-08-05 20:50:11', '2024-08-05 20:50:11', 0, NULL, '2024-08-06 00:50:11', '2024-08-06 00:50:11'),
(3872, 5, '2024-08-05 20:55:05', '2024-08-05 20:55:05', 0, NULL, '2024-08-06 00:55:06', '2024-08-06 00:55:06'),
(3873, 1, '2024-08-05 21:00:06', '2024-08-05 21:00:06', 0, NULL, '2024-08-06 01:00:06', '2024-08-06 01:00:06'),
(3874, 2, '2024-08-05 21:00:07', '2024-08-05 21:00:07', 0, NULL, '2024-08-06 01:00:07', '2024-08-06 01:00:07'),
(3875, 3, '2024-08-05 21:00:14', '2024-08-05 21:00:14', 0, NULL, '2024-08-06 01:00:14', '2024-08-06 01:00:14'),
(3876, 5, '2024-08-05 21:00:14', '2024-08-05 21:00:14', 0, NULL, '2024-08-06 01:00:14', '2024-08-06 01:00:14'),
(3877, 1, '2024-08-05 21:10:05', '2024-08-05 21:10:05', 0, NULL, '2024-08-06 01:10:05', '2024-08-06 01:10:05'),
(3878, 2, '2024-08-05 21:10:06', '2024-08-05 21:10:06', 0, NULL, '2024-08-06 01:10:08', '2024-08-06 01:10:08'),
(3879, 3, '2024-08-05 21:10:09', '2024-08-05 21:10:09', 0, NULL, '2024-08-06 01:10:09', '2024-08-06 01:10:09'),
(3880, 5, '2024-08-05 21:10:09', '2024-08-05 21:10:09', 0, NULL, '2024-08-06 01:10:10', '2024-08-06 01:10:10'),
(3881, 1, '2024-08-05 21:15:06', '2024-08-05 21:15:06', 0, NULL, '2024-08-06 01:15:07', '2024-08-06 01:15:07'),
(3882, 1, '2024-08-05 21:20:08', '2024-08-05 21:20:08', 0, NULL, '2024-08-06 01:20:09', '2024-08-06 01:20:09'),
(3883, 2, '2024-08-05 21:20:09', '2024-08-05 21:20:09', 0, NULL, '2024-08-06 01:20:09', '2024-08-06 01:20:09'),
(3884, 3, '2024-08-05 21:20:10', '2024-08-05 21:20:10', 0, NULL, '2024-08-06 01:20:10', '2024-08-06 01:20:10'),
(3885, 5, '2024-08-05 21:20:10', '2024-08-05 21:20:10', 0, NULL, '2024-08-06 01:20:11', '2024-08-06 01:20:11'),
(3886, 1, '2024-08-05 21:25:11', '2024-08-05 21:25:11', 0, NULL, '2024-08-06 01:25:11', '2024-08-06 01:25:11'),
(3887, 2, '2024-08-05 21:25:11', '2024-08-05 21:25:11', 0, NULL, '2024-08-06 01:25:11', '2024-08-06 01:25:11'),
(3888, 3, '2024-08-05 21:30:04', '2024-08-05 21:30:04', 0, NULL, '2024-08-06 01:30:05', '2024-08-06 01:30:05'),
(3889, 5, '2024-08-05 21:30:06', '2024-08-05 21:30:06', 0, NULL, '2024-08-06 01:30:07', '2024-08-06 01:30:07'),
(3890, 1, '2024-08-05 21:35:05', '2024-08-05 21:35:05', 0, NULL, '2024-08-06 01:35:06', '2024-08-06 01:35:06'),
(3891, 2, '2024-08-05 21:35:06', '2024-08-05 21:35:06', 0, NULL, '2024-08-06 01:35:07', '2024-08-06 01:35:07'),
(3892, 3, '2024-08-05 21:35:07', '2024-08-05 21:35:07', 0, NULL, '2024-08-06 01:35:08', '2024-08-06 01:35:08'),
(3893, 1, '2024-08-05 21:40:07', '2024-08-05 21:40:07', 0, NULL, '2024-08-06 01:40:07', '2024-08-06 01:40:07'),
(3894, 2, '2024-08-05 21:40:08', '2024-08-05 21:40:08', 0, NULL, '2024-08-06 01:40:08', '2024-08-06 01:40:08'),
(3895, 5, '2024-08-05 21:40:08', '2024-08-05 21:40:08', 0, NULL, '2024-08-06 01:40:09', '2024-08-06 01:40:09'),
(3896, 1, '2024-08-05 21:45:09', '2024-08-05 21:45:09', 0, NULL, '2024-08-06 01:45:09', '2024-08-06 01:45:09'),
(3897, 2, '2024-08-05 21:45:10', '2024-08-05 21:45:10', 0, NULL, '2024-08-06 01:45:10', '2024-08-06 01:45:10'),
(3898, 3, '2024-08-05 21:45:10', '2024-08-05 21:45:10', 0, NULL, '2024-08-06 01:45:10', '2024-08-06 01:45:10'),
(3899, 5, '2024-08-05 21:45:11', '2024-08-05 21:45:11', 0, NULL, '2024-08-06 01:45:11', '2024-08-06 01:45:11'),
(3900, 1, '2024-08-05 21:50:11', '2024-08-05 21:50:11', 0, NULL, '2024-08-06 01:50:11', '2024-08-06 01:50:11'),
(3901, 2, '2024-08-05 21:50:11', '2024-08-05 21:50:11', 0, NULL, '2024-08-06 01:50:11', '2024-08-06 01:50:11'),
(3902, 3, '2024-08-05 21:50:11', '2024-08-05 21:50:11', 0, NULL, '2024-08-06 01:50:12', '2024-08-06 01:50:12'),
(3903, 5, '2024-08-05 21:55:07', '2024-08-05 21:55:07', 0, NULL, '2024-08-06 01:55:07', '2024-08-06 01:55:07'),
(3904, 1, '2024-08-05 22:00:05', '2024-08-05 22:00:05', 0, NULL, '2024-08-06 02:00:05', '2024-08-06 02:00:05'),
(3905, 2, '2024-08-05 22:00:06', '2024-08-05 22:00:06', 0, NULL, '2024-08-06 02:00:07', '2024-08-06 02:00:07'),
(3906, 3, '2024-08-05 22:00:09', '2024-08-05 22:00:09', 0, NULL, '2024-08-06 02:00:09', '2024-08-06 02:00:09'),
(3907, 5, '2024-08-05 22:05:04', '2024-08-05 22:05:05', 0, NULL, '2024-08-06 02:05:06', '2024-08-06 02:05:06'),
(3908, 1, '2024-08-05 22:10:05', '2024-08-05 22:10:05', 0, NULL, '2024-08-06 02:10:05', '2024-08-06 02:10:05'),
(3909, 2, '2024-08-05 22:10:05', '2024-08-05 22:10:05', 0, NULL, '2024-08-06 02:10:06', '2024-08-06 02:10:06'),
(3910, 3, '2024-08-05 22:10:06', '2024-08-05 22:10:06', 0, NULL, '2024-08-06 02:10:06', '2024-08-06 02:10:06'),
(3911, 5, '2024-08-05 22:15:04', '2024-08-05 22:15:04', 0, NULL, '2024-08-06 02:15:05', '2024-08-06 02:15:05'),
(3912, 1, '2024-08-05 22:20:08', '2024-08-05 22:20:08', 0, NULL, '2024-08-06 02:20:09', '2024-08-06 02:20:09'),
(3913, 2, '2024-08-05 22:20:09', '2024-08-05 22:20:09', 0, NULL, '2024-08-06 02:20:10', '2024-08-06 02:20:10'),
(3914, 3, '2024-08-05 22:20:10', '2024-08-05 22:20:10', 0, NULL, '2024-08-06 02:20:10', '2024-08-06 02:20:10'),
(3915, 5, '2024-08-05 22:20:10', '2024-08-05 22:20:10', 0, NULL, '2024-08-06 02:20:10', '2024-08-06 02:20:10'),
(3916, 1, '2024-08-05 22:30:03', '2024-08-05 22:30:03', 0, NULL, '2024-08-06 02:30:03', '2024-08-06 02:30:03'),
(3917, 2, '2024-08-05 22:30:03', '2024-08-05 22:30:03', 0, NULL, '2024-08-06 02:30:03', '2024-08-06 02:30:03'),
(3918, 3, '2024-08-05 22:30:04', '2024-08-05 22:30:04', 0, NULL, '2024-08-06 02:30:04', '2024-08-06 02:30:04'),
(3919, 5, '2024-08-05 22:30:04', '2024-08-05 22:30:04', 0, NULL, '2024-08-06 02:30:05', '2024-08-06 02:30:05'),
(3920, 1, '2024-08-05 22:35:04', '2024-08-05 22:35:04', 0, NULL, '2024-08-06 02:35:05', '2024-08-06 02:35:05'),
(3921, 2, '2024-08-05 22:35:06', '2024-08-05 22:35:06', 0, NULL, '2024-08-06 02:35:06', '2024-08-06 02:35:06'),
(3922, 1, '2024-08-05 22:40:05', '2024-08-05 22:40:06', 0, NULL, '2024-08-06 02:40:06', '2024-08-06 02:40:06'),
(3923, 3, '2024-08-05 22:40:06', '2024-08-05 22:40:06', 0, NULL, '2024-08-06 02:40:07', '2024-08-06 02:40:07'),
(3924, 5, '2024-08-05 22:40:08', '2024-08-05 22:40:08', 0, NULL, '2024-08-06 02:40:08', '2024-08-06 02:40:08'),
(3925, 1, '2024-08-05 22:45:10', '2024-08-05 22:45:10', 0, NULL, '2024-08-06 02:45:13', '2024-08-06 02:45:13'),
(3926, 2, '2024-08-05 22:45:14', '2024-08-05 22:45:14', 0, NULL, '2024-08-06 02:45:14', '2024-08-06 02:45:14'),
(3927, 3, '2024-08-05 22:45:14', '2024-08-05 22:45:14', 0, NULL, '2024-08-06 02:45:14', '2024-08-06 02:45:14'),
(3928, 5, '2024-08-05 22:45:14', '2024-08-05 22:45:14', 0, NULL, '2024-08-06 02:45:14', '2024-08-06 02:45:14'),
(3929, 1, '2024-08-05 22:55:12', '2024-08-05 22:55:12', 0, NULL, '2024-08-06 02:55:12', '2024-08-06 02:55:12'),
(3930, 2, '2024-08-05 22:55:13', '2024-08-05 22:55:13', 0, NULL, '2024-08-06 02:55:13', '2024-08-06 02:55:13'),
(3931, 3, '2024-08-05 22:55:13', '2024-08-05 22:55:13', 0, NULL, '2024-08-06 02:55:13', '2024-08-06 02:55:13'),
(3932, 5, '2024-08-05 22:55:13', '2024-08-05 22:55:13', 0, NULL, '2024-08-06 02:55:13', '2024-08-06 02:55:13'),
(3933, 1, '2024-08-05 23:05:05', '2024-08-05 23:05:05', 0, NULL, '2024-08-06 03:05:06', '2024-08-06 03:05:06'),
(3934, 2, '2024-08-05 23:05:06', '2024-08-05 23:05:06', 0, NULL, '2024-08-06 03:05:07', '2024-08-06 03:05:07'),
(3935, 3, '2024-08-05 23:05:07', '2024-08-05 23:05:07', 0, NULL, '2024-08-06 03:05:07', '2024-08-06 03:05:07'),
(3936, 5, '2024-08-05 23:05:08', '2024-08-05 23:05:08', 0, NULL, '2024-08-06 03:05:08', '2024-08-06 03:05:08'),
(3937, 1, '2024-08-05 23:10:08', '2024-08-05 23:10:08', 0, NULL, '2024-08-06 03:10:10', '2024-08-06 03:10:10'),
(3938, 2, '2024-08-05 23:10:12', '2024-08-05 23:10:12', 0, NULL, '2024-08-06 03:10:14', '2024-08-06 03:10:14'),
(3939, 3, '2024-08-05 23:10:14', '2024-08-05 23:10:14', 0, NULL, '2024-08-06 03:10:14', '2024-08-06 03:10:14'),
(3940, 5, '2024-08-05 23:15:08', '2024-08-05 23:15:08', 0, NULL, '2024-08-06 03:15:09', '2024-08-06 03:15:09'),
(3941, 1, '2024-08-05 23:20:06', '2024-08-05 23:20:06', 0, NULL, '2024-08-06 03:20:07', '2024-08-06 03:20:07'),
(3942, 2, '2024-08-05 23:20:07', '2024-08-05 23:20:07', 0, NULL, '2024-08-06 03:20:07', '2024-08-06 03:20:07'),
(3943, 3, '2024-08-05 23:20:07', '2024-08-05 23:20:07', 0, NULL, '2024-08-06 03:20:08', '2024-08-06 03:20:08'),
(3944, 1, '2024-08-05 23:25:08', '2024-08-05 23:25:08', 0, NULL, '2024-08-06 03:25:09', '2024-08-06 03:25:09'),
(3945, 2, '2024-08-05 23:25:09', '2024-08-05 23:25:09', 0, NULL, '2024-08-06 03:25:09', '2024-08-06 03:25:09'),
(3946, 3, '2024-08-05 23:25:10', '2024-08-05 23:25:10', 0, NULL, '2024-08-06 03:25:10', '2024-08-06 03:25:10'),
(3947, 5, '2024-08-05 23:25:10', '2024-08-05 23:25:10', 0, NULL, '2024-08-06 03:25:11', '2024-08-06 03:25:11'),
(3948, 1, '2024-08-05 23:35:07', '2024-08-05 23:35:07', 0, NULL, '2024-08-06 03:35:08', '2024-08-06 03:35:08'),
(3949, 2, '2024-08-05 23:35:08', '2024-08-05 23:35:08', 0, NULL, '2024-08-06 03:35:08', '2024-08-06 03:35:08'),
(3950, 3, '2024-08-05 23:35:09', '2024-08-05 23:35:09', 0, NULL, '2024-08-06 03:35:09', '2024-08-06 03:35:09'),
(3951, 5, '2024-08-05 23:35:09', '2024-08-05 23:35:09', 0, NULL, '2024-08-06 03:35:09', '2024-08-06 03:35:09'),
(3952, 1, '2024-08-05 23:40:09', '2024-08-05 23:40:09', 0, NULL, '2024-08-06 03:40:10', '2024-08-06 03:40:10'),
(3953, 2, '2024-08-05 23:40:10', '2024-08-05 23:40:10', 0, NULL, '2024-08-06 03:40:10', '2024-08-06 03:40:10'),
(3954, 3, '2024-08-05 23:45:08', '2024-08-05 23:45:08', 0, NULL, '2024-08-06 03:45:08', '2024-08-06 03:45:08'),
(3955, 5, '2024-08-05 23:45:09', '2024-08-05 23:45:09', 0, NULL, '2024-08-06 03:45:09', '2024-08-06 03:45:09'),
(3956, 1, '2024-08-05 23:50:07', '2024-08-05 23:50:07', 0, NULL, '2024-08-06 03:50:08', '2024-08-06 03:50:08'),
(3957, 2, '2024-08-05 23:50:08', '2024-08-05 23:50:08', 0, NULL, '2024-08-06 03:50:09', '2024-08-06 03:50:09'),
(3958, 3, '2024-08-05 23:55:06', '2024-08-05 23:55:06', 0, NULL, '2024-08-06 03:55:06', '2024-08-06 03:55:06'),
(3959, 5, '2024-08-05 23:55:06', '2024-08-05 23:55:06', 0, NULL, '2024-08-06 03:55:06', '2024-08-06 03:55:06'),
(3960, 1, '2024-08-06 00:00:06', '2024-08-06 00:00:06', 0, NULL, '2024-08-06 04:00:07', '2024-08-06 04:00:07'),
(3961, 2, '2024-08-06 00:00:07', '2024-08-06 00:00:07', 0, NULL, '2024-08-06 04:00:08', '2024-08-06 04:00:08'),
(3962, 1, '2024-08-06 00:05:07', '2024-08-06 00:05:07', 0, NULL, '2024-08-06 04:05:07', '2024-08-06 04:05:07'),
(3963, 3, '2024-08-06 00:05:08', '2024-08-06 00:05:08', 0, NULL, '2024-08-06 04:05:08', '2024-08-06 04:05:08'),
(3964, 5, '2024-08-06 00:05:08', '2024-08-06 00:05:08', 0, NULL, '2024-08-06 04:05:09', '2024-08-06 04:05:09'),
(3965, 2, '2024-08-06 00:10:07', '2024-08-06 00:10:07', 0, NULL, '2024-08-06 04:10:07', '2024-08-06 04:10:07'),
(3966, 1, '2024-08-06 00:15:10', '2024-08-06 00:15:10', 0, NULL, '2024-08-06 04:15:10', '2024-08-06 04:15:10'),
(3967, 2, '2024-08-06 00:15:10', '2024-08-06 00:15:10', 0, NULL, '2024-08-06 04:15:11', '2024-08-06 04:15:11'),
(3968, 3, '2024-08-06 00:15:11', '2024-08-06 00:15:11', 0, NULL, '2024-08-06 04:15:11', '2024-08-06 04:15:11'),
(3969, 5, '2024-08-06 00:15:11', '2024-08-06 00:15:11', 0, NULL, '2024-08-06 04:15:12', '2024-08-06 04:15:12'),
(3970, 1, '2024-08-06 00:25:06', '2024-08-06 00:25:06', 0, NULL, '2024-08-06 04:25:07', '2024-08-06 04:25:07'),
(3971, 2, '2024-08-06 00:25:07', '2024-08-06 00:25:07', 0, NULL, '2024-08-06 04:25:07', '2024-08-06 04:25:07'),
(3972, 3, '2024-08-06 00:25:08', '2024-08-06 00:25:08', 0, NULL, '2024-08-06 04:25:08', '2024-08-06 04:25:08'),
(3973, 5, '2024-08-06 00:25:09', '2024-08-06 00:25:09', 0, NULL, '2024-08-06 04:25:09', '2024-08-06 04:25:09'),
(3974, 1, '2024-08-06 00:35:04', '2024-08-06 00:35:04', 0, NULL, '2024-08-06 04:35:04', '2024-08-06 04:35:04'),
(3975, 2, '2024-08-06 00:35:04', '2024-08-06 00:35:04', 0, NULL, '2024-08-06 04:35:05', '2024-08-06 04:35:05'),
(3976, 3, '2024-08-06 00:35:05', '2024-08-06 00:35:05', 0, NULL, '2024-08-06 04:35:05', '2024-08-06 04:35:05'),
(3977, 5, '2024-08-06 00:35:06', '2024-08-06 00:35:06', 0, NULL, '2024-08-06 04:35:06', '2024-08-06 04:35:06'),
(3978, 1, '2024-08-06 00:45:07', '2024-08-06 00:45:07', 0, NULL, '2024-08-06 04:45:08', '2024-08-06 04:45:08'),
(3979, 2, '2024-08-06 00:45:08', '2024-08-06 00:45:08', 0, NULL, '2024-08-06 04:45:08', '2024-08-06 04:45:08'),
(3980, 3, '2024-08-06 00:45:08', '2024-08-06 00:45:08', 0, NULL, '2024-08-06 04:45:09', '2024-08-06 04:45:09'),
(3981, 5, '2024-08-06 00:45:09', '2024-08-06 00:45:09', 0, NULL, '2024-08-06 04:45:09', '2024-08-06 04:45:09'),
(3982, 1, '2024-08-06 00:50:09', '2024-08-06 00:50:10', 0, NULL, '2024-08-06 04:50:10', '2024-08-06 04:50:10'),
(3983, 2, '2024-08-06 00:50:10', '2024-08-06 00:50:10', 0, NULL, '2024-08-06 04:50:11', '2024-08-06 04:50:11'),
(3984, 3, '2024-08-06 00:50:11', '2024-08-06 00:50:11', 0, NULL, '2024-08-06 04:50:11', '2024-08-06 04:50:11'),
(3985, 5, '2024-08-06 00:55:06', '2024-08-06 00:55:06', 0, NULL, '2024-08-06 04:55:06', '2024-08-06 04:55:06'),
(3986, 1, '2024-08-06 01:00:15', '2024-08-06 01:00:15', 0, NULL, '2024-08-06 05:00:15', '2024-08-06 05:00:15'),
(3987, 2, '2024-08-06 01:00:15', '2024-08-06 01:00:15', 0, NULL, '2024-08-06 05:00:15', '2024-08-06 05:00:15'),
(3988, 3, '2024-08-06 01:00:16', '2024-08-06 01:00:16', 0, NULL, '2024-08-06 05:00:16', '2024-08-06 05:00:16'),
(3989, 5, '2024-08-06 01:00:16', '2024-08-06 01:00:16', 0, NULL, '2024-08-06 05:00:16', '2024-08-06 05:00:16'),
(3990, 1, '2024-08-06 01:10:09', '2024-08-06 01:10:09', 0, NULL, '2024-08-06 05:10:09', '2024-08-06 05:10:09'),
(3991, 2, '2024-08-06 01:10:10', '2024-08-06 01:10:10', 0, NULL, '2024-08-06 05:10:10', '2024-08-06 05:10:10'),
(3992, 3, '2024-08-06 01:10:11', '2024-08-06 01:10:11', 0, NULL, '2024-08-06 05:10:11', '2024-08-06 05:10:11'),
(3993, 5, '2024-08-06 01:10:11', '2024-08-06 01:10:11', 0, NULL, '2024-08-06 05:10:11', '2024-08-06 05:10:11'),
(3994, 1, '2024-08-06 01:20:08', '2024-08-06 01:20:08', 0, NULL, '2024-08-06 05:20:08', '2024-08-06 05:20:08'),
(3995, 2, '2024-08-06 01:20:09', '2024-08-06 01:20:09', 0, NULL, '2024-08-06 05:20:09', '2024-08-06 05:20:09'),
(3996, 3, '2024-08-06 01:20:10', '2024-08-06 01:20:10', 0, NULL, '2024-08-06 05:20:10', '2024-08-06 05:20:10'),
(3997, 5, '2024-08-06 01:20:10', '2024-08-06 01:20:10', 0, NULL, '2024-08-06 05:20:10', '2024-08-06 05:20:10'),
(3998, 1, '2024-08-06 01:30:06', '2024-08-06 01:30:06', 0, NULL, '2024-08-06 05:30:06', '2024-08-06 05:30:06'),
(3999, 2, '2024-08-06 01:30:07', '2024-08-06 01:30:07', 0, NULL, '2024-08-06 05:30:08', '2024-08-06 05:30:08'),
(4000, 3, '2024-08-06 01:30:08', '2024-08-06 01:30:08', 0, NULL, '2024-08-06 05:30:08', '2024-08-06 05:30:08'),
(4001, 5, '2024-08-06 01:30:11', '2024-08-06 01:30:11', 0, NULL, '2024-08-06 05:30:12', '2024-08-06 05:30:12'),
(4002, 1, '2024-08-06 01:35:07', '2024-08-06 01:35:07', 0, NULL, '2024-08-06 05:35:08', '2024-08-06 05:35:08'),
(4003, 2, '2024-08-06 01:40:06', '2024-08-06 01:40:06', 0, NULL, '2024-08-06 05:40:07', '2024-08-06 05:40:07'),
(4004, 3, '2024-08-06 01:40:08', '2024-08-06 01:40:08', 0, NULL, '2024-08-06 05:40:08', '2024-08-06 05:40:08'),
(4005, 5, '2024-08-06 01:40:08', '2024-08-06 01:40:08', 0, NULL, '2024-08-06 05:40:09', '2024-08-06 05:40:09'),
(4006, 1, '2024-08-06 01:45:06', '2024-08-06 01:45:06', 0, NULL, '2024-08-06 05:45:07', '2024-08-06 05:45:07'),
(4007, 2, '2024-08-06 01:50:06', '2024-08-06 01:50:06', 0, NULL, '2024-08-06 05:50:06', '2024-08-06 05:50:06'),
(4008, 3, '2024-08-06 01:50:07', '2024-08-06 01:50:07', 0, NULL, '2024-08-06 05:50:07', '2024-08-06 05:50:07'),
(4009, 5, '2024-08-06 01:50:08', '2024-08-06 01:50:08', 0, NULL, '2024-08-06 05:50:11', '2024-08-06 05:50:11'),
(4010, 1, '2024-08-06 01:55:05', '2024-08-06 01:55:05', 0, NULL, '2024-08-06 05:55:06', '2024-08-06 05:55:06'),
(4011, 2, '2024-08-06 02:00:06', '2024-08-06 02:00:06', 0, NULL, '2024-08-06 06:00:07', '2024-08-06 06:00:07'),
(4012, 3, '2024-08-06 02:00:07', '2024-08-06 02:00:07', 0, NULL, '2024-08-06 06:00:08', '2024-08-06 06:00:08'),
(4013, 5, '2024-08-06 02:00:08', '2024-08-06 02:00:08', 0, NULL, '2024-08-06 06:00:09', '2024-08-06 06:00:09'),
(4014, 1, '2024-08-06 02:05:05', '2024-08-06 02:05:05', 0, NULL, '2024-08-06 06:05:06', '2024-08-06 06:05:06'),
(4015, 1, '2024-08-06 02:10:08', '2024-08-06 02:10:13', 4, NULL, '2024-08-06 06:10:13', '2024-08-06 06:10:13'),
(4016, 2, '2024-08-06 02:10:13', '2024-08-06 02:10:13', 0, NULL, '2024-08-06 06:10:13', '2024-08-06 06:10:13'),
(4017, 3, '2024-08-06 02:10:14', '2024-08-06 02:10:14', 0, NULL, '2024-08-06 06:10:14', '2024-08-06 06:10:14'),
(4018, 5, '2024-08-06 02:10:14', '2024-08-06 02:10:14', 0, NULL, '2024-08-06 06:10:14', '2024-08-06 06:10:14'),
(4019, 1, '2024-08-06 02:20:06', '2024-08-06 02:20:06', 0, NULL, '2024-08-06 06:20:07', '2024-08-06 06:20:07'),
(4020, 2, '2024-08-06 02:20:08', '2024-08-06 02:20:08', 0, NULL, '2024-08-06 06:20:08', '2024-08-06 06:20:08'),
(4021, 3, '2024-08-06 02:20:09', '2024-08-06 02:20:09', 0, NULL, '2024-08-06 06:20:09', '2024-08-06 06:20:09'),
(4022, 5, '2024-08-06 02:20:09', '2024-08-06 02:20:09', 0, NULL, '2024-08-06 06:20:10', '2024-08-06 06:20:10'),
(4023, 1, '2024-08-06 02:30:04', '2024-08-06 02:30:05', 0, NULL, '2024-08-06 06:30:05', '2024-08-06 06:30:05'),
(4024, 2, '2024-08-06 02:30:07', '2024-08-06 02:30:07', 0, NULL, '2024-08-06 06:30:08', '2024-08-06 06:30:08'),
(4025, 3, '2024-08-06 02:30:08', '2024-08-06 02:30:08', 0, NULL, '2024-08-06 06:30:09', '2024-08-06 06:30:09'),
(4026, 5, '2024-08-06 02:30:09', '2024-08-06 02:30:09', 0, NULL, '2024-08-06 06:30:10', '2024-08-06 06:30:10'),
(4027, 1, '2024-08-06 02:40:07', '2024-08-06 02:40:07', 0, NULL, '2024-08-06 06:40:07', '2024-08-06 06:40:07'),
(4028, 2, '2024-08-06 02:40:07', '2024-08-06 02:40:07', 0, NULL, '2024-08-06 06:40:08', '2024-08-06 06:40:08'),
(4029, 3, '2024-08-06 02:40:08', '2024-08-06 02:40:08', 0, NULL, '2024-08-06 06:40:08', '2024-08-06 06:40:08'),
(4030, 5, '2024-08-06 02:40:08', '2024-08-06 02:40:08', 0, NULL, '2024-08-06 06:40:09', '2024-08-06 06:40:09'),
(4031, 1, '2024-08-06 02:50:03', '2024-08-06 02:50:03', 0, NULL, '2024-08-06 06:50:04', '2024-08-06 06:50:04'),
(4032, 2, '2024-08-06 02:50:04', '2024-08-06 02:50:04', 0, NULL, '2024-08-06 06:50:04', '2024-08-06 06:50:04'),
(4033, 3, '2024-08-06 02:50:05', '2024-08-06 02:50:05', 0, NULL, '2024-08-06 06:50:05', '2024-08-06 06:50:05'),
(4034, 5, '2024-08-06 02:50:06', '2024-08-06 02:50:06', 0, NULL, '2024-08-06 06:50:06', '2024-08-06 06:50:06'),
(4035, 1, '2024-08-06 02:55:04', '2024-08-06 02:55:04', 0, NULL, '2024-08-06 06:55:04', '2024-08-06 06:55:04'),
(4036, 2, '2024-08-06 03:00:03', '2024-08-06 03:00:03', 0, NULL, '2024-08-06 07:00:04', '2024-08-06 07:00:04'),
(4037, 3, '2024-08-06 03:00:05', '2024-08-06 03:00:05', 0, NULL, '2024-08-06 07:00:05', '2024-08-06 07:00:05'),
(4038, 5, '2024-08-06 03:00:06', '2024-08-06 03:00:06', 0, NULL, '2024-08-06 07:00:06', '2024-08-06 07:00:06'),
(4039, 1, '2024-08-06 03:05:03', '2024-08-06 03:05:03', 0, NULL, '2024-08-06 07:05:03', '2024-08-06 07:05:03'),
(4040, 2, '2024-08-06 03:10:03', '2024-08-06 03:10:04', 0, NULL, '2024-08-06 07:10:04', '2024-08-06 07:10:04'),
(4041, 3, '2024-08-06 03:10:04', '2024-08-06 03:10:04', 0, NULL, '2024-08-06 07:10:04', '2024-08-06 07:10:04'),
(4042, 5, '2024-08-06 03:10:04', '2024-08-06 03:10:04', 0, NULL, '2024-08-06 07:10:05', '2024-08-06 07:10:05'),
(4043, 1, '2024-08-06 03:15:06', '2024-08-06 03:15:06', 0, NULL, '2024-08-06 07:15:06', '2024-08-06 07:15:06'),
(4044, 2, '2024-08-06 03:15:06', '2024-08-06 03:15:06', 0, NULL, '2024-08-06 07:15:07', '2024-08-06 07:15:07'),
(4045, 3, '2024-08-06 03:15:07', '2024-08-06 03:15:07', 0, NULL, '2024-08-06 07:15:07', '2024-08-06 07:15:07'),
(4046, 5, '2024-08-06 03:15:08', '2024-08-06 03:15:08', 0, NULL, '2024-08-06 07:15:08', '2024-08-06 07:15:08'),
(4047, 1, '2024-08-06 03:25:03', '2024-08-06 03:25:03', 0, NULL, '2024-08-06 07:25:04', '2024-08-06 07:25:04'),
(4048, 2, '2024-08-06 03:25:05', '2024-08-06 03:25:05', 0, NULL, '2024-08-06 07:25:06', '2024-08-06 07:25:06'),
(4049, 3, '2024-08-06 03:25:06', '2024-08-06 03:25:06', 0, NULL, '2024-08-06 07:25:06', '2024-08-06 07:25:06'),
(4050, 5, '2024-08-06 03:25:07', '2024-08-06 03:25:07', 0, NULL, '2024-08-06 07:25:07', '2024-08-06 07:25:07'),
(4051, 1, '2024-08-06 03:30:06', '2024-08-06 03:30:06', 0, NULL, '2024-08-06 07:30:06', '2024-08-06 07:30:06'),
(4052, 2, '2024-08-06 03:30:07', '2024-08-06 03:30:07', 0, NULL, '2024-08-06 07:30:07', '2024-08-06 07:30:07'),
(4053, 3, '2024-08-06 03:35:05', '2024-08-06 03:35:05', 0, NULL, '2024-08-06 07:35:06', '2024-08-06 07:35:06'),
(4054, 5, '2024-08-06 03:35:06', '2024-08-06 03:35:06', 0, NULL, '2024-08-06 07:35:06', '2024-08-06 07:35:06'),
(4055, 1, '2024-08-06 03:40:04', '2024-08-06 03:40:04', 0, NULL, '2024-08-06 07:40:05', '2024-08-06 07:40:05'),
(4056, 2, '2024-08-06 03:40:06', '2024-08-06 03:40:06', 0, NULL, '2024-08-06 07:40:07', '2024-08-06 07:40:07'),
(4057, 3, '2024-08-06 03:45:04', '2024-08-06 03:45:04', 0, NULL, '2024-08-06 07:45:04', '2024-08-06 07:45:04'),
(4058, 5, '2024-08-06 03:45:04', '2024-08-06 03:45:04', 0, NULL, '2024-08-06 07:45:05', '2024-08-06 07:45:05'),
(4059, 1, '2024-08-06 03:50:04', '2024-08-06 03:50:04', 0, NULL, '2024-08-06 07:50:05', '2024-08-06 07:50:05'),
(4060, 2, '2024-08-06 03:50:05', '2024-08-06 03:50:05', 0, NULL, '2024-08-06 07:50:05', '2024-08-06 07:50:05'),
(4061, 3, '2024-08-06 03:55:04', '2024-08-06 03:55:05', 0, NULL, '2024-08-06 07:55:05', '2024-08-06 07:55:05'),
(4062, 5, '2024-08-06 03:55:05', '2024-08-06 03:55:05', 0, NULL, '2024-08-06 07:55:05', '2024-08-06 07:55:05'),
(4063, 1, '2024-08-06 04:00:05', '2024-08-06 04:00:05', 0, NULL, '2024-08-06 08:00:06', '2024-08-06 08:00:06'),
(4064, 2, '2024-08-06 04:00:07', '2024-08-06 04:00:07', 0, NULL, '2024-08-06 08:00:07', '2024-08-06 08:00:07'),
(4065, 3, '2024-08-06 04:05:04', '2024-08-06 04:05:04', 0, NULL, '2024-08-06 08:05:05', '2024-08-06 08:05:05'),
(4066, 5, '2024-08-06 04:05:05', '2024-08-06 04:05:06', 0, NULL, '2024-08-06 08:05:08', '2024-08-06 08:05:08'),
(4067, 1, '2024-08-06 04:10:05', '2024-08-06 04:10:05', 0, NULL, '2024-08-06 08:10:06', '2024-08-06 08:10:06'),
(4068, 2, '2024-08-06 04:10:06', '2024-08-06 04:10:06', 0, NULL, '2024-08-06 08:10:06', '2024-08-06 08:10:06'),
(4069, 3, '2024-08-06 04:10:06', '2024-08-06 04:10:06', 0, NULL, '2024-08-06 08:10:07', '2024-08-06 08:10:07'),
(4070, 5, '2024-08-06 04:15:04', '2024-08-06 04:15:04', 0, NULL, '2024-08-06 08:15:05', '2024-08-06 08:15:05'),
(4071, 1, '2024-08-06 04:20:06', '2024-08-06 04:20:06', 0, NULL, '2024-08-06 08:20:06', '2024-08-06 08:20:06'),
(4072, 2, '2024-08-06 04:20:06', '2024-08-06 04:20:06', 0, NULL, '2024-08-06 08:20:07', '2024-08-06 08:20:07'),
(4073, 3, '2024-08-06 04:20:07', '2024-08-06 04:20:07', 0, NULL, '2024-08-06 08:20:07', '2024-08-06 08:20:07'),
(4074, 5, '2024-08-06 04:20:08', '2024-08-06 04:20:08', 0, NULL, '2024-08-06 08:20:08', '2024-08-06 08:20:08'),
(4075, 1, '2024-08-06 04:25:11', '2024-08-06 04:25:11', 0, NULL, '2024-08-06 08:25:11', '2024-08-06 08:25:11'),
(4076, 2, '2024-08-06 04:25:11', '2024-08-06 04:25:11', 0, NULL, '2024-08-06 08:25:11', '2024-08-06 08:25:11'),
(4077, 3, '2024-08-06 04:25:12', '2024-08-06 04:25:12', 0, NULL, '2024-08-06 08:25:12', '2024-08-06 08:25:12'),
(4078, 5, '2024-08-06 04:25:12', '2024-08-06 04:25:12', 0, NULL, '2024-08-06 08:25:12', '2024-08-06 08:25:12'),
(4079, 1, '2024-08-06 04:35:10', '2024-08-06 04:35:10', 0, NULL, '2024-08-06 08:35:10', '2024-08-06 08:35:10'),
(4080, 2, '2024-08-06 04:35:10', '2024-08-06 04:35:10', 0, NULL, '2024-08-06 08:35:10', '2024-08-06 08:35:10'),
(4081, 3, '2024-08-06 04:35:10', '2024-08-06 04:35:10', 0, NULL, '2024-08-06 08:35:11', '2024-08-06 08:35:11'),
(4082, 5, '2024-08-06 04:35:11', '2024-08-06 04:35:11', 0, NULL, '2024-08-06 08:35:11', '2024-08-06 08:35:11'),
(4083, 1, '2024-08-06 04:45:06', '2024-08-06 04:45:06', 0, NULL, '2024-08-06 08:45:06', '2024-08-06 08:45:06'),
(4084, 2, '2024-08-06 04:45:07', '2024-08-06 04:45:07', 0, NULL, '2024-08-06 08:45:07', '2024-08-06 08:45:07'),
(4085, 3, '2024-08-06 04:45:07', '2024-08-06 04:45:07', 0, NULL, '2024-08-06 08:45:08', '2024-08-06 08:45:08'),
(4086, 5, '2024-08-06 04:45:08', '2024-08-06 04:45:08', 0, NULL, '2024-08-06 08:45:08', '2024-08-06 08:45:08'),
(4087, 1, '2024-08-06 04:55:08', '2024-08-06 04:55:08', 0, NULL, '2024-08-06 08:55:09', '2024-08-06 08:55:09');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(4088, 2, '2024-08-06 04:55:09', '2024-08-06 04:55:09', 0, NULL, '2024-08-06 08:55:09', '2024-08-06 08:55:09'),
(4089, 3, '2024-08-06 04:55:09', '2024-08-06 04:55:09', 0, NULL, '2024-08-06 08:55:09', '2024-08-06 08:55:09'),
(4090, 5, '2024-08-06 04:55:09', '2024-08-06 04:55:09', 0, NULL, '2024-08-06 08:55:10', '2024-08-06 08:55:10'),
(4091, 1, '2024-08-06 05:00:09', '2024-08-06 05:00:09', 0, NULL, '2024-08-06 09:00:09', '2024-08-06 09:00:09'),
(4092, 2, '2024-08-06 05:05:08', '2024-08-06 05:05:08', 0, NULL, '2024-08-06 09:05:08', '2024-08-06 09:05:08'),
(4093, 3, '2024-08-06 05:05:08', '2024-08-06 05:05:08', 0, NULL, '2024-08-06 09:05:08', '2024-08-06 09:05:08'),
(4094, 5, '2024-08-06 05:05:09', '2024-08-06 05:05:09', 0, NULL, '2024-08-06 09:05:09', '2024-08-06 09:05:09'),
(4095, 1, '2024-08-06 05:10:06', '2024-08-06 05:10:06', 0, NULL, '2024-08-06 09:10:06', '2024-08-06 09:10:06'),
(4096, 2, '2024-08-06 05:15:04', '2024-08-06 05:15:04', 0, NULL, '2024-08-06 09:15:04', '2024-08-06 09:15:04'),
(4097, 3, '2024-08-06 05:15:05', '2024-08-06 05:15:05', 0, NULL, '2024-08-06 09:15:05', '2024-08-06 09:15:05'),
(4098, 5, '2024-08-06 05:15:05', '2024-08-06 05:15:05', 0, NULL, '2024-08-06 09:15:06', '2024-08-06 09:15:06'),
(4099, 1, '2024-08-06 05:20:05', '2024-08-06 05:20:05', 0, NULL, '2024-08-06 09:20:06', '2024-08-06 09:20:06'),
(4100, 2, '2024-08-06 05:20:07', '2024-08-06 05:20:07', 0, NULL, '2024-08-06 09:20:07', '2024-08-06 09:20:07'),
(4101, 1, '2024-08-06 05:25:06', '2024-08-06 05:25:06', 0, NULL, '2024-08-06 09:25:07', '2024-08-06 09:25:07'),
(4102, 3, '2024-08-06 05:25:07', '2024-08-06 05:25:07', 0, NULL, '2024-08-06 09:25:08', '2024-08-06 09:25:08'),
(4103, 5, '2024-08-06 05:25:08', '2024-08-06 05:25:08', 0, NULL, '2024-08-06 09:25:09', '2024-08-06 09:25:09'),
(4104, 2, '2024-08-06 05:30:05', '2024-08-06 05:30:05', 0, NULL, '2024-08-06 09:30:06', '2024-08-06 09:30:06'),
(4105, 1, '2024-08-06 05:35:06', '2024-08-06 05:35:07', 0, NULL, '2024-08-06 09:35:07', '2024-08-06 09:35:07'),
(4106, 2, '2024-08-06 05:35:07', '2024-08-06 05:35:07', 0, NULL, '2024-08-06 09:35:08', '2024-08-06 09:35:08'),
(4107, 3, '2024-08-06 05:35:08', '2024-08-06 05:35:08', 0, NULL, '2024-08-06 09:35:08', '2024-08-06 09:35:08'),
(4108, 5, '2024-08-06 05:35:08', '2024-08-06 05:35:08', 0, NULL, '2024-08-06 09:35:08', '2024-08-06 09:35:08'),
(4109, 1, '2024-08-06 05:45:09', '2024-08-06 05:45:09', 0, NULL, '2024-08-06 09:45:09', '2024-08-06 09:45:09'),
(4110, 2, '2024-08-06 05:45:10', '2024-08-06 05:45:10', 0, NULL, '2024-08-06 09:45:10', '2024-08-06 09:45:10'),
(4111, 3, '2024-08-06 05:45:10', '2024-08-06 05:45:10', 0, NULL, '2024-08-06 09:45:10', '2024-08-06 09:45:10'),
(4112, 5, '2024-08-06 05:45:10', '2024-08-06 05:45:10', 0, NULL, '2024-08-06 09:45:10', '2024-08-06 09:45:10'),
(4113, 1, '2024-08-06 05:50:10', '2024-08-06 05:50:10', 0, NULL, '2024-08-06 09:50:10', '2024-08-06 09:50:10'),
(4114, 2, '2024-08-06 05:55:05', '2024-08-06 05:55:05', 0, NULL, '2024-08-06 09:55:06', '2024-08-06 09:55:06'),
(4115, 3, '2024-08-06 05:55:07', '2024-08-06 05:55:07', 0, NULL, '2024-08-06 09:55:07', '2024-08-06 09:55:07'),
(4116, 5, '2024-08-06 05:55:07', '2024-08-06 05:55:07', 0, NULL, '2024-08-06 09:55:07', '2024-08-06 09:55:07'),
(4117, 1, '2024-08-06 06:00:05', '2024-08-06 06:00:06', 0, NULL, '2024-08-06 10:00:07', '2024-08-06 10:00:07'),
(4118, 2, '2024-08-06 06:05:03', '2024-08-06 06:05:03', 0, NULL, '2024-08-06 10:05:04', '2024-08-06 10:05:04'),
(4119, 3, '2024-08-06 06:05:04', '2024-08-06 06:05:04', 0, NULL, '2024-08-06 10:05:04', '2024-08-06 10:05:04'),
(4120, 5, '2024-08-06 06:05:05', '2024-08-06 06:05:05', 0, NULL, '2024-08-06 10:05:05', '2024-08-06 10:05:05'),
(4121, 1, '2024-08-06 06:10:06', '2024-08-06 06:10:06', 0, NULL, '2024-08-06 10:10:07', '2024-08-06 10:10:07'),
(4122, 2, '2024-08-06 06:10:07', '2024-08-06 06:10:07', 0, NULL, '2024-08-06 10:10:08', '2024-08-06 10:10:08'),
(4123, 3, '2024-08-06 06:10:08', '2024-08-06 06:10:08', 0, NULL, '2024-08-06 10:10:09', '2024-08-06 10:10:09'),
(4124, 5, '2024-08-06 06:10:09', '2024-08-06 06:10:09', 0, NULL, '2024-08-06 10:10:09', '2024-08-06 10:10:09'),
(4125, 1, '2024-08-06 06:20:04', '2024-08-06 06:20:04', 0, NULL, '2024-08-06 10:20:05', '2024-08-06 10:20:05'),
(4126, 2, '2024-08-06 06:20:05', '2024-08-06 06:20:05', 0, NULL, '2024-08-06 10:20:05', '2024-08-06 10:20:05'),
(4127, 3, '2024-08-06 06:20:05', '2024-08-06 06:20:05', 0, NULL, '2024-08-06 10:20:06', '2024-08-06 10:20:06'),
(4128, 5, '2024-08-06 06:20:06', '2024-08-06 06:20:06', 0, NULL, '2024-08-06 10:20:07', '2024-08-06 10:20:07'),
(4129, 1, '2024-08-06 06:25:06', '2024-08-06 06:25:06', 0, NULL, '2024-08-06 10:25:06', '2024-08-06 10:25:06'),
(4130, 2, '2024-08-06 06:25:07', '2024-08-06 06:25:07', 0, NULL, '2024-08-06 10:25:07', '2024-08-06 10:25:07'),
(4131, 3, '2024-08-06 06:25:07', '2024-08-06 06:25:07', 0, NULL, '2024-08-06 10:25:07', '2024-08-06 10:25:07'),
(4132, 5, '2024-08-06 06:30:06', '2024-08-06 06:30:06', 0, NULL, '2024-08-06 10:30:06', '2024-08-06 10:30:06'),
(4133, 1, '2024-08-06 06:35:06', '2024-08-06 06:35:06', 0, NULL, '2024-08-06 10:35:06', '2024-08-06 10:35:06'),
(4134, 2, '2024-08-06 06:35:07', '2024-08-06 06:35:07', 0, NULL, '2024-08-06 10:35:07', '2024-08-06 10:35:07'),
(4135, 3, '2024-08-06 06:35:07', '2024-08-06 06:35:07', 0, NULL, '2024-08-06 10:35:08', '2024-08-06 10:35:08'),
(4136, 5, '2024-08-06 06:40:04', '2024-08-06 06:40:04', 0, NULL, '2024-08-06 10:40:04', '2024-08-06 10:40:04'),
(4137, 1, '2024-08-06 06:45:03', '2024-08-06 06:45:03', 0, NULL, '2024-08-06 10:45:04', '2024-08-06 10:45:04'),
(4138, 2, '2024-08-06 06:45:04', '2024-08-06 06:45:04', 0, NULL, '2024-08-06 10:45:07', '2024-08-06 10:45:07'),
(4139, 3, '2024-08-06 06:45:09', '2024-08-06 06:45:09', 0, NULL, '2024-08-06 10:45:09', '2024-08-06 10:45:09'),
(4140, 1, '2024-08-06 06:50:06', '2024-08-06 06:50:06', 0, NULL, '2024-08-06 10:50:07', '2024-08-06 10:50:07'),
(4141, 2, '2024-08-06 06:50:07', '2024-08-06 06:50:07', 0, NULL, '2024-08-06 10:50:07', '2024-08-06 10:50:07'),
(4142, 5, '2024-08-06 06:50:08', '2024-08-06 06:50:08', 0, NULL, '2024-08-06 10:50:08', '2024-08-06 10:50:08'),
(4143, 3, '2024-08-06 06:55:03', '2024-08-06 06:55:03', 0, NULL, '2024-08-06 10:55:03', '2024-08-06 10:55:03'),
(4144, 1, '2024-08-06 07:00:08', '2024-08-06 07:00:08', 0, NULL, '2024-08-06 11:00:09', '2024-08-06 11:00:09'),
(4145, 2, '2024-08-06 07:00:09', '2024-08-06 07:00:09', 0, NULL, '2024-08-06 11:00:10', '2024-08-06 11:00:10'),
(4146, 3, '2024-08-06 07:00:10', '2024-08-06 07:00:10', 0, NULL, '2024-08-06 11:00:11', '2024-08-06 11:00:11'),
(4147, 5, '2024-08-06 07:00:11', '2024-08-06 07:00:11', 0, NULL, '2024-08-06 11:00:11', '2024-08-06 11:00:11'),
(4148, 1, '2024-08-06 07:10:04', '2024-08-06 07:10:04', 0, NULL, '2024-08-06 11:10:05', '2024-08-06 11:10:05'),
(4149, 2, '2024-08-06 07:10:05', '2024-08-06 07:10:05', 0, NULL, '2024-08-06 11:10:06', '2024-08-06 11:10:06'),
(4150, 3, '2024-08-06 07:10:07', '2024-08-06 07:10:07', 0, NULL, '2024-08-06 11:10:07', '2024-08-06 11:10:07'),
(4151, 5, '2024-08-06 07:10:07', '2024-08-06 07:10:07', 0, NULL, '2024-08-06 11:10:07', '2024-08-06 11:10:07'),
(4152, 1, '2024-08-06 07:15:05', '2024-08-06 07:15:05', 0, NULL, '2024-08-06 11:15:06', '2024-08-06 11:15:06'),
(4153, 2, '2024-08-06 07:20:05', '2024-08-06 07:20:05', 0, NULL, '2024-08-06 11:20:05', '2024-08-06 11:20:05'),
(4154, 3, '2024-08-06 07:20:06', '2024-08-06 07:20:06', 0, NULL, '2024-08-06 11:20:06', '2024-08-06 11:20:06'),
(4155, 5, '2024-08-06 07:20:07', '2024-08-06 07:20:07', 0, NULL, '2024-08-06 11:20:07', '2024-08-06 11:20:07'),
(4156, 1, '2024-08-06 07:25:05', '2024-08-06 07:25:05', 0, NULL, '2024-08-06 11:25:05', '2024-08-06 11:25:05'),
(4157, 1, '2024-08-06 07:30:07', '2024-08-06 07:30:07', 0, NULL, '2024-08-06 11:30:08', '2024-08-06 11:30:08'),
(4158, 2, '2024-08-06 07:30:08', '2024-08-06 07:30:08', 0, NULL, '2024-08-06 11:30:08', '2024-08-06 11:30:08'),
(4159, 3, '2024-08-06 07:30:09', '2024-08-06 07:30:09', 0, NULL, '2024-08-06 11:30:09', '2024-08-06 11:30:09'),
(4160, 5, '2024-08-06 07:30:09', '2024-08-06 07:30:09', 0, NULL, '2024-08-06 11:30:09', '2024-08-06 11:30:09'),
(4161, 1, '2024-08-06 07:40:06', '2024-08-06 07:40:06', 0, NULL, '2024-08-06 11:40:06', '2024-08-06 11:40:06'),
(4162, 2, '2024-08-06 07:40:06', '2024-08-06 07:40:06', 0, NULL, '2024-08-06 11:40:07', '2024-08-06 11:40:07'),
(4163, 3, '2024-08-06 07:40:07', '2024-08-06 07:40:07', 0, NULL, '2024-08-06 11:40:08', '2024-08-06 11:40:08'),
(4164, 5, '2024-08-06 07:40:08', '2024-08-06 07:40:08', 0, NULL, '2024-08-06 11:40:08', '2024-08-06 11:40:08'),
(4165, 1, '2024-08-06 07:50:05', '2024-08-06 07:50:05', 0, NULL, '2024-08-06 11:50:05', '2024-08-06 11:50:05'),
(4166, 2, '2024-08-06 07:50:06', '2024-08-06 07:50:06', 0, NULL, '2024-08-06 11:50:06', '2024-08-06 11:50:06'),
(4167, 3, '2024-08-06 07:50:06', '2024-08-06 07:50:06', 0, NULL, '2024-08-06 11:50:07', '2024-08-06 11:50:07'),
(4168, 5, '2024-08-06 07:50:07', '2024-08-06 07:50:07', 0, NULL, '2024-08-06 11:50:07', '2024-08-06 11:50:07'),
(4169, 1, '2024-08-06 07:55:06', '2024-08-06 07:55:07', 1, NULL, '2024-08-06 11:55:08', '2024-08-06 11:55:08'),
(4170, 2, '2024-08-06 08:00:04', '2024-08-06 08:00:04', 0, NULL, '2024-08-06 12:00:05', '2024-08-06 12:00:05'),
(4171, 3, '2024-08-06 08:00:05', '2024-08-06 08:00:05', 0, NULL, '2024-08-06 12:00:06', '2024-08-06 12:00:06'),
(4172, 5, '2024-08-06 08:00:07', '2024-08-06 08:00:07', 0, NULL, '2024-08-06 12:00:07', '2024-08-06 12:00:07'),
(4173, 1, '2024-08-06 08:05:06', '2024-08-06 08:05:06', 0, NULL, '2024-08-06 12:05:07', '2024-08-06 12:05:07'),
(4174, 2, '2024-08-06 08:05:07', '2024-08-06 08:05:07', 0, NULL, '2024-08-06 12:05:07', '2024-08-06 12:05:07'),
(4175, 3, '2024-08-06 08:05:07', '2024-08-06 08:05:07', 0, NULL, '2024-08-06 12:05:07', '2024-08-06 12:05:07'),
(4176, 5, '2024-08-06 08:10:06', '2024-08-06 08:10:06', 0, NULL, '2024-08-06 12:10:06', '2024-08-06 12:10:06'),
(4177, 1, '2024-08-06 08:15:03', '2024-08-06 08:15:03', 0, NULL, '2024-08-06 12:15:03', '2024-08-06 12:15:03'),
(4178, 2, '2024-08-06 08:15:03', '2024-08-06 08:15:03', 0, NULL, '2024-08-06 12:15:04', '2024-08-06 12:15:04'),
(4179, 3, '2024-08-06 08:15:04', '2024-08-06 08:15:04', 0, NULL, '2024-08-06 12:15:04', '2024-08-06 12:15:04'),
(4180, 1, '2024-08-06 08:20:05', '2024-08-06 08:20:05', 0, NULL, '2024-08-06 12:20:05', '2024-08-06 12:20:05'),
(4181, 2, '2024-08-06 08:20:06', '2024-08-06 08:20:06', 0, NULL, '2024-08-06 12:20:08', '2024-08-06 12:20:08'),
(4182, 3, '2024-08-06 08:20:08', '2024-08-06 08:20:08', 0, NULL, '2024-08-06 12:20:09', '2024-08-06 12:20:09'),
(4183, 5, '2024-08-06 08:20:09', '2024-08-06 08:20:09', 0, NULL, '2024-08-06 12:20:09', '2024-08-06 12:20:09'),
(4184, 1, '2024-08-06 08:30:04', '2024-08-06 08:30:04', 0, NULL, '2024-08-06 12:30:04', '2024-08-06 12:30:04'),
(4185, 2, '2024-08-06 08:30:04', '2024-08-06 08:30:04', 0, NULL, '2024-08-06 12:30:04', '2024-08-06 12:30:04'),
(4186, 3, '2024-08-06 08:30:04', '2024-08-06 08:30:04', 0, NULL, '2024-08-06 12:30:05', '2024-08-06 12:30:05'),
(4187, 5, '2024-08-06 08:30:05', '2024-08-06 08:30:06', 0, NULL, '2024-08-06 12:30:06', '2024-08-06 12:30:06'),
(4188, 1, '2024-08-06 08:35:06', '2024-08-06 08:35:06', 0, NULL, '2024-08-06 12:35:06', '2024-08-06 12:35:06'),
(4189, 2, '2024-08-06 08:35:06', '2024-08-06 08:35:06', 0, NULL, '2024-08-06 12:35:07', '2024-08-06 12:35:07'),
(4190, 3, '2024-08-06 08:35:07', '2024-08-06 08:35:07', 0, NULL, '2024-08-06 12:35:07', '2024-08-06 12:35:07'),
(4191, 1, '2024-08-06 08:40:07', '2024-08-06 08:40:07', 0, NULL, '2024-08-06 12:40:09', '2024-08-06 12:40:09'),
(4192, 2, '2024-08-06 08:40:09', '2024-08-06 08:40:09', 0, NULL, '2024-08-06 12:40:10', '2024-08-06 12:40:10'),
(4193, 5, '2024-08-06 08:40:10', '2024-08-06 08:40:10', 0, NULL, '2024-08-06 12:40:10', '2024-08-06 12:40:10'),
(4194, 3, '2024-08-06 08:45:03', '2024-08-06 08:45:03', 0, NULL, '2024-08-06 12:45:03', '2024-08-06 12:45:03'),
(4195, 1, '2024-08-06 08:50:06', '2024-08-06 08:50:06', 0, NULL, '2024-08-06 12:50:07', '2024-08-06 12:50:07'),
(4196, 2, '2024-08-06 08:50:07', '2024-08-06 08:50:07', 0, NULL, '2024-08-06 12:50:07', '2024-08-06 12:50:07'),
(4197, 3, '2024-08-06 08:50:08', '2024-08-06 08:50:08', 0, NULL, '2024-08-06 12:50:08', '2024-08-06 12:50:08'),
(4198, 5, '2024-08-06 08:50:08', '2024-08-06 08:50:08', 0, NULL, '2024-08-06 12:50:09', '2024-08-06 12:50:09'),
(4199, 1, '2024-08-06 09:00:05', '2024-08-06 09:00:05', 0, NULL, '2024-08-06 13:00:05', '2024-08-06 13:00:05'),
(4200, 2, '2024-08-06 09:00:06', '2024-08-06 09:00:06', 0, NULL, '2024-08-06 13:00:09', '2024-08-06 13:00:09'),
(4201, 3, '2024-08-06 09:00:10', '2024-08-06 09:00:10', 0, NULL, '2024-08-06 13:00:10', '2024-08-06 13:00:10'),
(4202, 5, '2024-08-06 09:00:10', '2024-08-06 09:00:10', 0, NULL, '2024-08-06 13:00:11', '2024-08-06 13:00:11'),
(4203, 1, '2024-08-06 09:10:07', '2024-08-06 09:10:07', 0, NULL, '2024-08-06 13:10:07', '2024-08-06 13:10:07'),
(4204, 2, '2024-08-06 09:10:08', '2024-08-06 09:10:08', 0, NULL, '2024-08-06 13:10:08', '2024-08-06 13:10:08'),
(4205, 3, '2024-08-06 09:10:08', '2024-08-06 09:10:08', 0, NULL, '2024-08-06 13:10:08', '2024-08-06 13:10:08'),
(4206, 5, '2024-08-06 09:10:08', '2024-08-06 09:10:08', 0, NULL, '2024-08-06 13:10:09', '2024-08-06 13:10:09'),
(4207, 1, '2024-08-06 09:20:07', '2024-08-06 09:20:07', 0, NULL, '2024-08-06 13:20:07', '2024-08-06 13:20:07'),
(4208, 2, '2024-08-06 09:20:08', '2024-08-06 09:20:08', 0, NULL, '2024-08-06 13:20:08', '2024-08-06 13:20:08'),
(4209, 3, '2024-08-06 09:20:08', '2024-08-06 09:20:08', 0, NULL, '2024-08-06 13:20:08', '2024-08-06 13:20:08'),
(4210, 5, '2024-08-06 09:20:09', '2024-08-06 09:20:09', 0, NULL, '2024-08-06 13:20:09', '2024-08-06 13:20:09'),
(4211, 1, '2024-08-06 09:30:07', '2024-08-06 09:30:07', 0, NULL, '2024-08-06 13:30:07', '2024-08-06 13:30:07'),
(4212, 2, '2024-08-06 09:30:08', '2024-08-06 09:30:08', 0, NULL, '2024-08-06 13:30:08', '2024-08-06 13:30:08'),
(4213, 3, '2024-08-06 09:30:08', '2024-08-06 09:30:08', 0, NULL, '2024-08-06 13:30:09', '2024-08-06 13:30:09'),
(4214, 5, '2024-08-06 09:30:09', '2024-08-06 09:30:09', 0, NULL, '2024-08-06 13:30:09', '2024-08-06 13:30:09'),
(4215, 1, '2024-08-06 09:40:05', '2024-08-06 09:40:05', 0, NULL, '2024-08-06 13:40:06', '2024-08-06 13:40:06'),
(4216, 2, '2024-08-06 09:40:06', '2024-08-06 09:40:06', 0, NULL, '2024-08-06 13:40:06', '2024-08-06 13:40:06'),
(4217, 3, '2024-08-06 09:40:07', '2024-08-06 09:40:07', 0, NULL, '2024-08-06 13:40:07', '2024-08-06 13:40:07'),
(4218, 5, '2024-08-06 09:40:07', '2024-08-06 09:40:07', 0, NULL, '2024-08-06 13:40:08', '2024-08-06 13:40:08'),
(4219, 1, '2024-08-06 09:45:08', '2024-08-06 09:45:08', 0, NULL, '2024-08-06 13:45:08', '2024-08-06 13:45:08'),
(4220, 2, '2024-08-06 09:45:08', '2024-08-06 09:45:08', 0, NULL, '2024-08-06 13:45:09', '2024-08-06 13:45:09'),
(4221, 3, '2024-08-06 09:45:09', '2024-08-06 09:45:09', 0, NULL, '2024-08-06 13:45:09', '2024-08-06 13:45:09'),
(4222, 5, '2024-08-06 09:45:09', '2024-08-06 09:45:09', 0, NULL, '2024-08-06 13:45:09', '2024-08-06 13:45:09'),
(4223, 1, '2024-08-06 09:55:03', '2024-08-06 09:55:03', 0, NULL, '2024-08-06 13:55:03', '2024-08-06 13:55:03'),
(4224, 2, '2024-08-06 09:55:04', '2024-08-06 09:55:04', 0, NULL, '2024-08-06 13:55:05', '2024-08-06 13:55:05'),
(4225, 3, '2024-08-06 09:55:05', '2024-08-06 09:55:05', 0, NULL, '2024-08-06 13:55:06', '2024-08-06 13:55:06'),
(4226, 5, '2024-08-06 09:55:06', '2024-08-06 09:55:06', 0, NULL, '2024-08-06 13:55:06', '2024-08-06 13:55:06'),
(4227, 1, '2024-08-06 10:00:04', '2024-08-06 10:00:04', 0, NULL, '2024-08-06 14:00:04', '2024-08-06 14:00:04'),
(4228, 1, '2024-08-06 10:05:09', '2024-08-06 10:05:09', 0, NULL, '2024-08-06 14:05:09', '2024-08-06 14:05:09'),
(4229, 2, '2024-08-06 10:05:09', '2024-08-06 10:05:09', 0, NULL, '2024-08-06 14:05:09', '2024-08-06 14:05:09'),
(4230, 3, '2024-08-06 10:05:09', '2024-08-06 10:05:09', 0, NULL, '2024-08-06 14:05:09', '2024-08-06 14:05:09'),
(4231, 5, '2024-08-06 10:05:09', '2024-08-06 10:05:09', 0, NULL, '2024-08-06 14:05:10', '2024-08-06 14:05:10'),
(4232, 1, '2024-08-06 10:15:06', '2024-08-06 10:15:06', 0, NULL, '2024-08-06 14:15:07', '2024-08-06 14:15:07'),
(4233, 2, '2024-08-06 10:15:07', '2024-08-06 10:15:07', 0, NULL, '2024-08-06 14:15:07', '2024-08-06 14:15:07'),
(4234, 3, '2024-08-06 10:15:07', '2024-08-06 10:15:07', 0, NULL, '2024-08-06 14:15:08', '2024-08-06 14:15:08'),
(4235, 5, '2024-08-06 10:15:08', '2024-08-06 10:15:08', 0, NULL, '2024-08-06 14:15:08', '2024-08-06 14:15:08'),
(4236, 1, '2024-08-06 10:25:05', '2024-08-06 10:25:05', 0, NULL, '2024-08-06 14:25:06', '2024-08-06 14:25:06'),
(4237, 2, '2024-08-06 10:25:06', '2024-08-06 10:25:06', 0, NULL, '2024-08-06 14:25:07', '2024-08-06 14:25:07'),
(4238, 3, '2024-08-06 10:25:11', '2024-08-06 10:25:11', 0, NULL, '2024-08-06 14:25:11', '2024-08-06 14:25:11'),
(4239, 5, '2024-08-06 10:25:11', '2024-08-06 10:25:11', 0, NULL, '2024-08-06 14:25:11', '2024-08-06 14:25:11'),
(4240, 1, '2024-08-06 10:30:09', '2024-08-06 10:30:09', 0, NULL, '2024-08-06 14:30:09', '2024-08-06 14:30:09'),
(4241, 2, '2024-08-06 10:30:10', '2024-08-06 10:30:10', 0, NULL, '2024-08-06 14:30:10', '2024-08-06 14:30:10'),
(4242, 3, '2024-08-06 10:35:05', '2024-08-06 10:35:05', 0, NULL, '2024-08-06 14:35:05', '2024-08-06 14:35:05'),
(4243, 5, '2024-08-06 10:35:05', '2024-08-06 10:35:05', 0, NULL, '2024-08-06 14:35:08', '2024-08-06 14:35:08'),
(4244, 1, '2024-08-06 10:40:03', '2024-08-06 10:40:03', 0, NULL, '2024-08-06 14:40:04', '2024-08-06 14:40:04'),
(4245, 2, '2024-08-06 10:40:04', '2024-08-06 10:40:04', 0, NULL, '2024-08-06 14:40:05', '2024-08-06 14:40:05'),
(4246, 1, '2024-08-06 10:45:08', '2024-08-06 10:45:08', 0, NULL, '2024-08-06 14:45:10', '2024-08-06 14:45:10'),
(4247, 2, '2024-08-06 10:45:11', '2024-08-06 10:45:11', 0, NULL, '2024-08-06 14:45:11', '2024-08-06 14:45:11'),
(4248, 3, '2024-08-06 10:45:11', '2024-08-06 10:45:11', 0, NULL, '2024-08-06 14:45:11', '2024-08-06 14:45:11'),
(4249, 5, '2024-08-06 10:45:11', '2024-08-06 10:45:11', 0, NULL, '2024-08-06 14:45:11', '2024-08-06 14:45:11'),
(4250, 1, '2024-08-06 10:55:08', '2024-08-06 10:55:08', 0, NULL, '2024-08-06 14:55:08', '2024-08-06 14:55:08'),
(4251, 2, '2024-08-06 10:55:09', '2024-08-06 10:55:09', 0, NULL, '2024-08-06 14:55:09', '2024-08-06 14:55:09'),
(4252, 3, '2024-08-06 10:55:09', '2024-08-06 10:55:09', 0, NULL, '2024-08-06 14:55:10', '2024-08-06 14:55:10'),
(4253, 5, '2024-08-06 10:55:10', '2024-08-06 10:55:10', 0, NULL, '2024-08-06 14:55:10', '2024-08-06 14:55:10'),
(4254, 1, '2024-08-06 11:05:03', '2024-08-06 11:05:03', 0, NULL, '2024-08-06 15:05:03', '2024-08-06 15:05:03'),
(4255, 2, '2024-08-06 11:05:03', '2024-08-06 11:05:03', 0, NULL, '2024-08-06 15:05:03', '2024-08-06 15:05:03'),
(4256, 3, '2024-08-06 11:05:04', '2024-08-06 11:05:04', 0, NULL, '2024-08-06 15:05:04', '2024-08-06 15:05:04'),
(4257, 5, '2024-08-06 11:05:05', '2024-08-06 11:05:05', 0, NULL, '2024-08-06 15:05:05', '2024-08-06 15:05:05'),
(4258, 1, '2024-08-06 11:10:04', '2024-08-06 11:10:04', 0, NULL, '2024-08-06 15:10:04', '2024-08-06 15:10:04'),
(4259, 2, '2024-08-06 11:10:05', '2024-08-06 11:10:05', 0, NULL, '2024-08-06 15:10:05', '2024-08-06 15:10:05'),
(4260, 1, '2024-08-06 11:15:07', '2024-08-06 11:15:07', 0, NULL, '2024-08-06 15:15:08', '2024-08-06 15:15:08'),
(4261, 2, '2024-08-06 11:15:08', '2024-08-06 11:15:08', 0, NULL, '2024-08-06 15:15:08', '2024-08-06 15:15:08'),
(4262, 3, '2024-08-06 11:15:09', '2024-08-06 11:15:09', 0, NULL, '2024-08-06 15:15:09', '2024-08-06 15:15:09'),
(4263, 5, '2024-08-06 11:15:09', '2024-08-06 11:15:09', 0, NULL, '2024-08-06 15:15:09', '2024-08-06 15:15:09'),
(4264, 1, '2024-08-06 11:25:05', '2024-08-06 11:25:05', 0, NULL, '2024-08-06 15:25:08', '2024-08-06 15:25:08'),
(4265, 2, '2024-08-06 11:25:10', '2024-08-06 11:25:10', 0, NULL, '2024-08-06 15:25:10', '2024-08-06 15:25:10'),
(4266, 3, '2024-08-06 11:25:10', '2024-08-06 11:25:10', 0, NULL, '2024-08-06 15:25:10', '2024-08-06 15:25:10'),
(4267, 5, '2024-08-06 11:25:10', '2024-08-06 11:25:10', 0, NULL, '2024-08-06 15:25:10', '2024-08-06 15:25:10'),
(4268, 1, '2024-08-06 11:30:06', '2024-08-06 11:30:06', 0, NULL, '2024-08-06 15:30:07', '2024-08-06 15:30:07'),
(4269, 2, '2024-08-06 11:35:06', '2024-08-06 11:35:06', 0, NULL, '2024-08-06 15:35:06', '2024-08-06 15:35:06'),
(4270, 3, '2024-08-06 11:35:07', '2024-08-06 11:35:07', 0, NULL, '2024-08-06 15:35:07', '2024-08-06 15:35:07'),
(4271, 5, '2024-08-06 11:35:08', '2024-08-06 11:35:08', 0, NULL, '2024-08-06 15:35:08', '2024-08-06 15:35:08'),
(4272, 1, '2024-08-06 11:40:05', '2024-08-06 11:40:05', 0, NULL, '2024-08-06 15:40:05', '2024-08-06 15:40:05'),
(4273, 1, '2024-08-06 11:45:06', '2024-08-06 11:45:06', 0, NULL, '2024-08-06 15:45:07', '2024-08-06 15:45:07'),
(4274, 2, '2024-08-06 11:45:07', '2024-08-06 11:45:07', 0, NULL, '2024-08-06 15:45:08', '2024-08-06 15:45:08'),
(4275, 3, '2024-08-06 11:45:08', '2024-08-06 11:45:08', 0, NULL, '2024-08-06 15:45:08', '2024-08-06 15:45:08'),
(4276, 5, '2024-08-06 11:45:08', '2024-08-06 11:45:08', 0, NULL, '2024-08-06 15:45:09', '2024-08-06 15:45:09'),
(4277, 1, '2024-08-06 11:55:05', '2024-08-06 11:55:06', 0, NULL, '2024-08-06 15:55:07', '2024-08-06 15:55:07'),
(4278, 2, '2024-08-06 11:55:07', '2024-08-06 11:55:07', 0, NULL, '2024-08-06 15:55:07', '2024-08-06 15:55:07'),
(4279, 3, '2024-08-06 11:55:07', '2024-08-06 11:55:07', 0, NULL, '2024-08-06 15:55:08', '2024-08-06 15:55:08'),
(4280, 5, '2024-08-06 11:55:08', '2024-08-06 11:55:08', 0, NULL, '2024-08-06 15:55:08', '2024-08-06 15:55:08'),
(4281, 1, '2024-08-06 12:05:06', '2024-08-06 12:05:06', 0, NULL, '2024-08-06 16:05:06', '2024-08-06 16:05:06'),
(4282, 2, '2024-08-06 12:05:07', '2024-08-06 12:05:07', 0, NULL, '2024-08-06 16:05:07', '2024-08-06 16:05:07'),
(4283, 3, '2024-08-06 12:05:07', '2024-08-06 12:05:07', 0, NULL, '2024-08-06 16:05:07', '2024-08-06 16:05:07'),
(4284, 5, '2024-08-06 12:05:07', '2024-08-06 12:05:07', 0, NULL, '2024-08-06 16:05:07', '2024-08-06 16:05:07'),
(4285, 1, '2024-08-06 12:10:09', '2024-08-06 12:10:09', 0, NULL, '2024-08-06 16:10:10', '2024-08-06 16:10:10'),
(4286, 2, '2024-08-06 12:10:10', '2024-08-06 12:10:10', 0, NULL, '2024-08-06 16:10:10', '2024-08-06 16:10:10'),
(4287, 3, '2024-08-06 12:10:10', '2024-08-06 12:10:10', 0, NULL, '2024-08-06 16:10:10', '2024-08-06 16:10:10'),
(4288, 5, '2024-08-06 12:10:11', '2024-08-06 12:10:11', 0, NULL, '2024-08-06 16:10:11', '2024-08-06 16:10:11'),
(4289, 1, '2024-08-06 12:20:06', '2024-08-06 12:20:06', 0, NULL, '2024-08-06 16:20:06', '2024-08-06 16:20:06'),
(4290, 2, '2024-08-06 12:20:06', '2024-08-06 12:20:06', 0, NULL, '2024-08-06 16:20:07', '2024-08-06 16:20:07'),
(4291, 3, '2024-08-06 12:20:07', '2024-08-06 12:20:07', 0, NULL, '2024-08-06 16:20:07', '2024-08-06 16:20:07'),
(4292, 5, '2024-08-06 12:20:07', '2024-08-06 12:20:07', 0, NULL, '2024-08-06 16:20:08', '2024-08-06 16:20:08'),
(4293, 1, '2024-08-06 12:30:06', '2024-08-06 12:30:07', 0, NULL, '2024-08-06 16:30:07', '2024-08-06 16:30:07'),
(4294, 2, '2024-08-06 12:30:07', '2024-08-06 12:30:07', 0, NULL, '2024-08-06 16:30:07', '2024-08-06 16:30:07'),
(4295, 3, '2024-08-06 12:30:08', '2024-08-06 12:30:08', 0, NULL, '2024-08-06 16:30:08', '2024-08-06 16:30:08'),
(4296, 5, '2024-08-06 12:30:08', '2024-08-06 12:30:09', 0, NULL, '2024-08-06 16:30:09', '2024-08-06 16:30:09'),
(4297, 1, '2024-08-06 12:40:08', '2024-08-06 12:40:08', 0, NULL, '2024-08-06 16:40:08', '2024-08-06 16:40:08'),
(4298, 2, '2024-08-06 12:40:09', '2024-08-06 12:40:09', 0, NULL, '2024-08-06 16:40:09', '2024-08-06 16:40:09'),
(4299, 3, '2024-08-06 12:40:09', '2024-08-06 12:40:09', 0, NULL, '2024-08-06 16:40:09', '2024-08-06 16:40:09'),
(4300, 5, '2024-08-06 12:40:09', '2024-08-06 12:40:09', 0, NULL, '2024-08-06 16:40:10', '2024-08-06 16:40:10'),
(4301, 1, '2024-08-06 12:50:07', '2024-08-06 12:50:07', 0, NULL, '2024-08-06 16:50:07', '2024-08-06 16:50:07'),
(4302, 2, '2024-08-06 12:50:08', '2024-08-06 12:50:08', 0, NULL, '2024-08-06 16:50:08', '2024-08-06 16:50:08'),
(4303, 3, '2024-08-06 12:50:09', '2024-08-06 12:50:09', 0, NULL, '2024-08-06 16:50:09', '2024-08-06 16:50:09'),
(4304, 5, '2024-08-06 12:50:09', '2024-08-06 12:50:09', 0, NULL, '2024-08-06 16:50:09', '2024-08-06 16:50:09'),
(4305, 1, '2024-08-06 13:00:05', '2024-08-06 13:00:05', 0, NULL, '2024-08-06 17:00:05', '2024-08-06 17:00:05'),
(4306, 2, '2024-08-06 13:00:06', '2024-08-06 13:00:06', 0, NULL, '2024-08-06 17:00:07', '2024-08-06 17:00:07'),
(4307, 3, '2024-08-06 13:00:07', '2024-08-06 13:00:07', 0, NULL, '2024-08-06 17:00:08', '2024-08-06 17:00:08'),
(4308, 5, '2024-08-06 13:00:08', '2024-08-06 13:00:08', 0, NULL, '2024-08-06 17:00:08', '2024-08-06 17:00:08'),
(4309, 1, '2024-08-06 13:10:03', '2024-08-06 13:10:03', 0, NULL, '2024-08-06 17:10:04', '2024-08-06 17:10:04'),
(4310, 2, '2024-08-06 13:10:05', '2024-08-06 13:10:05', 0, NULL, '2024-08-06 17:10:05', '2024-08-06 17:10:05'),
(4311, 3, '2024-08-06 13:10:06', '2024-08-06 13:10:06', 0, NULL, '2024-08-06 17:10:06', '2024-08-06 17:10:06'),
(4312, 5, '2024-08-06 13:10:07', '2024-08-06 13:10:07', 0, NULL, '2024-08-06 17:10:07', '2024-08-06 17:10:07'),
(4313, 1, '2024-08-06 13:15:05', '2024-08-06 13:15:05', 0, NULL, '2024-08-06 17:15:06', '2024-08-06 17:15:06'),
(4314, 1, '2024-08-06 13:20:07', '2024-08-06 13:20:07', 0, NULL, '2024-08-06 17:20:07', '2024-08-06 17:20:07'),
(4315, 2, '2024-08-06 13:20:07', '2024-08-06 13:20:07', 0, NULL, '2024-08-06 17:20:08', '2024-08-06 17:20:08'),
(4316, 3, '2024-08-06 13:20:08', '2024-08-06 13:20:08', 0, NULL, '2024-08-06 17:20:08', '2024-08-06 17:20:08'),
(4317, 5, '2024-08-06 13:20:08', '2024-08-06 13:20:08', 0, NULL, '2024-08-06 17:20:09', '2024-08-06 17:20:09'),
(4318, 1, '2024-08-06 13:30:09', '2024-08-06 13:30:09', 0, NULL, '2024-08-06 17:30:10', '2024-08-06 17:30:10'),
(4319, 2, '2024-08-06 13:30:10', '2024-08-06 13:30:10', 0, NULL, '2024-08-06 17:30:10', '2024-08-06 17:30:10'),
(4320, 3, '2024-08-06 13:30:10', '2024-08-06 13:30:10', 0, NULL, '2024-08-06 17:30:11', '2024-08-06 17:30:11'),
(4321, 5, '2024-08-06 13:30:11', '2024-08-06 13:30:11', 0, NULL, '2024-08-06 17:30:11', '2024-08-06 17:30:11'),
(4322, 1, '2024-08-06 13:40:09', '2024-08-06 13:40:09', 0, NULL, '2024-08-06 17:40:09', '2024-08-06 17:40:09'),
(4323, 2, '2024-08-06 13:40:10', '2024-08-06 13:40:10', 0, NULL, '2024-08-06 17:40:10', '2024-08-06 17:40:10'),
(4324, 3, '2024-08-06 13:40:10', '2024-08-06 13:40:10', 0, NULL, '2024-08-06 17:40:11', '2024-08-06 17:40:11'),
(4325, 5, '2024-08-06 13:40:11', '2024-08-06 13:40:11', 0, NULL, '2024-08-06 17:40:11', '2024-08-06 17:40:11'),
(4326, 1, '2024-08-06 13:50:08', '2024-08-06 13:50:08', 0, NULL, '2024-08-06 17:50:08', '2024-08-06 17:50:08'),
(4327, 2, '2024-08-06 13:50:08', '2024-08-06 13:50:08', 0, NULL, '2024-08-06 17:50:09', '2024-08-06 17:50:09'),
(4328, 3, '2024-08-06 13:50:09', '2024-08-06 13:50:09', 0, NULL, '2024-08-06 17:50:09', '2024-08-06 17:50:09'),
(4329, 5, '2024-08-06 13:50:09', '2024-08-06 13:50:09', 0, NULL, '2024-08-06 17:50:10', '2024-08-06 17:50:10'),
(4330, 1, '2024-08-06 14:00:08', '2024-08-06 14:00:08', 0, NULL, '2024-08-06 18:00:09', '2024-08-06 18:00:09'),
(4331, 2, '2024-08-06 14:00:09', '2024-08-06 14:00:09', 0, NULL, '2024-08-06 18:00:13', '2024-08-06 18:00:13'),
(4332, 3, '2024-08-06 14:00:15', '2024-08-06 14:00:15', 0, NULL, '2024-08-06 18:00:15', '2024-08-06 18:00:15'),
(4333, 5, '2024-08-06 14:00:15', '2024-08-06 14:00:15', 0, NULL, '2024-08-06 18:00:15', '2024-08-06 18:00:15'),
(4334, 1, '2024-08-06 14:05:10', '2024-08-06 14:05:10', 0, NULL, '2024-08-06 18:05:11', '2024-08-06 18:05:11'),
(4335, 2, '2024-08-06 14:05:11', '2024-08-06 14:05:11', 0, NULL, '2024-08-06 18:05:11', '2024-08-06 18:05:11'),
(4336, 3, '2024-08-06 14:10:06', '2024-08-06 14:10:06', 0, NULL, '2024-08-06 18:10:07', '2024-08-06 18:10:07'),
(4337, 5, '2024-08-06 14:10:07', '2024-08-06 14:10:07', 0, NULL, '2024-08-06 18:10:07', '2024-08-06 18:10:07'),
(4338, 1, '2024-08-06 14:15:06', '2024-08-06 14:15:06', 0, NULL, '2024-08-06 18:15:07', '2024-08-06 18:15:07'),
(4339, 2, '2024-08-06 14:15:07', '2024-08-06 14:15:07', 0, NULL, '2024-08-06 18:15:07', '2024-08-06 18:15:07'),
(4340, 3, '2024-08-06 14:20:06', '2024-08-06 14:20:06', 0, NULL, '2024-08-06 18:20:07', '2024-08-06 18:20:07'),
(4341, 5, '2024-08-06 14:20:07', '2024-08-06 14:20:07', 0, NULL, '2024-08-06 18:20:07', '2024-08-06 18:20:07'),
(4342, 1, '2024-08-06 14:25:05', '2024-08-06 14:25:05', 0, NULL, '2024-08-06 18:25:06', '2024-08-06 18:25:06'),
(4343, 2, '2024-08-06 14:25:07', '2024-08-06 14:25:07', 0, NULL, '2024-08-06 18:25:07', '2024-08-06 18:25:07'),
(4344, 1, '2024-08-06 14:30:06', '2024-08-06 14:30:06', 0, NULL, '2024-08-06 18:30:06', '2024-08-06 18:30:06'),
(4345, 3, '2024-08-06 14:30:06', '2024-08-06 14:30:06', 0, NULL, '2024-08-06 18:30:07', '2024-08-06 18:30:07'),
(4346, 5, '2024-08-06 14:30:07', '2024-08-06 14:30:07', 0, NULL, '2024-08-06 18:30:07', '2024-08-06 18:30:07'),
(4347, 2, '2024-08-06 14:35:03', '2024-08-06 14:35:04', 0, NULL, '2024-08-06 18:35:04', '2024-08-06 18:35:04'),
(4348, 1, '2024-08-06 14:40:04', '2024-08-06 14:40:04', 0, NULL, '2024-08-06 18:40:04', '2024-08-06 18:40:04'),
(4349, 3, '2024-08-06 14:40:05', '2024-08-06 14:40:05', 0, NULL, '2024-08-06 18:40:06', '2024-08-06 18:40:06'),
(4350, 5, '2024-08-06 14:40:07', '2024-08-06 14:40:07', 0, NULL, '2024-08-06 18:40:08', '2024-08-06 18:40:08'),
(4351, 1, '2024-08-06 14:45:07', '2024-08-06 14:45:07', 0, NULL, '2024-08-06 18:45:07', '2024-08-06 18:45:07'),
(4352, 2, '2024-08-06 14:45:08', '2024-08-06 14:45:08', 0, NULL, '2024-08-06 18:45:08', '2024-08-06 18:45:08'),
(4353, 3, '2024-08-06 14:45:08', '2024-08-06 14:45:08', 0, NULL, '2024-08-06 18:45:08', '2024-08-06 18:45:08'),
(4354, 5, '2024-08-06 14:50:04', '2024-08-06 14:50:04', 0, NULL, '2024-08-06 18:50:05', '2024-08-06 18:50:05'),
(4355, 1, '2024-08-06 14:55:06', '2024-08-06 14:55:06', 0, NULL, '2024-08-06 18:55:07', '2024-08-06 18:55:07'),
(4356, 2, '2024-08-06 14:55:07', '2024-08-06 14:55:07', 0, NULL, '2024-08-06 18:55:07', '2024-08-06 18:55:07'),
(4357, 3, '2024-08-06 14:55:08', '2024-08-06 14:55:08', 0, NULL, '2024-08-06 18:55:08', '2024-08-06 18:55:08'),
(4358, 5, '2024-08-06 14:55:08', '2024-08-06 14:55:08', 0, NULL, '2024-08-06 18:55:09', '2024-08-06 18:55:09'),
(4359, 1, '2024-08-06 15:05:06', '2024-08-06 15:05:06', 0, NULL, '2024-08-06 19:05:06', '2024-08-06 19:05:06'),
(4360, 2, '2024-08-06 15:05:07', '2024-08-06 15:05:07', 0, NULL, '2024-08-06 19:05:07', '2024-08-06 19:05:07'),
(4361, 3, '2024-08-06 15:05:08', '2024-08-06 15:05:08', 0, NULL, '2024-08-06 19:05:08', '2024-08-06 19:05:08'),
(4362, 5, '2024-08-06 15:05:08', '2024-08-06 15:05:08', 0, NULL, '2024-08-06 19:05:08', '2024-08-06 19:05:08'),
(4363, 1, '2024-08-06 15:10:07', '2024-08-06 15:10:08', 0, NULL, '2024-08-06 19:10:08', '2024-08-06 19:10:08'),
(4364, 2, '2024-08-06 15:15:07', '2024-08-06 15:15:07', 0, NULL, '2024-08-06 19:15:07', '2024-08-06 19:15:07'),
(4365, 3, '2024-08-06 15:15:07', '2024-08-06 15:15:07', 0, NULL, '2024-08-06 19:15:08', '2024-08-06 19:15:08'),
(4366, 5, '2024-08-06 15:15:08', '2024-08-06 15:15:08', 0, NULL, '2024-08-06 19:15:08', '2024-08-06 19:15:08'),
(4367, 1, '2024-08-06 15:20:07', '2024-08-06 15:20:07', 0, NULL, '2024-08-06 19:20:08', '2024-08-06 19:20:08'),
(4368, 2, '2024-08-06 15:25:07', '2024-08-06 15:25:07', 0, NULL, '2024-08-06 19:25:07', '2024-08-06 19:25:07'),
(4369, 3, '2024-08-06 15:25:08', '2024-08-06 15:25:08', 0, NULL, '2024-08-06 19:25:08', '2024-08-06 19:25:08'),
(4370, 5, '2024-08-06 15:25:08', '2024-08-06 15:25:08', 0, NULL, '2024-08-06 19:25:09', '2024-08-06 19:25:09'),
(4371, 1, '2024-08-06 15:30:11', '2024-08-06 15:30:11', 0, NULL, '2024-08-06 19:30:11', '2024-08-06 19:30:11'),
(4372, 2, '2024-08-06 15:30:11', '2024-08-06 15:30:11', 0, NULL, '2024-08-06 19:30:11', '2024-08-06 19:30:11'),
(4373, 3, '2024-08-06 15:30:11', '2024-08-06 15:30:11', 0, NULL, '2024-08-06 19:30:12', '2024-08-06 19:30:12'),
(4374, 5, '2024-08-06 15:30:12', '2024-08-06 15:30:12', 0, NULL, '2024-08-06 19:30:12', '2024-08-06 19:30:12'),
(4375, 1, '2024-08-06 15:40:07', '2024-08-06 15:40:07', 0, NULL, '2024-08-06 19:40:07', '2024-08-06 19:40:07'),
(4376, 2, '2024-08-06 15:40:08', '2024-08-06 15:40:08', 0, NULL, '2024-08-06 19:40:08', '2024-08-06 19:40:08'),
(4377, 3, '2024-08-06 15:40:09', '2024-08-06 15:40:09', 0, NULL, '2024-08-06 19:40:09', '2024-08-06 19:40:09'),
(4378, 5, '2024-08-06 15:40:09', '2024-08-06 15:40:09', 0, NULL, '2024-08-06 19:40:09', '2024-08-06 19:40:09'),
(4379, 1, '2024-08-06 15:50:12', '2024-08-06 15:50:12', 0, NULL, '2024-08-06 19:50:12', '2024-08-06 19:50:12'),
(4380, 2, '2024-08-06 15:50:12', '2024-08-06 15:50:12', 0, NULL, '2024-08-06 19:50:13', '2024-08-06 19:50:13'),
(4381, 3, '2024-08-06 15:50:13', '2024-08-06 15:50:13', 0, NULL, '2024-08-06 19:50:13', '2024-08-06 19:50:13'),
(4382, 5, '2024-08-06 15:50:13', '2024-08-06 15:50:13', 0, NULL, '2024-08-06 19:50:13', '2024-08-06 19:50:13'),
(4383, 1, '2024-08-06 16:00:11', '2024-08-06 16:00:11', 0, NULL, '2024-08-06 20:00:11', '2024-08-06 20:00:11'),
(4384, 2, '2024-08-06 16:00:12', '2024-08-06 16:00:12', 0, NULL, '2024-08-06 20:00:12', '2024-08-06 20:00:12'),
(4385, 3, '2024-08-06 16:00:12', '2024-08-06 16:00:12', 0, NULL, '2024-08-06 20:00:12', '2024-08-06 20:00:12'),
(4386, 5, '2024-08-06 16:00:12', '2024-08-06 16:00:12', 0, NULL, '2024-08-06 20:00:13', '2024-08-06 20:00:13'),
(4387, 1, '2024-08-06 16:10:09', '2024-08-06 16:10:09', 0, NULL, '2024-08-06 20:10:09', '2024-08-06 20:10:09'),
(4388, 2, '2024-08-06 16:10:10', '2024-08-06 16:10:10', 0, NULL, '2024-08-06 20:10:10', '2024-08-06 20:10:10'),
(4389, 3, '2024-08-06 16:10:10', '2024-08-06 16:10:10', 0, NULL, '2024-08-06 20:10:10', '2024-08-06 20:10:10'),
(4390, 5, '2024-08-06 16:10:10', '2024-08-06 16:10:10', 0, NULL, '2024-08-06 20:10:10', '2024-08-06 20:10:10'),
(4391, 1, '2024-08-06 16:20:07', '2024-08-06 16:20:07', 0, NULL, '2024-08-06 20:20:08', '2024-08-06 20:20:08'),
(4392, 2, '2024-08-06 16:20:08', '2024-08-06 16:20:08', 0, NULL, '2024-08-06 20:20:09', '2024-08-06 20:20:09'),
(4393, 3, '2024-08-06 16:20:09', '2024-08-06 16:20:09', 0, NULL, '2024-08-06 20:20:09', '2024-08-06 20:20:09'),
(4394, 5, '2024-08-06 16:20:09', '2024-08-06 16:20:09', 0, NULL, '2024-08-06 20:20:09', '2024-08-06 20:20:09'),
(4395, 1, '2024-08-06 16:30:07', '2024-08-06 16:30:07', 0, NULL, '2024-08-06 20:30:07', '2024-08-06 20:30:07'),
(4396, 2, '2024-08-06 16:30:08', '2024-08-06 16:30:08', 0, NULL, '2024-08-06 20:30:08', '2024-08-06 20:30:08'),
(4397, 3, '2024-08-06 16:30:08', '2024-08-06 16:30:08', 0, NULL, '2024-08-06 20:30:08', '2024-08-06 20:30:08'),
(4398, 5, '2024-08-06 16:30:09', '2024-08-06 16:30:09', 0, NULL, '2024-08-06 20:30:09', '2024-08-06 20:30:09'),
(4399, 1, '2024-08-06 16:40:11', '2024-08-06 16:40:11', 0, NULL, '2024-08-06 20:40:11', '2024-08-06 20:40:11'),
(4400, 2, '2024-08-06 16:40:12', '2024-08-06 16:40:12', 0, NULL, '2024-08-06 20:40:12', '2024-08-06 20:40:12'),
(4401, 3, '2024-08-06 16:40:12', '2024-08-06 16:40:12', 0, NULL, '2024-08-06 20:40:12', '2024-08-06 20:40:12'),
(4402, 5, '2024-08-06 16:40:12', '2024-08-06 16:40:12', 0, NULL, '2024-08-06 20:40:12', '2024-08-06 20:40:12'),
(4403, 1, '2024-08-06 16:50:06', '2024-08-06 16:50:06', 0, NULL, '2024-08-06 20:50:06', '2024-08-06 20:50:06'),
(4404, 2, '2024-08-06 16:50:07', '2024-08-06 16:50:07', 0, NULL, '2024-08-06 20:50:08', '2024-08-06 20:50:08'),
(4405, 3, '2024-08-06 16:50:08', '2024-08-06 16:50:08', 0, NULL, '2024-08-06 20:50:08', '2024-08-06 20:50:08'),
(4406, 5, '2024-08-06 16:50:08', '2024-08-06 16:50:08', 0, NULL, '2024-08-06 20:50:09', '2024-08-06 20:50:09'),
(4407, 1, '2024-08-06 16:55:07', '2024-08-06 16:55:07', 0, NULL, '2024-08-06 20:55:08', '2024-08-06 20:55:08'),
(4408, 2, '2024-08-06 17:00:07', '2024-08-06 17:00:07', 0, NULL, '2024-08-06 21:00:08', '2024-08-06 21:00:08'),
(4409, 3, '2024-08-06 17:00:08', '2024-08-06 17:00:08', 0, NULL, '2024-08-06 21:00:08', '2024-08-06 21:00:08'),
(4410, 5, '2024-08-06 17:00:08', '2024-08-06 17:00:08', 0, NULL, '2024-08-06 21:00:09', '2024-08-06 21:00:09'),
(4411, 1, '2024-08-06 17:05:07', '2024-08-06 17:05:07', 0, NULL, '2024-08-06 21:05:07', '2024-08-06 21:05:07'),
(4412, 2, '2024-08-06 17:10:06', '2024-08-06 17:10:06', 0, NULL, '2024-08-06 21:10:06', '2024-08-06 21:10:06'),
(4413, 3, '2024-08-06 17:10:07', '2024-08-06 17:10:07', 0, NULL, '2024-08-06 21:10:07', '2024-08-06 21:10:07'),
(4414, 5, '2024-08-06 17:10:08', '2024-08-06 17:10:08', 0, NULL, '2024-08-06 21:10:08', '2024-08-06 21:10:08'),
(4415, 1, '2024-08-06 17:15:06', '2024-08-06 17:15:06', 0, NULL, '2024-08-06 21:15:06', '2024-08-06 21:15:06'),
(4416, 1, '2024-08-06 17:20:07', '2024-08-06 17:20:07', 0, NULL, '2024-08-06 21:20:08', '2024-08-06 21:20:08'),
(4417, 2, '2024-08-06 17:20:08', '2024-08-06 17:20:08', 0, NULL, '2024-08-06 21:20:09', '2024-08-06 21:20:09'),
(4418, 3, '2024-08-06 17:20:09', '2024-08-06 17:20:09', 0, NULL, '2024-08-06 21:20:09', '2024-08-06 21:20:09'),
(4419, 5, '2024-08-06 17:20:10', '2024-08-06 17:20:10', 0, NULL, '2024-08-06 21:20:10', '2024-08-06 21:20:10'),
(4420, 1, '2024-08-06 17:30:08', '2024-08-06 17:30:08', 0, NULL, '2024-08-06 21:30:09', '2024-08-06 21:30:09'),
(4421, 2, '2024-08-06 17:30:09', '2024-08-06 17:30:09', 0, NULL, '2024-08-06 21:30:09', '2024-08-06 21:30:09'),
(4422, 3, '2024-08-06 17:30:09', '2024-08-06 17:30:09', 0, NULL, '2024-08-06 21:30:10', '2024-08-06 21:30:10'),
(4423, 5, '2024-08-06 17:30:10', '2024-08-06 17:30:10', 0, NULL, '2024-08-06 21:30:10', '2024-08-06 21:30:10'),
(4424, 1, '2024-08-06 17:40:04', '2024-08-06 17:40:04', 0, NULL, '2024-08-06 21:40:04', '2024-08-06 21:40:04'),
(4425, 2, '2024-08-06 17:40:05', '2024-08-06 17:40:05', 0, NULL, '2024-08-06 21:40:05', '2024-08-06 21:40:05'),
(4426, 3, '2024-08-06 17:40:05', '2024-08-06 17:40:05', 0, NULL, '2024-08-06 21:40:06', '2024-08-06 21:40:06'),
(4427, 5, '2024-08-06 17:40:06', '2024-08-06 17:40:06', 0, NULL, '2024-08-06 21:40:07', '2024-08-06 21:40:07'),
(4428, 1, '2024-08-06 17:45:07', '2024-08-06 17:45:07', 0, NULL, '2024-08-06 21:45:08', '2024-08-06 21:45:08'),
(4429, 2, '2024-08-06 17:45:08', '2024-08-06 17:45:08', 0, NULL, '2024-08-06 21:45:09', '2024-08-06 21:45:09'),
(4430, 3, '2024-08-06 17:45:09', '2024-08-06 17:45:09', 0, NULL, '2024-08-06 21:45:09', '2024-08-06 21:45:09'),
(4431, 5, '2024-08-06 17:45:09', '2024-08-06 17:45:09', 0, NULL, '2024-08-06 21:45:10', '2024-08-06 21:45:10'),
(4432, 1, '2024-08-06 17:50:08', '2024-08-06 17:50:08', 0, NULL, '2024-08-06 21:50:09', '2024-08-06 21:50:09'),
(4433, 2, '2024-08-06 17:55:07', '2024-08-06 17:55:07', 0, NULL, '2024-08-06 21:55:08', '2024-08-06 21:55:08'),
(4434, 3, '2024-08-06 17:55:08', '2024-08-06 17:55:08', 0, NULL, '2024-08-06 21:55:09', '2024-08-06 21:55:09'),
(4435, 5, '2024-08-06 17:55:09', '2024-08-06 17:55:09', 0, NULL, '2024-08-06 21:55:09', '2024-08-06 21:55:09'),
(4436, 1, '2024-08-06 18:00:12', '2024-08-06 18:00:12', 0, NULL, '2024-08-06 22:00:12', '2024-08-06 22:00:12'),
(4437, 2, '2024-08-06 18:00:12', '2024-08-06 18:00:12', 0, NULL, '2024-08-06 22:00:13', '2024-08-06 22:00:13'),
(4438, 3, '2024-08-06 18:00:13', '2024-08-06 18:00:13', 0, NULL, '2024-08-06 22:00:13', '2024-08-06 22:00:13'),
(4439, 5, '2024-08-06 18:00:13', '2024-08-06 18:00:13', 0, NULL, '2024-08-06 22:00:13', '2024-08-06 22:00:13'),
(4440, 1, '2024-08-06 18:10:08', '2024-08-06 18:10:08', 0, NULL, '2024-08-06 22:10:08', '2024-08-06 22:10:08'),
(4441, 2, '2024-08-06 18:10:08', '2024-08-06 18:10:08', 0, NULL, '2024-08-06 22:10:09', '2024-08-06 22:10:09'),
(4442, 3, '2024-08-06 18:10:09', '2024-08-06 18:10:09', 0, NULL, '2024-08-06 22:10:09', '2024-08-06 22:10:09'),
(4443, 5, '2024-08-06 18:10:10', '2024-08-06 18:10:10', 0, NULL, '2024-08-06 22:10:10', '2024-08-06 22:10:10'),
(4444, 1, '2024-08-06 18:20:09', '2024-08-06 18:20:09', 0, NULL, '2024-08-06 22:20:10', '2024-08-06 22:20:10'),
(4445, 2, '2024-08-06 18:20:10', '2024-08-06 18:20:10', 0, NULL, '2024-08-06 22:20:10', '2024-08-06 22:20:10'),
(4446, 3, '2024-08-06 18:20:10', '2024-08-06 18:20:10', 0, NULL, '2024-08-06 22:20:10', '2024-08-06 22:20:10'),
(4447, 5, '2024-08-06 18:20:11', '2024-08-06 18:20:11', 0, NULL, '2024-08-06 22:20:11', '2024-08-06 22:20:11'),
(4448, 1, '2024-08-06 18:25:10', '2024-08-06 18:25:10', 0, NULL, '2024-08-06 22:25:11', '2024-08-06 22:25:11'),
(4449, 2, '2024-08-06 18:30:06', '2024-08-06 18:30:06', 0, NULL, '2024-08-06 22:30:06', '2024-08-06 22:30:06'),
(4450, 3, '2024-08-06 18:30:07', '2024-08-06 18:30:07', 0, NULL, '2024-08-06 22:30:08', '2024-08-06 22:30:08'),
(4451, 5, '2024-08-06 18:30:08', '2024-08-06 18:30:08', 0, NULL, '2024-08-06 22:30:08', '2024-08-06 22:30:08'),
(4452, 1, '2024-08-06 18:35:06', '2024-08-06 18:35:06', 0, NULL, '2024-08-06 22:35:07', '2024-08-06 22:35:07'),
(4453, 2, '2024-08-06 18:40:06', '2024-08-06 18:40:06', 0, NULL, '2024-08-06 22:40:07', '2024-08-06 22:40:07'),
(4454, 3, '2024-08-06 18:40:07', '2024-08-06 18:40:07', 0, NULL, '2024-08-06 22:40:08', '2024-08-06 22:40:08'),
(4455, 5, '2024-08-06 18:40:08', '2024-08-06 18:40:08', 0, NULL, '2024-08-06 22:40:09', '2024-08-06 22:40:09'),
(4456, 1, '2024-08-06 18:45:17', '2024-08-06 18:45:17', 0, NULL, '2024-08-06 22:45:17', '2024-08-06 22:45:17'),
(4457, 2, '2024-08-06 18:45:17', '2024-08-06 18:45:17', 0, NULL, '2024-08-06 22:45:18', '2024-08-06 22:45:18'),
(4458, 3, '2024-08-06 18:45:18', '2024-08-06 18:45:18', 0, NULL, '2024-08-06 22:45:18', '2024-08-06 22:45:18'),
(4459, 5, '2024-08-06 18:45:18', '2024-08-06 18:45:18', 0, NULL, '2024-08-06 22:45:18', '2024-08-06 22:45:18'),
(4460, 1, '2024-08-06 18:55:08', '2024-08-06 18:55:08', 0, NULL, '2024-08-06 22:55:08', '2024-08-06 22:55:08'),
(4461, 2, '2024-08-06 18:55:09', '2024-08-06 18:55:09', 0, NULL, '2024-08-06 22:55:09', '2024-08-06 22:55:09'),
(4462, 3, '2024-08-06 18:55:09', '2024-08-06 18:55:09', 0, NULL, '2024-08-06 22:55:10', '2024-08-06 22:55:10'),
(4463, 5, '2024-08-06 18:55:10', '2024-08-06 18:55:10', 0, NULL, '2024-08-06 22:55:10', '2024-08-06 22:55:10'),
(4464, 1, '2024-08-06 19:05:08', '2024-08-06 19:05:08', 0, NULL, '2024-08-06 23:05:08', '2024-08-06 23:05:08'),
(4465, 2, '2024-08-06 19:05:09', '2024-08-06 19:05:09', 0, NULL, '2024-08-06 23:05:09', '2024-08-06 23:05:09'),
(4466, 3, '2024-08-06 19:05:09', '2024-08-06 19:05:09', 0, NULL, '2024-08-06 23:05:09', '2024-08-06 23:05:09'),
(4467, 5, '2024-08-06 19:05:09', '2024-08-06 19:05:09', 0, NULL, '2024-08-06 23:05:09', '2024-08-06 23:05:09'),
(4468, 1, '2024-08-06 19:15:08', '2024-08-06 19:15:08', 0, NULL, '2024-08-06 23:15:08', '2024-08-06 23:15:08'),
(4469, 2, '2024-08-06 19:15:08', '2024-08-06 19:15:08', 0, NULL, '2024-08-06 23:15:09', '2024-08-06 23:15:09'),
(4470, 3, '2024-08-06 19:15:09', '2024-08-06 19:15:09', 0, NULL, '2024-08-06 23:15:09', '2024-08-06 23:15:09'),
(4471, 5, '2024-08-06 19:15:09', '2024-08-06 19:15:09', 0, NULL, '2024-08-06 23:15:10', '2024-08-06 23:15:10'),
(4472, 1, '2024-08-06 19:25:07', '2024-08-06 19:25:10', 3, NULL, '2024-08-06 23:25:11', '2024-08-06 23:25:11'),
(4473, 2, '2024-08-06 19:25:12', '2024-08-06 19:25:12', 0, NULL, '2024-08-06 23:25:12', '2024-08-06 23:25:12'),
(4474, 3, '2024-08-06 19:25:12', '2024-08-06 19:25:12', 0, NULL, '2024-08-06 23:25:12', '2024-08-06 23:25:12'),
(4475, 5, '2024-08-06 19:25:13', '2024-08-06 19:25:13', 0, NULL, '2024-08-06 23:25:13', '2024-08-06 23:25:13'),
(4476, 1, '2024-08-06 19:35:09', '2024-08-06 19:35:09', 0, NULL, '2024-08-06 23:35:10', '2024-08-06 23:35:10'),
(4477, 2, '2024-08-06 19:35:11', '2024-08-06 19:35:11', 0, NULL, '2024-08-06 23:35:11', '2024-08-06 23:35:11'),
(4478, 3, '2024-08-06 19:35:11', '2024-08-06 19:35:11', 0, NULL, '2024-08-06 23:35:11', '2024-08-06 23:35:11'),
(4479, 5, '2024-08-06 19:35:11', '2024-08-06 19:35:11', 0, NULL, '2024-08-06 23:35:11', '2024-08-06 23:35:11'),
(4480, 1, '2024-08-06 19:45:04', '2024-08-06 19:45:04', 0, NULL, '2024-08-06 23:45:05', '2024-08-06 23:45:05'),
(4481, 2, '2024-08-06 19:45:05', '2024-08-06 19:45:05', 0, NULL, '2024-08-06 23:45:05', '2024-08-06 23:45:05'),
(4482, 3, '2024-08-06 19:45:05', '2024-08-06 19:45:05', 0, NULL, '2024-08-06 23:45:05', '2024-08-06 23:45:05'),
(4483, 5, '2024-08-06 19:45:06', '2024-08-06 19:45:06', 0, NULL, '2024-08-06 23:45:06', '2024-08-06 23:45:06'),
(4484, 1, '2024-08-06 19:55:07', '2024-08-06 19:55:07', 0, NULL, '2024-08-06 23:55:07', '2024-08-06 23:55:07'),
(4485, 2, '2024-08-06 19:55:08', '2024-08-06 19:55:08', 0, NULL, '2024-08-06 23:55:08', '2024-08-06 23:55:08'),
(4486, 3, '2024-08-06 19:55:08', '2024-08-06 19:55:08', 0, NULL, '2024-08-06 23:55:08', '2024-08-06 23:55:08'),
(4487, 5, '2024-08-06 19:55:09', '2024-08-06 19:55:09', 0, NULL, '2024-08-06 23:55:09', '2024-08-06 23:55:09'),
(4488, 1, '2024-08-06 20:05:05', '2024-08-06 20:05:05', 0, NULL, '2024-08-07 00:05:06', '2024-08-07 00:05:06'),
(4489, 2, '2024-08-06 20:05:07', '2024-08-06 20:05:07', 0, NULL, '2024-08-07 00:05:07', '2024-08-07 00:05:07'),
(4490, 3, '2024-08-06 20:05:08', '2024-08-06 20:05:08', 0, NULL, '2024-08-07 00:05:08', '2024-08-07 00:05:08'),
(4491, 5, '2024-08-06 20:05:09', '2024-08-06 20:05:09', 0, NULL, '2024-08-07 00:05:09', '2024-08-07 00:05:09'),
(4492, 1, '2024-08-06 20:10:10', '2024-08-06 20:10:10', 0, NULL, '2024-08-07 00:10:11', '2024-08-07 00:10:11'),
(4493, 2, '2024-08-06 20:10:11', '2024-08-06 20:10:11', 0, NULL, '2024-08-07 00:10:12', '2024-08-07 00:10:12'),
(4494, 3, '2024-08-06 20:10:12', '2024-08-06 20:10:12', 0, NULL, '2024-08-07 00:10:13', '2024-08-07 00:10:13'),
(4495, 5, '2024-08-06 20:10:13', '2024-08-06 20:10:13', 0, NULL, '2024-08-07 00:10:14', '2024-08-07 00:10:14'),
(4496, 1, '2024-08-06 20:20:06', '2024-08-06 20:20:06', 0, NULL, '2024-08-07 00:20:06', '2024-08-07 00:20:06'),
(4497, 2, '2024-08-06 20:20:06', '2024-08-06 20:20:06', 0, NULL, '2024-08-07 00:20:06', '2024-08-07 00:20:06'),
(4498, 3, '2024-08-06 20:20:07', '2024-08-06 20:20:07', 0, NULL, '2024-08-07 00:20:07', '2024-08-07 00:20:07'),
(4499, 5, '2024-08-06 20:20:07', '2024-08-06 20:20:08', 0, NULL, '2024-08-07 00:20:08', '2024-08-07 00:20:08'),
(4500, 1, '2024-08-06 20:25:16', '2024-08-06 20:25:16', 0, NULL, '2024-08-07 00:25:16', '2024-08-07 00:25:16'),
(4501, 2, '2024-08-06 20:25:16', '2024-08-06 20:25:16', 0, NULL, '2024-08-07 00:25:16', '2024-08-07 00:25:16'),
(4502, 3, '2024-08-06 20:25:17', '2024-08-06 20:25:17', 0, NULL, '2024-08-07 00:25:17', '2024-08-07 00:25:17'),
(4503, 5, '2024-08-06 20:25:17', '2024-08-06 20:25:17', 0, NULL, '2024-08-07 00:25:17', '2024-08-07 00:25:17'),
(4504, 1, '2024-08-06 20:35:09', '2024-08-06 20:35:09', 0, NULL, '2024-08-07 00:35:09', '2024-08-07 00:35:09'),
(4505, 2, '2024-08-06 20:35:09', '2024-08-06 20:35:09', 0, NULL, '2024-08-07 00:35:10', '2024-08-07 00:35:10'),
(4506, 3, '2024-08-06 20:35:10', '2024-08-06 20:35:10', 0, NULL, '2024-08-07 00:35:10', '2024-08-07 00:35:10'),
(4507, 5, '2024-08-06 20:35:10', '2024-08-06 20:35:11', 0, NULL, '2024-08-07 00:35:11', '2024-08-07 00:35:11'),
(4508, 1, '2024-08-06 20:45:05', '2024-08-06 20:45:05', 0, NULL, '2024-08-07 00:45:06', '2024-08-07 00:45:06'),
(4509, 2, '2024-08-06 20:45:06', '2024-08-06 20:45:06', 0, NULL, '2024-08-07 00:45:07', '2024-08-07 00:45:07'),
(4510, 3, '2024-08-06 20:45:07', '2024-08-06 20:45:07', 0, NULL, '2024-08-07 00:45:08', '2024-08-07 00:45:08'),
(4511, 5, '2024-08-06 20:45:08', '2024-08-06 20:45:08', 0, NULL, '2024-08-07 00:45:08', '2024-08-07 00:45:08'),
(4512, 1, '2024-08-06 20:55:05', '2024-08-06 20:55:05', 0, NULL, '2024-08-07 00:55:05', '2024-08-07 00:55:05'),
(4513, 2, '2024-08-06 20:55:06', '2024-08-06 20:55:06', 0, NULL, '2024-08-07 00:55:06', '2024-08-07 00:55:06'),
(4514, 3, '2024-08-06 20:55:06', '2024-08-06 20:55:06', 0, NULL, '2024-08-07 00:55:06', '2024-08-07 00:55:06'),
(4515, 5, '2024-08-06 20:55:07', '2024-08-06 20:55:07', 0, NULL, '2024-08-07 00:55:07', '2024-08-07 00:55:07'),
(4516, 1, '2024-08-06 21:05:06', '2024-08-06 21:05:06', 0, NULL, '2024-08-07 01:05:08', '2024-08-07 01:05:08'),
(4517, 2, '2024-08-06 21:05:08', '2024-08-06 21:05:08', 0, NULL, '2024-08-07 01:05:09', '2024-08-07 01:05:09'),
(4518, 3, '2024-08-06 21:05:09', '2024-08-06 21:05:09', 0, NULL, '2024-08-07 01:05:09', '2024-08-07 01:05:09'),
(4519, 5, '2024-08-06 21:05:09', '2024-08-06 21:05:09', 0, NULL, '2024-08-07 01:05:10', '2024-08-07 01:05:10'),
(4520, 1, '2024-08-06 21:15:07', '2024-08-06 21:15:07', 0, NULL, '2024-08-07 01:15:08', '2024-08-07 01:15:08'),
(4521, 2, '2024-08-06 21:15:08', '2024-08-06 21:15:08', 0, NULL, '2024-08-07 01:15:09', '2024-08-07 01:15:09'),
(4522, 3, '2024-08-06 21:15:09', '2024-08-06 21:15:09', 0, NULL, '2024-08-07 01:15:10', '2024-08-07 01:15:10'),
(4523, 5, '2024-08-06 21:15:10', '2024-08-06 21:15:10', 0, NULL, '2024-08-07 01:15:11', '2024-08-07 01:15:11'),
(4524, 1, '2024-08-06 21:25:05', '2024-08-06 21:25:05', 0, NULL, '2024-08-07 01:25:06', '2024-08-07 01:25:06'),
(4525, 2, '2024-08-06 21:25:06', '2024-08-06 21:25:06', 0, NULL, '2024-08-07 01:25:06', '2024-08-07 01:25:06'),
(4526, 3, '2024-08-06 21:25:07', '2024-08-06 21:25:07', 0, NULL, '2024-08-07 01:25:07', '2024-08-07 01:25:07'),
(4527, 5, '2024-08-06 21:25:07', '2024-08-06 21:25:07', 0, NULL, '2024-08-07 01:25:08', '2024-08-07 01:25:08'),
(4528, 1, '2024-08-06 21:35:09', '2024-08-06 21:35:09', 0, NULL, '2024-08-07 01:35:12', '2024-08-07 01:35:12'),
(4529, 2, '2024-08-06 21:35:13', '2024-08-06 21:35:13', 0, NULL, '2024-08-07 01:35:13', '2024-08-07 01:35:13'),
(4530, 3, '2024-08-06 21:35:13', '2024-08-06 21:35:13', 0, NULL, '2024-08-07 01:35:13', '2024-08-07 01:35:13'),
(4531, 5, '2024-08-06 21:35:14', '2024-08-06 21:35:14', 0, NULL, '2024-08-07 01:35:14', '2024-08-07 01:35:14'),
(4532, 1, '2024-08-06 21:45:05', '2024-08-06 21:45:05', 0, NULL, '2024-08-07 01:45:06', '2024-08-07 01:45:06'),
(4533, 2, '2024-08-06 21:45:07', '2024-08-06 21:45:07', 0, NULL, '2024-08-07 01:45:07', '2024-08-07 01:45:07'),
(4534, 3, '2024-08-06 21:45:08', '2024-08-06 21:45:08', 0, NULL, '2024-08-07 01:45:08', '2024-08-07 01:45:08'),
(4535, 5, '2024-08-06 21:45:09', '2024-08-06 21:45:09', 0, NULL, '2024-08-07 01:45:09', '2024-08-07 01:45:09'),
(4536, 1, '2024-08-06 21:55:09', '2024-08-06 21:55:09', 0, NULL, '2024-08-07 01:55:09', '2024-08-07 01:55:09'),
(4537, 2, '2024-08-06 21:55:09', '2024-08-06 21:55:09', 0, NULL, '2024-08-07 01:55:10', '2024-08-07 01:55:10'),
(4538, 3, '2024-08-06 21:55:10', '2024-08-06 21:55:10', 0, NULL, '2024-08-07 01:55:10', '2024-08-07 01:55:10'),
(4539, 5, '2024-08-06 21:55:10', '2024-08-06 21:55:11', 0, NULL, '2024-08-07 01:55:11', '2024-08-07 01:55:11'),
(4540, 1, '2024-08-06 22:05:07', '2024-08-06 22:05:07', 0, NULL, '2024-08-07 02:05:08', '2024-08-07 02:05:08');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(4541, 2, '2024-08-06 22:05:09', '2024-08-06 22:05:09', 0, NULL, '2024-08-07 02:05:09', '2024-08-07 02:05:09'),
(4542, 3, '2024-08-06 22:05:09', '2024-08-06 22:05:09', 0, NULL, '2024-08-07 02:05:10', '2024-08-07 02:05:10'),
(4543, 5, '2024-08-06 22:05:10', '2024-08-06 22:05:10', 0, NULL, '2024-08-07 02:05:10', '2024-08-07 02:05:10'),
(4544, 1, '2024-08-06 22:10:10', '2024-08-06 22:10:10', 0, NULL, '2024-08-07 02:10:10', '2024-08-07 02:10:10'),
(4545, 2, '2024-08-06 22:10:11', '2024-08-06 22:10:11', 0, NULL, '2024-08-07 02:10:11', '2024-08-07 02:10:11'),
(4546, 3, '2024-08-06 22:10:11', '2024-08-06 22:10:11', 0, NULL, '2024-08-07 02:10:11', '2024-08-07 02:10:11'),
(4547, 5, '2024-08-06 22:15:04', '2024-08-06 22:15:04', 0, NULL, '2024-08-07 02:15:05', '2024-08-07 02:15:05'),
(4548, 1, '2024-08-06 22:20:08', '2024-08-06 22:20:08', 0, NULL, '2024-08-07 02:20:09', '2024-08-07 02:20:09'),
(4549, 2, '2024-08-06 22:20:09', '2024-08-06 22:20:09', 0, NULL, '2024-08-07 02:20:09', '2024-08-07 02:20:09'),
(4550, 3, '2024-08-06 22:20:10', '2024-08-06 22:20:10', 0, NULL, '2024-08-07 02:20:10', '2024-08-07 02:20:10'),
(4551, 5, '2024-08-06 22:20:10', '2024-08-06 22:20:10', 0, NULL, '2024-08-07 02:20:11', '2024-08-07 02:20:11'),
(4552, 1, '2024-08-06 22:30:04', '2024-08-06 22:30:05', 0, NULL, '2024-08-07 02:30:05', '2024-08-07 02:30:05'),
(4553, 2, '2024-08-06 22:30:05', '2024-08-06 22:30:05', 0, NULL, '2024-08-07 02:30:07', '2024-08-07 02:30:07'),
(4554, 3, '2024-08-06 22:30:08', '2024-08-06 22:30:08', 0, NULL, '2024-08-07 02:30:08', '2024-08-07 02:30:08'),
(4555, 5, '2024-08-06 22:30:09', '2024-08-06 22:30:09', 0, NULL, '2024-08-07 02:30:09', '2024-08-07 02:30:09'),
(4556, 1, '2024-08-06 22:35:07', '2024-08-06 22:35:07', 0, NULL, '2024-08-07 02:35:08', '2024-08-07 02:35:08'),
(4557, 2, '2024-08-06 22:35:08', '2024-08-06 22:35:08', 0, NULL, '2024-08-07 02:35:08', '2024-08-07 02:35:08'),
(4558, 3, '2024-08-06 22:40:05', '2024-08-06 22:40:05', 0, NULL, '2024-08-07 02:40:05', '2024-08-07 02:40:05'),
(4559, 5, '2024-08-06 22:40:06', '2024-08-06 22:40:06', 0, NULL, '2024-08-07 02:40:07', '2024-08-07 02:40:07'),
(4560, 1, '2024-08-06 22:45:08', '2024-08-06 22:45:08', 0, NULL, '2024-08-07 02:45:09', '2024-08-07 02:45:09'),
(4561, 2, '2024-08-06 22:45:09', '2024-08-06 22:45:09', 0, NULL, '2024-08-07 02:45:09', '2024-08-07 02:45:09'),
(4562, 3, '2024-08-06 22:45:09', '2024-08-06 22:45:09', 0, NULL, '2024-08-07 02:45:10', '2024-08-07 02:45:10'),
(4563, 5, '2024-08-06 22:45:10', '2024-08-06 22:45:10', 0, NULL, '2024-08-07 02:45:10', '2024-08-07 02:45:10'),
(4564, 1, '2024-08-06 22:55:06', '2024-08-06 22:55:06', 0, NULL, '2024-08-07 02:55:06', '2024-08-07 02:55:06'),
(4565, 2, '2024-08-06 22:55:07', '2024-08-06 22:55:07', 0, NULL, '2024-08-07 02:55:07', '2024-08-07 02:55:07'),
(4566, 3, '2024-08-06 22:55:07', '2024-08-06 22:55:07', 0, NULL, '2024-08-07 02:55:08', '2024-08-07 02:55:08'),
(4567, 5, '2024-08-06 22:55:08', '2024-08-06 22:55:08', 0, NULL, '2024-08-07 02:55:09', '2024-08-07 02:55:09'),
(4568, 1, '2024-08-06 23:00:07', '2024-08-06 23:00:08', 0, NULL, '2024-08-07 03:00:08', '2024-08-07 03:00:08'),
(4569, 2, '2024-08-06 23:05:07', '2024-08-06 23:05:07', 0, NULL, '2024-08-07 03:05:07', '2024-08-07 03:05:07'),
(4570, 3, '2024-08-06 23:05:08', '2024-08-06 23:05:08', 0, NULL, '2024-08-07 03:05:09', '2024-08-07 03:05:09'),
(4571, 5, '2024-08-06 23:05:09', '2024-08-06 23:05:09', 0, NULL, '2024-08-07 03:05:09', '2024-08-07 03:05:09'),
(4572, 1, '2024-08-06 23:10:10', '2024-08-06 23:10:10', 0, NULL, '2024-08-07 03:10:11', '2024-08-07 03:10:11'),
(4573, 2, '2024-08-06 23:10:11', '2024-08-06 23:10:11', 0, NULL, '2024-08-07 03:10:11', '2024-08-07 03:10:11'),
(4574, 3, '2024-08-06 23:10:12', '2024-08-06 23:10:12', 0, NULL, '2024-08-07 03:10:12', '2024-08-07 03:10:12'),
(4575, 5, '2024-08-06 23:10:12', '2024-08-06 23:10:12', 0, NULL, '2024-08-07 03:10:12', '2024-08-07 03:10:12'),
(4576, 1, '2024-08-06 23:20:07', '2024-08-06 23:20:07', 0, NULL, '2024-08-07 03:20:08', '2024-08-07 03:20:08'),
(4577, 2, '2024-08-06 23:20:08', '2024-08-06 23:20:08', 0, NULL, '2024-08-07 03:20:08', '2024-08-07 03:20:08'),
(4578, 3, '2024-08-06 23:20:09', '2024-08-06 23:20:09', 0, NULL, '2024-08-07 03:20:09', '2024-08-07 03:20:09'),
(4579, 5, '2024-08-06 23:20:09', '2024-08-06 23:20:09', 0, NULL, '2024-08-07 03:20:09', '2024-08-07 03:20:09'),
(4580, 1, '2024-08-06 23:30:05', '2024-08-06 23:30:05', 0, NULL, '2024-08-07 03:30:06', '2024-08-07 03:30:06'),
(4581, 2, '2024-08-06 23:30:06', '2024-08-06 23:30:06', 0, NULL, '2024-08-07 03:30:06', '2024-08-07 03:30:06'),
(4582, 3, '2024-08-06 23:30:08', '2024-08-06 23:30:08', 0, NULL, '2024-08-07 03:30:09', '2024-08-07 03:30:09'),
(4583, 5, '2024-08-06 23:30:09', '2024-08-06 23:30:09', 0, NULL, '2024-08-07 03:30:10', '2024-08-07 03:30:10'),
(4584, 1, '2024-08-06 23:35:07', '2024-08-06 23:35:07', 0, NULL, '2024-08-07 03:35:07', '2024-08-07 03:35:07'),
(4585, 2, '2024-08-06 23:35:07', '2024-08-06 23:35:07', 0, NULL, '2024-08-07 03:35:08', '2024-08-07 03:35:08'),
(4586, 3, '2024-08-06 23:40:07', '2024-08-06 23:40:07', 0, NULL, '2024-08-07 03:40:07', '2024-08-07 03:40:07'),
(4587, 5, '2024-08-06 23:40:08', '2024-08-06 23:40:08', 0, NULL, '2024-08-07 03:40:08', '2024-08-07 03:40:08'),
(4588, 1, '2024-08-06 23:45:04', '2024-08-06 23:45:04', 0, NULL, '2024-08-07 03:45:05', '2024-08-07 03:45:05'),
(4589, 2, '2024-08-06 23:45:05', '2024-08-06 23:45:05', 0, NULL, '2024-08-07 03:45:05', '2024-08-07 03:45:05'),
(4590, 1, '2024-08-06 23:50:08', '2024-08-06 23:50:12', 3, NULL, '2024-08-07 03:50:13', '2024-08-07 03:50:13'),
(4591, 2, '2024-08-06 23:50:13', '2024-08-06 23:50:13', 0, NULL, '2024-08-07 03:50:13', '2024-08-07 03:50:13'),
(4592, 3, '2024-08-06 23:50:13', '2024-08-06 23:50:13', 0, NULL, '2024-08-07 03:50:13', '2024-08-07 03:50:13'),
(4593, 5, '2024-08-06 23:50:13', '2024-08-06 23:50:13', 0, NULL, '2024-08-07 03:50:13', '2024-08-07 03:50:13'),
(4594, 1, '2024-08-07 00:00:05', '2024-08-07 00:00:05', 0, NULL, '2024-08-07 04:00:06', '2024-08-07 04:00:06'),
(4595, 2, '2024-08-07 00:00:06', '2024-08-07 00:00:06', 0, NULL, '2024-08-07 04:00:07', '2024-08-07 04:00:07'),
(4596, 3, '2024-08-07 00:00:07', '2024-08-07 00:00:07', 0, NULL, '2024-08-07 04:00:08', '2024-08-07 04:00:08'),
(4597, 5, '2024-08-07 00:00:08', '2024-08-07 00:00:08', 0, NULL, '2024-08-07 04:00:09', '2024-08-07 04:00:09'),
(4598, 1, '2024-08-07 00:05:09', '2024-08-07 00:05:09', 0, NULL, '2024-08-07 04:05:09', '2024-08-07 04:05:09'),
(4599, 2, '2024-08-07 00:05:10', '2024-08-07 00:05:10', 0, NULL, '2024-08-07 04:05:10', '2024-08-07 04:05:10'),
(4600, 3, '2024-08-07 00:05:11', '2024-08-07 00:05:11', 0, NULL, '2024-08-07 04:05:11', '2024-08-07 04:05:11'),
(4601, 5, '2024-08-07 00:05:11', '2024-08-07 00:05:11', 0, NULL, '2024-08-07 04:05:11', '2024-08-07 04:05:11'),
(4602, 1, '2024-08-07 00:15:09', '2024-08-07 00:15:09', 0, NULL, '2024-08-07 04:15:11', '2024-08-07 04:15:11'),
(4603, 2, '2024-08-07 00:15:11', '2024-08-07 00:15:11', 0, NULL, '2024-08-07 04:15:12', '2024-08-07 04:15:12'),
(4604, 3, '2024-08-07 00:15:12', '2024-08-07 00:15:12', 0, NULL, '2024-08-07 04:15:12', '2024-08-07 04:15:12'),
(4605, 5, '2024-08-07 00:15:12', '2024-08-07 00:15:12', 0, NULL, '2024-08-07 04:15:12', '2024-08-07 04:15:12'),
(4606, 1, '2024-08-07 00:25:04', '2024-08-07 00:25:05', 0, NULL, '2024-08-07 04:25:05', '2024-08-07 04:25:05'),
(4607, 2, '2024-08-07 00:25:06', '2024-08-07 00:25:06', 0, NULL, '2024-08-07 04:25:07', '2024-08-07 04:25:07'),
(4608, 3, '2024-08-07 00:25:07', '2024-08-07 00:25:07', 0, NULL, '2024-08-07 04:25:07', '2024-08-07 04:25:07'),
(4609, 5, '2024-08-07 00:25:08', '2024-08-07 00:25:08', 0, NULL, '2024-08-07 04:25:09', '2024-08-07 04:25:09'),
(4610, 1, '2024-08-07 00:30:06', '2024-08-07 00:30:06', 0, NULL, '2024-08-07 04:30:06', '2024-08-07 04:30:06'),
(4611, 2, '2024-08-07 00:35:06', '2024-08-07 00:35:06', 0, NULL, '2024-08-07 04:35:06', '2024-08-07 04:35:06'),
(4612, 3, '2024-08-07 00:35:07', '2024-08-07 00:35:07', 0, NULL, '2024-08-07 04:35:07', '2024-08-07 04:35:07'),
(4613, 5, '2024-08-07 00:35:07', '2024-08-07 00:35:07', 0, NULL, '2024-08-07 04:35:08', '2024-08-07 04:35:08'),
(4614, 1, '2024-08-07 00:40:10', '2024-08-07 00:40:10', 0, NULL, '2024-08-07 04:40:10', '2024-08-07 04:40:10'),
(4615, 2, '2024-08-07 00:40:10', '2024-08-07 00:40:10', 0, NULL, '2024-08-07 04:40:11', '2024-08-07 04:40:11'),
(4616, 3, '2024-08-07 00:40:11', '2024-08-07 00:40:11', 0, NULL, '2024-08-07 04:40:11', '2024-08-07 04:40:11'),
(4617, 5, '2024-08-07 00:40:11', '2024-08-07 00:40:11', 0, NULL, '2024-08-07 04:40:11', '2024-08-07 04:40:11'),
(4618, 1, '2024-08-07 00:50:06', '2024-08-07 00:50:06', 0, NULL, '2024-08-07 04:50:06', '2024-08-07 04:50:06'),
(4619, 2, '2024-08-07 00:50:07', '2024-08-07 00:50:07', 0, NULL, '2024-08-07 04:50:08', '2024-08-07 04:50:08'),
(4620, 3, '2024-08-07 00:50:08', '2024-08-07 00:50:08', 0, NULL, '2024-08-07 04:50:09', '2024-08-07 04:50:09'),
(4621, 5, '2024-08-07 00:50:09', '2024-08-07 00:50:09', 0, NULL, '2024-08-07 04:50:09', '2024-08-07 04:50:09'),
(4622, 1, '2024-08-07 01:00:09', '2024-08-07 01:00:09', 0, NULL, '2024-08-07 05:00:09', '2024-08-07 05:00:09'),
(4623, 2, '2024-08-07 01:00:09', '2024-08-07 01:00:09', 0, NULL, '2024-08-07 05:00:10', '2024-08-07 05:00:10'),
(4624, 3, '2024-08-07 01:00:10', '2024-08-07 01:00:10', 0, NULL, '2024-08-07 05:00:10', '2024-08-07 05:00:10'),
(4625, 5, '2024-08-07 01:00:11', '2024-08-07 01:00:11', 0, NULL, '2024-08-07 05:00:11', '2024-08-07 05:00:11'),
(4626, 1, '2024-08-07 01:10:05', '2024-08-07 01:10:06', 0, NULL, '2024-08-07 05:10:06', '2024-08-07 05:10:06'),
(4627, 2, '2024-08-07 01:10:07', '2024-08-07 01:10:07', 0, NULL, '2024-08-07 05:10:08', '2024-08-07 05:10:08'),
(4628, 3, '2024-08-07 01:10:08', '2024-08-07 01:10:08', 0, NULL, '2024-08-07 05:10:08', '2024-08-07 05:10:08'),
(4629, 5, '2024-08-07 01:10:09', '2024-08-07 01:10:09', 0, NULL, '2024-08-07 05:10:09', '2024-08-07 05:10:09'),
(4630, 1, '2024-08-07 01:15:07', '2024-08-07 01:15:07', 0, NULL, '2024-08-07 05:15:07', '2024-08-07 05:15:07'),
(4631, 2, '2024-08-07 01:20:04', '2024-08-07 01:20:04', 0, NULL, '2024-08-07 05:20:04', '2024-08-07 05:20:04'),
(4632, 3, '2024-08-07 01:20:05', '2024-08-07 01:20:05', 0, NULL, '2024-08-07 05:20:07', '2024-08-07 05:20:07'),
(4633, 5, '2024-08-07 01:20:07', '2024-08-07 01:20:07', 0, NULL, '2024-08-07 05:20:08', '2024-08-07 05:20:08'),
(4634, 1, '2024-08-07 01:25:06', '2024-08-07 01:25:06', 0, NULL, '2024-08-07 05:25:06', '2024-08-07 05:25:06'),
(4635, 2, '2024-08-07 01:25:07', '2024-08-07 01:25:07', 0, NULL, '2024-08-07 05:25:07', '2024-08-07 05:25:07'),
(4636, 3, '2024-08-07 01:25:08', '2024-08-07 01:25:08', 0, NULL, '2024-08-07 05:25:09', '2024-08-07 05:25:09'),
(4637, 5, '2024-08-07 01:30:03', '2024-08-07 01:30:03', 0, NULL, '2024-08-07 05:30:03', '2024-08-07 05:30:03'),
(4638, 1, '2024-08-07 01:35:04', '2024-08-07 01:35:04', 0, NULL, '2024-08-07 05:35:06', '2024-08-07 05:35:06'),
(4639, 2, '2024-08-07 01:35:06', '2024-08-07 01:35:06', 0, NULL, '2024-08-07 05:35:07', '2024-08-07 05:35:07'),
(4640, 3, '2024-08-07 01:35:07', '2024-08-07 01:35:07', 0, NULL, '2024-08-07 05:35:07', '2024-08-07 05:35:07'),
(4641, 5, '2024-08-07 01:35:08', '2024-08-07 01:35:08', 0, NULL, '2024-08-07 05:35:08', '2024-08-07 05:35:08'),
(4642, 1, '2024-08-07 01:40:08', '2024-08-07 01:40:08', 0, NULL, '2024-08-07 05:40:09', '2024-08-07 05:40:09'),
(4643, 2, '2024-08-07 01:40:09', '2024-08-07 01:40:09', 0, NULL, '2024-08-07 05:40:09', '2024-08-07 05:40:09'),
(4644, 3, '2024-08-07 01:40:09', '2024-08-07 01:40:09', 0, NULL, '2024-08-07 05:40:10', '2024-08-07 05:40:10'),
(4645, 5, '2024-08-07 01:45:05', '2024-08-07 01:45:05', 0, NULL, '2024-08-07 05:45:07', '2024-08-07 05:45:07'),
(4646, 1, '2024-08-07 01:50:07', '2024-08-07 01:50:07', 0, NULL, '2024-08-07 05:50:08', '2024-08-07 05:50:08'),
(4647, 2, '2024-08-07 01:50:08', '2024-08-07 01:50:08', 0, NULL, '2024-08-07 05:50:09', '2024-08-07 05:50:09'),
(4648, 3, '2024-08-07 01:50:09', '2024-08-07 01:50:09', 0, NULL, '2024-08-07 05:50:09', '2024-08-07 05:50:09'),
(4649, 5, '2024-08-07 01:50:09', '2024-08-07 01:50:09', 0, NULL, '2024-08-07 05:50:09', '2024-08-07 05:50:09'),
(4650, 1, '2024-08-07 01:55:08', '2024-08-07 01:55:09', 0, NULL, '2024-08-07 05:55:10', '2024-08-07 05:55:10'),
(4651, 2, '2024-08-07 02:00:07', '2024-08-07 02:00:07', 0, NULL, '2024-08-07 06:00:08', '2024-08-07 06:00:08'),
(4652, 3, '2024-08-07 02:00:08', '2024-08-07 02:00:08', 0, NULL, '2024-08-07 06:00:09', '2024-08-07 06:00:09'),
(4653, 5, '2024-08-07 02:00:10', '2024-08-07 02:00:10', 0, NULL, '2024-08-07 06:00:11', '2024-08-07 06:00:11'),
(4654, 1, '2024-08-07 02:05:06', '2024-08-07 02:05:06', 0, NULL, '2024-08-07 06:05:07', '2024-08-07 06:05:07'),
(4655, 1, '2024-08-07 02:10:07', '2024-08-07 02:10:07', 0, NULL, '2024-08-07 06:10:08', '2024-08-07 06:10:08'),
(4656, 2, '2024-08-07 02:10:08', '2024-08-07 02:10:08', 0, NULL, '2024-08-07 06:10:08', '2024-08-07 06:10:08'),
(4657, 3, '2024-08-07 02:10:09', '2024-08-07 02:10:09', 0, NULL, '2024-08-07 06:10:09', '2024-08-07 06:10:09'),
(4658, 5, '2024-08-07 02:10:09', '2024-08-07 02:10:09', 0, NULL, '2024-08-07 06:10:09', '2024-08-07 06:10:09'),
(4659, 1, '2024-08-07 02:20:07', '2024-08-07 02:20:07', 0, NULL, '2024-08-07 06:20:08', '2024-08-07 06:20:08'),
(4660, 2, '2024-08-07 02:20:08', '2024-08-07 02:20:08', 0, NULL, '2024-08-07 06:20:08', '2024-08-07 06:20:08'),
(4661, 3, '2024-08-07 02:20:09', '2024-08-07 02:20:09', 0, NULL, '2024-08-07 06:20:09', '2024-08-07 06:20:09'),
(4662, 5, '2024-08-07 02:20:10', '2024-08-07 02:20:10', 0, NULL, '2024-08-07 06:20:10', '2024-08-07 06:20:10'),
(4663, 1, '2024-08-07 02:30:06', '2024-08-07 02:30:07', 0, NULL, '2024-08-07 06:30:07', '2024-08-07 06:30:07'),
(4664, 2, '2024-08-07 02:30:07', '2024-08-07 02:30:07', 0, NULL, '2024-08-07 06:30:08', '2024-08-07 06:30:08'),
(4665, 3, '2024-08-07 02:30:08', '2024-08-07 02:30:08', 0, NULL, '2024-08-07 06:30:09', '2024-08-07 06:30:09'),
(4666, 5, '2024-08-07 02:30:09', '2024-08-07 02:30:09', 0, NULL, '2024-08-07 06:30:10', '2024-08-07 06:30:10'),
(4667, 1, '2024-08-07 02:40:07', '2024-08-07 02:40:08', 0, NULL, '2024-08-07 06:40:08', '2024-08-07 06:40:08'),
(4668, 2, '2024-08-07 02:40:08', '2024-08-07 02:40:08', 0, NULL, '2024-08-07 06:40:09', '2024-08-07 06:40:09'),
(4669, 3, '2024-08-07 02:40:09', '2024-08-07 02:40:09', 0, NULL, '2024-08-07 06:40:09', '2024-08-07 06:40:09'),
(4670, 5, '2024-08-07 02:40:10', '2024-08-07 02:40:10', 0, NULL, '2024-08-07 06:40:10', '2024-08-07 06:40:10'),
(4671, 1, '2024-08-07 02:50:04', '2024-08-07 02:50:04', 0, NULL, '2024-08-07 06:50:04', '2024-08-07 06:50:04'),
(4672, 2, '2024-08-07 02:50:05', '2024-08-07 02:50:05', 0, NULL, '2024-08-07 06:50:05', '2024-08-07 06:50:05'),
(4673, 3, '2024-08-07 02:50:06', '2024-08-07 02:50:06', 0, NULL, '2024-08-07 06:50:06', '2024-08-07 06:50:06'),
(4674, 5, '2024-08-07 02:50:06', '2024-08-07 02:50:06', 0, NULL, '2024-08-07 06:50:07', '2024-08-07 06:50:07'),
(4675, 1, '2024-08-07 02:55:05', '2024-08-07 02:55:05', 0, NULL, '2024-08-07 06:55:05', '2024-08-07 06:55:05'),
(4676, 1, '2024-08-07 03:00:12', '2024-08-07 03:00:12', 0, NULL, '2024-08-07 07:00:12', '2024-08-07 07:00:12'),
(4677, 2, '2024-08-07 03:00:13', '2024-08-07 03:00:13', 0, NULL, '2024-08-07 07:00:13', '2024-08-07 07:00:13'),
(4678, 3, '2024-08-07 03:00:13', '2024-08-07 03:00:13', 0, NULL, '2024-08-07 07:00:13', '2024-08-07 07:00:13'),
(4679, 5, '2024-08-07 03:00:14', '2024-08-07 03:00:14', 0, NULL, '2024-08-07 07:00:14', '2024-08-07 07:00:14'),
(4680, 1, '2024-08-07 03:10:05', '2024-08-07 03:10:05', 0, NULL, '2024-08-07 07:10:05', '2024-08-07 07:10:05'),
(4681, 2, '2024-08-07 03:10:06', '2024-08-07 03:10:06', 0, NULL, '2024-08-07 07:10:06', '2024-08-07 07:10:06'),
(4682, 3, '2024-08-07 03:10:06', '2024-08-07 03:10:06', 0, NULL, '2024-08-07 07:10:08', '2024-08-07 07:10:08'),
(4683, 5, '2024-08-07 03:10:08', '2024-08-07 03:10:08', 0, NULL, '2024-08-07 07:10:09', '2024-08-07 07:10:09'),
(4684, 1, '2024-08-07 03:20:05', '2024-08-07 03:20:05', 0, NULL, '2024-08-07 07:20:06', '2024-08-07 07:20:06'),
(4685, 2, '2024-08-07 03:20:07', '2024-08-07 03:20:07', 0, NULL, '2024-08-07 07:20:07', '2024-08-07 07:20:07'),
(4686, 3, '2024-08-07 03:20:07', '2024-08-07 03:20:07', 0, NULL, '2024-08-07 07:20:07', '2024-08-07 07:20:07'),
(4687, 5, '2024-08-07 03:20:08', '2024-08-07 03:20:08', 0, NULL, '2024-08-07 07:20:08', '2024-08-07 07:20:08'),
(4688, 1, '2024-08-07 03:25:07', '2024-08-07 03:25:07', 0, NULL, '2024-08-07 07:25:07', '2024-08-07 07:25:07'),
(4689, 2, '2024-08-07 03:30:05', '2024-08-07 03:30:05', 0, NULL, '2024-08-07 07:30:06', '2024-08-07 07:30:06'),
(4690, 3, '2024-08-07 03:30:06', '2024-08-07 03:30:06', 0, NULL, '2024-08-07 07:30:06', '2024-08-07 07:30:06'),
(4691, 5, '2024-08-07 03:30:06', '2024-08-07 03:30:07', 0, NULL, '2024-08-07 07:30:07', '2024-08-07 07:30:07'),
(4692, 1, '2024-08-07 03:35:06', '2024-08-07 03:35:06', 0, NULL, '2024-08-07 07:35:07', '2024-08-07 07:35:07'),
(4693, 2, '2024-08-07 03:35:07', '2024-08-07 03:35:07', 0, NULL, '2024-08-07 07:35:07', '2024-08-07 07:35:07'),
(4694, 1, '2024-08-07 03:40:08', '2024-08-07 03:40:08', 0, NULL, '2024-08-07 07:40:09', '2024-08-07 07:40:09'),
(4695, 2, '2024-08-07 03:40:09', '2024-08-07 03:40:09', 0, NULL, '2024-08-07 07:40:10', '2024-08-07 07:40:10'),
(4696, 3, '2024-08-07 03:40:10', '2024-08-07 03:40:10', 0, NULL, '2024-08-07 07:40:10', '2024-08-07 07:40:10'),
(4697, 5, '2024-08-07 03:40:11', '2024-08-07 03:40:11', 0, NULL, '2024-08-07 07:40:11', '2024-08-07 07:40:11'),
(4698, 1, '2024-08-07 03:50:09', '2024-08-07 03:50:09', 0, NULL, '2024-08-07 07:50:09', '2024-08-07 07:50:09'),
(4699, 2, '2024-08-07 03:50:09', '2024-08-07 03:50:09', 0, NULL, '2024-08-07 07:50:10', '2024-08-07 07:50:10'),
(4700, 3, '2024-08-07 03:50:10', '2024-08-07 03:50:10', 0, NULL, '2024-08-07 07:50:10', '2024-08-07 07:50:10'),
(4701, 5, '2024-08-07 03:50:10', '2024-08-07 03:50:10', 0, NULL, '2024-08-07 07:50:11', '2024-08-07 07:50:11'),
(4702, 1, '2024-08-07 03:55:11', '2024-08-07 03:55:11', 0, NULL, '2024-08-07 07:55:12', '2024-08-07 07:55:12'),
(4703, 2, '2024-08-07 03:55:12', '2024-08-07 03:55:12', 0, NULL, '2024-08-07 07:55:12', '2024-08-07 07:55:12'),
(4704, 3, '2024-08-07 03:55:12', '2024-08-07 03:55:12', 0, NULL, '2024-08-07 07:55:12', '2024-08-07 07:55:12'),
(4705, 5, '2024-08-07 03:55:12', '2024-08-07 03:55:12', 0, NULL, '2024-08-07 07:55:13', '2024-08-07 07:55:13'),
(4706, 1, '2024-08-07 04:05:05', '2024-08-07 04:05:06', 0, NULL, '2024-08-07 08:05:06', '2024-08-07 08:05:06'),
(4707, 2, '2024-08-07 04:05:06', '2024-08-07 04:05:06', 0, NULL, '2024-08-07 08:05:07', '2024-08-07 08:05:07'),
(4708, 3, '2024-08-07 04:05:07', '2024-08-07 04:05:07', 0, NULL, '2024-08-07 08:05:07', '2024-08-07 08:05:07'),
(4709, 5, '2024-08-07 04:05:08', '2024-08-07 04:05:08', 0, NULL, '2024-08-07 08:05:08', '2024-08-07 08:05:08'),
(4710, 1, '2024-08-07 04:15:06', '2024-08-07 04:15:07', 0, NULL, '2024-08-07 08:15:07', '2024-08-07 08:15:07'),
(4711, 2, '2024-08-07 04:15:08', '2024-08-07 04:15:08', 0, NULL, '2024-08-07 08:15:08', '2024-08-07 08:15:08'),
(4712, 3, '2024-08-07 04:15:08', '2024-08-07 04:15:08', 0, NULL, '2024-08-07 08:15:08', '2024-08-07 08:15:08'),
(4713, 5, '2024-08-07 04:15:08', '2024-08-07 04:15:09', 0, NULL, '2024-08-07 08:15:09', '2024-08-07 08:15:09'),
(4714, 1, '2024-08-07 04:25:04', '2024-08-07 04:25:04', 0, NULL, '2024-08-07 08:25:05', '2024-08-07 08:25:05'),
(4715, 2, '2024-08-07 04:25:05', '2024-08-07 04:25:05', 0, NULL, '2024-08-07 08:25:06', '2024-08-07 08:25:06'),
(4716, 3, '2024-08-07 04:25:06', '2024-08-07 04:25:06', 0, NULL, '2024-08-07 08:25:06', '2024-08-07 08:25:06'),
(4717, 5, '2024-08-07 04:25:06', '2024-08-07 04:25:06', 0, NULL, '2024-08-07 08:25:07', '2024-08-07 08:25:07'),
(4718, 1, '2024-08-07 04:30:05', '2024-08-07 04:30:05', 0, NULL, '2024-08-07 08:30:05', '2024-08-07 08:30:05'),
(4719, 2, '2024-08-07 04:35:05', '2024-08-07 04:35:05', 0, NULL, '2024-08-07 08:35:05', '2024-08-07 08:35:05'),
(4720, 3, '2024-08-07 04:35:06', '2024-08-07 04:35:06', 0, NULL, '2024-08-07 08:35:06', '2024-08-07 08:35:06'),
(4721, 5, '2024-08-07 04:35:07', '2024-08-07 04:35:07', 0, NULL, '2024-08-07 08:35:07', '2024-08-07 08:35:07'),
(4722, 1, '2024-08-07 04:40:12', '2024-08-07 04:40:12', 0, NULL, '2024-08-07 08:40:12', '2024-08-07 08:40:12'),
(4723, 2, '2024-08-07 04:40:12', '2024-08-07 04:40:12', 0, NULL, '2024-08-07 08:40:12', '2024-08-07 08:40:12'),
(4724, 3, '2024-08-07 04:40:12', '2024-08-07 04:40:12', 0, NULL, '2024-08-07 08:40:12', '2024-08-07 08:40:12'),
(4725, 5, '2024-08-07 04:40:13', '2024-08-07 04:40:13', 0, NULL, '2024-08-07 08:40:13', '2024-08-07 08:40:13'),
(4726, 1, '2024-08-07 04:50:04', '2024-08-07 04:50:04', 0, NULL, '2024-08-07 08:50:05', '2024-08-07 08:50:05'),
(4727, 2, '2024-08-07 04:50:05', '2024-08-07 04:50:05', 0, NULL, '2024-08-07 08:50:05', '2024-08-07 08:50:05'),
(4728, 3, '2024-08-07 04:50:06', '2024-08-07 04:50:06', 0, NULL, '2024-08-07 08:50:06', '2024-08-07 08:50:06'),
(4729, 5, '2024-08-07 04:50:06', '2024-08-07 04:50:06', 0, NULL, '2024-08-07 08:50:06', '2024-08-07 08:50:06'),
(4730, 1, '2024-08-07 04:55:06', '2024-08-07 04:55:06', 0, NULL, '2024-08-07 08:55:06', '2024-08-07 08:55:06'),
(4731, 2, '2024-08-07 04:55:07', '2024-08-07 04:55:07', 0, NULL, '2024-08-07 08:55:07', '2024-08-07 08:55:07'),
(4732, 1, '2024-08-07 05:00:09', '2024-08-07 05:00:09', 0, NULL, '2024-08-07 09:00:09', '2024-08-07 09:00:09'),
(4733, 2, '2024-08-07 05:00:10', '2024-08-07 05:00:10', 0, NULL, '2024-08-07 09:00:10', '2024-08-07 09:00:10'),
(4734, 3, '2024-08-07 05:00:10', '2024-08-07 05:00:10', 0, NULL, '2024-08-07 09:00:10', '2024-08-07 09:00:10'),
(4735, 5, '2024-08-07 05:00:10', '2024-08-07 05:00:10', 0, NULL, '2024-08-07 09:00:11', '2024-08-07 09:00:11'),
(4736, 1, '2024-08-07 05:10:06', '2024-08-07 05:10:06', 0, NULL, '2024-08-07 09:10:06', '2024-08-07 09:10:06'),
(4737, 2, '2024-08-07 05:10:07', '2024-08-07 05:10:07', 0, NULL, '2024-08-07 09:10:08', '2024-08-07 09:10:08'),
(4738, 3, '2024-08-07 05:10:08', '2024-08-07 05:10:08', 0, NULL, '2024-08-07 09:10:09', '2024-08-07 09:10:09'),
(4739, 5, '2024-08-07 05:10:09', '2024-08-07 05:10:09', 0, NULL, '2024-08-07 09:10:09', '2024-08-07 09:10:09'),
(4740, 1, '2024-08-07 05:15:07', '2024-08-07 05:15:07', 0, NULL, '2024-08-07 09:15:08', '2024-08-07 09:15:08'),
(4741, 2, '2024-08-07 05:20:06', '2024-08-07 05:20:06', 0, NULL, '2024-08-07 09:20:06', '2024-08-07 09:20:06'),
(4742, 3, '2024-08-07 05:20:08', '2024-08-07 05:20:08', 0, NULL, '2024-08-07 09:20:08', '2024-08-07 09:20:08'),
(4743, 5, '2024-08-07 05:20:09', '2024-08-07 05:20:09', 0, NULL, '2024-08-07 09:20:09', '2024-08-07 09:20:09'),
(4744, 1, '2024-08-07 05:25:03', '2024-08-07 05:25:03', 0, NULL, '2024-08-07 09:25:03', '2024-08-07 09:25:03'),
(4745, 1, '2024-08-07 05:30:04', '2024-08-07 05:30:04', 0, NULL, '2024-08-07 09:30:04', '2024-08-07 09:30:04'),
(4746, 2, '2024-08-07 05:30:05', '2024-08-07 05:30:05', 0, NULL, '2024-08-07 09:30:06', '2024-08-07 09:30:06'),
(4747, 3, '2024-08-07 05:30:06', '2024-08-07 05:30:06', 0, NULL, '2024-08-07 09:30:06', '2024-08-07 09:30:06'),
(4748, 5, '2024-08-07 05:30:07', '2024-08-07 05:30:07', 0, NULL, '2024-08-07 09:30:07', '2024-08-07 09:30:07'),
(4749, 1, '2024-08-07 05:35:06', '2024-08-07 05:35:06', 0, NULL, '2024-08-07 09:35:06', '2024-08-07 09:35:06'),
(4750, 2, '2024-08-07 05:35:06', '2024-08-07 05:35:06', 0, NULL, '2024-08-07 09:35:07', '2024-08-07 09:35:07'),
(4751, 1, '2024-08-07 05:40:07', '2024-08-07 05:40:07', 0, NULL, '2024-08-07 09:40:07', '2024-08-07 09:40:07'),
(4752, 2, '2024-08-07 05:40:08', '2024-08-07 05:40:08', 0, NULL, '2024-08-07 09:40:09', '2024-08-07 09:40:09'),
(4753, 3, '2024-08-07 05:40:09', '2024-08-07 05:40:09', 0, NULL, '2024-08-07 09:40:09', '2024-08-07 09:40:09'),
(4754, 5, '2024-08-07 05:40:10', '2024-08-07 05:40:10', 0, NULL, '2024-08-07 09:40:10', '2024-08-07 09:40:10'),
(4755, 1, '2024-08-07 05:50:09', '2024-08-07 05:50:09', 0, NULL, '2024-08-07 09:50:09', '2024-08-07 09:50:09'),
(4756, 2, '2024-08-07 05:50:09', '2024-08-07 05:50:09', 0, NULL, '2024-08-07 09:50:10', '2024-08-07 09:50:10'),
(4757, 3, '2024-08-07 05:50:10', '2024-08-07 05:50:10', 0, NULL, '2024-08-07 09:50:10', '2024-08-07 09:50:10'),
(4758, 5, '2024-08-07 05:50:10', '2024-08-07 05:50:10', 0, NULL, '2024-08-07 09:50:10', '2024-08-07 09:50:10'),
(4759, 1, '2024-08-07 06:00:07', '2024-08-07 06:00:07', 0, NULL, '2024-08-07 10:00:07', '2024-08-07 10:00:07'),
(4760, 2, '2024-08-07 06:00:08', '2024-08-07 06:00:08', 0, NULL, '2024-08-07 10:00:08', '2024-08-07 10:00:08'),
(4761, 3, '2024-08-07 06:00:08', '2024-08-07 06:00:08', 0, NULL, '2024-08-07 10:00:08', '2024-08-07 10:00:08'),
(4762, 5, '2024-08-07 06:00:11', '2024-08-07 06:00:11', 0, NULL, '2024-08-07 10:00:12', '2024-08-07 10:00:12'),
(4763, 1, '2024-08-07 06:10:02', '2024-08-07 06:10:02', 0, NULL, '2024-08-07 10:10:03', '2024-08-07 10:10:03'),
(4764, 2, '2024-08-07 06:10:03', '2024-08-07 06:10:03', 0, NULL, '2024-08-07 10:10:03', '2024-08-07 10:10:03'),
(4765, 3, '2024-08-07 06:10:03', '2024-08-07 06:10:03', 0, NULL, '2024-08-07 10:10:04', '2024-08-07 10:10:04'),
(4766, 5, '2024-08-07 06:10:08', '2024-08-07 06:10:08', 0, NULL, '2024-08-07 10:10:09', '2024-08-07 10:10:09'),
(4767, 1, '2024-08-07 06:15:07', '2024-08-07 06:15:07', 0, NULL, '2024-08-07 10:15:07', '2024-08-07 10:15:07'),
(4768, 2, '2024-08-07 06:15:08', '2024-08-07 06:15:08', 0, NULL, '2024-08-07 10:15:08', '2024-08-07 10:15:08'),
(4769, 3, '2024-08-07 06:15:08', '2024-08-07 06:15:08', 0, NULL, '2024-08-07 10:15:08', '2024-08-07 10:15:08'),
(4770, 5, '2024-08-07 06:20:05', '2024-08-07 06:20:05', 0, NULL, '2024-08-07 10:20:05', '2024-08-07 10:20:05'),
(4771, 1, '2024-08-07 06:25:04', '2024-08-07 06:25:04', 0, NULL, '2024-08-07 10:25:04', '2024-08-07 10:25:04'),
(4772, 2, '2024-08-07 06:25:05', '2024-08-07 06:25:05', 0, NULL, '2024-08-07 10:25:05', '2024-08-07 10:25:05'),
(4773, 3, '2024-08-07 06:25:06', '2024-08-07 06:25:06', 0, NULL, '2024-08-07 10:25:06', '2024-08-07 10:25:06'),
(4774, 1, '2024-08-07 06:30:07', '2024-08-07 06:30:07', 0, NULL, '2024-08-07 10:30:08', '2024-08-07 10:30:08'),
(4775, 2, '2024-08-07 06:30:08', '2024-08-07 06:30:08', 0, NULL, '2024-08-07 10:30:08', '2024-08-07 10:30:08'),
(4776, 3, '2024-08-07 06:30:08', '2024-08-07 06:30:08', 0, NULL, '2024-08-07 10:30:08', '2024-08-07 10:30:08'),
(4777, 5, '2024-08-07 06:30:09', '2024-08-07 06:30:09', 0, NULL, '2024-08-07 10:30:09', '2024-08-07 10:30:09'),
(4778, 1, '2024-08-07 06:35:08', '2024-08-07 06:35:08', 0, NULL, '2024-08-07 10:35:08', '2024-08-07 10:35:08'),
(4779, 2, '2024-08-07 06:40:06', '2024-08-07 06:40:06', 0, NULL, '2024-08-07 10:40:06', '2024-08-07 10:40:06'),
(4780, 3, '2024-08-07 06:40:07', '2024-08-07 06:40:07', 0, NULL, '2024-08-07 10:40:07', '2024-08-07 10:40:07'),
(4781, 5, '2024-08-07 06:40:07', '2024-08-07 06:40:08', 0, NULL, '2024-08-07 10:40:08', '2024-08-07 10:40:08'),
(4782, 1, '2024-08-07 06:45:06', '2024-08-07 06:45:06', 0, NULL, '2024-08-07 10:45:07', '2024-08-07 10:45:07'),
(4783, 2, '2024-08-07 06:50:06', '2024-08-07 06:50:06', 0, NULL, '2024-08-07 10:50:06', '2024-08-07 10:50:06'),
(4784, 3, '2024-08-07 06:50:07', '2024-08-07 06:50:07', 0, NULL, '2024-08-07 10:50:07', '2024-08-07 10:50:07'),
(4785, 5, '2024-08-07 06:50:08', '2024-08-07 06:50:08', 0, NULL, '2024-08-07 10:50:09', '2024-08-07 10:50:09'),
(4786, 1, '2024-08-07 06:55:11', '2024-08-07 06:55:11', 0, NULL, '2024-08-07 10:55:11', '2024-08-07 10:55:11'),
(4787, 2, '2024-08-07 06:55:11', '2024-08-07 06:55:11', 0, NULL, '2024-08-07 10:55:11', '2024-08-07 10:55:11'),
(4788, 3, '2024-08-07 06:55:11', '2024-08-07 06:55:11', 0, NULL, '2024-08-07 10:55:11', '2024-08-07 10:55:11'),
(4789, 5, '2024-08-07 06:55:11', '2024-08-07 06:55:11', 0, NULL, '2024-08-07 10:55:11', '2024-08-07 10:55:11'),
(4790, 1, '2024-08-07 07:05:06', '2024-08-07 07:05:08', 1, NULL, '2024-08-07 11:05:09', '2024-08-07 11:05:09'),
(4791, 2, '2024-08-07 07:05:10', '2024-08-07 07:05:10', 0, NULL, '2024-08-07 11:05:10', '2024-08-07 11:05:10'),
(4792, 3, '2024-08-07 07:05:10', '2024-08-07 07:05:10', 0, NULL, '2024-08-07 11:05:10', '2024-08-07 11:05:10'),
(4793, 5, '2024-08-07 07:05:10', '2024-08-07 07:05:10', 0, NULL, '2024-08-07 11:05:10', '2024-08-07 11:05:10'),
(4794, 1, '2024-08-07 07:15:07', '2024-08-07 07:15:07', 0, NULL, '2024-08-07 11:15:07', '2024-08-07 11:15:07'),
(4795, 2, '2024-08-07 07:15:07', '2024-08-07 07:15:07', 0, NULL, '2024-08-07 11:15:07', '2024-08-07 11:15:07'),
(4796, 3, '2024-08-07 07:15:07', '2024-08-07 07:15:07', 0, NULL, '2024-08-07 11:15:08', '2024-08-07 11:15:08'),
(4797, 5, '2024-08-07 07:15:08', '2024-08-07 07:15:08', 0, NULL, '2024-08-07 11:15:08', '2024-08-07 11:15:08'),
(4798, 1, '2024-08-07 07:25:06', '2024-08-07 07:25:06', 0, NULL, '2024-08-07 11:25:07', '2024-08-07 11:25:07'),
(4799, 2, '2024-08-07 07:25:08', '2024-08-07 07:25:08', 0, NULL, '2024-08-07 11:25:08', '2024-08-07 11:25:08'),
(4800, 3, '2024-08-07 07:25:08', '2024-08-07 07:25:08', 0, NULL, '2024-08-07 11:25:08', '2024-08-07 11:25:08'),
(4801, 5, '2024-08-07 07:25:08', '2024-08-07 07:25:08', 0, NULL, '2024-08-07 11:25:09', '2024-08-07 11:25:09'),
(4802, 1, '2024-08-07 07:30:07', '2024-08-07 07:30:07', 0, NULL, '2024-08-07 11:30:07', '2024-08-07 11:30:07'),
(4803, 2, '2024-08-07 07:35:05', '2024-08-07 07:35:05', 0, NULL, '2024-08-07 11:35:06', '2024-08-07 11:35:06'),
(4804, 3, '2024-08-07 07:35:07', '2024-08-07 07:35:07', 0, NULL, '2024-08-07 11:35:09', '2024-08-07 11:35:09'),
(4805, 5, '2024-08-07 07:35:09', '2024-08-07 07:35:09', 0, NULL, '2024-08-07 11:35:09', '2024-08-07 11:35:09'),
(4806, 1, '2024-08-07 07:40:03', '2024-08-07 07:40:03', 0, NULL, '2024-08-07 11:40:04', '2024-08-07 11:40:04'),
(4807, 1, '2024-08-07 07:45:08', '2024-08-07 07:45:08', 0, NULL, '2024-08-07 11:45:08', '2024-08-07 11:45:08'),
(4808, 2, '2024-08-07 07:45:08', '2024-08-07 07:45:08', 0, NULL, '2024-08-07 11:45:09', '2024-08-07 11:45:09'),
(4809, 3, '2024-08-07 07:45:09', '2024-08-07 07:45:09', 0, NULL, '2024-08-07 11:45:09', '2024-08-07 11:45:09'),
(4810, 5, '2024-08-07 07:45:09', '2024-08-07 07:45:09', 0, NULL, '2024-08-07 11:45:09', '2024-08-07 11:45:09'),
(4811, 1, '2024-08-07 07:55:05', '2024-08-07 07:55:05', 0, NULL, '2024-08-07 11:55:05', '2024-08-07 11:55:05'),
(4812, 2, '2024-08-07 07:55:06', '2024-08-07 07:55:06', 0, NULL, '2024-08-07 11:55:06', '2024-08-07 11:55:06'),
(4813, 3, '2024-08-07 07:55:06', '2024-08-07 07:55:06', 0, NULL, '2024-08-07 11:55:07', '2024-08-07 11:55:07'),
(4814, 5, '2024-08-07 07:55:07', '2024-08-07 07:55:07', 0, NULL, '2024-08-07 11:55:07', '2024-08-07 11:55:07'),
(4815, 1, '2024-08-07 08:05:06', '2024-08-07 08:05:06', 0, NULL, '2024-08-07 12:05:06', '2024-08-07 12:05:06'),
(4816, 2, '2024-08-07 08:05:06', '2024-08-07 08:05:06', 0, NULL, '2024-08-07 12:05:07', '2024-08-07 12:05:07'),
(4817, 3, '2024-08-07 08:05:07', '2024-08-07 08:05:07', 0, NULL, '2024-08-07 12:05:07', '2024-08-07 12:05:07'),
(4818, 5, '2024-08-07 08:05:08', '2024-08-07 08:05:08', 0, NULL, '2024-08-07 12:05:08', '2024-08-07 12:05:08'),
(4819, 1, '2024-08-07 08:15:07', '2024-08-07 08:15:07', 0, NULL, '2024-08-07 12:15:07', '2024-08-07 12:15:07'),
(4820, 2, '2024-08-07 08:15:07', '2024-08-07 08:15:07', 0, NULL, '2024-08-07 12:15:08', '2024-08-07 12:15:08'),
(4821, 3, '2024-08-07 08:15:08', '2024-08-07 08:15:08', 0, NULL, '2024-08-07 12:15:08', '2024-08-07 12:15:08'),
(4822, 5, '2024-08-07 08:15:08', '2024-08-07 08:15:08', 0, NULL, '2024-08-07 12:15:08', '2024-08-07 12:15:08'),
(4823, 1, '2024-08-07 08:25:04', '2024-08-07 08:25:04', 0, NULL, '2024-08-07 12:25:05', '2024-08-07 12:25:05'),
(4824, 2, '2024-08-07 08:25:06', '2024-08-07 08:25:06', 0, NULL, '2024-08-07 12:25:06', '2024-08-07 12:25:06'),
(4825, 3, '2024-08-07 08:25:06', '2024-08-07 08:25:06', 0, NULL, '2024-08-07 12:25:07', '2024-08-07 12:25:07'),
(4826, 5, '2024-08-07 08:25:07', '2024-08-07 08:25:07', 0, NULL, '2024-08-07 12:25:08', '2024-08-07 12:25:08'),
(4827, 1, '2024-08-07 08:30:05', '2024-08-07 08:30:06', 0, NULL, '2024-08-07 12:30:06', '2024-08-07 12:30:06'),
(4828, 1, '2024-08-07 08:35:07', '2024-08-07 08:35:07', 0, NULL, '2024-08-07 12:35:07', '2024-08-07 12:35:07'),
(4829, 2, '2024-08-07 08:35:07', '2024-08-07 08:35:07', 0, NULL, '2024-08-07 12:35:07', '2024-08-07 12:35:07'),
(4830, 3, '2024-08-07 08:35:08', '2024-08-07 08:35:08', 0, NULL, '2024-08-07 12:35:08', '2024-08-07 12:35:08'),
(4831, 5, '2024-08-07 08:35:08', '2024-08-07 08:35:08', 0, NULL, '2024-08-07 12:35:09', '2024-08-07 12:35:09'),
(4832, 1, '2024-08-07 08:45:04', '2024-08-07 08:45:04', 0, NULL, '2024-08-07 12:45:05', '2024-08-07 12:45:05'),
(4833, 2, '2024-08-07 08:45:05', '2024-08-07 08:45:05', 0, NULL, '2024-08-07 12:45:05', '2024-08-07 12:45:05'),
(4834, 3, '2024-08-07 08:45:06', '2024-08-07 08:45:06', 0, NULL, '2024-08-07 12:45:06', '2024-08-07 12:45:06'),
(4835, 5, '2024-08-07 08:45:06', '2024-08-07 08:45:06', 0, NULL, '2024-08-07 12:45:07', '2024-08-07 12:45:07'),
(4836, 1, '2024-08-07 08:50:06', '2024-08-07 08:50:06', 0, NULL, '2024-08-07 12:50:07', '2024-08-07 12:50:07'),
(4837, 2, '2024-08-07 08:50:07', '2024-08-07 08:50:07', 0, NULL, '2024-08-07 12:50:07', '2024-08-07 12:50:07'),
(4838, 3, '2024-08-07 08:55:02', '2024-08-07 08:55:02', 0, NULL, '2024-08-07 12:55:03', '2024-08-07 12:55:03'),
(4839, 5, '2024-08-07 08:55:04', '2024-08-07 08:55:04', 0, NULL, '2024-08-07 12:55:06', '2024-08-07 12:55:06'),
(4840, 1, '2024-08-07 09:00:04', '2024-08-07 09:00:04', 0, NULL, '2024-08-07 13:00:05', '2024-08-07 13:00:05'),
(4841, 2, '2024-08-07 09:00:05', '2024-08-07 09:00:05', 0, NULL, '2024-08-07 13:00:05', '2024-08-07 13:00:05'),
(4842, 3, '2024-08-07 09:00:06', '2024-08-07 09:00:06', 0, NULL, '2024-08-07 13:00:06', '2024-08-07 13:00:06'),
(4843, 1, '2024-08-07 09:05:06', '2024-08-07 09:05:07', 0, NULL, '2024-08-07 13:05:07', '2024-08-07 13:05:07'),
(4844, 2, '2024-08-07 09:05:07', '2024-08-07 09:05:07', 0, NULL, '2024-08-07 13:05:07', '2024-08-07 13:05:07'),
(4845, 5, '2024-08-07 09:05:08', '2024-08-07 09:05:08', 0, NULL, '2024-08-07 13:05:08', '2024-08-07 13:05:08'),
(4846, 3, '2024-08-07 09:10:05', '2024-08-07 09:10:05', 0, NULL, '2024-08-07 13:10:06', '2024-08-07 13:10:06'),
(4847, 1, '2024-08-07 09:15:03', '2024-08-07 09:15:03', 0, NULL, '2024-08-07 13:15:04', '2024-08-07 13:15:04'),
(4848, 2, '2024-08-07 09:15:04', '2024-08-07 09:15:04', 0, NULL, '2024-08-07 13:15:04', '2024-08-07 13:15:04'),
(4849, 5, '2024-08-07 09:15:05', '2024-08-07 09:15:05', 0, NULL, '2024-08-07 13:15:05', '2024-08-07 13:15:05'),
(4850, 1, '2024-08-07 09:20:04', '2024-08-07 09:20:04', 0, NULL, '2024-08-07 13:20:08', '2024-08-07 13:20:08'),
(4851, 3, '2024-08-07 09:20:10', '2024-08-07 09:20:10', 0, NULL, '2024-08-07 13:20:10', '2024-08-07 13:20:10'),
(4852, 2, '2024-08-07 09:25:02', '2024-08-07 09:25:02', 0, NULL, '2024-08-07 13:25:02', '2024-08-07 13:25:02'),
(4853, 5, '2024-08-07 09:25:02', '2024-08-07 09:25:02', 0, NULL, '2024-08-07 13:25:03', '2024-08-07 13:25:03'),
(4854, 1, '2024-08-07 09:30:06', '2024-08-07 09:30:06', 0, NULL, '2024-08-07 13:30:07', '2024-08-07 13:30:07'),
(4855, 2, '2024-08-07 09:30:07', '2024-08-07 09:30:07', 0, NULL, '2024-08-07 13:30:08', '2024-08-07 13:30:08'),
(4856, 3, '2024-08-07 09:30:08', '2024-08-07 09:30:08', 0, NULL, '2024-08-07 13:30:08', '2024-08-07 13:30:08'),
(4857, 5, '2024-08-07 09:30:09', '2024-08-07 09:30:09', 0, NULL, '2024-08-07 13:30:09', '2024-08-07 13:30:09'),
(4858, 1, '2024-08-07 09:40:06', '2024-08-07 09:40:06', 0, NULL, '2024-08-07 13:40:07', '2024-08-07 13:40:07'),
(4859, 2, '2024-08-07 09:40:07', '2024-08-07 09:40:07', 0, NULL, '2024-08-07 13:40:07', '2024-08-07 13:40:07'),
(4860, 3, '2024-08-07 09:40:08', '2024-08-07 09:40:08', 0, NULL, '2024-08-07 13:40:08', '2024-08-07 13:40:08'),
(4861, 5, '2024-08-07 09:40:08', '2024-08-07 09:40:08', 0, NULL, '2024-08-07 13:40:09', '2024-08-07 13:40:09'),
(4862, 1, '2024-08-07 09:50:08', '2024-08-07 09:50:08', 0, NULL, '2024-08-07 13:50:08', '2024-08-07 13:50:08'),
(4863, 2, '2024-08-07 09:50:08', '2024-08-07 09:50:08', 0, NULL, '2024-08-07 13:50:08', '2024-08-07 13:50:08'),
(4864, 3, '2024-08-07 09:50:09', '2024-08-07 09:50:09', 0, NULL, '2024-08-07 13:50:09', '2024-08-07 13:50:09'),
(4865, 5, '2024-08-07 09:50:09', '2024-08-07 09:50:09', 0, NULL, '2024-08-07 13:50:09', '2024-08-07 13:50:09'),
(4866, 1, '2024-08-07 10:00:05', '2024-08-07 10:00:05', 0, NULL, '2024-08-07 14:00:05', '2024-08-07 14:00:05'),
(4867, 2, '2024-08-07 10:00:09', '2024-08-07 10:00:09', 0, NULL, '2024-08-07 14:00:09', '2024-08-07 14:00:09'),
(4868, 3, '2024-08-07 10:00:10', '2024-08-07 10:00:10', 0, NULL, '2024-08-07 14:00:10', '2024-08-07 14:00:10'),
(4869, 5, '2024-08-07 10:00:10', '2024-08-07 10:00:10', 0, NULL, '2024-08-07 14:00:11', '2024-08-07 14:00:11'),
(4870, 1, '2024-08-07 10:05:07', '2024-08-07 10:05:07', 0, NULL, '2024-08-07 14:05:08', '2024-08-07 14:05:08'),
(4871, 2, '2024-08-07 10:10:05', '2024-08-07 10:10:05', 0, NULL, '2024-08-07 14:10:06', '2024-08-07 14:10:06'),
(4872, 3, '2024-08-07 10:10:07', '2024-08-07 10:10:07', 0, NULL, '2024-08-07 14:10:07', '2024-08-07 14:10:07'),
(4873, 5, '2024-08-07 10:10:08', '2024-08-07 10:10:08', 0, NULL, '2024-08-07 14:10:08', '2024-08-07 14:10:08'),
(4874, 1, '2024-08-07 10:15:07', '2024-08-07 10:15:07', 0, NULL, '2024-08-07 14:15:07', '2024-08-07 14:15:07'),
(4875, 2, '2024-08-07 10:15:07', '2024-08-07 10:15:07', 0, NULL, '2024-08-07 14:15:08', '2024-08-07 14:15:08'),
(4876, 3, '2024-08-07 10:20:05', '2024-08-07 10:20:05', 0, NULL, '2024-08-07 14:20:06', '2024-08-07 14:20:06'),
(4877, 5, '2024-08-07 10:20:08', '2024-08-07 10:20:08', 0, NULL, '2024-08-07 14:20:08', '2024-08-07 14:20:08'),
(4878, 1, '2024-08-07 10:25:13', '2024-08-07 10:25:13', 0, NULL, '2024-08-07 14:25:14', '2024-08-07 14:25:14'),
(4879, 2, '2024-08-07 10:25:14', '2024-08-07 10:25:14', 0, NULL, '2024-08-07 14:25:14', '2024-08-07 14:25:14'),
(4880, 3, '2024-08-07 10:25:14', '2024-08-07 10:25:14', 0, NULL, '2024-08-07 14:25:14', '2024-08-07 14:25:14'),
(4881, 5, '2024-08-07 10:25:14', '2024-08-07 10:25:14', 0, NULL, '2024-08-07 14:25:14', '2024-08-07 14:25:14'),
(4882, 1, '2024-08-07 10:35:06', '2024-08-07 10:35:06', 0, NULL, '2024-08-07 14:35:06', '2024-08-07 14:35:06'),
(4883, 2, '2024-08-07 10:35:06', '2024-08-07 10:35:06', 0, NULL, '2024-08-07 14:35:07', '2024-08-07 14:35:07'),
(4884, 3, '2024-08-07 10:35:07', '2024-08-07 10:35:07', 0, NULL, '2024-08-07 14:35:08', '2024-08-07 14:35:08'),
(4885, 5, '2024-08-07 10:35:08', '2024-08-07 10:35:08', 0, NULL, '2024-08-07 14:35:08', '2024-08-07 14:35:08'),
(4886, 1, '2024-08-07 10:45:05', '2024-08-07 10:45:05', 0, NULL, '2024-08-07 14:45:05', '2024-08-07 14:45:05'),
(4887, 2, '2024-08-07 10:45:06', '2024-08-07 10:45:06', 0, NULL, '2024-08-07 14:45:06', '2024-08-07 14:45:06'),
(4888, 3, '2024-08-07 10:45:07', '2024-08-07 10:45:07', 0, NULL, '2024-08-07 14:45:08', '2024-08-07 14:45:08'),
(4889, 5, '2024-08-07 10:45:08', '2024-08-07 10:45:08', 0, NULL, '2024-08-07 14:45:08', '2024-08-07 14:45:08'),
(4890, 1, '2024-08-07 10:55:06', '2024-08-07 10:55:06', 0, NULL, '2024-08-07 14:55:06', '2024-08-07 14:55:06'),
(4891, 2, '2024-08-07 10:55:06', '2024-08-07 10:55:06', 0, NULL, '2024-08-07 14:55:07', '2024-08-07 14:55:07'),
(4892, 3, '2024-08-07 10:55:07', '2024-08-07 10:55:07', 0, NULL, '2024-08-07 14:55:07', '2024-08-07 14:55:07'),
(4893, 5, '2024-08-07 10:55:08', '2024-08-07 10:55:08', 0, NULL, '2024-08-07 14:55:08', '2024-08-07 14:55:08'),
(4894, 1, '2024-08-07 11:00:07', '2024-08-07 11:00:08', 0, NULL, '2024-08-07 15:00:09', '2024-08-07 15:00:09'),
(4895, 2, '2024-08-07 11:00:09', '2024-08-07 11:00:09', 0, NULL, '2024-08-07 15:00:09', '2024-08-07 15:00:09'),
(4896, 3, '2024-08-07 11:05:05', '2024-08-07 11:05:05', 0, NULL, '2024-08-07 15:05:05', '2024-08-07 15:05:05'),
(4897, 5, '2024-08-07 11:05:06', '2024-08-07 11:05:06', 0, NULL, '2024-08-07 15:05:06', '2024-08-07 15:05:06'),
(4898, 1, '2024-08-07 11:10:09', '2024-08-07 11:10:09', 0, NULL, '2024-08-07 15:10:09', '2024-08-07 15:10:09'),
(4899, 2, '2024-08-07 11:10:09', '2024-08-07 11:10:09', 0, NULL, '2024-08-07 15:10:10', '2024-08-07 15:10:10'),
(4900, 3, '2024-08-07 11:10:10', '2024-08-07 11:10:10', 0, NULL, '2024-08-07 15:10:10', '2024-08-07 15:10:10'),
(4901, 5, '2024-08-07 11:10:10', '2024-08-07 11:10:10', 0, NULL, '2024-08-07 15:10:10', '2024-08-07 15:10:10'),
(4902, 1, '2024-08-07 11:20:07', '2024-08-07 11:20:08', 0, NULL, '2024-08-07 15:20:09', '2024-08-07 15:20:09'),
(4903, 2, '2024-08-07 11:20:09', '2024-08-07 11:20:09', 0, NULL, '2024-08-07 15:20:09', '2024-08-07 15:20:09'),
(4904, 3, '2024-08-07 11:20:09', '2024-08-07 11:20:09', 0, NULL, '2024-08-07 15:20:10', '2024-08-07 15:20:10'),
(4905, 5, '2024-08-07 11:20:10', '2024-08-07 11:20:10', 0, NULL, '2024-08-07 15:20:10', '2024-08-07 15:20:10'),
(4906, 1, '2024-08-07 11:30:04', '2024-08-07 11:30:04', 0, NULL, '2024-08-07 15:30:05', '2024-08-07 15:30:05'),
(4907, 2, '2024-08-07 11:30:05', '2024-08-07 11:30:05', 0, NULL, '2024-08-07 15:30:06', '2024-08-07 15:30:06'),
(4908, 3, '2024-08-07 11:30:06', '2024-08-07 11:30:06', 0, NULL, '2024-08-07 15:30:07', '2024-08-07 15:30:07'),
(4909, 5, '2024-08-07 11:30:07', '2024-08-07 11:30:07', 0, NULL, '2024-08-07 15:30:12', '2024-08-07 15:30:12'),
(4910, 1, '2024-08-07 11:35:07', '2024-08-07 11:35:07', 0, NULL, '2024-08-07 15:35:07', '2024-08-07 15:35:07'),
(4911, 2, '2024-08-07 11:40:04', '2024-08-07 11:40:04', 0, NULL, '2024-08-07 15:40:05', '2024-08-07 15:40:05'),
(4912, 3, '2024-08-07 11:40:05', '2024-08-07 11:40:05', 0, NULL, '2024-08-07 15:40:06', '2024-08-07 15:40:06'),
(4913, 5, '2024-08-07 11:40:07', '2024-08-07 11:40:07', 0, NULL, '2024-08-07 15:40:08', '2024-08-07 15:40:08'),
(4914, 1, '2024-08-07 11:45:05', '2024-08-07 11:45:05', 0, NULL, '2024-08-07 15:45:05', '2024-08-07 15:45:05'),
(4915, 2, '2024-08-07 11:45:06', '2024-08-07 11:45:06', 0, NULL, '2024-08-07 15:45:10', '2024-08-07 15:45:10'),
(4916, 1, '2024-08-07 11:50:07', '2024-08-07 11:50:07', 0, NULL, '2024-08-07 15:50:07', '2024-08-07 15:50:07'),
(4917, 2, '2024-08-07 11:50:08', '2024-08-07 11:50:08', 0, NULL, '2024-08-07 15:50:08', '2024-08-07 15:50:08'),
(4918, 3, '2024-08-07 11:50:09', '2024-08-07 11:50:09', 0, NULL, '2024-08-07 15:50:09', '2024-08-07 15:50:09'),
(4919, 5, '2024-08-07 11:50:09', '2024-08-07 11:50:09', 0, NULL, '2024-08-07 15:50:09', '2024-08-07 15:50:09'),
(4920, 1, '2024-08-07 12:00:09', '2024-08-07 12:00:09', 0, NULL, '2024-08-07 16:00:10', '2024-08-07 16:00:10'),
(4921, 2, '2024-08-07 12:00:10', '2024-08-07 12:00:10', 0, NULL, '2024-08-07 16:00:11', '2024-08-07 16:00:11'),
(4922, 3, '2024-08-07 12:00:11', '2024-08-07 12:00:11', 0, NULL, '2024-08-07 16:00:11', '2024-08-07 16:00:11'),
(4923, 5, '2024-08-07 12:00:11', '2024-08-07 12:00:11', 0, NULL, '2024-08-07 16:00:11', '2024-08-07 16:00:11'),
(4924, 1, '2024-08-07 12:10:04', '2024-08-07 12:10:04', 0, NULL, '2024-08-07 16:10:05', '2024-08-07 16:10:05'),
(4925, 2, '2024-08-07 12:10:06', '2024-08-07 12:10:06', 0, NULL, '2024-08-07 16:10:06', '2024-08-07 16:10:06'),
(4926, 3, '2024-08-07 12:10:07', '2024-08-07 12:10:07', 0, NULL, '2024-08-07 16:10:07', '2024-08-07 16:10:07'),
(4927, 5, '2024-08-07 12:10:08', '2024-08-07 12:10:08', 0, NULL, '2024-08-07 16:10:08', '2024-08-07 16:10:08'),
(4928, 1, '2024-08-07 12:15:05', '2024-08-07 12:15:06', 0, NULL, '2024-08-07 16:15:06', '2024-08-07 16:15:06'),
(4929, 1, '2024-08-07 12:20:08', '2024-08-07 12:20:08', 0, NULL, '2024-08-07 16:20:08', '2024-08-07 16:20:08'),
(4930, 2, '2024-08-07 12:20:09', '2024-08-07 12:20:09', 0, NULL, '2024-08-07 16:20:09', '2024-08-07 16:20:09'),
(4931, 3, '2024-08-07 12:20:09', '2024-08-07 12:20:09', 0, NULL, '2024-08-07 16:20:09', '2024-08-07 16:20:09'),
(4932, 5, '2024-08-07 12:20:10', '2024-08-07 12:20:10', 0, NULL, '2024-08-07 16:20:10', '2024-08-07 16:20:10'),
(4933, 1, '2024-08-07 12:30:07', '2024-08-07 12:30:07', 0, NULL, '2024-08-07 16:30:08', '2024-08-07 16:30:08'),
(4934, 2, '2024-08-07 12:30:08', '2024-08-07 12:30:08', 0, NULL, '2024-08-07 16:30:09', '2024-08-07 16:30:09'),
(4935, 3, '2024-08-07 12:30:09', '2024-08-07 12:30:09', 0, NULL, '2024-08-07 16:30:10', '2024-08-07 16:30:10'),
(4936, 5, '2024-08-07 12:30:10', '2024-08-07 12:30:10', 0, NULL, '2024-08-07 16:30:10', '2024-08-07 16:30:10'),
(4937, 1, '2024-08-07 12:40:07', '2024-08-07 12:40:07', 0, NULL, '2024-08-07 16:40:07', '2024-08-07 16:40:07'),
(4938, 2, '2024-08-07 12:40:08', '2024-08-07 12:40:08', 0, NULL, '2024-08-07 16:40:08', '2024-08-07 16:40:08'),
(4939, 3, '2024-08-07 12:40:09', '2024-08-07 12:40:09', 0, NULL, '2024-08-07 16:40:09', '2024-08-07 16:40:09'),
(4940, 5, '2024-08-07 12:40:09', '2024-08-07 12:40:09', 0, NULL, '2024-08-07 16:40:10', '2024-08-07 16:40:10'),
(4941, 1, '2024-08-07 12:50:05', '2024-08-07 12:50:05', 0, NULL, '2024-08-07 16:50:05', '2024-08-07 16:50:05'),
(4942, 2, '2024-08-07 12:50:06', '2024-08-07 12:50:06', 0, NULL, '2024-08-07 16:50:06', '2024-08-07 16:50:06'),
(4943, 3, '2024-08-07 12:50:06', '2024-08-07 12:50:06', 0, NULL, '2024-08-07 16:50:07', '2024-08-07 16:50:07'),
(4944, 5, '2024-08-07 12:50:07', '2024-08-07 12:50:07', 0, NULL, '2024-08-07 16:50:07', '2024-08-07 16:50:07'),
(4945, 1, '2024-08-07 12:55:06', '2024-08-07 12:55:06', 0, NULL, '2024-08-07 16:55:06', '2024-08-07 16:55:06'),
(4946, 1, '2024-08-07 13:00:09', '2024-08-07 13:00:09', 0, NULL, '2024-08-07 17:00:09', '2024-08-07 17:00:09'),
(4947, 2, '2024-08-07 13:00:10', '2024-08-07 13:00:10', 0, NULL, '2024-08-07 17:00:10', '2024-08-07 17:00:10'),
(4948, 3, '2024-08-07 13:00:10', '2024-08-07 13:00:10', 0, NULL, '2024-08-07 17:00:10', '2024-08-07 17:00:10'),
(4949, 5, '2024-08-07 13:00:11', '2024-08-07 13:00:11', 0, NULL, '2024-08-07 17:00:11', '2024-08-07 17:00:11'),
(4950, 1, '2024-08-07 13:05:11', '2024-08-07 13:05:13', 2, NULL, '2024-08-07 17:05:14', '2024-08-07 17:05:14'),
(4951, 2, '2024-08-07 13:10:07', '2024-08-07 13:10:07', 0, NULL, '2024-08-07 17:10:07', '2024-08-07 17:10:07'),
(4952, 3, '2024-08-07 13:10:08', '2024-08-07 13:10:08', 0, NULL, '2024-08-07 17:10:08', '2024-08-07 17:10:08'),
(4953, 5, '2024-08-07 13:10:08', '2024-08-07 13:10:08', 0, NULL, '2024-08-07 17:10:09', '2024-08-07 17:10:09'),
(4954, 1, '2024-08-07 13:15:05', '2024-08-07 13:15:05', 0, NULL, '2024-08-07 17:15:06', '2024-08-07 17:15:06'),
(4955, 1, '2024-08-07 13:20:06', '2024-08-07 13:20:06', 0, NULL, '2024-08-07 17:20:07', '2024-08-07 17:20:07'),
(4956, 2, '2024-08-07 13:20:07', '2024-08-07 13:20:07', 0, NULL, '2024-08-07 17:20:09', '2024-08-07 17:20:09'),
(4957, 3, '2024-08-07 13:20:09', '2024-08-07 13:20:09', 0, NULL, '2024-08-07 17:20:09', '2024-08-07 17:20:09'),
(4958, 5, '2024-08-07 13:20:09', '2024-08-07 13:20:09', 0, NULL, '2024-08-07 17:20:10', '2024-08-07 17:20:10'),
(4959, 1, '2024-08-07 13:30:06', '2024-08-07 13:30:06', 0, NULL, '2024-08-07 17:30:07', '2024-08-07 17:30:07'),
(4960, 2, '2024-08-07 13:30:07', '2024-08-07 13:30:07', 0, NULL, '2024-08-07 17:30:07', '2024-08-07 17:30:07'),
(4961, 3, '2024-08-07 13:30:08', '2024-08-07 13:30:08', 0, NULL, '2024-08-07 17:30:08', '2024-08-07 17:30:08'),
(4962, 5, '2024-08-07 13:30:09', '2024-08-07 13:30:09', 0, NULL, '2024-08-07 17:30:10', '2024-08-07 17:30:10'),
(4963, 1, '2024-08-07 13:35:09', '2024-08-07 13:35:09', 0, NULL, '2024-08-07 17:35:10', '2024-08-07 17:35:10'),
(4964, 2, '2024-08-07 13:35:10', '2024-08-07 13:35:10', 0, NULL, '2024-08-07 17:35:10', '2024-08-07 17:35:10'),
(4965, 3, '2024-08-07 13:35:10', '2024-08-07 13:35:10', 0, NULL, '2024-08-07 17:35:10', '2024-08-07 17:35:10'),
(4966, 5, '2024-08-07 13:40:06', '2024-08-07 13:40:06', 0, NULL, '2024-08-07 17:40:06', '2024-08-07 17:40:06'),
(4967, 1, '2024-08-07 13:45:03', '2024-08-07 13:45:03', 0, NULL, '2024-08-07 17:45:03', '2024-08-07 17:45:03'),
(4968, 2, '2024-08-07 13:45:03', '2024-08-07 13:45:03', 0, NULL, '2024-08-07 17:45:04', '2024-08-07 17:45:04'),
(4969, 3, '2024-08-07 13:45:04', '2024-08-07 13:45:04', 0, NULL, '2024-08-07 17:45:04', '2024-08-07 17:45:04'),
(4970, 1, '2024-08-07 13:50:04', '2024-08-07 13:50:04', 0, NULL, '2024-08-07 17:50:04', '2024-08-07 17:50:04'),
(4971, 2, '2024-08-07 13:50:06', '2024-08-07 13:50:06', 0, NULL, '2024-08-07 17:50:06', '2024-08-07 17:50:06'),
(4972, 5, '2024-08-07 13:50:07', '2024-08-07 13:50:07', 0, NULL, '2024-08-07 17:50:08', '2024-08-07 17:50:08'),
(4973, 1, '2024-08-07 13:55:06', '2024-08-07 13:55:06', 0, NULL, '2024-08-07 17:55:06', '2024-08-07 17:55:06'),
(4974, 3, '2024-08-07 13:55:07', '2024-08-07 13:55:07', 0, NULL, '2024-08-07 17:55:08', '2024-08-07 17:55:08'),
(4975, 1, '2024-08-07 14:00:10', '2024-08-07 14:00:10', 0, NULL, '2024-08-07 18:00:11', '2024-08-07 18:00:11'),
(4976, 2, '2024-08-07 14:00:12', '2024-08-07 14:00:12', 0, NULL, '2024-08-07 18:00:12', '2024-08-07 18:00:12'),
(4977, 3, '2024-08-07 14:00:13', '2024-08-07 14:00:13', 0, NULL, '2024-08-07 18:00:13', '2024-08-07 18:00:13'),
(4978, 5, '2024-08-07 14:00:13', '2024-08-07 14:00:13', 0, NULL, '2024-08-07 18:00:13', '2024-08-07 18:00:13'),
(4979, 1, '2024-08-07 14:10:05', '2024-08-07 14:10:05', 0, NULL, '2024-08-07 18:10:05', '2024-08-07 18:10:05'),
(4980, 2, '2024-08-07 14:10:06', '2024-08-07 14:10:06', 0, NULL, '2024-08-07 18:10:06', '2024-08-07 18:10:06'),
(4981, 3, '2024-08-07 14:10:07', '2024-08-07 14:10:07', 0, NULL, '2024-08-07 18:10:07', '2024-08-07 18:10:07'),
(4982, 5, '2024-08-07 14:10:07', '2024-08-07 14:10:07', 0, NULL, '2024-08-07 18:10:08', '2024-08-07 18:10:08'),
(4983, 1, '2024-08-07 14:15:07', '2024-08-07 14:15:07', 0, NULL, '2024-08-07 18:15:07', '2024-08-07 18:15:07'),
(4984, 2, '2024-08-07 14:15:08', '2024-08-07 14:15:08', 0, NULL, '2024-08-07 18:15:08', '2024-08-07 18:15:08'),
(4985, 1, '2024-08-07 14:20:11', '2024-08-07 14:20:11', 0, NULL, '2024-08-07 18:20:12', '2024-08-07 18:20:12'),
(4986, 2, '2024-08-07 14:20:12', '2024-08-07 14:20:12', 0, NULL, '2024-08-07 18:20:12', '2024-08-07 18:20:12'),
(4987, 3, '2024-08-07 14:20:12', '2024-08-07 14:20:12', 0, NULL, '2024-08-07 18:20:12', '2024-08-07 18:20:12'),
(4988, 5, '2024-08-07 14:20:12', '2024-08-07 14:20:12', 0, NULL, '2024-08-07 18:20:13', '2024-08-07 18:20:13'),
(4989, 1, '2024-08-07 14:30:09', '2024-08-07 14:30:09', 0, NULL, '2024-08-07 18:30:09', '2024-08-07 18:30:09'),
(4990, 2, '2024-08-07 14:30:09', '2024-08-07 14:30:09', 0, NULL, '2024-08-07 18:30:10', '2024-08-07 18:30:10'),
(4991, 3, '2024-08-07 14:30:10', '2024-08-07 14:30:10', 0, NULL, '2024-08-07 18:30:10', '2024-08-07 18:30:10'),
(4992, 5, '2024-08-07 14:30:10', '2024-08-07 14:30:10', 0, NULL, '2024-08-07 18:30:11', '2024-08-07 18:30:11'),
(4993, 1, '2024-08-07 14:40:06', '2024-08-07 14:40:06', 0, NULL, '2024-08-07 18:40:07', '2024-08-07 18:40:07');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(4994, 2, '2024-08-07 14:40:07', '2024-08-07 14:40:07', 0, NULL, '2024-08-07 18:40:08', '2024-08-07 18:40:08'),
(4995, 3, '2024-08-07 14:40:08', '2024-08-07 14:40:08', 0, NULL, '2024-08-07 18:40:09', '2024-08-07 18:40:09'),
(4996, 5, '2024-08-07 14:40:09', '2024-08-07 14:40:09', 0, NULL, '2024-08-07 18:40:10', '2024-08-07 18:40:10'),
(4997, 1, '2024-08-07 14:45:09', '2024-08-07 14:45:09', 0, NULL, '2024-08-07 18:45:09', '2024-08-07 18:45:09'),
(4998, 2, '2024-08-07 14:45:10', '2024-08-07 14:45:10', 0, NULL, '2024-08-07 18:45:10', '2024-08-07 18:45:10'),
(4999, 3, '2024-08-07 14:50:06', '2024-08-07 14:50:06', 0, NULL, '2024-08-07 18:50:06', '2024-08-07 18:50:06'),
(5000, 5, '2024-08-07 14:50:07', '2024-08-07 14:50:07', 0, NULL, '2024-08-07 18:50:07', '2024-08-07 18:50:07'),
(5001, 1, '2024-08-07 14:55:05', '2024-08-07 14:55:05', 0, NULL, '2024-08-07 18:55:06', '2024-08-07 18:55:06'),
(5002, 2, '2024-08-07 14:55:06', '2024-08-07 14:55:06', 0, NULL, '2024-08-07 18:55:07', '2024-08-07 18:55:07'),
(5003, 3, '2024-08-07 15:00:05', '2024-08-07 15:00:05', 0, NULL, '2024-08-07 19:00:06', '2024-08-07 19:00:06'),
(5004, 5, '2024-08-07 15:00:07', '2024-08-07 15:00:07', 0, NULL, '2024-08-07 19:00:07', '2024-08-07 19:00:07'),
(5005, 1, '2024-08-07 15:05:06', '2024-08-07 15:05:06', 0, NULL, '2024-08-07 19:05:07', '2024-08-07 19:05:07'),
(5006, 2, '2024-08-07 15:05:07', '2024-08-07 15:05:07', 0, NULL, '2024-08-07 19:05:07', '2024-08-07 19:05:07'),
(5007, 3, '2024-08-07 15:05:08', '2024-08-07 15:05:08', 0, NULL, '2024-08-07 19:05:08', '2024-08-07 19:05:08'),
(5008, 5, '2024-08-07 15:10:06', '2024-08-07 15:10:06', 0, NULL, '2024-08-07 19:10:08', '2024-08-07 19:10:08'),
(5009, 1, '2024-08-07 15:15:06', '2024-08-07 15:15:06', 0, NULL, '2024-08-07 19:15:07', '2024-08-07 19:15:07'),
(5010, 2, '2024-08-07 15:15:07', '2024-08-07 15:15:07', 0, NULL, '2024-08-07 19:15:08', '2024-08-07 19:15:08'),
(5011, 3, '2024-08-07 15:15:08', '2024-08-07 15:15:08', 0, NULL, '2024-08-07 19:15:08', '2024-08-07 19:15:08'),
(5012, 1, '2024-08-07 15:20:07', '2024-08-07 15:20:07', 0, NULL, '2024-08-07 19:20:08', '2024-08-07 19:20:08'),
(5013, 5, '2024-08-07 15:20:08', '2024-08-07 15:20:08', 0, NULL, '2024-08-07 19:20:08', '2024-08-07 19:20:08'),
(5014, 1, '2024-08-07 15:25:08', '2024-08-07 15:25:08', 0, NULL, '2024-08-07 19:25:08', '2024-08-07 19:25:08'),
(5015, 2, '2024-08-07 15:25:09', '2024-08-07 15:25:09', 0, NULL, '2024-08-07 19:25:09', '2024-08-07 19:25:09'),
(5016, 3, '2024-08-07 15:25:09', '2024-08-07 15:25:09', 0, NULL, '2024-08-07 19:25:10', '2024-08-07 19:25:10'),
(5017, 5, '2024-08-07 15:30:05', '2024-08-07 15:30:05', 0, NULL, '2024-08-07 19:30:06', '2024-08-07 19:30:06'),
(5018, 1, '2024-08-07 15:35:04', '2024-08-07 15:35:04', 0, NULL, '2024-08-07 19:35:04', '2024-08-07 19:35:04'),
(5019, 2, '2024-08-07 15:35:06', '2024-08-07 15:35:06', 0, NULL, '2024-08-07 19:35:06', '2024-08-07 19:35:06'),
(5020, 3, '2024-08-07 15:35:06', '2024-08-07 15:35:06', 0, NULL, '2024-08-07 19:35:06', '2024-08-07 19:35:06'),
(5021, 1, '2024-08-07 15:40:15', '2024-08-07 15:40:15', 0, NULL, '2024-08-07 19:40:15', '2024-08-07 19:40:15'),
(5022, 2, '2024-08-07 15:40:15', '2024-08-07 15:40:16', 0, NULL, '2024-08-07 19:40:16', '2024-08-07 19:40:16'),
(5023, 3, '2024-08-07 15:40:16', '2024-08-07 15:40:16', 0, NULL, '2024-08-07 19:40:16', '2024-08-07 19:40:16'),
(5024, 5, '2024-08-07 15:40:16', '2024-08-07 15:40:16', 0, NULL, '2024-08-07 19:40:17', '2024-08-07 19:40:17'),
(5025, 1, '2024-08-07 15:50:10', '2024-08-07 15:50:10', 0, NULL, '2024-08-07 19:50:10', '2024-08-07 19:50:10'),
(5026, 2, '2024-08-07 15:50:11', '2024-08-07 15:50:11', 0, NULL, '2024-08-07 19:50:11', '2024-08-07 19:50:11'),
(5027, 3, '2024-08-07 15:50:11', '2024-08-07 15:50:11', 0, NULL, '2024-08-07 19:50:11', '2024-08-07 19:50:11'),
(5028, 5, '2024-08-07 15:50:11', '2024-08-07 15:50:12', 0, NULL, '2024-08-07 19:50:12', '2024-08-07 19:50:12'),
(5029, 1, '2024-08-07 16:00:08', '2024-08-07 16:00:08', 0, NULL, '2024-08-07 20:00:08', '2024-08-07 20:00:08'),
(5030, 2, '2024-08-07 16:00:09', '2024-08-07 16:00:09', 0, NULL, '2024-08-07 20:00:11', '2024-08-07 20:00:11'),
(5031, 3, '2024-08-07 16:00:11', '2024-08-07 16:00:11', 0, NULL, '2024-08-07 20:00:12', '2024-08-07 20:00:12'),
(5032, 5, '2024-08-07 16:00:12', '2024-08-07 16:00:12', 0, NULL, '2024-08-07 20:00:12', '2024-08-07 20:00:12'),
(5033, 1, '2024-08-07 16:10:08', '2024-08-07 16:10:08', 0, NULL, '2024-08-07 20:10:09', '2024-08-07 20:10:09'),
(5034, 2, '2024-08-07 16:10:09', '2024-08-07 16:10:09', 0, NULL, '2024-08-07 20:10:09', '2024-08-07 20:10:09'),
(5035, 3, '2024-08-07 16:10:09', '2024-08-07 16:10:09', 0, NULL, '2024-08-07 20:10:10', '2024-08-07 20:10:10'),
(5036, 5, '2024-08-07 16:10:10', '2024-08-07 16:10:10', 0, NULL, '2024-08-07 20:10:10', '2024-08-07 20:10:10'),
(5037, 1, '2024-08-07 16:20:08', '2024-08-07 16:20:08', 0, NULL, '2024-08-07 20:20:08', '2024-08-07 20:20:08'),
(5038, 2, '2024-08-07 16:20:08', '2024-08-07 16:20:08', 0, NULL, '2024-08-07 20:20:09', '2024-08-07 20:20:09'),
(5039, 3, '2024-08-07 16:20:09', '2024-08-07 16:20:09', 0, NULL, '2024-08-07 20:20:09', '2024-08-07 20:20:09'),
(5040, 5, '2024-08-07 16:20:09', '2024-08-07 16:20:10', 0, NULL, '2024-08-07 20:20:10', '2024-08-07 20:20:10'),
(5041, 1, '2024-08-07 16:30:05', '2024-08-07 16:30:06', 0, NULL, '2024-08-07 20:30:06', '2024-08-07 20:30:06'),
(5042, 2, '2024-08-07 16:30:06', '2024-08-07 16:30:06', 0, NULL, '2024-08-07 20:30:07', '2024-08-07 20:30:07'),
(5043, 3, '2024-08-07 16:30:07', '2024-08-07 16:30:07', 0, NULL, '2024-08-07 20:30:07', '2024-08-07 20:30:07'),
(5044, 5, '2024-08-07 16:30:08', '2024-08-07 16:30:08', 0, NULL, '2024-08-07 20:30:08', '2024-08-07 20:30:08'),
(5045, 1, '2024-08-07 16:35:07', '2024-08-07 16:35:08', 0, NULL, '2024-08-07 20:35:08', '2024-08-07 20:35:08'),
(5046, 2, '2024-08-07 16:35:08', '2024-08-07 16:35:08', 0, NULL, '2024-08-07 20:35:08', '2024-08-07 20:35:08'),
(5047, 3, '2024-08-07 16:40:07', '2024-08-07 16:40:07', 0, NULL, '2024-08-07 20:40:08', '2024-08-07 20:40:08'),
(5048, 5, '2024-08-07 16:40:11', '2024-08-07 16:40:11', 0, NULL, '2024-08-07 20:40:11', '2024-08-07 20:40:11'),
(5049, 1, '2024-08-07 16:45:08', '2024-08-07 16:45:08', 0, NULL, '2024-08-07 20:45:08', '2024-08-07 20:45:08'),
(5050, 2, '2024-08-07 16:45:08', '2024-08-07 16:45:08', 0, NULL, '2024-08-07 20:45:09', '2024-08-07 20:45:09'),
(5051, 3, '2024-08-07 16:50:07', '2024-08-07 16:50:07', 0, NULL, '2024-08-07 20:50:08', '2024-08-07 20:50:08'),
(5052, 5, '2024-08-07 16:50:08', '2024-08-07 16:50:08', 0, NULL, '2024-08-07 20:50:09', '2024-08-07 20:50:09'),
(5053, 1, '2024-08-07 16:55:08', '2024-08-07 16:55:08', 0, NULL, '2024-08-07 20:55:09', '2024-08-07 20:55:09'),
(5054, 2, '2024-08-07 16:55:09', '2024-08-07 16:55:09', 0, NULL, '2024-08-07 20:55:10', '2024-08-07 20:55:10'),
(5055, 3, '2024-08-07 16:55:10', '2024-08-07 16:55:10', 0, NULL, '2024-08-07 20:55:10', '2024-08-07 20:55:10'),
(5056, 5, '2024-08-07 17:00:04', '2024-08-07 17:00:04', 0, NULL, '2024-08-07 21:00:05', '2024-08-07 21:00:05'),
(5057, 1, '2024-08-07 17:05:08', '2024-08-07 17:05:08', 0, NULL, '2024-08-07 21:05:09', '2024-08-07 21:05:09'),
(5058, 2, '2024-08-07 17:05:09', '2024-08-07 17:05:09', 0, NULL, '2024-08-07 21:05:09', '2024-08-07 21:05:09'),
(5059, 3, '2024-08-07 17:05:10', '2024-08-07 17:05:10', 0, NULL, '2024-08-07 21:05:10', '2024-08-07 21:05:10'),
(5060, 5, '2024-08-07 17:05:14', '2024-08-07 17:05:14', 0, NULL, '2024-08-07 21:05:14', '2024-08-07 21:05:14'),
(5061, 1, '2024-08-07 17:15:05', '2024-08-07 17:15:05', 0, NULL, '2024-08-07 21:15:06', '2024-08-07 21:15:06'),
(5062, 2, '2024-08-07 17:15:06', '2024-08-07 17:15:06', 0, NULL, '2024-08-07 21:15:06', '2024-08-07 21:15:06'),
(5063, 3, '2024-08-07 17:15:07', '2024-08-07 17:15:07', 0, NULL, '2024-08-07 21:15:07', '2024-08-07 21:15:07'),
(5064, 5, '2024-08-07 17:15:08', '2024-08-07 17:15:08', 0, NULL, '2024-08-07 21:15:09', '2024-08-07 21:15:09'),
(5065, 1, '2024-08-07 17:20:10', '2024-08-07 17:20:10', 0, NULL, '2024-08-07 21:20:11', '2024-08-07 21:20:11'),
(5066, 2, '2024-08-07 17:20:11', '2024-08-07 17:20:11', 0, NULL, '2024-08-07 21:20:11', '2024-08-07 21:20:11'),
(5067, 3, '2024-08-07 17:20:12', '2024-08-07 17:20:12', 0, NULL, '2024-08-07 21:20:12', '2024-08-07 21:20:12'),
(5068, 5, '2024-08-07 17:20:12', '2024-08-07 17:20:12', 0, NULL, '2024-08-07 21:20:12', '2024-08-07 21:20:12'),
(5069, 1, '2024-08-07 17:30:05', '2024-08-07 17:30:05', 0, NULL, '2024-08-07 21:30:06', '2024-08-07 21:30:06'),
(5070, 2, '2024-08-07 17:30:07', '2024-08-07 17:30:07', 0, NULL, '2024-08-07 21:30:07', '2024-08-07 21:30:07'),
(5071, 3, '2024-08-07 17:30:08', '2024-08-07 17:30:08', 0, NULL, '2024-08-07 21:30:09', '2024-08-07 21:30:09'),
(5072, 5, '2024-08-07 17:30:09', '2024-08-07 17:30:09', 0, NULL, '2024-08-07 21:30:09', '2024-08-07 21:30:09'),
(5073, 1, '2024-08-07 17:40:04', '2024-08-07 17:40:04', 0, NULL, '2024-08-07 21:40:04', '2024-08-07 21:40:04'),
(5074, 2, '2024-08-07 17:40:05', '2024-08-07 17:40:05', 0, NULL, '2024-08-07 21:40:05', '2024-08-07 21:40:05'),
(5075, 3, '2024-08-07 17:40:05', '2024-08-07 17:40:05', 0, NULL, '2024-08-07 21:40:06', '2024-08-07 21:40:06'),
(5076, 5, '2024-08-07 17:40:06', '2024-08-07 17:40:06', 0, NULL, '2024-08-07 21:40:07', '2024-08-07 21:40:07'),
(5077, 1, '2024-08-07 17:45:11', '2024-08-07 17:45:11', 0, NULL, '2024-08-07 21:45:11', '2024-08-07 21:45:11'),
(5078, 2, '2024-08-07 17:45:11', '2024-08-07 17:45:11', 0, NULL, '2024-08-07 21:45:11', '2024-08-07 21:45:11'),
(5079, 3, '2024-08-07 17:45:11', '2024-08-07 17:45:11', 0, NULL, '2024-08-07 21:45:11', '2024-08-07 21:45:11'),
(5080, 5, '2024-08-07 17:45:11', '2024-08-07 17:45:11', 0, NULL, '2024-08-07 21:45:11', '2024-08-07 21:45:11'),
(5081, 1, '2024-08-07 17:55:06', '2024-08-07 17:55:06', 0, NULL, '2024-08-07 21:55:07', '2024-08-07 21:55:07'),
(5082, 2, '2024-08-07 17:55:08', '2024-08-07 17:55:08', 0, NULL, '2024-08-07 21:55:08', '2024-08-07 21:55:08'),
(5083, 3, '2024-08-07 17:55:08', '2024-08-07 17:55:08', 0, NULL, '2024-08-07 21:55:09', '2024-08-07 21:55:09'),
(5084, 5, '2024-08-07 17:55:10', '2024-08-07 17:55:10', 0, NULL, '2024-08-07 21:55:10', '2024-08-07 21:55:10'),
(5085, 1, '2024-08-07 18:05:04', '2024-08-07 18:05:05', 0, NULL, '2024-08-07 22:05:05', '2024-08-07 22:05:05'),
(5086, 2, '2024-08-07 18:05:05', '2024-08-07 18:05:05', 0, NULL, '2024-08-07 22:05:06', '2024-08-07 22:05:06'),
(5087, 3, '2024-08-07 18:05:06', '2024-08-07 18:05:06', 0, NULL, '2024-08-07 22:05:06', '2024-08-07 22:05:06'),
(5088, 5, '2024-08-07 18:05:07', '2024-08-07 18:05:07', 0, NULL, '2024-08-07 22:05:08', '2024-08-07 22:05:08'),
(5089, 1, '2024-08-07 18:10:14', '2024-08-07 18:10:14', 0, NULL, '2024-08-07 22:10:15', '2024-08-07 22:10:15'),
(5090, 2, '2024-08-07 18:10:15', '2024-08-07 18:10:15', 0, NULL, '2024-08-07 22:10:15', '2024-08-07 22:10:15'),
(5091, 3, '2024-08-07 18:10:15', '2024-08-07 18:10:15', 0, NULL, '2024-08-07 22:10:15', '2024-08-07 22:10:15'),
(5092, 5, '2024-08-07 18:10:16', '2024-08-07 18:10:16', 0, NULL, '2024-08-07 22:10:16', '2024-08-07 22:10:16'),
(5093, 1, '2024-08-07 18:20:10', '2024-08-07 18:20:10', 0, NULL, '2024-08-07 22:20:10', '2024-08-07 22:20:10'),
(5094, 2, '2024-08-07 18:20:10', '2024-08-07 18:20:10', 0, NULL, '2024-08-07 22:20:11', '2024-08-07 22:20:11'),
(5095, 3, '2024-08-07 18:20:11', '2024-08-07 18:20:11', 0, NULL, '2024-08-07 22:20:11', '2024-08-07 22:20:11'),
(5096, 5, '2024-08-07 18:20:11', '2024-08-07 18:20:11', 0, NULL, '2024-08-07 22:20:11', '2024-08-07 22:20:11'),
(5097, 1, '2024-08-07 18:30:07', '2024-08-07 18:30:07', 0, NULL, '2024-08-07 22:30:07', '2024-08-07 22:30:07'),
(5098, 2, '2024-08-07 18:30:07', '2024-08-07 18:30:07', 0, NULL, '2024-08-07 22:30:08', '2024-08-07 22:30:08'),
(5099, 3, '2024-08-07 18:30:08', '2024-08-07 18:30:08', 0, NULL, '2024-08-07 22:30:09', '2024-08-07 22:30:09'),
(5100, 5, '2024-08-07 18:30:09', '2024-08-07 18:30:09', 0, NULL, '2024-08-07 22:30:09', '2024-08-07 22:30:09'),
(5101, 1, '2024-08-07 18:40:11', '2024-08-07 18:40:11', 0, NULL, '2024-08-07 22:40:11', '2024-08-07 22:40:11'),
(5102, 2, '2024-08-07 18:40:11', '2024-08-07 18:40:11', 0, NULL, '2024-08-07 22:40:11', '2024-08-07 22:40:11'),
(5103, 3, '2024-08-07 18:40:12', '2024-08-07 18:40:12', 0, NULL, '2024-08-07 22:40:12', '2024-08-07 22:40:12'),
(5104, 5, '2024-08-07 18:40:12', '2024-08-07 18:40:12', 0, NULL, '2024-08-07 22:40:12', '2024-08-07 22:40:12'),
(5105, 1, '2024-08-07 18:50:07', '2024-08-07 18:50:07', 0, NULL, '2024-08-07 22:50:08', '2024-08-07 22:50:08'),
(5106, 2, '2024-08-07 18:50:08', '2024-08-07 18:50:08', 0, NULL, '2024-08-07 22:50:09', '2024-08-07 22:50:09'),
(5107, 3, '2024-08-07 18:50:09', '2024-08-07 18:50:09', 0, NULL, '2024-08-07 22:50:09', '2024-08-07 22:50:09'),
(5108, 5, '2024-08-07 18:50:10', '2024-08-07 18:50:10', 0, NULL, '2024-08-07 22:50:10', '2024-08-07 22:50:10'),
(5109, 1, '2024-08-07 19:00:08', '2024-08-07 19:00:08', 0, NULL, '2024-08-07 23:00:09', '2024-08-07 23:00:09'),
(5110, 2, '2024-08-07 19:00:10', '2024-08-07 19:00:10', 0, NULL, '2024-08-07 23:00:10', '2024-08-07 23:00:10'),
(5111, 3, '2024-08-07 19:00:11', '2024-08-07 19:00:11', 0, NULL, '2024-08-07 23:00:11', '2024-08-07 23:00:11'),
(5112, 5, '2024-08-07 19:00:11', '2024-08-07 19:00:11', 0, NULL, '2024-08-07 23:00:11', '2024-08-07 23:00:11'),
(5113, 1, '2024-08-07 19:10:04', '2024-08-07 19:10:06', 1, NULL, '2024-08-07 23:10:06', '2024-08-07 23:10:06'),
(5114, 2, '2024-08-07 19:10:06', '2024-08-07 19:10:06', 0, NULL, '2024-08-07 23:10:06', '2024-08-07 23:10:06'),
(5115, 3, '2024-08-07 19:10:07', '2024-08-07 19:10:07', 0, NULL, '2024-08-07 23:10:07', '2024-08-07 23:10:07'),
(5116, 5, '2024-08-07 19:10:08', '2024-08-07 19:10:08', 0, NULL, '2024-08-07 23:10:08', '2024-08-07 23:10:08'),
(5117, 1, '2024-08-07 19:15:14', '2024-08-07 19:15:14', 0, NULL, '2024-08-07 23:15:14', '2024-08-07 23:15:14'),
(5118, 2, '2024-08-07 19:15:14', '2024-08-07 19:15:14', 0, NULL, '2024-08-07 23:15:14', '2024-08-07 23:15:14'),
(5119, 3, '2024-08-07 19:15:15', '2024-08-07 19:15:15', 0, NULL, '2024-08-07 23:15:15', '2024-08-07 23:15:15'),
(5120, 5, '2024-08-07 19:15:15', '2024-08-07 19:15:15', 0, NULL, '2024-08-07 23:15:15', '2024-08-07 23:15:15'),
(5121, 1, '2024-08-07 19:25:08', '2024-08-07 19:25:08', 0, NULL, '2024-08-07 23:25:08', '2024-08-07 23:25:08'),
(5122, 2, '2024-08-07 19:25:08', '2024-08-07 19:25:08', 0, NULL, '2024-08-07 23:25:08', '2024-08-07 23:25:08'),
(5123, 3, '2024-08-07 19:25:09', '2024-08-07 19:25:09', 0, NULL, '2024-08-07 23:25:09', '2024-08-07 23:25:09'),
(5124, 5, '2024-08-07 19:25:09', '2024-08-07 19:25:09', 0, NULL, '2024-08-07 23:25:09', '2024-08-07 23:25:09'),
(5125, 1, '2024-08-07 19:35:04', '2024-08-07 19:35:04', 0, NULL, '2024-08-07 23:35:05', '2024-08-07 23:35:05'),
(5126, 2, '2024-08-07 19:35:05', '2024-08-07 19:35:05', 0, NULL, '2024-08-07 23:35:06', '2024-08-07 23:35:06'),
(5127, 3, '2024-08-07 19:35:06', '2024-08-07 19:35:06', 0, NULL, '2024-08-07 23:35:06', '2024-08-07 23:35:06'),
(5128, 5, '2024-08-07 19:35:07', '2024-08-07 19:35:07', 0, NULL, '2024-08-07 23:35:07', '2024-08-07 23:35:07'),
(5129, 1, '2024-08-07 19:40:06', '2024-08-07 19:40:06', 0, NULL, '2024-08-07 23:40:07', '2024-08-07 23:40:07'),
(5130, 2, '2024-08-07 19:40:08', '2024-08-07 19:40:08', 0, NULL, '2024-08-07 23:40:08', '2024-08-07 23:40:08'),
(5131, 1, '2024-08-07 19:45:07', '2024-08-07 19:45:07', 0, NULL, '2024-08-07 23:45:08', '2024-08-07 23:45:08'),
(5132, 3, '2024-08-07 19:45:08', '2024-08-07 19:45:09', 0, NULL, '2024-08-07 23:45:12', '2024-08-07 23:45:12'),
(5133, 5, '2024-08-07 19:45:13', '2024-08-07 19:45:13', 0, NULL, '2024-08-07 23:45:13', '2024-08-07 23:45:13'),
(5134, 1, '2024-08-07 19:50:09', '2024-08-07 19:50:09', 0, NULL, '2024-08-07 23:50:10', '2024-08-07 23:50:10'),
(5135, 2, '2024-08-07 19:50:10', '2024-08-07 19:50:10', 0, NULL, '2024-08-07 23:50:10', '2024-08-07 23:50:10'),
(5136, 3, '2024-08-07 19:55:06', '2024-08-07 19:55:06', 0, NULL, '2024-08-07 23:55:07', '2024-08-07 23:55:07'),
(5137, 5, '2024-08-07 19:55:08', '2024-08-07 19:55:08', 0, NULL, '2024-08-07 23:55:08', '2024-08-07 23:55:08'),
(5138, 1, '2024-08-07 20:00:03', '2024-08-07 20:00:03', 0, NULL, '2024-08-08 00:00:03', '2024-08-08 00:00:03'),
(5139, 2, '2024-08-07 20:00:04', '2024-08-07 20:00:04', 0, NULL, '2024-08-08 00:00:04', '2024-08-08 00:00:04'),
(5140, 1, '2024-08-07 20:05:07', '2024-08-07 20:05:07', 0, NULL, '2024-08-08 00:05:07', '2024-08-08 00:05:07'),
(5141, 2, '2024-08-07 20:05:08', '2024-08-07 20:05:08', 0, NULL, '2024-08-08 00:05:08', '2024-08-08 00:05:08'),
(5142, 3, '2024-08-07 20:05:08', '2024-08-07 20:05:08', 0, NULL, '2024-08-08 00:05:09', '2024-08-08 00:05:09'),
(5143, 5, '2024-08-07 20:05:09', '2024-08-07 20:05:09', 0, NULL, '2024-08-08 00:05:09', '2024-08-08 00:05:09'),
(5144, 1, '2024-08-07 20:10:12', '2024-08-07 20:10:12', 0, NULL, '2024-08-08 00:10:14', '2024-08-08 00:10:14'),
(5145, 2, '2024-08-07 20:10:15', '2024-08-07 20:10:15', 0, NULL, '2024-08-08 00:10:15', '2024-08-08 00:10:15'),
(5146, 3, '2024-08-07 20:10:15', '2024-08-07 20:10:15', 0, NULL, '2024-08-08 00:10:15', '2024-08-08 00:10:15'),
(5147, 5, '2024-08-07 20:10:16', '2024-08-07 20:10:16', 0, NULL, '2024-08-08 00:10:16', '2024-08-08 00:10:16'),
(5148, 1, '2024-08-07 20:20:04', '2024-08-07 20:20:04', 0, NULL, '2024-08-08 00:20:04', '2024-08-08 00:20:04'),
(5149, 2, '2024-08-07 20:20:05', '2024-08-07 20:20:05', 0, NULL, '2024-08-08 00:20:05', '2024-08-08 00:20:05'),
(5150, 3, '2024-08-07 20:20:12', '2024-08-07 20:20:12', 0, NULL, '2024-08-08 00:20:13', '2024-08-08 00:20:13'),
(5151, 5, '2024-08-07 20:20:13', '2024-08-07 20:20:13', 0, NULL, '2024-08-08 00:20:13', '2024-08-08 00:20:13'),
(5152, 1, '2024-08-07 20:25:07', '2024-08-07 20:25:07', 0, NULL, '2024-08-08 00:25:08', '2024-08-08 00:25:08'),
(5153, 2, '2024-08-07 20:25:08', '2024-08-07 20:25:08', 0, NULL, '2024-08-08 00:25:09', '2024-08-08 00:25:09'),
(5154, 3, '2024-08-07 20:30:06', '2024-08-07 20:30:06', 0, NULL, '2024-08-08 00:30:07', '2024-08-08 00:30:07'),
(5155, 5, '2024-08-07 20:30:08', '2024-08-07 20:30:08', 0, NULL, '2024-08-08 00:30:08', '2024-08-08 00:30:08'),
(5156, 1, '2024-08-07 20:35:07', '2024-08-07 20:35:07', 0, NULL, '2024-08-08 00:35:07', '2024-08-08 00:35:07'),
(5157, 2, '2024-08-07 20:35:08', '2024-08-07 20:35:08', 0, NULL, '2024-08-08 00:35:08', '2024-08-08 00:35:08'),
(5158, 3, '2024-08-07 20:35:08', '2024-08-07 20:35:08', 0, NULL, '2024-08-08 00:35:08', '2024-08-08 00:35:08'),
(5159, 5, '2024-08-07 20:40:07', '2024-08-07 20:40:07', 0, NULL, '2024-08-08 00:40:07', '2024-08-08 00:40:07'),
(5160, 1, '2024-08-07 20:45:07', '2024-08-07 20:45:07', 0, NULL, '2024-08-08 00:45:08', '2024-08-08 00:45:08'),
(5161, 2, '2024-08-07 20:45:09', '2024-08-07 20:45:09', 0, NULL, '2024-08-08 00:45:09', '2024-08-08 00:45:09'),
(5162, 3, '2024-08-07 20:45:09', '2024-08-07 20:45:09', 0, NULL, '2024-08-08 00:45:09', '2024-08-08 00:45:09'),
(5163, 5, '2024-08-07 20:50:05', '2024-08-07 20:50:05', 0, NULL, '2024-08-08 00:50:05', '2024-08-08 00:50:05'),
(5164, 1, '2024-08-07 20:55:10', '2024-08-07 20:55:10', 0, NULL, '2024-08-08 00:55:10', '2024-08-08 00:55:10'),
(5165, 2, '2024-08-07 20:55:11', '2024-08-07 20:55:11', 0, NULL, '2024-08-08 00:55:11', '2024-08-08 00:55:11'),
(5166, 3, '2024-08-07 20:55:11', '2024-08-07 20:55:11', 0, NULL, '2024-08-08 00:55:11', '2024-08-08 00:55:11'),
(5167, 5, '2024-08-07 20:55:11', '2024-08-07 20:55:11', 0, NULL, '2024-08-08 00:55:11', '2024-08-08 00:55:11'),
(5168, 1, '2024-08-07 21:05:10', '2024-08-07 21:05:10', 0, NULL, '2024-08-08 01:05:10', '2024-08-08 01:05:10'),
(5169, 2, '2024-08-07 21:05:10', '2024-08-07 21:05:10', 0, NULL, '2024-08-08 01:05:10', '2024-08-08 01:05:10'),
(5170, 3, '2024-08-07 21:05:11', '2024-08-07 21:05:11', 0, NULL, '2024-08-08 01:05:12', '2024-08-08 01:05:12'),
(5171, 5, '2024-08-07 21:05:12', '2024-08-07 21:05:12', 0, NULL, '2024-08-08 01:05:12', '2024-08-08 01:05:12'),
(5172, 1, '2024-08-07 21:15:07', '2024-08-07 21:15:07', 0, NULL, '2024-08-08 01:15:08', '2024-08-08 01:15:08'),
(5173, 2, '2024-08-07 21:15:09', '2024-08-07 21:15:09', 0, NULL, '2024-08-08 01:15:09', '2024-08-08 01:15:09'),
(5174, 3, '2024-08-07 21:15:09', '2024-08-07 21:15:09', 0, NULL, '2024-08-08 01:15:10', '2024-08-08 01:15:10'),
(5175, 5, '2024-08-07 21:15:10', '2024-08-07 21:15:10', 0, NULL, '2024-08-08 01:15:10', '2024-08-08 01:15:10'),
(5176, 1, '2024-08-07 21:25:11', '2024-08-07 21:25:11', 0, NULL, '2024-08-08 01:25:11', '2024-08-08 01:25:11'),
(5177, 2, '2024-08-07 21:25:12', '2024-08-07 21:25:12', 0, NULL, '2024-08-08 01:25:12', '2024-08-08 01:25:12'),
(5178, 3, '2024-08-07 21:25:12', '2024-08-07 21:25:12', 0, NULL, '2024-08-08 01:25:12', '2024-08-08 01:25:12'),
(5179, 5, '2024-08-07 21:25:12', '2024-08-07 21:25:13', 0, NULL, '2024-08-08 01:25:13', '2024-08-08 01:25:13'),
(5180, 1, '2024-08-07 21:35:04', '2024-08-07 21:35:04', 0, NULL, '2024-08-08 01:35:04', '2024-08-08 01:35:04'),
(5181, 2, '2024-08-07 21:35:04', '2024-08-07 21:35:04', 0, NULL, '2024-08-08 01:35:05', '2024-08-08 01:35:05'),
(5182, 3, '2024-08-07 21:35:05', '2024-08-07 21:35:05', 0, NULL, '2024-08-08 01:35:06', '2024-08-08 01:35:06'),
(5183, 5, '2024-08-07 21:35:06', '2024-08-07 21:35:06', 0, NULL, '2024-08-08 01:35:07', '2024-08-08 01:35:07'),
(5184, 1, '2024-08-07 21:40:06', '2024-08-07 21:40:07', 0, NULL, '2024-08-08 01:40:07', '2024-08-08 01:40:07'),
(5185, 2, '2024-08-07 21:40:07', '2024-08-07 21:40:07', 0, NULL, '2024-08-08 01:40:08', '2024-08-08 01:40:08'),
(5186, 3, '2024-08-07 21:40:08', '2024-08-07 21:40:08', 0, NULL, '2024-08-08 01:40:08', '2024-08-08 01:40:08'),
(5187, 5, '2024-08-07 21:45:08', '2024-08-07 21:45:08', 0, NULL, '2024-08-08 01:45:08', '2024-08-08 01:45:08'),
(5188, 1, '2024-08-07 21:50:09', '2024-08-07 21:50:09', 0, NULL, '2024-08-08 01:50:09', '2024-08-08 01:50:09'),
(5189, 2, '2024-08-07 21:50:10', '2024-08-07 21:50:10', 0, NULL, '2024-08-08 01:50:10', '2024-08-08 01:50:10'),
(5190, 3, '2024-08-07 21:50:10', '2024-08-07 21:50:10', 0, NULL, '2024-08-08 01:50:10', '2024-08-08 01:50:10'),
(5191, 5, '2024-08-07 21:50:10', '2024-08-07 21:50:10', 0, NULL, '2024-08-08 01:50:10', '2024-08-08 01:50:10'),
(5192, 1, '2024-08-07 22:00:09', '2024-08-07 22:00:09', 0, NULL, '2024-08-08 02:00:09', '2024-08-08 02:00:09'),
(5193, 2, '2024-08-07 22:00:10', '2024-08-07 22:00:10', 0, NULL, '2024-08-08 02:00:10', '2024-08-08 02:00:10'),
(5194, 3, '2024-08-07 22:00:10', '2024-08-07 22:00:10', 0, NULL, '2024-08-08 02:00:11', '2024-08-08 02:00:11'),
(5195, 5, '2024-08-07 22:00:11', '2024-08-07 22:00:11', 0, NULL, '2024-08-08 02:00:11', '2024-08-08 02:00:11'),
(5196, 1, '2024-08-07 22:10:04', '2024-08-07 22:10:04', 0, NULL, '2024-08-08 02:10:05', '2024-08-08 02:10:05'),
(5197, 2, '2024-08-07 22:10:05', '2024-08-07 22:10:05', 0, NULL, '2024-08-08 02:10:06', '2024-08-08 02:10:06'),
(5198, 3, '2024-08-07 22:10:06', '2024-08-07 22:10:06', 0, NULL, '2024-08-08 02:10:07', '2024-08-08 02:10:07'),
(5199, 5, '2024-08-07 22:10:07', '2024-08-07 22:10:08', 0, NULL, '2024-08-08 02:10:08', '2024-08-08 02:10:08'),
(5200, 1, '2024-08-07 22:15:05', '2024-08-07 22:15:05', 0, NULL, '2024-08-08 02:15:06', '2024-08-08 02:15:06'),
(5201, 1, '2024-08-07 22:20:10', '2024-08-07 22:20:10', 0, NULL, '2024-08-08 02:20:10', '2024-08-08 02:20:10'),
(5202, 2, '2024-08-07 22:20:10', '2024-08-07 22:20:10', 0, NULL, '2024-08-08 02:20:10', '2024-08-08 02:20:10'),
(5203, 3, '2024-08-07 22:20:10', '2024-08-07 22:20:10', 0, NULL, '2024-08-08 02:20:10', '2024-08-08 02:20:10'),
(5204, 5, '2024-08-07 22:20:11', '2024-08-07 22:20:11', 0, NULL, '2024-08-08 02:20:11', '2024-08-08 02:20:11'),
(5205, 1, '2024-08-07 22:30:05', '2024-08-07 22:30:05', 0, NULL, '2024-08-08 02:30:05', '2024-08-08 02:30:05'),
(5206, 2, '2024-08-07 22:30:06', '2024-08-07 22:30:06', 0, NULL, '2024-08-08 02:30:12', '2024-08-08 02:30:12'),
(5207, 3, '2024-08-07 22:30:12', '2024-08-07 22:30:12', 0, NULL, '2024-08-08 02:30:12', '2024-08-08 02:30:12'),
(5208, 5, '2024-08-07 22:30:13', '2024-08-07 22:30:13', 0, NULL, '2024-08-08 02:30:13', '2024-08-08 02:30:13'),
(5209, 1, '2024-08-07 22:35:07', '2024-08-07 22:35:07', 0, NULL, '2024-08-08 02:35:07', '2024-08-08 02:35:07'),
(5210, 2, '2024-08-07 22:35:08', '2024-08-07 22:35:08', 0, NULL, '2024-08-08 02:35:08', '2024-08-08 02:35:08'),
(5211, 3, '2024-08-07 22:40:06', '2024-08-07 22:40:06', 0, NULL, '2024-08-08 02:40:06', '2024-08-08 02:40:06'),
(5212, 5, '2024-08-07 22:40:07', '2024-08-07 22:40:07', 0, NULL, '2024-08-08 02:40:07', '2024-08-08 02:40:07'),
(5213, 1, '2024-08-07 22:45:08', '2024-08-07 22:45:08', 0, NULL, '2024-08-08 02:45:08', '2024-08-08 02:45:08'),
(5214, 2, '2024-08-07 22:45:08', '2024-08-07 22:45:08', 0, NULL, '2024-08-08 02:45:09', '2024-08-08 02:45:09'),
(5215, 3, '2024-08-07 22:45:09', '2024-08-07 22:45:09', 0, NULL, '2024-08-08 02:45:10', '2024-08-08 02:45:10'),
(5216, 5, '2024-08-07 22:45:10', '2024-08-07 22:45:10', 0, NULL, '2024-08-08 02:45:10', '2024-08-08 02:45:10'),
(5217, 1, '2024-08-07 22:55:04', '2024-08-07 22:55:04', 0, NULL, '2024-08-08 02:55:05', '2024-08-08 02:55:05'),
(5218, 2, '2024-08-07 22:55:05', '2024-08-07 22:55:05', 0, NULL, '2024-08-08 02:55:05', '2024-08-08 02:55:05'),
(5219, 3, '2024-08-07 22:55:06', '2024-08-07 22:55:06', 0, NULL, '2024-08-08 02:55:06', '2024-08-08 02:55:06'),
(5220, 5, '2024-08-07 22:55:06', '2024-08-07 22:55:06', 0, NULL, '2024-08-08 02:55:07', '2024-08-08 02:55:07'),
(5221, 1, '2024-08-07 23:00:06', '2024-08-07 23:00:08', 1, NULL, '2024-08-08 03:00:09', '2024-08-08 03:00:09'),
(5222, 2, '2024-08-07 23:00:09', '2024-08-07 23:00:09', 0, NULL, '2024-08-08 03:00:10', '2024-08-08 03:00:10'),
(5223, 1, '2024-08-07 23:05:11', '2024-08-07 23:05:11', 0, NULL, '2024-08-08 03:05:11', '2024-08-08 03:05:11'),
(5224, 2, '2024-08-07 23:05:12', '2024-08-07 23:05:12', 0, NULL, '2024-08-08 03:05:12', '2024-08-08 03:05:12'),
(5225, 3, '2024-08-07 23:05:12', '2024-08-07 23:05:12', 0, NULL, '2024-08-08 03:05:12', '2024-08-08 03:05:12'),
(5226, 5, '2024-08-07 23:05:13', '2024-08-07 23:05:13', 0, NULL, '2024-08-08 03:05:13', '2024-08-08 03:05:13'),
(5227, 1, '2024-08-07 23:15:05', '2024-08-07 23:15:05', 0, NULL, '2024-08-08 03:15:05', '2024-08-08 03:15:05'),
(5228, 2, '2024-08-07 23:15:06', '2024-08-07 23:15:06', 0, NULL, '2024-08-08 03:15:06', '2024-08-08 03:15:06'),
(5229, 3, '2024-08-07 23:15:07', '2024-08-07 23:15:07', 0, NULL, '2024-08-08 03:15:08', '2024-08-08 03:15:08'),
(5230, 5, '2024-08-07 23:15:08', '2024-08-07 23:15:09', 0, NULL, '2024-08-08 03:15:09', '2024-08-08 03:15:09'),
(5231, 1, '2024-08-07 23:25:04', '2024-08-07 23:25:04', 0, NULL, '2024-08-08 03:25:04', '2024-08-08 03:25:04'),
(5232, 2, '2024-08-07 23:25:04', '2024-08-07 23:25:04', 0, NULL, '2024-08-08 03:25:04', '2024-08-08 03:25:04'),
(5233, 3, '2024-08-07 23:25:05', '2024-08-07 23:25:05', 0, NULL, '2024-08-08 03:25:05', '2024-08-08 03:25:05'),
(5234, 5, '2024-08-07 23:25:06', '2024-08-07 23:25:06', 0, NULL, '2024-08-08 03:25:06', '2024-08-08 03:25:06'),
(5235, 1, '2024-08-07 23:30:07', '2024-08-07 23:30:08', 0, NULL, '2024-08-08 03:30:08', '2024-08-08 03:30:08'),
(5236, 2, '2024-08-07 23:30:08', '2024-08-07 23:30:08', 0, NULL, '2024-08-08 03:30:09', '2024-08-08 03:30:09'),
(5237, 3, '2024-08-07 23:30:09', '2024-08-07 23:30:09', 0, NULL, '2024-08-08 03:30:10', '2024-08-08 03:30:10'),
(5238, 5, '2024-08-07 23:30:10', '2024-08-07 23:30:10', 0, NULL, '2024-08-08 03:30:10', '2024-08-08 03:30:10'),
(5239, 1, '2024-08-07 23:40:06', '2024-08-07 23:40:06', 0, NULL, '2024-08-08 03:40:06', '2024-08-08 03:40:06'),
(5240, 2, '2024-08-07 23:40:07', '2024-08-07 23:40:07', 0, NULL, '2024-08-08 03:40:08', '2024-08-08 03:40:08'),
(5241, 3, '2024-08-07 23:40:08', '2024-08-07 23:40:08', 0, NULL, '2024-08-08 03:40:08', '2024-08-08 03:40:08'),
(5242, 5, '2024-08-07 23:40:08', '2024-08-07 23:40:08', 0, NULL, '2024-08-08 03:40:09', '2024-08-08 03:40:09'),
(5243, 1, '2024-08-07 23:50:06', '2024-08-07 23:50:06', 0, NULL, '2024-08-08 03:50:07', '2024-08-08 03:50:07'),
(5244, 2, '2024-08-07 23:50:07', '2024-08-07 23:50:07', 0, NULL, '2024-08-08 03:50:08', '2024-08-08 03:50:08'),
(5245, 3, '2024-08-07 23:50:09', '2024-08-07 23:50:09', 0, NULL, '2024-08-08 03:50:09', '2024-08-08 03:50:09'),
(5246, 5, '2024-08-07 23:50:10', '2024-08-07 23:50:10', 0, NULL, '2024-08-08 03:50:10', '2024-08-08 03:50:10'),
(5247, 1, '2024-08-07 23:55:07', '2024-08-07 23:55:07', 0, NULL, '2024-08-08 03:55:08', '2024-08-08 03:55:08'),
(5248, 1, '2024-08-08 00:00:09', '2024-08-08 00:00:09', 0, NULL, '2024-08-08 04:00:09', '2024-08-08 04:00:09'),
(5249, 2, '2024-08-08 00:00:10', '2024-08-08 00:00:10', 0, NULL, '2024-08-08 04:00:10', '2024-08-08 04:00:10'),
(5250, 3, '2024-08-08 00:00:10', '2024-08-08 00:00:10', 0, NULL, '2024-08-08 04:00:14', '2024-08-08 04:00:14'),
(5251, 5, '2024-08-08 00:00:14', '2024-08-08 00:00:14', 0, NULL, '2024-08-08 04:00:14', '2024-08-08 04:00:14'),
(5252, 1, '2024-08-08 00:10:06', '2024-08-08 00:10:06', 0, NULL, '2024-08-08 04:10:06', '2024-08-08 04:10:06'),
(5253, 2, '2024-08-08 00:10:07', '2024-08-08 00:10:07', 0, NULL, '2024-08-08 04:10:07', '2024-08-08 04:10:07'),
(5254, 3, '2024-08-08 00:10:07', '2024-08-08 00:10:07', 0, NULL, '2024-08-08 04:10:08', '2024-08-08 04:10:08'),
(5255, 5, '2024-08-08 00:10:08', '2024-08-08 00:10:12', 3, NULL, '2024-08-08 04:10:12', '2024-08-08 04:10:12'),
(5256, 1, '2024-08-08 00:15:07', '2024-08-08 00:15:07', 0, NULL, '2024-08-08 04:15:08', '2024-08-08 04:15:08'),
(5257, 1, '2024-08-08 00:20:08', '2024-08-08 00:20:08', 0, NULL, '2024-08-08 04:20:09', '2024-08-08 04:20:09'),
(5258, 2, '2024-08-08 00:20:09', '2024-08-08 00:20:09', 0, NULL, '2024-08-08 04:20:09', '2024-08-08 04:20:09'),
(5259, 3, '2024-08-08 00:20:10', '2024-08-08 00:20:10', 0, NULL, '2024-08-08 04:20:10', '2024-08-08 04:20:10'),
(5260, 5, '2024-08-08 00:20:11', '2024-08-08 00:20:11', 0, NULL, '2024-08-08 04:20:11', '2024-08-08 04:20:11'),
(5261, 1, '2024-08-08 00:30:09', '2024-08-08 00:30:09', 0, NULL, '2024-08-08 04:30:09', '2024-08-08 04:30:09'),
(5262, 2, '2024-08-08 00:30:10', '2024-08-08 00:30:10', 0, NULL, '2024-08-08 04:30:10', '2024-08-08 04:30:10'),
(5263, 3, '2024-08-08 00:30:10', '2024-08-08 00:30:10', 0, NULL, '2024-08-08 04:30:10', '2024-08-08 04:30:10'),
(5264, 5, '2024-08-08 00:30:10', '2024-08-08 00:30:10', 0, NULL, '2024-08-08 04:30:11', '2024-08-08 04:30:11'),
(5265, 1, '2024-08-08 00:35:10', '2024-08-08 00:35:10', 0, NULL, '2024-08-08 04:35:10', '2024-08-08 04:35:10'),
(5266, 2, '2024-08-08 00:40:05', '2024-08-08 00:40:05', 0, NULL, '2024-08-08 04:40:05', '2024-08-08 04:40:05'),
(5267, 3, '2024-08-08 00:40:07', '2024-08-08 00:40:07', 0, NULL, '2024-08-08 04:40:08', '2024-08-08 04:40:08'),
(5268, 5, '2024-08-08 00:40:09', '2024-08-08 00:40:09', 0, NULL, '2024-08-08 04:40:10', '2024-08-08 04:40:10'),
(5269, 1, '2024-08-08 00:45:04', '2024-08-08 00:45:04', 0, NULL, '2024-08-08 04:45:06', '2024-08-08 04:45:06'),
(5270, 1, '2024-08-08 00:50:05', '2024-08-08 00:50:05', 0, NULL, '2024-08-08 04:50:05', '2024-08-08 04:50:05'),
(5271, 2, '2024-08-08 00:50:06', '2024-08-08 00:50:06', 0, NULL, '2024-08-08 04:50:06', '2024-08-08 04:50:06'),
(5272, 3, '2024-08-08 00:50:06', '2024-08-08 00:50:06', 0, NULL, '2024-08-08 04:50:06', '2024-08-08 04:50:06'),
(5273, 5, '2024-08-08 00:50:07', '2024-08-08 00:50:07', 0, NULL, '2024-08-08 04:50:07', '2024-08-08 04:50:07'),
(5274, 1, '2024-08-08 01:00:09', '2024-08-08 01:00:09', 0, NULL, '2024-08-08 05:00:10', '2024-08-08 05:00:10'),
(5275, 2, '2024-08-08 01:00:10', '2024-08-08 01:00:10', 0, NULL, '2024-08-08 05:00:11', '2024-08-08 05:00:11'),
(5276, 3, '2024-08-08 01:00:11', '2024-08-08 01:00:11', 0, NULL, '2024-08-08 05:00:11', '2024-08-08 05:00:11'),
(5277, 5, '2024-08-08 01:00:11', '2024-08-08 01:00:11', 0, NULL, '2024-08-08 05:00:11', '2024-08-08 05:00:11'),
(5278, 1, '2024-08-08 01:10:08', '2024-08-08 01:10:08', 0, NULL, '2024-08-08 05:10:08', '2024-08-08 05:10:08'),
(5279, 2, '2024-08-08 01:10:09', '2024-08-08 01:10:09', 0, NULL, '2024-08-08 05:10:09', '2024-08-08 05:10:09'),
(5280, 3, '2024-08-08 01:10:09', '2024-08-08 01:10:09', 0, NULL, '2024-08-08 05:10:09', '2024-08-08 05:10:09'),
(5281, 5, '2024-08-08 01:10:11', '2024-08-08 01:10:11', 0, NULL, '2024-08-08 05:10:11', '2024-08-08 05:10:11'),
(5282, 1, '2024-08-08 01:20:09', '2024-08-08 01:20:09', 0, NULL, '2024-08-08 05:20:09', '2024-08-08 05:20:09'),
(5283, 2, '2024-08-08 01:20:09', '2024-08-08 01:20:09', 0, NULL, '2024-08-08 05:20:09', '2024-08-08 05:20:09'),
(5284, 3, '2024-08-08 01:20:10', '2024-08-08 01:20:10', 0, NULL, '2024-08-08 05:20:10', '2024-08-08 05:20:10'),
(5285, 5, '2024-08-08 01:20:10', '2024-08-08 01:20:10', 0, NULL, '2024-08-08 05:20:10', '2024-08-08 05:20:10'),
(5286, 1, '2024-08-08 01:25:13', '2024-08-08 01:25:13', 0, NULL, '2024-08-08 05:25:13', '2024-08-08 05:25:13'),
(5287, 2, '2024-08-08 01:25:13', '2024-08-08 01:25:13', 0, NULL, '2024-08-08 05:25:13', '2024-08-08 05:25:13'),
(5288, 3, '2024-08-08 01:25:13', '2024-08-08 01:25:13', 0, NULL, '2024-08-08 05:25:14', '2024-08-08 05:25:14'),
(5289, 5, '2024-08-08 01:25:14', '2024-08-08 01:25:14', 0, NULL, '2024-08-08 05:25:14', '2024-08-08 05:25:14'),
(5290, 1, '2024-08-08 01:35:08', '2024-08-08 01:35:09', 1, NULL, '2024-08-08 05:35:09', '2024-08-08 05:35:09'),
(5291, 2, '2024-08-08 01:35:09', '2024-08-08 01:35:09', 0, NULL, '2024-08-08 05:35:10', '2024-08-08 05:35:10'),
(5292, 3, '2024-08-08 01:35:10', '2024-08-08 01:35:10', 0, NULL, '2024-08-08 05:35:10', '2024-08-08 05:35:10'),
(5293, 5, '2024-08-08 01:35:10', '2024-08-08 01:35:10', 0, NULL, '2024-08-08 05:35:10', '2024-08-08 05:35:10'),
(5294, 1, '2024-08-08 01:45:07', '2024-08-08 01:45:07', 0, NULL, '2024-08-08 05:45:08', '2024-08-08 05:45:08'),
(5295, 2, '2024-08-08 01:45:08', '2024-08-08 01:45:08', 0, NULL, '2024-08-08 05:45:08', '2024-08-08 05:45:08'),
(5296, 3, '2024-08-08 01:45:09', '2024-08-08 01:45:09', 0, NULL, '2024-08-08 05:45:09', '2024-08-08 05:45:09'),
(5297, 5, '2024-08-08 01:45:09', '2024-08-08 01:45:09', 0, NULL, '2024-08-08 05:45:09', '2024-08-08 05:45:09'),
(5298, 1, '2024-08-08 01:50:09', '2024-08-08 01:50:09', 0, NULL, '2024-08-08 05:50:09', '2024-08-08 05:50:09'),
(5299, 2, '2024-08-08 01:50:09', '2024-08-08 01:50:09', 0, NULL, '2024-08-08 05:50:10', '2024-08-08 05:50:10'),
(5300, 1, '2024-08-08 01:55:10', '2024-08-08 01:55:10', 0, NULL, '2024-08-08 05:55:10', '2024-08-08 05:55:10'),
(5301, 2, '2024-08-08 01:55:10', '2024-08-08 01:55:10', 0, NULL, '2024-08-08 05:55:10', '2024-08-08 05:55:10'),
(5302, 3, '2024-08-08 01:55:10', '2024-08-08 01:55:10', 0, NULL, '2024-08-08 05:55:10', '2024-08-08 05:55:10'),
(5303, 5, '2024-08-08 01:55:11', '2024-08-08 01:55:11', 0, NULL, '2024-08-08 05:55:11', '2024-08-08 05:55:11'),
(5304, 1, '2024-08-08 02:05:07', '2024-08-08 02:05:07', 0, NULL, '2024-08-08 06:05:07', '2024-08-08 06:05:07'),
(5305, 2, '2024-08-08 02:05:07', '2024-08-08 02:05:07', 0, NULL, '2024-08-08 06:05:07', '2024-08-08 06:05:07'),
(5306, 3, '2024-08-08 02:05:08', '2024-08-08 02:05:08', 0, NULL, '2024-08-08 06:05:08', '2024-08-08 06:05:08'),
(5307, 5, '2024-08-08 02:05:08', '2024-08-08 02:05:08', 0, NULL, '2024-08-08 06:05:08', '2024-08-08 06:05:08'),
(5308, 1, '2024-08-08 02:15:04', '2024-08-08 02:15:04', 0, NULL, '2024-08-08 06:15:04', '2024-08-08 06:15:04'),
(5309, 2, '2024-08-08 02:15:05', '2024-08-08 02:15:05', 0, NULL, '2024-08-08 06:15:05', '2024-08-08 06:15:05'),
(5310, 3, '2024-08-08 02:15:05', '2024-08-08 02:15:05', 0, NULL, '2024-08-08 06:15:06', '2024-08-08 06:15:06'),
(5311, 5, '2024-08-08 02:15:06', '2024-08-08 02:15:06', 0, NULL, '2024-08-08 06:15:06', '2024-08-08 06:15:06'),
(5312, 1, '2024-08-08 02:20:05', '2024-08-08 02:20:05', 0, NULL, '2024-08-08 06:20:06', '2024-08-08 06:20:06'),
(5313, 1, '2024-08-08 02:25:06', '2024-08-08 02:25:06', 0, NULL, '2024-08-08 06:25:07', '2024-08-08 06:25:07'),
(5314, 2, '2024-08-08 02:25:07', '2024-08-08 02:25:07', 0, NULL, '2024-08-08 06:25:08', '2024-08-08 06:25:08'),
(5315, 3, '2024-08-08 02:25:08', '2024-08-08 02:25:08', 0, NULL, '2024-08-08 06:25:08', '2024-08-08 06:25:08'),
(5316, 5, '2024-08-08 02:25:08', '2024-08-08 02:25:08', 0, NULL, '2024-08-08 06:25:09', '2024-08-08 06:25:09'),
(5317, 1, '2024-08-08 02:30:07', '2024-08-08 02:30:07', 0, NULL, '2024-08-08 06:30:07', '2024-08-08 06:30:07'),
(5318, 2, '2024-08-08 02:35:04', '2024-08-08 02:35:04', 0, NULL, '2024-08-08 06:35:05', '2024-08-08 06:35:05'),
(5319, 3, '2024-08-08 02:35:05', '2024-08-08 02:35:05', 0, NULL, '2024-08-08 06:35:06', '2024-08-08 06:35:06'),
(5320, 5, '2024-08-08 02:35:06', '2024-08-08 02:35:06', 0, NULL, '2024-08-08 06:35:07', '2024-08-08 06:35:07'),
(5321, 1, '2024-08-08 02:40:08', '2024-08-08 02:40:08', 0, NULL, '2024-08-08 06:40:08', '2024-08-08 06:40:08'),
(5322, 2, '2024-08-08 02:40:09', '2024-08-08 02:40:09', 0, NULL, '2024-08-08 06:40:09', '2024-08-08 06:40:09'),
(5323, 3, '2024-08-08 02:40:11', '2024-08-08 02:40:11', 0, NULL, '2024-08-08 06:40:11', '2024-08-08 06:40:11'),
(5324, 5, '2024-08-08 02:40:12', '2024-08-08 02:40:12', 0, NULL, '2024-08-08 06:40:12', '2024-08-08 06:40:12'),
(5325, 1, '2024-08-08 02:50:06', '2024-08-08 02:50:06', 0, NULL, '2024-08-08 06:50:06', '2024-08-08 06:50:06'),
(5326, 2, '2024-08-08 02:50:06', '2024-08-08 02:50:06', 0, NULL, '2024-08-08 06:50:07', '2024-08-08 06:50:07'),
(5327, 3, '2024-08-08 02:50:07', '2024-08-08 02:50:07', 0, NULL, '2024-08-08 06:50:08', '2024-08-08 06:50:08'),
(5328, 5, '2024-08-08 02:50:08', '2024-08-08 02:50:08', 0, NULL, '2024-08-08 06:50:08', '2024-08-08 06:50:08'),
(5329, 1, '2024-08-08 03:00:11', '2024-08-08 03:00:11', 0, NULL, '2024-08-08 07:00:11', '2024-08-08 07:00:11'),
(5330, 2, '2024-08-08 03:00:12', '2024-08-08 03:00:12', 0, NULL, '2024-08-08 07:00:12', '2024-08-08 07:00:12'),
(5331, 3, '2024-08-08 03:00:12', '2024-08-08 03:00:12', 0, NULL, '2024-08-08 07:00:12', '2024-08-08 07:00:12'),
(5332, 5, '2024-08-08 03:00:13', '2024-08-08 03:00:13', 0, NULL, '2024-08-08 07:00:13', '2024-08-08 07:00:13'),
(5333, 1, '2024-08-08 03:10:05', '2024-08-08 03:10:05', 0, NULL, '2024-08-08 07:10:06', '2024-08-08 07:10:06'),
(5334, 2, '2024-08-08 03:10:06', '2024-08-08 03:10:06', 0, NULL, '2024-08-08 07:10:07', '2024-08-08 07:10:07'),
(5335, 3, '2024-08-08 03:10:07', '2024-08-08 03:10:07', 0, NULL, '2024-08-08 07:10:07', '2024-08-08 07:10:07'),
(5336, 5, '2024-08-08 03:10:08', '2024-08-08 03:10:08', 0, NULL, '2024-08-08 07:10:08', '2024-08-08 07:10:08'),
(5337, 1, '2024-08-08 03:20:03', '2024-08-08 03:20:03', 0, NULL, '2024-08-08 07:20:04', '2024-08-08 07:20:04'),
(5338, 2, '2024-08-08 03:20:04', '2024-08-08 03:20:04', 0, NULL, '2024-08-08 07:20:05', '2024-08-08 07:20:05'),
(5339, 3, '2024-08-08 03:20:05', '2024-08-08 03:20:05', 0, NULL, '2024-08-08 07:20:05', '2024-08-08 07:20:05'),
(5340, 5, '2024-08-08 03:20:06', '2024-08-08 03:20:06', 0, NULL, '2024-08-08 07:20:06', '2024-08-08 07:20:06'),
(5341, 1, '2024-08-08 03:25:04', '2024-08-08 03:25:04', 0, NULL, '2024-08-08 07:25:04', '2024-08-08 07:25:04'),
(5342, 1, '2024-08-08 03:30:08', '2024-08-08 03:30:08', 0, NULL, '2024-08-08 07:30:08', '2024-08-08 07:30:08'),
(5343, 2, '2024-08-08 03:30:09', '2024-08-08 03:30:09', 0, NULL, '2024-08-08 07:30:09', '2024-08-08 07:30:09'),
(5344, 3, '2024-08-08 03:30:09', '2024-08-08 03:30:09', 0, NULL, '2024-08-08 07:30:09', '2024-08-08 07:30:09'),
(5345, 5, '2024-08-08 03:30:10', '2024-08-08 03:30:10', 0, NULL, '2024-08-08 07:30:10', '2024-08-08 07:30:10'),
(5346, 1, '2024-08-08 03:40:03', '2024-08-08 03:40:03', 0, NULL, '2024-08-08 07:40:04', '2024-08-08 07:40:04'),
(5347, 2, '2024-08-08 03:40:06', '2024-08-08 03:40:06', 0, NULL, '2024-08-08 07:40:06', '2024-08-08 07:40:06'),
(5348, 3, '2024-08-08 03:40:07', '2024-08-08 03:40:07', 0, NULL, '2024-08-08 07:40:07', '2024-08-08 07:40:07'),
(5349, 5, '2024-08-08 03:40:07', '2024-08-08 03:40:08', 0, NULL, '2024-08-08 07:40:08', '2024-08-08 07:40:08'),
(5350, 1, '2024-08-08 03:45:07', '2024-08-08 03:45:07', 0, NULL, '2024-08-08 07:45:07', '2024-08-08 07:45:07'),
(5351, 2, '2024-08-08 03:45:07', '2024-08-08 03:45:07', 0, NULL, '2024-08-08 07:45:07', '2024-08-08 07:45:07'),
(5352, 3, '2024-08-08 03:50:05', '2024-08-08 03:50:05', 0, NULL, '2024-08-08 07:50:05', '2024-08-08 07:50:05'),
(5353, 5, '2024-08-08 03:50:06', '2024-08-08 03:50:06', 0, NULL, '2024-08-08 07:50:07', '2024-08-08 07:50:07'),
(5354, 1, '2024-08-08 03:55:06', '2024-08-08 03:55:06', 0, NULL, '2024-08-08 07:55:06', '2024-08-08 07:55:06'),
(5355, 2, '2024-08-08 03:55:06', '2024-08-08 03:55:06', 0, NULL, '2024-08-08 07:55:07', '2024-08-08 07:55:07'),
(5356, 3, '2024-08-08 03:55:07', '2024-08-08 03:55:07', 0, NULL, '2024-08-08 07:55:08', '2024-08-08 07:55:08'),
(5357, 1, '2024-08-08 04:00:08', '2024-08-08 04:00:08', 0, NULL, '2024-08-08 08:00:09', '2024-08-08 08:00:09'),
(5358, 2, '2024-08-08 04:00:09', '2024-08-08 04:00:09', 0, NULL, '2024-08-08 08:00:10', '2024-08-08 08:00:10'),
(5359, 3, '2024-08-08 04:00:10', '2024-08-08 04:00:10', 0, NULL, '2024-08-08 08:00:11', '2024-08-08 08:00:11'),
(5360, 5, '2024-08-08 04:00:11', '2024-08-08 04:00:11', 0, NULL, '2024-08-08 08:00:12', '2024-08-08 08:00:12'),
(5361, 1, '2024-08-08 04:10:06', '2024-08-08 04:10:06', 0, NULL, '2024-08-08 08:10:07', '2024-08-08 08:10:07'),
(5362, 2, '2024-08-08 04:10:07', '2024-08-08 04:10:07', 0, NULL, '2024-08-08 08:10:08', '2024-08-08 08:10:08'),
(5363, 3, '2024-08-08 04:10:08', '2024-08-08 04:10:08', 0, NULL, '2024-08-08 08:10:08', '2024-08-08 08:10:08'),
(5364, 5, '2024-08-08 04:10:09', '2024-08-08 04:10:09', 0, NULL, '2024-08-08 08:10:09', '2024-08-08 08:10:09'),
(5365, 1, '2024-08-08 04:20:03', '2024-08-08 04:20:03', 0, NULL, '2024-08-08 08:20:03', '2024-08-08 08:20:03'),
(5366, 2, '2024-08-08 04:20:04', '2024-08-08 04:20:04', 0, NULL, '2024-08-08 08:20:04', '2024-08-08 08:20:04'),
(5367, 3, '2024-08-08 04:20:05', '2024-08-08 04:20:05', 0, NULL, '2024-08-08 08:20:05', '2024-08-08 08:20:05'),
(5368, 5, '2024-08-08 04:20:05', '2024-08-08 04:20:05', 0, NULL, '2024-08-08 08:20:05', '2024-08-08 08:20:05'),
(5369, 1, '2024-08-08 04:25:06', '2024-08-08 04:25:06', 0, NULL, '2024-08-08 08:25:07', '2024-08-08 08:25:07'),
(5370, 2, '2024-08-08 04:25:08', '2024-08-08 04:25:08', 0, NULL, '2024-08-08 08:25:08', '2024-08-08 08:25:08'),
(5371, 3, '2024-08-08 04:25:08', '2024-08-08 04:25:08', 0, NULL, '2024-08-08 08:25:08', '2024-08-08 08:25:08'),
(5372, 5, '2024-08-08 04:25:09', '2024-08-08 04:25:09', 0, NULL, '2024-08-08 08:25:09', '2024-08-08 08:25:09'),
(5373, 1, '2024-08-08 04:30:07', '2024-08-08 04:30:07', 0, NULL, '2024-08-08 08:30:07', '2024-08-08 08:30:07'),
(5374, 2, '2024-08-08 04:35:07', '2024-08-08 04:35:07', 0, NULL, '2024-08-08 08:35:08', '2024-08-08 08:35:08'),
(5375, 3, '2024-08-08 04:35:08', '2024-08-08 04:35:08', 0, NULL, '2024-08-08 08:35:09', '2024-08-08 08:35:09'),
(5376, 5, '2024-08-08 04:35:10', '2024-08-08 04:35:10', 0, NULL, '2024-08-08 08:35:10', '2024-08-08 08:35:10'),
(5377, 1, '2024-08-08 04:40:08', '2024-08-08 04:40:08', 0, NULL, '2024-08-08 08:40:08', '2024-08-08 08:40:08'),
(5378, 2, '2024-08-08 04:40:09', '2024-08-08 04:40:09', 0, NULL, '2024-08-08 08:40:09', '2024-08-08 08:40:09'),
(5379, 3, '2024-08-08 04:45:06', '2024-08-08 04:45:06', 0, NULL, '2024-08-08 08:45:06', '2024-08-08 08:45:06'),
(5380, 5, '2024-08-08 04:45:07', '2024-08-08 04:45:07', 0, NULL, '2024-08-08 08:45:07', '2024-08-08 08:45:07'),
(5381, 1, '2024-08-08 04:50:06', '2024-08-08 04:50:07', 1, NULL, '2024-08-08 08:50:07', '2024-08-08 08:50:07'),
(5382, 2, '2024-08-08 04:50:08', '2024-08-08 04:50:08', 0, NULL, '2024-08-08 08:50:08', '2024-08-08 08:50:08'),
(5383, 3, '2024-08-08 04:55:03', '2024-08-08 04:55:03', 0, NULL, '2024-08-08 08:55:03', '2024-08-08 08:55:03'),
(5384, 5, '2024-08-08 04:55:04', '2024-08-08 04:55:04', 0, NULL, '2024-08-08 08:55:04', '2024-08-08 08:55:04'),
(5385, 1, '2024-08-08 05:00:05', '2024-08-08 05:00:05', 0, NULL, '2024-08-08 09:00:06', '2024-08-08 09:00:06'),
(5386, 2, '2024-08-08 05:00:06', '2024-08-08 05:00:06', 0, NULL, '2024-08-08 09:00:07', '2024-08-08 09:00:07'),
(5387, 3, '2024-08-08 05:00:08', '2024-08-08 05:00:08', 0, NULL, '2024-08-08 09:00:11', '2024-08-08 09:00:11'),
(5388, 5, '2024-08-08 05:00:11', '2024-08-08 05:00:11', 0, NULL, '2024-08-08 09:00:11', '2024-08-08 09:00:11'),
(5389, 1, '2024-08-08 05:05:07', '2024-08-08 05:05:07', 0, NULL, '2024-08-08 09:05:07', '2024-08-08 09:05:07'),
(5390, 2, '2024-08-08 05:05:08', '2024-08-08 05:05:08', 0, NULL, '2024-08-08 09:05:08', '2024-08-08 09:05:08'),
(5391, 3, '2024-08-08 05:10:07', '2024-08-08 05:10:08', 1, NULL, '2024-08-08 09:10:09', '2024-08-08 09:10:09'),
(5392, 5, '2024-08-08 05:10:10', '2024-08-08 05:10:10', 0, NULL, '2024-08-08 09:10:10', '2024-08-08 09:10:10'),
(5393, 1, '2024-08-08 05:15:03', '2024-08-08 05:15:03', 0, NULL, '2024-08-08 09:15:03', '2024-08-08 09:15:03'),
(5394, 2, '2024-08-08 05:15:05', '2024-08-08 05:15:05', 0, NULL, '2024-08-08 09:15:07', '2024-08-08 09:15:07'),
(5395, 1, '2024-08-08 05:20:05', '2024-08-08 05:20:05', 0, NULL, '2024-08-08 09:20:05', '2024-08-08 09:20:05'),
(5396, 3, '2024-08-08 05:20:06', '2024-08-08 05:20:06', 0, NULL, '2024-08-08 09:20:10', '2024-08-08 09:20:10'),
(5397, 5, '2024-08-08 05:20:11', '2024-08-08 05:20:11', 0, NULL, '2024-08-08 09:20:11', '2024-08-08 09:20:11'),
(5398, 2, '2024-08-08 05:25:03', '2024-08-08 05:25:03', 0, NULL, '2024-08-08 09:25:04', '2024-08-08 09:25:04'),
(5399, 1, '2024-08-08 05:30:09', '2024-08-08 05:30:09', 0, NULL, '2024-08-08 09:30:10', '2024-08-08 09:30:10'),
(5400, 2, '2024-08-08 05:30:10', '2024-08-08 05:30:10', 0, NULL, '2024-08-08 09:30:10', '2024-08-08 09:30:10'),
(5401, 3, '2024-08-08 05:30:10', '2024-08-08 05:30:10', 0, NULL, '2024-08-08 09:30:11', '2024-08-08 09:30:11'),
(5402, 5, '2024-08-08 05:30:11', '2024-08-08 05:30:11', 0, NULL, '2024-08-08 09:30:11', '2024-08-08 09:30:11'),
(5403, 1, '2024-08-08 05:40:04', '2024-08-08 05:40:04', 0, NULL, '2024-08-08 09:40:04', '2024-08-08 09:40:04'),
(5404, 2, '2024-08-08 05:40:05', '2024-08-08 05:40:05', 0, NULL, '2024-08-08 09:40:05', '2024-08-08 09:40:05'),
(5405, 3, '2024-08-08 05:40:05', '2024-08-08 05:40:05', 0, NULL, '2024-08-08 09:40:05', '2024-08-08 09:40:05'),
(5406, 5, '2024-08-08 05:40:06', '2024-08-08 05:40:06', 0, NULL, '2024-08-08 09:40:06', '2024-08-08 09:40:06'),
(5407, 1, '2024-08-08 05:50:07', '2024-08-08 05:50:07', 0, NULL, '2024-08-08 09:50:08', '2024-08-08 09:50:08'),
(5408, 2, '2024-08-08 05:50:10', '2024-08-08 05:50:10', 0, NULL, '2024-08-08 09:50:11', '2024-08-08 09:50:11'),
(5409, 3, '2024-08-08 05:50:11', '2024-08-08 05:50:11', 0, NULL, '2024-08-08 09:50:11', '2024-08-08 09:50:11'),
(5410, 5, '2024-08-08 05:50:11', '2024-08-08 05:50:11', 0, NULL, '2024-08-08 09:50:11', '2024-08-08 09:50:11'),
(5411, 1, '2024-08-08 06:00:07', '2024-08-08 06:00:07', 0, NULL, '2024-08-08 10:00:08', '2024-08-08 10:00:08'),
(5412, 2, '2024-08-08 06:00:08', '2024-08-08 06:00:08', 0, NULL, '2024-08-08 10:00:08', '2024-08-08 10:00:08'),
(5413, 3, '2024-08-08 06:00:09', '2024-08-08 06:00:09', 0, NULL, '2024-08-08 10:00:09', '2024-08-08 10:00:09'),
(5414, 5, '2024-08-08 06:00:09', '2024-08-08 06:00:09', 0, NULL, '2024-08-08 10:00:10', '2024-08-08 10:00:10'),
(5415, 1, '2024-08-08 06:10:08', '2024-08-08 06:10:08', 0, NULL, '2024-08-08 10:10:08', '2024-08-08 10:10:08'),
(5416, 2, '2024-08-08 06:10:08', '2024-08-08 06:10:08', 0, NULL, '2024-08-08 10:10:09', '2024-08-08 10:10:09'),
(5417, 3, '2024-08-08 06:10:09', '2024-08-08 06:10:09', 0, NULL, '2024-08-08 10:10:10', '2024-08-08 10:10:10'),
(5418, 5, '2024-08-08 06:10:10', '2024-08-08 06:10:10', 0, NULL, '2024-08-08 10:10:10', '2024-08-08 10:10:10'),
(5419, 1, '2024-08-08 06:20:04', '2024-08-08 06:20:04', 0, NULL, '2024-08-08 10:20:05', '2024-08-08 10:20:05'),
(5420, 2, '2024-08-08 06:20:05', '2024-08-08 06:20:05', 0, NULL, '2024-08-08 10:20:05', '2024-08-08 10:20:05'),
(5421, 3, '2024-08-08 06:20:06', '2024-08-08 06:20:06', 0, NULL, '2024-08-08 10:20:06', '2024-08-08 10:20:06'),
(5422, 5, '2024-08-08 06:20:07', '2024-08-08 06:20:07', 0, NULL, '2024-08-08 10:20:07', '2024-08-08 10:20:07'),
(5423, 1, '2024-08-08 06:30:08', '2024-08-08 06:30:08', 0, NULL, '2024-08-08 10:30:08', '2024-08-08 10:30:08'),
(5424, 2, '2024-08-08 06:30:09', '2024-08-08 06:30:09', 0, NULL, '2024-08-08 10:30:09', '2024-08-08 10:30:09'),
(5425, 3, '2024-08-08 06:30:09', '2024-08-08 06:30:09', 0, NULL, '2024-08-08 10:30:09', '2024-08-08 10:30:09'),
(5426, 5, '2024-08-08 06:30:09', '2024-08-08 06:30:09', 0, NULL, '2024-08-08 10:30:10', '2024-08-08 10:30:10'),
(5427, 1, '2024-08-08 06:40:04', '2024-08-08 06:40:04', 0, NULL, '2024-08-08 10:40:05', '2024-08-08 10:40:05'),
(5428, 2, '2024-08-08 06:40:05', '2024-08-08 06:40:05', 0, NULL, '2024-08-08 10:40:06', '2024-08-08 10:40:06'),
(5429, 3, '2024-08-08 06:40:07', '2024-08-08 06:40:07', 0, NULL, '2024-08-08 10:40:07', '2024-08-08 10:40:07'),
(5430, 5, '2024-08-08 06:40:08', '2024-08-08 06:40:08', 0, NULL, '2024-08-08 10:40:09', '2024-08-08 10:40:09'),
(5431, 1, '2024-08-08 06:45:05', '2024-08-08 06:45:05', 0, NULL, '2024-08-08 10:45:05', '2024-08-08 10:45:05'),
(5432, 1, '2024-08-08 06:50:13', '2024-08-08 06:50:13', 0, NULL, '2024-08-08 10:50:13', '2024-08-08 10:50:13'),
(5433, 2, '2024-08-08 06:50:14', '2024-08-08 06:50:14', 0, NULL, '2024-08-08 10:50:14', '2024-08-08 10:50:14'),
(5434, 3, '2024-08-08 06:50:14', '2024-08-08 06:50:14', 0, NULL, '2024-08-08 10:50:14', '2024-08-08 10:50:14'),
(5435, 5, '2024-08-08 06:50:14', '2024-08-08 06:50:14', 0, NULL, '2024-08-08 10:50:14', '2024-08-08 10:50:14'),
(5436, 1, '2024-08-08 07:00:12', '2024-08-08 07:00:12', 0, NULL, '2024-08-08 11:00:13', '2024-08-08 11:00:13'),
(5437, 2, '2024-08-08 07:00:13', '2024-08-08 07:00:13', 0, NULL, '2024-08-08 11:00:13', '2024-08-08 11:00:13'),
(5438, 3, '2024-08-08 07:00:13', '2024-08-08 07:00:13', 0, NULL, '2024-08-08 11:00:14', '2024-08-08 11:00:14'),
(5439, 5, '2024-08-08 07:00:14', '2024-08-08 07:00:14', 0, NULL, '2024-08-08 11:00:14', '2024-08-08 11:00:14'),
(5440, 1, '2024-08-08 07:10:04', '2024-08-08 07:10:04', 0, NULL, '2024-08-08 11:10:04', '2024-08-08 11:10:04'),
(5441, 2, '2024-08-08 07:10:04', '2024-08-08 07:10:04', 0, NULL, '2024-08-08 11:10:04', '2024-08-08 11:10:04'),
(5442, 3, '2024-08-08 07:10:05', '2024-08-08 07:10:05', 0, NULL, '2024-08-08 11:10:05', '2024-08-08 11:10:05'),
(5443, 5, '2024-08-08 07:10:06', '2024-08-08 07:10:06', 0, NULL, '2024-08-08 11:10:06', '2024-08-08 11:10:06'),
(5444, 1, '2024-08-08 07:15:08', '2024-08-08 07:15:08', 0, NULL, '2024-08-08 11:15:08', '2024-08-08 11:15:08'),
(5445, 2, '2024-08-08 07:15:09', '2024-08-08 07:15:09', 0, NULL, '2024-08-08 11:15:09', '2024-08-08 11:15:09'),
(5446, 3, '2024-08-08 07:15:09', '2024-08-08 07:15:09', 0, NULL, '2024-08-08 11:15:09', '2024-08-08 11:15:09');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(5447, 5, '2024-08-08 07:15:09', '2024-08-08 07:15:09', 0, NULL, '2024-08-08 11:15:10', '2024-08-08 11:15:10'),
(5448, 1, '2024-08-08 07:25:06', '2024-08-08 07:25:06', 0, NULL, '2024-08-08 11:25:06', '2024-08-08 11:25:06'),
(5449, 2, '2024-08-08 07:25:07', '2024-08-08 07:25:07', 0, NULL, '2024-08-08 11:25:07', '2024-08-08 11:25:07'),
(5450, 3, '2024-08-08 07:25:07', '2024-08-08 07:25:07', 0, NULL, '2024-08-08 11:25:08', '2024-08-08 11:25:08'),
(5451, 5, '2024-08-08 07:25:08', '2024-08-08 07:25:08', 0, NULL, '2024-08-08 11:25:08', '2024-08-08 11:25:08'),
(5452, 1, '2024-08-08 07:35:06', '2024-08-08 07:35:06', 0, NULL, '2024-08-08 11:35:07', '2024-08-08 11:35:07'),
(5453, 2, '2024-08-08 07:35:07', '2024-08-08 07:35:07', 0, NULL, '2024-08-08 11:35:07', '2024-08-08 11:35:07'),
(5454, 3, '2024-08-08 07:35:08', '2024-08-08 07:35:08', 0, NULL, '2024-08-08 11:35:08', '2024-08-08 11:35:08'),
(5455, 5, '2024-08-08 07:35:08', '2024-08-08 07:35:08', 0, NULL, '2024-08-08 11:35:08', '2024-08-08 11:35:08'),
(5456, 1, '2024-08-08 07:40:10', '2024-08-08 07:40:10', 0, NULL, '2024-08-08 11:40:10', '2024-08-08 11:40:10'),
(5457, 2, '2024-08-08 07:40:10', '2024-08-08 07:40:10', 0, NULL, '2024-08-08 11:40:10', '2024-08-08 11:40:10'),
(5458, 3, '2024-08-08 07:40:10', '2024-08-08 07:40:10', 0, NULL, '2024-08-08 11:40:11', '2024-08-08 11:40:11'),
(5459, 5, '2024-08-08 07:40:11', '2024-08-08 07:40:11', 0, NULL, '2024-08-08 11:40:11', '2024-08-08 11:40:11'),
(5460, 1, '2024-08-08 07:50:06', '2024-08-08 07:50:08', 1, NULL, '2024-08-08 11:50:11', '2024-08-08 11:50:11'),
(5461, 2, '2024-08-08 07:50:11', '2024-08-08 07:50:11', 0, NULL, '2024-08-08 11:50:11', '2024-08-08 11:50:11'),
(5462, 3, '2024-08-08 07:50:11', '2024-08-08 07:50:11', 0, NULL, '2024-08-08 11:50:11', '2024-08-08 11:50:11'),
(5463, 5, '2024-08-08 07:50:11', '2024-08-08 07:50:11', 0, NULL, '2024-08-08 11:50:11', '2024-08-08 11:50:11'),
(5464, 1, '2024-08-08 08:00:07', '2024-08-08 08:00:07', 0, NULL, '2024-08-08 12:00:07', '2024-08-08 12:00:07'),
(5465, 2, '2024-08-08 08:00:08', '2024-08-08 08:00:08', 0, NULL, '2024-08-08 12:00:08', '2024-08-08 12:00:08'),
(5466, 3, '2024-08-08 08:00:08', '2024-08-08 08:00:08', 0, NULL, '2024-08-08 12:00:09', '2024-08-08 12:00:09'),
(5467, 5, '2024-08-08 08:00:09', '2024-08-08 08:00:09', 0, NULL, '2024-08-08 12:00:09', '2024-08-08 12:00:09'),
(5468, 1, '2024-08-08 08:10:04', '2024-08-08 08:10:04', 0, NULL, '2024-08-08 12:10:04', '2024-08-08 12:10:04'),
(5469, 2, '2024-08-08 08:10:05', '2024-08-08 08:10:05', 0, NULL, '2024-08-08 12:10:05', '2024-08-08 12:10:05'),
(5470, 3, '2024-08-08 08:10:05', '2024-08-08 08:10:05', 0, NULL, '2024-08-08 12:10:06', '2024-08-08 12:10:06'),
(5471, 5, '2024-08-08 08:10:06', '2024-08-08 08:10:06', 0, NULL, '2024-08-08 12:10:06', '2024-08-08 12:10:06'),
(5472, 1, '2024-08-08 08:15:08', '2024-08-08 08:15:08', 0, NULL, '2024-08-08 12:15:09', '2024-08-08 12:15:09'),
(5473, 2, '2024-08-08 08:15:09', '2024-08-08 08:15:09', 0, NULL, '2024-08-08 12:15:09', '2024-08-08 12:15:09'),
(5474, 3, '2024-08-08 08:15:09', '2024-08-08 08:15:09', 0, NULL, '2024-08-08 12:15:10', '2024-08-08 12:15:10'),
(5475, 5, '2024-08-08 08:15:10', '2024-08-08 08:15:11', 0, NULL, '2024-08-08 12:15:11', '2024-08-08 12:15:11'),
(5476, 1, '2024-08-08 08:25:10', '2024-08-08 08:25:10', 0, NULL, '2024-08-08 12:25:10', '2024-08-08 12:25:10'),
(5477, 2, '2024-08-08 08:25:10', '2024-08-08 08:25:10', 0, NULL, '2024-08-08 12:25:10', '2024-08-08 12:25:10'),
(5478, 3, '2024-08-08 08:25:11', '2024-08-08 08:25:11', 0, NULL, '2024-08-08 12:25:11', '2024-08-08 12:25:11'),
(5479, 5, '2024-08-08 08:25:11', '2024-08-08 08:25:11', 0, NULL, '2024-08-08 12:25:11', '2024-08-08 12:25:11'),
(5480, 1, '2024-08-08 08:35:05', '2024-08-08 08:35:05', 0, NULL, '2024-08-08 12:35:05', '2024-08-08 12:35:05'),
(5481, 2, '2024-08-08 08:35:06', '2024-08-08 08:35:06', 0, NULL, '2024-08-08 12:35:06', '2024-08-08 12:35:06'),
(5482, 3, '2024-08-08 08:35:06', '2024-08-08 08:35:06', 0, NULL, '2024-08-08 12:35:08', '2024-08-08 12:35:08'),
(5483, 5, '2024-08-08 08:35:08', '2024-08-08 08:35:08', 0, NULL, '2024-08-08 12:35:08', '2024-08-08 12:35:08'),
(5484, 1, '2024-08-08 08:45:08', '2024-08-08 08:45:08', 0, NULL, '2024-08-08 12:45:08', '2024-08-08 12:45:08'),
(5485, 2, '2024-08-08 08:45:09', '2024-08-08 08:45:09', 0, NULL, '2024-08-08 12:45:09', '2024-08-08 12:45:09'),
(5486, 3, '2024-08-08 08:45:09', '2024-08-08 08:45:09', 0, NULL, '2024-08-08 12:45:10', '2024-08-08 12:45:10'),
(5487, 5, '2024-08-08 08:45:10', '2024-08-08 08:45:10', 0, NULL, '2024-08-08 12:45:10', '2024-08-08 12:45:10'),
(5488, 1, '2024-08-08 08:55:04', '2024-08-08 08:55:04', 0, NULL, '2024-08-08 12:55:04', '2024-08-08 12:55:04'),
(5489, 2, '2024-08-08 08:55:04', '2024-08-08 08:55:04', 0, NULL, '2024-08-08 12:55:05', '2024-08-08 12:55:05'),
(5490, 3, '2024-08-08 08:55:05', '2024-08-08 08:55:05', 0, NULL, '2024-08-08 12:55:05', '2024-08-08 12:55:05'),
(5491, 5, '2024-08-08 08:55:06', '2024-08-08 08:55:06', 0, NULL, '2024-08-08 12:55:06', '2024-08-08 12:55:06'),
(5492, 1, '2024-08-08 09:00:08', '2024-08-08 09:00:08', 0, NULL, '2024-08-08 13:00:09', '2024-08-08 13:00:09'),
(5493, 2, '2024-08-08 09:00:09', '2024-08-08 09:00:09', 0, NULL, '2024-08-08 13:00:10', '2024-08-08 13:00:10'),
(5494, 3, '2024-08-08 09:00:10', '2024-08-08 09:00:10', 0, NULL, '2024-08-08 13:00:10', '2024-08-08 13:00:10'),
(5495, 5, '2024-08-08 09:00:10', '2024-08-08 09:00:10', 0, NULL, '2024-08-08 13:00:11', '2024-08-08 13:00:11'),
(5496, 1, '2024-08-08 09:10:03', '2024-08-08 09:10:03', 0, NULL, '2024-08-08 13:10:04', '2024-08-08 13:10:04'),
(5497, 2, '2024-08-08 09:10:04', '2024-08-08 09:10:04', 0, NULL, '2024-08-08 13:10:08', '2024-08-08 13:10:08'),
(5498, 3, '2024-08-08 09:10:08', '2024-08-08 09:10:08', 0, NULL, '2024-08-08 13:10:08', '2024-08-08 13:10:08'),
(5499, 5, '2024-08-08 09:10:09', '2024-08-08 09:10:09', 0, NULL, '2024-08-08 13:10:09', '2024-08-08 13:10:09'),
(5500, 1, '2024-08-08 09:20:07', '2024-08-08 09:20:07', 0, NULL, '2024-08-08 13:20:08', '2024-08-08 13:20:08'),
(5501, 2, '2024-08-08 09:20:08', '2024-08-08 09:20:08', 0, NULL, '2024-08-08 13:20:08', '2024-08-08 13:20:08'),
(5502, 3, '2024-08-08 09:20:09', '2024-08-08 09:20:09', 0, NULL, '2024-08-08 13:20:09', '2024-08-08 13:20:09'),
(5503, 5, '2024-08-08 09:20:09', '2024-08-08 09:20:09', 0, NULL, '2024-08-08 13:20:09', '2024-08-08 13:20:09'),
(5504, 1, '2024-08-08 09:30:06', '2024-08-08 09:30:06', 0, NULL, '2024-08-08 13:30:06', '2024-08-08 13:30:06'),
(5505, 2, '2024-08-08 09:30:06', '2024-08-08 09:30:06', 0, NULL, '2024-08-08 13:30:07', '2024-08-08 13:30:07'),
(5506, 3, '2024-08-08 09:30:07', '2024-08-08 09:30:07', 0, NULL, '2024-08-08 13:30:07', '2024-08-08 13:30:07'),
(5507, 5, '2024-08-08 09:30:08', '2024-08-08 09:30:08', 0, NULL, '2024-08-08 13:30:08', '2024-08-08 13:30:08'),
(5508, 1, '2024-08-08 09:35:08', '2024-08-08 09:35:08', 0, NULL, '2024-08-08 13:35:09', '2024-08-08 13:35:09'),
(5509, 2, '2024-08-08 09:35:09', '2024-08-08 09:35:09', 0, NULL, '2024-08-08 13:35:09', '2024-08-08 13:35:09'),
(5510, 3, '2024-08-08 09:35:09', '2024-08-08 09:35:09', 0, NULL, '2024-08-08 13:35:09', '2024-08-08 13:35:09'),
(5511, 5, '2024-08-08 09:40:03', '2024-08-08 09:40:03', 0, NULL, '2024-08-08 13:40:03', '2024-08-08 13:40:03'),
(5512, 1, '2024-08-08 09:45:05', '2024-08-08 09:45:05', 0, NULL, '2024-08-08 13:45:06', '2024-08-08 13:45:06'),
(5513, 2, '2024-08-08 09:45:06', '2024-08-08 09:45:06', 0, NULL, '2024-08-08 13:45:06', '2024-08-08 13:45:06'),
(5514, 3, '2024-08-08 09:45:07', '2024-08-08 09:45:07', 0, NULL, '2024-08-08 13:45:07', '2024-08-08 13:45:07'),
(5515, 5, '2024-08-08 09:45:07', '2024-08-08 09:45:07', 0, NULL, '2024-08-08 13:45:08', '2024-08-08 13:45:08'),
(5516, 1, '2024-08-08 09:55:03', '2024-08-08 09:55:03', 0, NULL, '2024-08-08 13:55:03', '2024-08-08 13:55:03'),
(5517, 2, '2024-08-08 09:55:03', '2024-08-08 09:55:03', 0, NULL, '2024-08-08 13:55:04', '2024-08-08 13:55:04'),
(5518, 3, '2024-08-08 09:55:04', '2024-08-08 09:55:04', 0, NULL, '2024-08-08 13:55:04', '2024-08-08 13:55:04'),
(5519, 5, '2024-08-08 09:55:04', '2024-08-08 09:55:04', 0, NULL, '2024-08-08 13:55:05', '2024-08-08 13:55:05'),
(5520, 1, '2024-08-08 10:00:07', '2024-08-08 10:00:07', 0, NULL, '2024-08-08 14:00:07', '2024-08-08 14:00:07'),
(5521, 2, '2024-08-08 10:00:08', '2024-08-08 10:00:08', 0, NULL, '2024-08-08 14:00:09', '2024-08-08 14:00:09'),
(5522, 3, '2024-08-08 10:00:09', '2024-08-08 10:00:09', 0, NULL, '2024-08-08 14:00:09', '2024-08-08 14:00:09'),
(5523, 5, '2024-08-08 10:00:10', '2024-08-08 10:00:10', 0, NULL, '2024-08-08 14:00:10', '2024-08-08 14:00:10'),
(5524, 1, '2024-08-08 10:10:04', '2024-08-08 10:10:04', 0, NULL, '2024-08-08 14:10:05', '2024-08-08 14:10:05'),
(5525, 2, '2024-08-08 10:10:05', '2024-08-08 10:10:05', 0, NULL, '2024-08-08 14:10:06', '2024-08-08 14:10:06'),
(5526, 3, '2024-08-08 10:10:06', '2024-08-08 10:10:06', 0, NULL, '2024-08-08 14:10:06', '2024-08-08 14:10:06'),
(5527, 5, '2024-08-08 10:10:07', '2024-08-08 10:10:07', 0, NULL, '2024-08-08 14:10:07', '2024-08-08 14:10:07'),
(5528, 1, '2024-08-08 10:15:06', '2024-08-08 10:15:06', 0, NULL, '2024-08-08 14:15:06', '2024-08-08 14:15:06'),
(5529, 2, '2024-08-08 10:15:07', '2024-08-08 10:15:07', 0, NULL, '2024-08-08 14:15:07', '2024-08-08 14:15:07'),
(5530, 1, '2024-08-08 10:20:12', '2024-08-08 10:20:13', 0, NULL, '2024-08-08 14:20:13', '2024-08-08 14:20:13'),
(5531, 3, '2024-08-08 10:20:13', '2024-08-08 10:20:13', 0, NULL, '2024-08-08 14:20:13', '2024-08-08 14:20:13'),
(5532, 5, '2024-08-08 10:20:13', '2024-08-08 10:20:13', 0, NULL, '2024-08-08 14:20:13', '2024-08-08 14:20:13'),
(5533, 2, '2024-08-08 10:25:06', '2024-08-08 10:25:06', 0, NULL, '2024-08-08 14:25:06', '2024-08-08 14:25:06'),
(5534, 1, '2024-08-08 10:30:04', '2024-08-08 10:30:04', 0, NULL, '2024-08-08 14:30:04', '2024-08-08 14:30:04'),
(5535, 3, '2024-08-08 10:30:05', '2024-08-08 10:30:05', 0, NULL, '2024-08-08 14:30:05', '2024-08-08 14:30:05'),
(5536, 5, '2024-08-08 10:30:06', '2024-08-08 10:30:06', 0, NULL, '2024-08-08 14:30:06', '2024-08-08 14:30:06'),
(5537, 2, '2024-08-08 10:35:06', '2024-08-08 10:35:06', 0, NULL, '2024-08-08 14:35:07', '2024-08-08 14:35:07'),
(5538, 1, '2024-08-08 10:40:05', '2024-08-08 10:40:05', 0, NULL, '2024-08-08 14:40:06', '2024-08-08 14:40:06'),
(5539, 3, '2024-08-08 10:40:06', '2024-08-08 10:40:06', 0, NULL, '2024-08-08 14:40:06', '2024-08-08 14:40:06'),
(5540, 5, '2024-08-08 10:40:07', '2024-08-08 10:40:08', 0, NULL, '2024-08-08 14:40:08', '2024-08-08 14:40:08'),
(5541, 2, '2024-08-08 10:45:05', '2024-08-08 10:45:05', 0, NULL, '2024-08-08 14:45:06', '2024-08-08 14:45:06'),
(5542, 1, '2024-08-08 10:50:04', '2024-08-08 10:50:04', 0, NULL, '2024-08-08 14:50:04', '2024-08-08 14:50:04'),
(5543, 3, '2024-08-08 10:50:05', '2024-08-08 10:50:05', 0, NULL, '2024-08-08 14:50:05', '2024-08-08 14:50:05'),
(5544, 5, '2024-08-08 10:50:05', '2024-08-08 10:50:05', 0, NULL, '2024-08-08 14:50:06', '2024-08-08 14:50:06'),
(5545, 1, '2024-08-08 10:55:06', '2024-08-08 10:55:06', 0, NULL, '2024-08-08 14:55:07', '2024-08-08 14:55:07'),
(5546, 2, '2024-08-08 10:55:07', '2024-08-08 10:55:07', 0, NULL, '2024-08-08 14:55:08', '2024-08-08 14:55:08'),
(5547, 3, '2024-08-08 10:55:09', '2024-08-08 10:55:09', 0, NULL, '2024-08-08 14:55:09', '2024-08-08 14:55:09'),
(5548, 5, '2024-08-08 10:55:09', '2024-08-08 10:55:09', 0, NULL, '2024-08-08 14:55:09', '2024-08-08 14:55:09'),
(5549, 1, '2024-08-08 11:05:08', '2024-08-08 11:05:08', 0, NULL, '2024-08-08 15:05:09', '2024-08-08 15:05:09'),
(5550, 2, '2024-08-08 11:05:09', '2024-08-08 11:05:09', 0, NULL, '2024-08-08 15:05:09', '2024-08-08 15:05:09'),
(5551, 3, '2024-08-08 11:05:09', '2024-08-08 11:05:09', 0, NULL, '2024-08-08 15:05:09', '2024-08-08 15:05:09'),
(5552, 5, '2024-08-08 11:05:10', '2024-08-08 11:05:10', 0, NULL, '2024-08-08 15:05:10', '2024-08-08 15:05:10'),
(5553, 1, '2024-08-08 11:15:05', '2024-08-08 11:15:05', 0, NULL, '2024-08-08 15:15:06', '2024-08-08 15:15:06'),
(5554, 2, '2024-08-08 11:15:07', '2024-08-08 11:15:07', 0, NULL, '2024-08-08 15:15:07', '2024-08-08 15:15:07'),
(5555, 3, '2024-08-08 11:15:07', '2024-08-08 11:15:07', 0, NULL, '2024-08-08 15:15:08', '2024-08-08 15:15:08'),
(5556, 5, '2024-08-08 11:15:08', '2024-08-08 11:15:08', 0, NULL, '2024-08-08 15:15:08', '2024-08-08 15:15:08'),
(5557, 1, '2024-08-08 11:20:08', '2024-08-08 11:20:08', 0, NULL, '2024-08-08 15:20:08', '2024-08-08 15:20:08'),
(5558, 2, '2024-08-08 11:20:09', '2024-08-08 11:20:09', 0, NULL, '2024-08-08 15:20:09', '2024-08-08 15:20:09'),
(5559, 3, '2024-08-08 11:20:09', '2024-08-08 11:20:09', 0, NULL, '2024-08-08 15:20:09', '2024-08-08 15:20:09'),
(5560, 5, '2024-08-08 11:25:03', '2024-08-08 11:25:03', 0, NULL, '2024-08-08 15:25:03', '2024-08-08 15:25:03'),
(5561, 1, '2024-08-08 11:30:03', '2024-08-08 11:30:10', 6, NULL, '2024-08-08 15:30:11', '2024-08-08 15:30:11'),
(5562, 2, '2024-08-08 11:30:11', '2024-08-08 11:30:11', 0, NULL, '2024-08-08 15:30:11', '2024-08-08 15:30:11'),
(5563, 3, '2024-08-08 11:30:11', '2024-08-08 11:30:11', 0, NULL, '2024-08-08 15:30:11', '2024-08-08 15:30:11'),
(5564, 5, '2024-08-08 11:35:06', '2024-08-08 11:35:06', 0, NULL, '2024-08-08 15:35:07', '2024-08-08 15:35:07'),
(5565, 1, '2024-08-08 11:40:03', '2024-08-08 11:40:03', 0, NULL, '2024-08-08 15:40:04', '2024-08-08 15:40:04'),
(5566, 2, '2024-08-08 11:40:04', '2024-08-08 11:40:04', 0, NULL, '2024-08-08 15:40:05', '2024-08-08 15:40:05'),
(5567, 3, '2024-08-08 11:40:06', '2024-08-08 11:40:06', 0, NULL, '2024-08-08 15:40:06', '2024-08-08 15:40:06'),
(5568, 1, '2024-08-08 11:45:04', '2024-08-08 11:45:04', 0, NULL, '2024-08-08 15:45:04', '2024-08-08 15:45:04'),
(5569, 5, '2024-08-08 11:45:04', '2024-08-08 11:45:05', 0, NULL, '2024-08-08 15:45:05', '2024-08-08 15:45:05'),
(5570, 1, '2024-08-08 11:50:07', '2024-08-08 11:50:07', 0, NULL, '2024-08-08 15:50:07', '2024-08-08 15:50:07'),
(5571, 2, '2024-08-08 11:50:08', '2024-08-08 11:50:08', 0, NULL, '2024-08-08 15:50:08', '2024-08-08 15:50:08'),
(5572, 3, '2024-08-08 11:50:08', '2024-08-08 11:50:08', 0, NULL, '2024-08-08 15:50:08', '2024-08-08 15:50:08'),
(5573, 5, '2024-08-08 11:50:09', '2024-08-08 11:50:09', 0, NULL, '2024-08-08 15:50:09', '2024-08-08 15:50:09'),
(5574, 1, '2024-08-08 12:00:10', '2024-08-08 12:00:10', 0, NULL, '2024-08-08 16:00:10', '2024-08-08 16:00:10'),
(5575, 2, '2024-08-08 12:00:11', '2024-08-08 12:00:11', 0, NULL, '2024-08-08 16:00:11', '2024-08-08 16:00:11'),
(5576, 3, '2024-08-08 12:00:11', '2024-08-08 12:00:11', 0, NULL, '2024-08-08 16:00:12', '2024-08-08 16:00:12'),
(5577, 5, '2024-08-08 12:00:12', '2024-08-08 12:00:12', 0, NULL, '2024-08-08 16:00:12', '2024-08-08 16:00:12'),
(5578, 1, '2024-08-08 12:10:05', '2024-08-08 12:10:05', 0, NULL, '2024-08-08 16:10:05', '2024-08-08 16:10:05'),
(5579, 2, '2024-08-08 12:10:06', '2024-08-08 12:10:06', 0, NULL, '2024-08-08 16:10:06', '2024-08-08 16:10:06'),
(5580, 3, '2024-08-08 12:10:06', '2024-08-08 12:10:06', 0, NULL, '2024-08-08 16:10:07', '2024-08-08 16:10:07'),
(5581, 5, '2024-08-08 12:10:07', '2024-08-08 12:10:07', 0, NULL, '2024-08-08 16:10:07', '2024-08-08 16:10:07'),
(5582, 1, '2024-08-08 12:15:06', '2024-08-08 12:15:06', 0, NULL, '2024-08-08 16:15:07', '2024-08-08 16:15:07'),
(5583, 1, '2024-08-08 12:20:10', '2024-08-08 12:20:10', 0, NULL, '2024-08-08 16:20:10', '2024-08-08 16:20:10'),
(5584, 2, '2024-08-08 12:20:10', '2024-08-08 12:20:10', 0, NULL, '2024-08-08 16:20:11', '2024-08-08 16:20:11'),
(5585, 3, '2024-08-08 12:20:11', '2024-08-08 12:20:11', 0, NULL, '2024-08-08 16:20:11', '2024-08-08 16:20:11'),
(5586, 5, '2024-08-08 12:20:11', '2024-08-08 12:20:11', 0, NULL, '2024-08-08 16:20:11', '2024-08-08 16:20:11'),
(5587, 1, '2024-08-08 12:30:03', '2024-08-08 12:30:03', 0, NULL, '2024-08-08 16:30:04', '2024-08-08 16:30:04'),
(5588, 2, '2024-08-08 12:30:04', '2024-08-08 12:30:04', 0, NULL, '2024-08-08 16:30:04', '2024-08-08 16:30:04'),
(5589, 3, '2024-08-08 12:30:05', '2024-08-08 12:30:05', 0, NULL, '2024-08-08 16:30:05', '2024-08-08 16:30:05'),
(5590, 5, '2024-08-08 12:30:05', '2024-08-08 12:30:06', 0, NULL, '2024-08-08 16:30:06', '2024-08-08 16:30:06'),
(5591, 1, '2024-08-08 12:35:06', '2024-08-08 12:35:06', 0, NULL, '2024-08-08 16:35:06', '2024-08-08 16:35:06'),
(5592, 2, '2024-08-08 12:35:06', '2024-08-08 12:35:06', 0, NULL, '2024-08-08 16:35:07', '2024-08-08 16:35:07'),
(5593, 3, '2024-08-08 12:35:07', '2024-08-08 12:35:07', 0, NULL, '2024-08-08 16:35:08', '2024-08-08 16:35:08'),
(5594, 5, '2024-08-08 12:40:05', '2024-08-08 12:40:05', 0, NULL, '2024-08-08 16:40:05', '2024-08-08 16:40:05'),
(5595, 1, '2024-08-08 12:45:06', '2024-08-08 12:45:06', 0, NULL, '2024-08-08 16:45:06', '2024-08-08 16:45:06'),
(5596, 2, '2024-08-08 12:45:06', '2024-08-08 12:45:06', 0, NULL, '2024-08-08 16:45:07', '2024-08-08 16:45:07'),
(5597, 3, '2024-08-08 12:45:07', '2024-08-08 12:45:07', 0, NULL, '2024-08-08 16:45:07', '2024-08-08 16:45:07'),
(5598, 5, '2024-08-08 12:45:08', '2024-08-08 12:45:08', 0, NULL, '2024-08-08 16:45:08', '2024-08-08 16:45:08'),
(5599, 1, '2024-08-08 12:55:07', '2024-08-08 12:55:07', 0, NULL, '2024-08-08 16:55:07', '2024-08-08 16:55:07'),
(5600, 2, '2024-08-08 12:55:07', '2024-08-08 12:55:07', 0, NULL, '2024-08-08 16:55:08', '2024-08-08 16:55:08'),
(5601, 3, '2024-08-08 12:55:08', '2024-08-08 12:55:08', 0, NULL, '2024-08-08 16:55:09', '2024-08-08 16:55:09'),
(5602, 5, '2024-08-08 12:55:13', '2024-08-08 12:55:13', 0, NULL, '2024-08-08 16:55:13', '2024-08-08 16:55:13'),
(5603, 1, '2024-08-08 13:05:11', '2024-08-08 13:05:11', 0, NULL, '2024-08-08 17:05:11', '2024-08-08 17:05:11'),
(5604, 2, '2024-08-08 13:05:11', '2024-08-08 13:05:11', 0, NULL, '2024-08-08 17:05:11', '2024-08-08 17:05:11'),
(5605, 3, '2024-08-08 13:05:11', '2024-08-08 13:05:11', 0, NULL, '2024-08-08 17:05:11', '2024-08-08 17:05:11'),
(5606, 5, '2024-08-08 13:05:12', '2024-08-08 13:05:12', 0, NULL, '2024-08-08 17:05:12', '2024-08-08 17:05:12'),
(5607, 1, '2024-08-08 13:15:06', '2024-08-08 13:15:06', 0, NULL, '2024-08-08 17:15:07', '2024-08-08 17:15:07'),
(5608, 2, '2024-08-08 13:15:07', '2024-08-08 13:15:07', 0, NULL, '2024-08-08 17:15:07', '2024-08-08 17:15:07'),
(5609, 3, '2024-08-08 13:15:07', '2024-08-08 13:15:07', 0, NULL, '2024-08-08 17:15:07', '2024-08-08 17:15:07'),
(5610, 5, '2024-08-08 13:15:08', '2024-08-08 13:15:08', 0, NULL, '2024-08-08 17:15:08', '2024-08-08 17:15:08'),
(5611, 1, '2024-08-08 13:25:10', '2024-08-08 13:25:10', 0, NULL, '2024-08-08 17:25:11', '2024-08-08 17:25:11'),
(5612, 2, '2024-08-08 13:25:11', '2024-08-08 13:25:11', 0, NULL, '2024-08-08 17:25:11', '2024-08-08 17:25:11'),
(5613, 3, '2024-08-08 13:25:11', '2024-08-08 13:25:11', 0, NULL, '2024-08-08 17:25:11', '2024-08-08 17:25:11'),
(5614, 5, '2024-08-08 13:25:12', '2024-08-08 13:25:12', 0, NULL, '2024-08-08 17:25:12', '2024-08-08 17:25:12'),
(5615, 1, '2024-08-08 13:35:04', '2024-08-08 13:35:04', 0, NULL, '2024-08-08 17:35:05', '2024-08-08 17:35:05'),
(5616, 2, '2024-08-08 13:35:05', '2024-08-08 13:35:05', 0, NULL, '2024-08-08 17:35:06', '2024-08-08 17:35:06'),
(5617, 3, '2024-08-08 13:35:06', '2024-08-08 13:35:06', 0, NULL, '2024-08-08 17:35:07', '2024-08-08 17:35:07'),
(5618, 5, '2024-08-08 13:35:08', '2024-08-08 13:35:08', 0, NULL, '2024-08-08 17:35:08', '2024-08-08 17:35:08'),
(5619, 1, '2024-08-08 13:40:10', '2024-08-08 13:40:10', 0, NULL, '2024-08-08 17:40:10', '2024-08-08 17:40:10'),
(5620, 2, '2024-08-08 13:40:11', '2024-08-08 13:40:11', 0, NULL, '2024-08-08 17:40:11', '2024-08-08 17:40:11'),
(5621, 3, '2024-08-08 13:40:11', '2024-08-08 13:40:11', 0, NULL, '2024-08-08 17:40:11', '2024-08-08 17:40:11'),
(5622, 5, '2024-08-08 13:40:12', '2024-08-08 13:40:12', 0, NULL, '2024-08-08 17:40:12', '2024-08-08 17:40:12'),
(5623, 1, '2024-08-08 13:50:07', '2024-08-08 13:50:07', 0, NULL, '2024-08-08 17:50:07', '2024-08-08 17:50:07'),
(5624, 2, '2024-08-08 13:50:07', '2024-08-08 13:50:07', 0, NULL, '2024-08-08 17:50:08', '2024-08-08 17:50:08'),
(5625, 3, '2024-08-08 13:50:08', '2024-08-08 13:50:08', 0, NULL, '2024-08-08 17:50:09', '2024-08-08 17:50:09'),
(5626, 5, '2024-08-08 13:50:10', '2024-08-08 13:50:10', 0, NULL, '2024-08-08 17:50:10', '2024-08-08 17:50:10'),
(5627, 1, '2024-08-08 14:00:06', '2024-08-08 14:00:06', 0, NULL, '2024-08-08 18:00:06', '2024-08-08 18:00:06'),
(5628, 2, '2024-08-08 14:00:07', '2024-08-08 14:00:07', 0, NULL, '2024-08-08 18:00:07', '2024-08-08 18:00:07'),
(5629, 3, '2024-08-08 14:00:08', '2024-08-08 14:00:08', 0, NULL, '2024-08-08 18:00:08', '2024-08-08 18:00:08'),
(5630, 5, '2024-08-08 14:00:09', '2024-08-08 14:00:09', 0, NULL, '2024-08-08 18:00:10', '2024-08-08 18:00:10'),
(5631, 1, '2024-08-08 14:10:10', '2024-08-08 14:10:10', 0, NULL, '2024-08-08 18:10:11', '2024-08-08 18:10:11'),
(5632, 2, '2024-08-08 14:10:11', '2024-08-08 14:10:11', 0, NULL, '2024-08-08 18:10:11', '2024-08-08 18:10:11'),
(5633, 3, '2024-08-08 14:10:11', '2024-08-08 14:10:11', 0, NULL, '2024-08-08 18:10:11', '2024-08-08 18:10:11'),
(5634, 5, '2024-08-08 14:10:11', '2024-08-08 14:10:11', 0, NULL, '2024-08-08 18:10:11', '2024-08-08 18:10:11'),
(5635, 1, '2024-08-08 14:20:06', '2024-08-08 14:20:06', 0, NULL, '2024-08-08 18:20:07', '2024-08-08 18:20:07'),
(5636, 2, '2024-08-08 14:20:07', '2024-08-08 14:20:07', 0, NULL, '2024-08-08 18:20:08', '2024-08-08 18:20:08'),
(5637, 3, '2024-08-08 14:20:08', '2024-08-08 14:20:08', 0, NULL, '2024-08-08 18:20:08', '2024-08-08 18:20:08'),
(5638, 5, '2024-08-08 14:20:08', '2024-08-08 14:20:08', 0, NULL, '2024-08-08 18:20:09', '2024-08-08 18:20:09'),
(5639, 1, '2024-08-08 14:25:08', '2024-08-08 14:25:08', 0, NULL, '2024-08-08 18:25:08', '2024-08-08 18:25:08'),
(5640, 2, '2024-08-08 14:25:09', '2024-08-08 14:25:09', 0, NULL, '2024-08-08 18:25:09', '2024-08-08 18:25:09'),
(5641, 3, '2024-08-08 14:30:07', '2024-08-08 14:30:07', 0, NULL, '2024-08-08 18:30:07', '2024-08-08 18:30:07'),
(5642, 5, '2024-08-08 14:30:08', '2024-08-08 14:30:08', 0, NULL, '2024-08-08 18:30:08', '2024-08-08 18:30:08'),
(5643, 1, '2024-08-08 14:35:05', '2024-08-08 14:35:05', 0, NULL, '2024-08-08 18:35:06', '2024-08-08 18:35:06'),
(5644, 2, '2024-08-08 14:35:07', '2024-08-08 14:35:07', 0, NULL, '2024-08-08 18:35:07', '2024-08-08 18:35:07'),
(5645, 3, '2024-08-08 14:40:05', '2024-08-08 14:40:05', 0, NULL, '2024-08-08 18:40:06', '2024-08-08 18:40:06'),
(5646, 5, '2024-08-08 14:40:10', '2024-08-08 14:40:10', 0, NULL, '2024-08-08 18:40:11', '2024-08-08 18:40:11'),
(5647, 1, '2024-08-08 14:45:06', '2024-08-08 14:45:08', 1, NULL, '2024-08-08 18:45:08', '2024-08-08 18:45:08'),
(5648, 2, '2024-08-08 14:45:08', '2024-08-08 14:45:08', 0, NULL, '2024-08-08 18:45:08', '2024-08-08 18:45:08'),
(5649, 3, '2024-08-08 14:45:09', '2024-08-08 14:45:09', 0, NULL, '2024-08-08 18:45:09', '2024-08-08 18:45:09'),
(5650, 5, '2024-08-08 14:50:04', '2024-08-08 14:50:04', 0, NULL, '2024-08-08 18:50:05', '2024-08-08 18:50:05'),
(5651, 1, '2024-08-08 14:55:05', '2024-08-08 14:55:05', 0, NULL, '2024-08-08 18:55:05', '2024-08-08 18:55:05'),
(5652, 2, '2024-08-08 14:55:06', '2024-08-08 14:55:06', 0, NULL, '2024-08-08 18:55:06', '2024-08-08 18:55:06'),
(5653, 3, '2024-08-08 14:55:06', '2024-08-08 14:55:06', 0, NULL, '2024-08-08 18:55:07', '2024-08-08 18:55:07'),
(5654, 5, '2024-08-08 14:55:07', '2024-08-08 14:55:07', 0, NULL, '2024-08-08 18:55:08', '2024-08-08 18:55:08'),
(5655, 1, '2024-08-08 15:05:06', '2024-08-08 15:05:06', 0, NULL, '2024-08-08 19:05:06', '2024-08-08 19:05:06'),
(5656, 2, '2024-08-08 15:05:07', '2024-08-08 15:05:07', 0, NULL, '2024-08-08 19:05:07', '2024-08-08 19:05:07'),
(5657, 3, '2024-08-08 15:05:08', '2024-08-08 15:05:08', 0, NULL, '2024-08-08 19:05:08', '2024-08-08 19:05:08'),
(5658, 5, '2024-08-08 15:05:08', '2024-08-08 15:05:08', 0, NULL, '2024-08-08 19:05:08', '2024-08-08 19:05:08'),
(5659, 1, '2024-08-08 15:10:09', '2024-08-08 15:10:09', 0, NULL, '2024-08-08 19:10:10', '2024-08-08 19:10:10'),
(5660, 2, '2024-08-08 15:10:10', '2024-08-08 15:10:10', 0, NULL, '2024-08-08 19:10:10', '2024-08-08 19:10:10'),
(5661, 3, '2024-08-08 15:10:10', '2024-08-08 15:10:10', 0, NULL, '2024-08-08 19:10:10', '2024-08-08 19:10:10'),
(5662, 5, '2024-08-08 15:10:10', '2024-08-08 15:10:10', 0, NULL, '2024-08-08 19:10:11', '2024-08-08 19:10:11'),
(5663, 1, '2024-08-08 15:20:05', '2024-08-08 15:20:05', 0, NULL, '2024-08-08 19:20:06', '2024-08-08 19:20:06'),
(5664, 2, '2024-08-08 15:20:06', '2024-08-08 15:20:06', 0, NULL, '2024-08-08 19:20:06', '2024-08-08 19:20:06'),
(5665, 3, '2024-08-08 15:20:07', '2024-08-08 15:20:07', 0, NULL, '2024-08-08 19:20:07', '2024-08-08 19:20:07'),
(5666, 5, '2024-08-08 15:20:07', '2024-08-08 15:20:07', 0, NULL, '2024-08-08 19:20:08', '2024-08-08 19:20:08'),
(5667, 1, '2024-08-08 15:30:10', '2024-08-08 15:30:10', 0, NULL, '2024-08-08 19:30:11', '2024-08-08 19:30:11'),
(5668, 2, '2024-08-08 15:30:12', '2024-08-08 15:30:12', 0, NULL, '2024-08-08 19:30:15', '2024-08-08 19:30:15'),
(5669, 3, '2024-08-08 15:30:16', '2024-08-08 15:30:16', 0, NULL, '2024-08-08 19:30:17', '2024-08-08 19:30:17'),
(5670, 5, '2024-08-08 15:30:17', '2024-08-08 15:30:17', 0, NULL, '2024-08-08 19:30:17', '2024-08-08 19:30:17'),
(5671, 1, '2024-08-08 15:40:07', '2024-08-08 15:40:07', 0, NULL, '2024-08-08 19:40:07', '2024-08-08 19:40:07'),
(5672, 2, '2024-08-08 15:40:07', '2024-08-08 15:40:07', 0, NULL, '2024-08-08 19:40:08', '2024-08-08 19:40:08'),
(5673, 3, '2024-08-08 15:40:08', '2024-08-08 15:40:08', 0, NULL, '2024-08-08 19:40:08', '2024-08-08 19:40:08'),
(5674, 5, '2024-08-08 15:40:09', '2024-08-08 15:40:09', 0, NULL, '2024-08-08 19:40:10', '2024-08-08 19:40:10'),
(5675, 1, '2024-08-08 15:50:08', '2024-08-08 15:50:08', 0, NULL, '2024-08-08 19:50:08', '2024-08-08 19:50:08'),
(5676, 2, '2024-08-08 15:50:08', '2024-08-08 15:50:08', 0, NULL, '2024-08-08 19:50:09', '2024-08-08 19:50:09'),
(5677, 3, '2024-08-08 15:50:09', '2024-08-08 15:50:09', 0, NULL, '2024-08-08 19:50:09', '2024-08-08 19:50:09'),
(5678, 5, '2024-08-08 15:50:10', '2024-08-08 15:50:10', 0, NULL, '2024-08-08 19:50:10', '2024-08-08 19:50:10'),
(5679, 1, '2024-08-08 16:00:05', '2024-08-08 16:00:05', 0, NULL, '2024-08-08 20:00:05', '2024-08-08 20:00:05'),
(5680, 2, '2024-08-08 16:00:06', '2024-08-08 16:00:06', 0, NULL, '2024-08-08 20:00:06', '2024-08-08 20:00:06'),
(5681, 3, '2024-08-08 16:00:07', '2024-08-08 16:00:07', 0, NULL, '2024-08-08 20:00:07', '2024-08-08 20:00:07'),
(5682, 5, '2024-08-08 16:00:08', '2024-08-08 16:00:08', 0, NULL, '2024-08-08 20:00:08', '2024-08-08 20:00:08'),
(5683, 1, '2024-08-08 16:05:08', '2024-08-08 16:05:08', 0, NULL, '2024-08-08 20:05:08', '2024-08-08 20:05:08'),
(5684, 2, '2024-08-08 16:05:09', '2024-08-08 16:05:09', 0, NULL, '2024-08-08 20:05:13', '2024-08-08 20:05:13'),
(5685, 3, '2024-08-08 16:05:13', '2024-08-08 16:05:13', 0, NULL, '2024-08-08 20:05:13', '2024-08-08 20:05:13'),
(5686, 1, '2024-08-08 16:10:09', '2024-08-08 16:10:09', 0, NULL, '2024-08-08 20:10:09', '2024-08-08 20:10:09'),
(5687, 5, '2024-08-08 16:10:10', '2024-08-08 16:10:10', 0, NULL, '2024-08-08 20:10:11', '2024-08-08 20:10:11'),
(5688, 2, '2024-08-08 16:15:07', '2024-08-08 16:15:07', 0, NULL, '2024-08-08 20:15:08', '2024-08-08 20:15:08'),
(5689, 3, '2024-08-08 16:15:08', '2024-08-08 16:15:08', 0, NULL, '2024-08-08 20:15:09', '2024-08-08 20:15:09'),
(5690, 1, '2024-08-08 16:20:06', '2024-08-08 16:20:06', 0, NULL, '2024-08-08 20:20:07', '2024-08-08 20:20:07'),
(5691, 5, '2024-08-08 16:20:07', '2024-08-08 16:20:07', 0, NULL, '2024-08-08 20:20:08', '2024-08-08 20:20:08'),
(5692, 2, '2024-08-08 16:25:05', '2024-08-08 16:25:05', 0, NULL, '2024-08-08 20:25:05', '2024-08-08 20:25:05'),
(5693, 3, '2024-08-08 16:25:06', '2024-08-08 16:25:06', 0, NULL, '2024-08-08 20:25:06', '2024-08-08 20:25:06'),
(5694, 1, '2024-08-08 16:30:08', '2024-08-08 16:30:08', 0, NULL, '2024-08-08 20:30:08', '2024-08-08 20:30:08'),
(5695, 2, '2024-08-08 16:30:08', '2024-08-08 16:30:08', 0, NULL, '2024-08-08 20:30:09', '2024-08-08 20:30:09'),
(5696, 3, '2024-08-08 16:30:09', '2024-08-08 16:30:09', 0, NULL, '2024-08-08 20:30:09', '2024-08-08 20:30:09'),
(5697, 5, '2024-08-08 16:30:09', '2024-08-08 16:30:10', 0, NULL, '2024-08-08 20:30:10', '2024-08-08 20:30:10'),
(5698, 1, '2024-08-08 16:40:07', '2024-08-08 16:40:07', 0, NULL, '2024-08-08 20:40:07', '2024-08-08 20:40:07'),
(5699, 2, '2024-08-08 16:40:08', '2024-08-08 16:40:08', 0, NULL, '2024-08-08 20:40:08', '2024-08-08 20:40:08'),
(5700, 3, '2024-08-08 16:40:09', '2024-08-08 16:40:09', 0, NULL, '2024-08-08 20:40:10', '2024-08-08 20:40:10'),
(5701, 5, '2024-08-08 16:40:10', '2024-08-08 16:40:10', 0, NULL, '2024-08-08 20:40:11', '2024-08-08 20:40:11'),
(5702, 1, '2024-08-08 16:50:07', '2024-08-08 16:50:07', 0, NULL, '2024-08-08 20:50:07', '2024-08-08 20:50:07'),
(5703, 2, '2024-08-08 16:50:08', '2024-08-08 16:50:08', 0, NULL, '2024-08-08 20:50:08', '2024-08-08 20:50:08'),
(5704, 3, '2024-08-08 16:50:08', '2024-08-08 16:50:08', 0, NULL, '2024-08-08 20:50:09', '2024-08-08 20:50:09'),
(5705, 5, '2024-08-08 16:50:09', '2024-08-08 16:50:09', 0, NULL, '2024-08-08 20:50:09', '2024-08-08 20:50:09'),
(5706, 1, '2024-08-08 17:00:07', '2024-08-08 17:00:07', 0, NULL, '2024-08-08 21:00:07', '2024-08-08 21:00:07'),
(5707, 2, '2024-08-08 17:00:08', '2024-08-08 17:00:08', 0, NULL, '2024-08-08 21:00:08', '2024-08-08 21:00:08'),
(5708, 3, '2024-08-08 17:00:08', '2024-08-08 17:00:08', 0, NULL, '2024-08-08 21:00:09', '2024-08-08 21:00:09'),
(5709, 5, '2024-08-08 17:00:09', '2024-08-08 17:00:09', 0, NULL, '2024-08-08 21:00:10', '2024-08-08 21:00:10'),
(5710, 1, '2024-08-08 17:05:10', '2024-08-08 17:05:10', 0, NULL, '2024-08-08 21:05:11', '2024-08-08 21:05:11'),
(5711, 2, '2024-08-08 17:05:11', '2024-08-08 17:05:11', 0, NULL, '2024-08-08 21:05:11', '2024-08-08 21:05:11'),
(5712, 3, '2024-08-08 17:05:11', '2024-08-08 17:05:11', 0, NULL, '2024-08-08 21:05:11', '2024-08-08 21:05:11'),
(5713, 5, '2024-08-08 17:05:11', '2024-08-08 17:05:11', 0, NULL, '2024-08-08 21:05:11', '2024-08-08 21:05:11'),
(5714, 1, '2024-08-08 17:15:06', '2024-08-08 17:15:06', 0, NULL, '2024-08-08 21:15:07', '2024-08-08 21:15:07'),
(5715, 2, '2024-08-08 17:15:08', '2024-08-08 17:15:08', 0, NULL, '2024-08-08 21:15:08', '2024-08-08 21:15:08'),
(5716, 3, '2024-08-08 17:15:08', '2024-08-08 17:15:08', 0, NULL, '2024-08-08 21:15:09', '2024-08-08 21:15:09'),
(5717, 5, '2024-08-08 17:15:09', '2024-08-08 17:15:09', 0, NULL, '2024-08-08 21:15:10', '2024-08-08 21:15:10'),
(5718, 1, '2024-08-08 17:25:10', '2024-08-08 17:25:10', 0, NULL, '2024-08-08 21:25:10', '2024-08-08 21:25:10'),
(5719, 2, '2024-08-08 17:25:11', '2024-08-08 17:25:11', 0, NULL, '2024-08-08 21:25:11', '2024-08-08 21:25:11'),
(5720, 3, '2024-08-08 17:25:11', '2024-08-08 17:25:11', 0, NULL, '2024-08-08 21:25:11', '2024-08-08 21:25:11'),
(5721, 5, '2024-08-08 17:25:11', '2024-08-08 17:25:11', 0, NULL, '2024-08-08 21:25:11', '2024-08-08 21:25:11'),
(5722, 1, '2024-08-08 17:35:05', '2024-08-08 17:35:05', 0, NULL, '2024-08-08 21:35:06', '2024-08-08 21:35:06'),
(5723, 2, '2024-08-08 17:35:10', '2024-08-08 17:35:10', 0, NULL, '2024-08-08 21:35:10', '2024-08-08 21:35:10'),
(5724, 3, '2024-08-08 17:35:11', '2024-08-08 17:35:11', 0, NULL, '2024-08-08 21:35:11', '2024-08-08 21:35:11'),
(5725, 5, '2024-08-08 17:35:11', '2024-08-08 17:35:11', 0, NULL, '2024-08-08 21:35:12', '2024-08-08 21:35:12'),
(5726, 1, '2024-08-08 17:40:06', '2024-08-08 17:40:06', 0, NULL, '2024-08-08 21:40:07', '2024-08-08 21:40:07'),
(5727, 2, '2024-08-08 17:45:05', '2024-08-08 17:45:05', 0, NULL, '2024-08-08 21:45:05', '2024-08-08 21:45:05'),
(5728, 3, '2024-08-08 17:45:06', '2024-08-08 17:45:06', 0, NULL, '2024-08-08 21:45:07', '2024-08-08 21:45:07'),
(5729, 5, '2024-08-08 17:45:07', '2024-08-08 17:45:07', 0, NULL, '2024-08-08 21:45:07', '2024-08-08 21:45:07'),
(5730, 1, '2024-08-08 17:50:07', '2024-08-08 17:50:07', 0, NULL, '2024-08-08 21:50:07', '2024-08-08 21:50:07'),
(5731, 2, '2024-08-08 17:50:08', '2024-08-08 17:50:08', 0, NULL, '2024-08-08 21:50:08', '2024-08-08 21:50:08'),
(5732, 3, '2024-08-08 17:50:09', '2024-08-08 17:50:09', 0, NULL, '2024-08-08 21:50:09', '2024-08-08 21:50:09'),
(5733, 5, '2024-08-08 17:55:06', '2024-08-08 17:55:06', 0, NULL, '2024-08-08 21:55:07', '2024-08-08 21:55:07'),
(5734, 1, '2024-08-08 18:00:14', '2024-08-08 18:00:14', 0, NULL, '2024-08-08 22:00:15', '2024-08-08 22:00:15'),
(5735, 2, '2024-08-08 18:00:15', '2024-08-08 18:00:15', 0, NULL, '2024-08-08 22:00:15', '2024-08-08 22:00:15'),
(5736, 3, '2024-08-08 18:00:15', '2024-08-08 18:00:15', 0, NULL, '2024-08-08 22:00:16', '2024-08-08 22:00:16'),
(5737, 5, '2024-08-08 18:00:16', '2024-08-08 18:00:16', 0, NULL, '2024-08-08 22:00:16', '2024-08-08 22:00:16'),
(5738, 1, '2024-08-08 18:10:08', '2024-08-08 18:10:08', 0, NULL, '2024-08-08 22:10:09', '2024-08-08 22:10:09'),
(5739, 2, '2024-08-08 18:10:09', '2024-08-08 18:10:09', 0, NULL, '2024-08-08 22:10:09', '2024-08-08 22:10:09'),
(5740, 3, '2024-08-08 18:10:10', '2024-08-08 18:10:10', 0, NULL, '2024-08-08 22:10:10', '2024-08-08 22:10:10'),
(5741, 5, '2024-08-08 18:10:10', '2024-08-08 18:10:10', 0, NULL, '2024-08-08 22:10:10', '2024-08-08 22:10:10'),
(5742, 1, '2024-08-08 18:20:05', '2024-08-08 18:20:05', 0, NULL, '2024-08-08 22:20:05', '2024-08-08 22:20:05'),
(5743, 2, '2024-08-08 18:20:06', '2024-08-08 18:20:06', 0, NULL, '2024-08-08 22:20:06', '2024-08-08 22:20:06'),
(5744, 3, '2024-08-08 18:20:07', '2024-08-08 18:20:07', 0, NULL, '2024-08-08 22:20:07', '2024-08-08 22:20:07'),
(5745, 5, '2024-08-08 18:20:07', '2024-08-08 18:20:07', 0, NULL, '2024-08-08 22:20:08', '2024-08-08 22:20:08'),
(5746, 1, '2024-08-08 18:25:10', '2024-08-08 18:25:10', 0, NULL, '2024-08-08 22:25:10', '2024-08-08 22:25:10'),
(5747, 2, '2024-08-08 18:25:10', '2024-08-08 18:25:10', 0, NULL, '2024-08-08 22:25:11', '2024-08-08 22:25:11'),
(5748, 3, '2024-08-08 18:25:11', '2024-08-08 18:25:11', 0, NULL, '2024-08-08 22:25:11', '2024-08-08 22:25:11'),
(5749, 5, '2024-08-08 18:25:11', '2024-08-08 18:25:11', 0, NULL, '2024-08-08 22:25:12', '2024-08-08 22:25:12'),
(5750, 1, '2024-08-08 18:35:03', '2024-08-08 18:35:03', 0, NULL, '2024-08-08 22:35:04', '2024-08-08 22:35:04'),
(5751, 2, '2024-08-08 18:35:04', '2024-08-08 18:35:04', 0, NULL, '2024-08-08 22:35:04', '2024-08-08 22:35:04'),
(5752, 3, '2024-08-08 18:35:05', '2024-08-08 18:35:05', 0, NULL, '2024-08-08 22:35:06', '2024-08-08 22:35:06'),
(5753, 5, '2024-08-08 18:35:06', '2024-08-08 18:35:06', 0, NULL, '2024-08-08 22:35:06', '2024-08-08 22:35:06'),
(5754, 1, '2024-08-08 18:40:06', '2024-08-08 18:40:07', 1, NULL, '2024-08-08 22:40:08', '2024-08-08 22:40:08'),
(5755, 2, '2024-08-08 18:40:09', '2024-08-08 18:40:09', 0, NULL, '2024-08-08 22:40:09', '2024-08-08 22:40:09'),
(5756, 3, '2024-08-08 18:40:10', '2024-08-08 18:40:10', 0, NULL, '2024-08-08 22:40:10', '2024-08-08 22:40:10'),
(5757, 5, '2024-08-08 18:45:03', '2024-08-08 18:45:03', 0, NULL, '2024-08-08 22:45:04', '2024-08-08 22:45:04'),
(5758, 1, '2024-08-08 18:50:05', '2024-08-08 18:50:05', 0, NULL, '2024-08-08 22:50:05', '2024-08-08 22:50:05'),
(5759, 2, '2024-08-08 18:50:06', '2024-08-08 18:50:06', 0, NULL, '2024-08-08 22:50:06', '2024-08-08 22:50:06'),
(5760, 3, '2024-08-08 18:50:07', '2024-08-08 18:50:07', 0, NULL, '2024-08-08 22:50:07', '2024-08-08 22:50:07'),
(5761, 5, '2024-08-08 18:50:07', '2024-08-08 18:50:07', 0, NULL, '2024-08-08 22:50:08', '2024-08-08 22:50:08'),
(5762, 1, '2024-08-08 18:55:08', '2024-08-08 18:55:09', 0, NULL, '2024-08-08 22:55:09', '2024-08-08 22:55:09'),
(5763, 2, '2024-08-08 18:55:09', '2024-08-08 18:55:09', 0, NULL, '2024-08-08 22:55:09', '2024-08-08 22:55:09'),
(5764, 3, '2024-08-08 18:55:09', '2024-08-08 18:55:09', 0, NULL, '2024-08-08 22:55:10', '2024-08-08 22:55:10'),
(5765, 5, '2024-08-08 18:55:10', '2024-08-08 18:55:10', 0, NULL, '2024-08-08 22:55:10', '2024-08-08 22:55:10'),
(5766, 1, '2024-08-08 19:05:07', '2024-08-08 19:05:07', 0, NULL, '2024-08-08 23:05:08', '2024-08-08 23:05:08'),
(5767, 2, '2024-08-08 19:05:08', '2024-08-08 19:05:08', 0, NULL, '2024-08-08 23:05:09', '2024-08-08 23:05:09'),
(5768, 3, '2024-08-08 19:05:09', '2024-08-08 19:05:09', 0, NULL, '2024-08-08 23:05:09', '2024-08-08 23:05:09'),
(5769, 5, '2024-08-08 19:05:10', '2024-08-08 19:05:10', 0, NULL, '2024-08-08 23:05:10', '2024-08-08 23:05:10'),
(5770, 1, '2024-08-08 19:10:10', '2024-08-08 19:10:10', 0, NULL, '2024-08-08 23:10:11', '2024-08-08 23:10:11'),
(5771, 2, '2024-08-08 19:10:11', '2024-08-08 19:10:11', 0, NULL, '2024-08-08 23:10:11', '2024-08-08 23:10:11'),
(5772, 3, '2024-08-08 19:10:11', '2024-08-08 19:10:11', 0, NULL, '2024-08-08 23:10:12', '2024-08-08 23:10:12'),
(5773, 5, '2024-08-08 19:15:06', '2024-08-08 19:15:07', 0, NULL, '2024-08-08 23:15:08', '2024-08-08 23:15:08'),
(5774, 1, '2024-08-08 19:20:07', '2024-08-08 19:20:07', 0, NULL, '2024-08-08 23:20:07', '2024-08-08 23:20:07'),
(5775, 2, '2024-08-08 19:20:08', '2024-08-08 19:20:08', 0, NULL, '2024-08-08 23:20:08', '2024-08-08 23:20:08'),
(5776, 3, '2024-08-08 19:20:08', '2024-08-08 19:20:08', 0, NULL, '2024-08-08 23:20:09', '2024-08-08 23:20:09'),
(5777, 5, '2024-08-08 19:25:04', '2024-08-08 19:25:04', 0, NULL, '2024-08-08 23:25:04', '2024-08-08 23:25:04'),
(5778, 1, '2024-08-08 19:30:12', '2024-08-08 19:30:12', 0, NULL, '2024-08-08 23:30:13', '2024-08-08 23:30:13'),
(5779, 2, '2024-08-08 19:30:13', '2024-08-08 19:30:13', 0, NULL, '2024-08-08 23:30:13', '2024-08-08 23:30:13'),
(5780, 3, '2024-08-08 19:30:14', '2024-08-08 19:30:14', 0, NULL, '2024-08-08 23:30:14', '2024-08-08 23:30:14'),
(5781, 5, '2024-08-08 19:30:14', '2024-08-08 19:30:14', 0, NULL, '2024-08-08 23:30:14', '2024-08-08 23:30:14'),
(5782, 1, '2024-08-08 19:40:08', '2024-08-08 19:40:08', 0, NULL, '2024-08-08 23:40:08', '2024-08-08 23:40:08'),
(5783, 2, '2024-08-08 19:40:08', '2024-08-08 19:40:08', 0, NULL, '2024-08-08 23:40:09', '2024-08-08 23:40:09'),
(5784, 3, '2024-08-08 19:40:09', '2024-08-08 19:40:09', 0, NULL, '2024-08-08 23:40:09', '2024-08-08 23:40:09'),
(5785, 5, '2024-08-08 19:40:10', '2024-08-08 19:40:10', 0, NULL, '2024-08-08 23:40:10', '2024-08-08 23:40:10'),
(5786, 1, '2024-08-08 19:50:11', '2024-08-08 19:50:11', 0, NULL, '2024-08-08 23:50:11', '2024-08-08 23:50:11'),
(5787, 2, '2024-08-08 19:50:12', '2024-08-08 19:50:12', 0, NULL, '2024-08-08 23:50:12', '2024-08-08 23:50:12'),
(5788, 3, '2024-08-08 19:50:12', '2024-08-08 19:50:12', 0, NULL, '2024-08-08 23:50:12', '2024-08-08 23:50:12'),
(5789, 5, '2024-08-08 19:50:13', '2024-08-08 19:50:13', 0, NULL, '2024-08-08 23:50:13', '2024-08-08 23:50:13'),
(5790, 1, '2024-08-08 20:00:06', '2024-08-08 20:00:06', 0, NULL, '2024-08-09 00:00:07', '2024-08-09 00:00:07'),
(5791, 2, '2024-08-08 20:00:08', '2024-08-08 20:00:08', 0, NULL, '2024-08-09 00:00:08', '2024-08-09 00:00:08'),
(5792, 3, '2024-08-08 20:00:09', '2024-08-08 20:00:09', 0, NULL, '2024-08-09 00:00:09', '2024-08-09 00:00:09'),
(5793, 5, '2024-08-08 20:00:10', '2024-08-08 20:00:10', 0, NULL, '2024-08-09 00:00:10', '2024-08-09 00:00:10'),
(5794, 1, '2024-08-08 20:05:07', '2024-08-08 20:05:07', 0, NULL, '2024-08-09 00:05:08', '2024-08-09 00:05:08'),
(5795, 1, '2024-08-08 20:10:12', '2024-08-08 20:10:12', 0, NULL, '2024-08-09 00:10:12', '2024-08-09 00:10:12'),
(5796, 2, '2024-08-08 20:10:13', '2024-08-08 20:10:13', 0, NULL, '2024-08-09 00:10:14', '2024-08-09 00:10:14'),
(5797, 3, '2024-08-08 20:10:15', '2024-08-08 20:10:15', 0, NULL, '2024-08-09 00:10:15', '2024-08-09 00:10:15'),
(5798, 5, '2024-08-08 20:10:15', '2024-08-08 20:10:15', 0, NULL, '2024-08-09 00:10:16', '2024-08-09 00:10:16'),
(5799, 1, '2024-08-08 20:20:06', '2024-08-08 20:20:06', 0, NULL, '2024-08-09 00:20:07', '2024-08-09 00:20:07'),
(5800, 2, '2024-08-08 20:20:08', '2024-08-08 20:20:08', 0, NULL, '2024-08-09 00:20:08', '2024-08-09 00:20:08'),
(5801, 3, '2024-08-08 20:20:09', '2024-08-08 20:20:09', 0, NULL, '2024-08-09 00:20:09', '2024-08-09 00:20:09'),
(5802, 5, '2024-08-08 20:20:09', '2024-08-08 20:20:09', 0, NULL, '2024-08-09 00:20:10', '2024-08-09 00:20:10'),
(5803, 1, '2024-08-08 20:25:10', '2024-08-08 20:25:10', 0, NULL, '2024-08-09 00:25:10', '2024-08-09 00:25:10'),
(5804, 2, '2024-08-08 20:25:10', '2024-08-08 20:25:10', 0, NULL, '2024-08-09 00:25:10', '2024-08-09 00:25:10'),
(5805, 3, '2024-08-08 20:25:10', '2024-08-08 20:25:10', 0, NULL, '2024-08-09 00:25:10', '2024-08-09 00:25:10'),
(5806, 5, '2024-08-08 20:25:10', '2024-08-08 20:25:10', 0, NULL, '2024-08-09 00:25:11', '2024-08-09 00:25:11'),
(5807, 1, '2024-08-08 20:35:08', '2024-08-08 20:35:08', 0, NULL, '2024-08-09 00:35:09', '2024-08-09 00:35:09'),
(5808, 2, '2024-08-08 20:35:09', '2024-08-08 20:35:09', 0, NULL, '2024-08-09 00:35:10', '2024-08-09 00:35:10'),
(5809, 3, '2024-08-08 20:35:10', '2024-08-08 20:35:10', 0, NULL, '2024-08-09 00:35:10', '2024-08-09 00:35:10'),
(5810, 5, '2024-08-08 20:35:11', '2024-08-08 20:35:11', 0, NULL, '2024-08-09 00:35:11', '2024-08-09 00:35:11'),
(5811, 1, '2024-08-08 20:40:09', '2024-08-08 20:40:09', 0, NULL, '2024-08-09 00:40:10', '2024-08-09 00:40:10'),
(5812, 2, '2024-08-08 20:45:09', '2024-08-08 20:45:09', 0, NULL, '2024-08-09 00:45:09', '2024-08-09 00:45:09'),
(5813, 3, '2024-08-08 20:45:10', '2024-08-08 20:45:10', 0, NULL, '2024-08-09 00:45:10', '2024-08-09 00:45:10'),
(5814, 5, '2024-08-08 20:45:10', '2024-08-08 20:45:10', 0, NULL, '2024-08-09 00:45:11', '2024-08-09 00:45:11'),
(5815, 1, '2024-08-08 20:50:07', '2024-08-08 20:50:07', 0, NULL, '2024-08-09 00:50:08', '2024-08-09 00:50:08'),
(5816, 2, '2024-08-08 20:55:06', '2024-08-08 20:55:06', 0, NULL, '2024-08-09 00:55:07', '2024-08-09 00:55:07'),
(5817, 3, '2024-08-08 20:55:08', '2024-08-08 20:55:08', 0, NULL, '2024-08-09 00:55:08', '2024-08-09 00:55:08'),
(5818, 5, '2024-08-08 20:55:09', '2024-08-08 20:55:09', 0, NULL, '2024-08-09 00:55:09', '2024-08-09 00:55:09'),
(5819, 1, '2024-08-08 21:00:08', '2024-08-08 21:00:09', 0, NULL, '2024-08-09 01:00:09', '2024-08-09 01:00:09'),
(5820, 2, '2024-08-08 21:00:09', '2024-08-08 21:00:09', 0, NULL, '2024-08-09 01:00:10', '2024-08-09 01:00:10'),
(5821, 3, '2024-08-08 21:05:08', '2024-08-08 21:05:08', 0, NULL, '2024-08-09 01:05:09', '2024-08-09 01:05:09'),
(5822, 5, '2024-08-08 21:05:09', '2024-08-08 21:05:09', 0, NULL, '2024-08-09 01:05:10', '2024-08-09 01:05:10'),
(5823, 1, '2024-08-08 21:10:11', '2024-08-08 21:10:11', 0, NULL, '2024-08-09 01:10:11', '2024-08-09 01:10:11'),
(5824, 2, '2024-08-08 21:10:11', '2024-08-08 21:10:11', 0, NULL, '2024-08-09 01:10:12', '2024-08-09 01:10:12'),
(5825, 3, '2024-08-08 21:10:12', '2024-08-08 21:10:12', 0, NULL, '2024-08-09 01:10:12', '2024-08-09 01:10:12'),
(5826, 5, '2024-08-08 21:10:12', '2024-08-08 21:10:12', 0, NULL, '2024-08-09 01:10:15', '2024-08-09 01:10:15'),
(5827, 1, '2024-08-08 21:20:07', '2024-08-08 21:20:07', 0, NULL, '2024-08-09 01:20:08', '2024-08-09 01:20:08'),
(5828, 2, '2024-08-08 21:20:09', '2024-08-08 21:20:09', 0, NULL, '2024-08-09 01:20:09', '2024-08-09 01:20:09'),
(5829, 3, '2024-08-08 21:20:09', '2024-08-08 21:20:09', 0, NULL, '2024-08-09 01:20:10', '2024-08-09 01:20:10'),
(5830, 5, '2024-08-08 21:20:10', '2024-08-08 21:20:10', 0, NULL, '2024-08-09 01:20:10', '2024-08-09 01:20:10'),
(5831, 1, '2024-08-08 21:30:08', '2024-08-08 21:30:08', 0, NULL, '2024-08-09 01:30:08', '2024-08-09 01:30:08'),
(5832, 2, '2024-08-08 21:30:08', '2024-08-08 21:30:08', 0, NULL, '2024-08-09 01:30:09', '2024-08-09 01:30:09'),
(5833, 3, '2024-08-08 21:30:09', '2024-08-08 21:30:09', 0, NULL, '2024-08-09 01:30:09', '2024-08-09 01:30:09'),
(5834, 5, '2024-08-08 21:30:10', '2024-08-08 21:30:10', 0, NULL, '2024-08-09 01:30:10', '2024-08-09 01:30:10'),
(5835, 1, '2024-08-08 21:40:06', '2024-08-08 21:40:06', 0, NULL, '2024-08-09 01:40:07', '2024-08-09 01:40:07'),
(5836, 2, '2024-08-08 21:40:08', '2024-08-08 21:40:08', 0, NULL, '2024-08-09 01:40:09', '2024-08-09 01:40:09'),
(5837, 3, '2024-08-08 21:40:09', '2024-08-08 21:40:09', 0, NULL, '2024-08-09 01:40:15', '2024-08-09 01:40:15'),
(5838, 5, '2024-08-08 21:40:16', '2024-08-08 21:40:16', 0, NULL, '2024-08-09 01:40:16', '2024-08-09 01:40:16'),
(5839, 1, '2024-08-08 21:45:08', '2024-08-08 21:45:09', 0, NULL, '2024-08-09 01:45:10', '2024-08-09 01:45:10'),
(5840, 2, '2024-08-08 21:50:05', '2024-08-08 21:50:05', 0, NULL, '2024-08-09 01:50:05', '2024-08-09 01:50:05'),
(5841, 3, '2024-08-08 21:50:06', '2024-08-08 21:50:06', 0, NULL, '2024-08-09 01:50:07', '2024-08-09 01:50:07'),
(5842, 5, '2024-08-08 21:50:07', '2024-08-08 21:50:07', 0, NULL, '2024-08-09 01:50:07', '2024-08-09 01:50:07'),
(5843, 1, '2024-08-08 21:55:05', '2024-08-08 21:55:05', 0, NULL, '2024-08-09 01:55:06', '2024-08-09 01:55:06'),
(5844, 2, '2024-08-08 22:00:05', '2024-08-08 22:00:05', 0, NULL, '2024-08-09 02:00:06', '2024-08-09 02:00:06'),
(5845, 3, '2024-08-08 22:00:06', '2024-08-08 22:00:06', 0, NULL, '2024-08-09 02:00:07', '2024-08-09 02:00:07'),
(5846, 5, '2024-08-08 22:00:07', '2024-08-08 22:00:07', 0, NULL, '2024-08-09 02:00:07', '2024-08-09 02:00:07'),
(5847, 1, '2024-08-08 22:05:04', '2024-08-08 22:05:04', 0, NULL, '2024-08-09 02:05:05', '2024-08-09 02:05:05'),
(5848, 1, '2024-08-08 22:10:07', '2024-08-08 22:10:07', 0, NULL, '2024-08-09 02:10:08', '2024-08-09 02:10:08'),
(5849, 2, '2024-08-08 22:10:08', '2024-08-08 22:10:08', 0, NULL, '2024-08-09 02:10:08', '2024-08-09 02:10:08'),
(5850, 3, '2024-08-08 22:10:08', '2024-08-08 22:10:08', 0, NULL, '2024-08-09 02:10:09', '2024-08-09 02:10:09'),
(5851, 5, '2024-08-08 22:10:09', '2024-08-08 22:10:09', 0, NULL, '2024-08-09 02:10:09', '2024-08-09 02:10:09'),
(5852, 1, '2024-08-08 22:15:08', '2024-08-08 22:15:08', 0, NULL, '2024-08-09 02:15:09', '2024-08-09 02:15:09'),
(5853, 1, '2024-08-08 22:20:10', '2024-08-08 22:20:10', 0, NULL, '2024-08-09 02:20:10', '2024-08-09 02:20:10'),
(5854, 2, '2024-08-08 22:20:11', '2024-08-08 22:20:11', 0, NULL, '2024-08-09 02:20:11', '2024-08-09 02:20:11'),
(5855, 3, '2024-08-08 22:20:11', '2024-08-08 22:20:11', 0, NULL, '2024-08-09 02:20:12', '2024-08-09 02:20:12'),
(5856, 5, '2024-08-08 22:20:12', '2024-08-08 22:20:12', 0, NULL, '2024-08-09 02:20:12', '2024-08-09 02:20:12'),
(5857, 1, '2024-08-08 22:30:06', '2024-08-08 22:30:06', 0, NULL, '2024-08-09 02:30:07', '2024-08-09 02:30:07'),
(5858, 2, '2024-08-08 22:30:07', '2024-08-08 22:30:07', 0, NULL, '2024-08-09 02:30:07', '2024-08-09 02:30:07'),
(5859, 3, '2024-08-08 22:30:09', '2024-08-08 22:30:09', 0, NULL, '2024-08-09 02:30:10', '2024-08-09 02:30:10'),
(5860, 5, '2024-08-08 22:30:10', '2024-08-08 22:30:10', 0, NULL, '2024-08-09 02:30:10', '2024-08-09 02:30:10'),
(5861, 1, '2024-08-08 22:35:08', '2024-08-08 22:35:08', 0, NULL, '2024-08-09 02:35:09', '2024-08-09 02:35:09'),
(5862, 2, '2024-08-08 22:35:09', '2024-08-08 22:35:09', 0, NULL, '2024-08-09 02:35:09', '2024-08-09 02:35:09'),
(5863, 3, '2024-08-08 22:40:07', '2024-08-08 22:40:07', 0, NULL, '2024-08-09 02:40:08', '2024-08-09 02:40:08'),
(5864, 5, '2024-08-08 22:40:08', '2024-08-08 22:40:08', 0, NULL, '2024-08-09 02:40:09', '2024-08-09 02:40:09'),
(5865, 1, '2024-08-08 22:45:04', '2024-08-08 22:45:04', 0, NULL, '2024-08-09 02:45:04', '2024-08-09 02:45:04'),
(5866, 2, '2024-08-08 22:45:05', '2024-08-08 22:45:05', 0, NULL, '2024-08-09 02:45:05', '2024-08-09 02:45:05'),
(5867, 1, '2024-08-08 22:50:10', '2024-08-08 22:50:10', 0, NULL, '2024-08-09 02:50:11', '2024-08-09 02:50:11'),
(5868, 2, '2024-08-08 22:50:11', '2024-08-08 22:50:11', 0, NULL, '2024-08-09 02:50:11', '2024-08-09 02:50:11'),
(5869, 3, '2024-08-08 22:50:11', '2024-08-08 22:50:11', 0, NULL, '2024-08-09 02:50:11', '2024-08-09 02:50:11'),
(5870, 5, '2024-08-08 22:50:11', '2024-08-08 22:50:11', 0, NULL, '2024-08-09 02:50:11', '2024-08-09 02:50:11'),
(5871, 1, '2024-08-08 23:00:07', '2024-08-08 23:00:07', 0, NULL, '2024-08-09 03:00:07', '2024-08-09 03:00:07'),
(5872, 2, '2024-08-08 23:00:08', '2024-08-08 23:00:08', 0, NULL, '2024-08-09 03:00:08', '2024-08-09 03:00:08'),
(5873, 3, '2024-08-08 23:00:08', '2024-08-08 23:00:08', 0, NULL, '2024-08-09 03:00:09', '2024-08-09 03:00:09'),
(5874, 5, '2024-08-08 23:00:09', '2024-08-08 23:00:10', 0, NULL, '2024-08-09 03:00:10', '2024-08-09 03:00:10'),
(5875, 1, '2024-08-08 23:10:06', '2024-08-08 23:10:06', 0, NULL, '2024-08-09 03:10:07', '2024-08-09 03:10:07'),
(5876, 2, '2024-08-08 23:10:08', '2024-08-08 23:10:08', 0, NULL, '2024-08-09 03:10:09', '2024-08-09 03:10:09'),
(5877, 3, '2024-08-08 23:10:09', '2024-08-08 23:10:09', 0, NULL, '2024-08-09 03:10:09', '2024-08-09 03:10:09'),
(5878, 5, '2024-08-08 23:10:10', '2024-08-08 23:10:10', 0, NULL, '2024-08-09 03:10:10', '2024-08-09 03:10:10'),
(5879, 1, '2024-08-08 23:20:04', '2024-08-08 23:20:05', 0, NULL, '2024-08-09 03:20:06', '2024-08-09 03:20:06'),
(5880, 2, '2024-08-08 23:20:07', '2024-08-08 23:20:07', 0, NULL, '2024-08-09 03:20:07', '2024-08-09 03:20:07'),
(5881, 3, '2024-08-08 23:20:07', '2024-08-08 23:20:07', 0, NULL, '2024-08-09 03:20:08', '2024-08-09 03:20:08'),
(5882, 5, '2024-08-08 23:20:08', '2024-08-08 23:20:08', 0, NULL, '2024-08-09 03:20:09', '2024-08-09 03:20:09'),
(5883, 1, '2024-08-08 23:25:12', '2024-08-08 23:25:12', 0, NULL, '2024-08-09 03:25:12', '2024-08-09 03:25:12'),
(5884, 2, '2024-08-08 23:25:12', '2024-08-08 23:25:12', 0, NULL, '2024-08-09 03:25:12', '2024-08-09 03:25:12'),
(5885, 3, '2024-08-08 23:25:13', '2024-08-08 23:25:13', 0, NULL, '2024-08-09 03:25:13', '2024-08-09 03:25:13'),
(5886, 5, '2024-08-08 23:25:13', '2024-08-08 23:25:13', 0, NULL, '2024-08-09 03:25:13', '2024-08-09 03:25:13'),
(5887, 1, '2024-08-08 23:35:06', '2024-08-08 23:35:06', 0, NULL, '2024-08-09 03:35:06', '2024-08-09 03:35:06'),
(5888, 2, '2024-08-08 23:35:07', '2024-08-08 23:35:07', 0, NULL, '2024-08-09 03:35:07', '2024-08-09 03:35:07'),
(5889, 3, '2024-08-08 23:35:08', '2024-08-08 23:35:08', 0, NULL, '2024-08-09 03:35:08', '2024-08-09 03:35:08'),
(5890, 5, '2024-08-08 23:35:08', '2024-08-08 23:35:08', 0, NULL, '2024-08-09 03:35:09', '2024-08-09 03:35:09'),
(5891, 1, '2024-08-08 23:40:08', '2024-08-08 23:40:08', 0, NULL, '2024-08-09 03:40:08', '2024-08-09 03:40:08'),
(5892, 2, '2024-08-08 23:40:08', '2024-08-08 23:40:08', 0, NULL, '2024-08-09 03:40:09', '2024-08-09 03:40:09'),
(5893, 3, '2024-08-08 23:45:06', '2024-08-08 23:45:06', 0, NULL, '2024-08-09 03:45:07', '2024-08-09 03:45:07'),
(5894, 5, '2024-08-08 23:45:08', '2024-08-08 23:45:08', 0, NULL, '2024-08-09 03:45:08', '2024-08-09 03:45:08'),
(5895, 1, '2024-08-08 23:50:05', '2024-08-08 23:50:12', 7, NULL, '2024-08-09 03:50:13', '2024-08-09 03:50:13'),
(5896, 2, '2024-08-08 23:50:13', '2024-08-08 23:50:13', 0, NULL, '2024-08-09 03:50:13', '2024-08-09 03:50:13'),
(5897, 3, '2024-08-08 23:55:07', '2024-08-08 23:55:07', 0, NULL, '2024-08-09 03:55:07', '2024-08-09 03:55:07'),
(5898, 5, '2024-08-08 23:55:07', '2024-08-08 23:55:08', 0, NULL, '2024-08-09 03:55:08', '2024-08-09 03:55:08'),
(5899, 1, '2024-08-09 00:00:10', '2024-08-09 00:00:10', 0, NULL, '2024-08-09 04:00:10', '2024-08-09 04:00:10');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(5900, 2, '2024-08-09 00:00:11', '2024-08-09 00:00:11', 0, NULL, '2024-08-09 04:00:11', '2024-08-09 04:00:11'),
(5901, 3, '2024-08-09 00:00:11', '2024-08-09 00:00:11', 0, NULL, '2024-08-09 04:00:11', '2024-08-09 04:00:11'),
(5902, 5, '2024-08-09 00:05:08', '2024-08-09 00:05:08', 0, NULL, '2024-08-09 04:05:10', '2024-08-09 04:05:10'),
(5903, 1, '2024-08-09 00:10:07', '2024-08-09 00:10:07', 0, NULL, '2024-08-09 04:10:07', '2024-08-09 04:10:07'),
(5904, 2, '2024-08-09 00:10:07', '2024-08-09 00:10:07', 0, NULL, '2024-08-09 04:10:07', '2024-08-09 04:10:07'),
(5905, 3, '2024-08-09 00:10:08', '2024-08-09 00:10:08', 0, NULL, '2024-08-09 04:10:08', '2024-08-09 04:10:08'),
(5906, 1, '2024-08-09 00:15:12', '2024-08-09 00:15:12', 0, NULL, '2024-08-09 04:15:13', '2024-08-09 04:15:13'),
(5907, 2, '2024-08-09 00:15:13', '2024-08-09 00:15:13', 0, NULL, '2024-08-09 04:15:14', '2024-08-09 04:15:14'),
(5908, 3, '2024-08-09 00:15:14', '2024-08-09 00:15:14', 0, NULL, '2024-08-09 04:15:14', '2024-08-09 04:15:14'),
(5909, 5, '2024-08-09 00:15:15', '2024-08-09 00:15:15', 0, NULL, '2024-08-09 04:15:15', '2024-08-09 04:15:15'),
(5910, 1, '2024-08-09 00:25:05', '2024-08-09 00:25:05', 0, NULL, '2024-08-09 04:25:06', '2024-08-09 04:25:06'),
(5911, 2, '2024-08-09 00:25:07', '2024-08-09 00:25:07', 0, NULL, '2024-08-09 04:25:08', '2024-08-09 04:25:08'),
(5912, 3, '2024-08-09 00:25:09', '2024-08-09 00:25:09', 0, NULL, '2024-08-09 04:25:09', '2024-08-09 04:25:09'),
(5913, 5, '2024-08-09 00:25:10', '2024-08-09 00:25:10', 0, NULL, '2024-08-09 04:25:10', '2024-08-09 04:25:10'),
(5914, 1, '2024-08-09 00:35:08', '2024-08-09 00:35:08', 0, NULL, '2024-08-09 04:35:09', '2024-08-09 04:35:09'),
(5915, 2, '2024-08-09 00:35:09', '2024-08-09 00:35:09', 0, NULL, '2024-08-09 04:35:09', '2024-08-09 04:35:09'),
(5916, 3, '2024-08-09 00:35:09', '2024-08-09 00:35:09', 0, NULL, '2024-08-09 04:35:10', '2024-08-09 04:35:10'),
(5917, 5, '2024-08-09 00:35:10', '2024-08-09 00:35:10', 0, NULL, '2024-08-09 04:35:10', '2024-08-09 04:35:10'),
(5918, 1, '2024-08-09 00:45:07', '2024-08-09 00:45:07', 0, NULL, '2024-08-09 04:45:08', '2024-08-09 04:45:08'),
(5919, 2, '2024-08-09 00:45:08', '2024-08-09 00:45:08', 0, NULL, '2024-08-09 04:45:09', '2024-08-09 04:45:09'),
(5920, 3, '2024-08-09 00:45:09', '2024-08-09 00:45:09', 0, NULL, '2024-08-09 04:45:10', '2024-08-09 04:45:10'),
(5921, 5, '2024-08-09 00:45:10', '2024-08-09 00:45:10', 0, NULL, '2024-08-09 04:45:13', '2024-08-09 04:45:13'),
(5922, 1, '2024-08-09 00:55:07', '2024-08-09 00:55:07', 0, NULL, '2024-08-09 04:55:08', '2024-08-09 04:55:08'),
(5923, 2, '2024-08-09 00:55:09', '2024-08-09 00:55:09', 0, NULL, '2024-08-09 04:55:10', '2024-08-09 04:55:10'),
(5924, 3, '2024-08-09 00:55:10', '2024-08-09 00:55:10', 0, NULL, '2024-08-09 04:55:10', '2024-08-09 04:55:10'),
(5925, 5, '2024-08-09 00:55:11', '2024-08-09 00:55:11', 0, NULL, '2024-08-09 04:55:11', '2024-08-09 04:55:11'),
(5926, 1, '2024-08-09 01:05:05', '2024-08-09 01:05:05', 0, NULL, '2024-08-09 05:05:06', '2024-08-09 05:05:06'),
(5927, 2, '2024-08-09 01:05:07', '2024-08-09 01:05:07', 0, NULL, '2024-08-09 05:05:07', '2024-08-09 05:05:07'),
(5928, 3, '2024-08-09 01:05:08', '2024-08-09 01:05:08', 0, NULL, '2024-08-09 05:05:08', '2024-08-09 05:05:08'),
(5929, 5, '2024-08-09 01:05:08', '2024-08-09 01:05:08', 0, NULL, '2024-08-09 05:05:09', '2024-08-09 05:05:09'),
(5930, 1, '2024-08-09 01:10:08', '2024-08-09 01:10:10', 1, NULL, '2024-08-09 05:10:11', '2024-08-09 05:10:11'),
(5931, 2, '2024-08-09 01:10:11', '2024-08-09 01:10:11', 0, NULL, '2024-08-09 05:10:12', '2024-08-09 05:10:12'),
(5932, 3, '2024-08-09 01:15:07', '2024-08-09 01:15:07', 0, NULL, '2024-08-09 05:15:07', '2024-08-09 05:15:07'),
(5933, 5, '2024-08-09 01:15:08', '2024-08-09 01:15:08', 0, NULL, '2024-08-09 05:15:08', '2024-08-09 05:15:08'),
(5934, 1, '2024-08-09 01:20:11', '2024-08-09 01:20:11', 0, NULL, '2024-08-09 05:20:11', '2024-08-09 05:20:11'),
(5935, 2, '2024-08-09 01:20:12', '2024-08-09 01:20:12', 0, NULL, '2024-08-09 05:20:12', '2024-08-09 05:20:12'),
(5936, 3, '2024-08-09 01:20:12', '2024-08-09 01:20:12', 0, NULL, '2024-08-09 05:20:12', '2024-08-09 05:20:12'),
(5937, 5, '2024-08-09 01:20:12', '2024-08-09 01:20:12', 0, NULL, '2024-08-09 05:20:13', '2024-08-09 05:20:13'),
(5938, 1, '2024-08-09 01:30:05', '2024-08-09 01:30:05', 0, NULL, '2024-08-09 05:30:06', '2024-08-09 05:30:06'),
(5939, 2, '2024-08-09 01:30:07', '2024-08-09 01:30:07', 0, NULL, '2024-08-09 05:30:08', '2024-08-09 05:30:08'),
(5940, 3, '2024-08-09 01:30:09', '2024-08-09 01:30:09', 0, NULL, '2024-08-09 05:30:09', '2024-08-09 05:30:09'),
(5941, 5, '2024-08-09 01:30:10', '2024-08-09 01:30:10', 0, NULL, '2024-08-09 05:30:10', '2024-08-09 05:30:10'),
(5942, 1, '2024-08-09 01:35:08', '2024-08-09 01:35:08', 0, NULL, '2024-08-09 05:35:10', '2024-08-09 05:35:10'),
(5943, 2, '2024-08-09 01:35:10', '2024-08-09 01:35:10', 0, NULL, '2024-08-09 05:35:10', '2024-08-09 05:35:10'),
(5944, 3, '2024-08-09 01:40:05', '2024-08-09 01:40:05', 0, NULL, '2024-08-09 05:40:05', '2024-08-09 05:40:05'),
(5945, 5, '2024-08-09 01:40:06', '2024-08-09 01:40:07', 0, NULL, '2024-08-09 05:40:07', '2024-08-09 05:40:07'),
(5946, 1, '2024-08-09 01:45:04', '2024-08-09 01:45:04', 0, NULL, '2024-08-09 05:45:05', '2024-08-09 05:45:05'),
(5947, 2, '2024-08-09 01:45:05', '2024-08-09 01:45:05', 0, NULL, '2024-08-09 05:45:06', '2024-08-09 05:45:06'),
(5948, 1, '2024-08-09 01:50:06', '2024-08-09 01:50:06', 0, NULL, '2024-08-09 05:50:06', '2024-08-09 05:50:06'),
(5949, 2, '2024-08-09 01:50:07', '2024-08-09 01:50:07', 0, NULL, '2024-08-09 05:50:07', '2024-08-09 05:50:07'),
(5950, 3, '2024-08-09 01:50:12', '2024-08-09 01:50:12', 0, NULL, '2024-08-09 05:50:13', '2024-08-09 05:50:13'),
(5951, 5, '2024-08-09 01:50:14', '2024-08-09 01:50:14', 0, NULL, '2024-08-09 05:50:14', '2024-08-09 05:50:14'),
(5952, 1, '2024-08-09 01:55:08', '2024-08-09 01:55:08', 0, NULL, '2024-08-09 05:55:09', '2024-08-09 05:55:09'),
(5953, 2, '2024-08-09 01:55:10', '2024-08-09 01:55:10', 0, NULL, '2024-08-09 05:55:10', '2024-08-09 05:55:10'),
(5954, 3, '2024-08-09 02:00:06', '2024-08-09 02:00:06', 0, NULL, '2024-08-09 06:00:07', '2024-08-09 06:00:07'),
(5955, 5, '2024-08-09 02:00:08', '2024-08-09 02:00:08', 0, NULL, '2024-08-09 06:00:09', '2024-08-09 06:00:09'),
(5956, 1, '2024-08-09 02:05:06', '2024-08-09 02:05:08', 1, NULL, '2024-08-09 06:05:08', '2024-08-09 06:05:08'),
(5957, 2, '2024-08-09 02:05:09', '2024-08-09 02:05:09', 0, NULL, '2024-08-09 06:05:09', '2024-08-09 06:05:09'),
(5958, 3, '2024-08-09 02:10:05', '2024-08-09 02:10:05', 0, NULL, '2024-08-09 06:10:06', '2024-08-09 06:10:06'),
(5959, 5, '2024-08-09 02:10:07', '2024-08-09 02:10:07', 0, NULL, '2024-08-09 06:10:08', '2024-08-09 06:10:08'),
(5960, 1, '2024-08-09 02:15:08', '2024-08-09 02:15:08', 0, NULL, '2024-08-09 06:15:08', '2024-08-09 06:15:08'),
(5961, 2, '2024-08-09 02:15:09', '2024-08-09 02:15:09', 0, NULL, '2024-08-09 06:15:09', '2024-08-09 06:15:09'),
(5962, 3, '2024-08-09 02:15:09', '2024-08-09 02:15:09', 0, NULL, '2024-08-09 06:15:09', '2024-08-09 06:15:09'),
(5963, 5, '2024-08-09 02:15:10', '2024-08-09 02:15:10', 0, NULL, '2024-08-09 06:15:10', '2024-08-09 06:15:10'),
(5964, 1, '2024-08-09 02:25:10', '2024-08-09 02:25:10', 0, NULL, '2024-08-09 06:25:11', '2024-08-09 06:25:11'),
(5965, 2, '2024-08-09 02:25:11', '2024-08-09 02:25:11', 0, NULL, '2024-08-09 06:25:12', '2024-08-09 06:25:12'),
(5966, 3, '2024-08-09 02:25:12', '2024-08-09 02:25:12', 0, NULL, '2024-08-09 06:25:12', '2024-08-09 06:25:12'),
(5967, 5, '2024-08-09 02:25:13', '2024-08-09 02:25:13', 0, NULL, '2024-08-09 06:25:13', '2024-08-09 06:25:13'),
(5968, 1, '2024-08-09 02:35:07', '2024-08-09 02:35:07', 0, NULL, '2024-08-09 06:35:08', '2024-08-09 06:35:08'),
(5969, 2, '2024-08-09 02:35:08', '2024-08-09 02:35:08', 0, NULL, '2024-08-09 06:35:09', '2024-08-09 06:35:09'),
(5970, 3, '2024-08-09 02:35:09', '2024-08-09 02:35:09', 0, NULL, '2024-08-09 06:35:09', '2024-08-09 06:35:09'),
(5971, 5, '2024-08-09 02:35:09', '2024-08-09 02:35:09', 0, NULL, '2024-08-09 06:35:10', '2024-08-09 06:35:10'),
(5972, 1, '2024-08-09 02:40:08', '2024-08-09 02:40:09', 1, NULL, '2024-08-09 06:40:09', '2024-08-09 06:40:09'),
(5973, 1, '2024-08-09 02:45:11', '2024-08-09 02:45:11', 0, NULL, '2024-08-09 06:45:11', '2024-08-09 06:45:11'),
(5974, 2, '2024-08-09 02:45:12', '2024-08-09 02:45:12', 0, NULL, '2024-08-09 06:45:12', '2024-08-09 06:45:12'),
(5975, 3, '2024-08-09 02:45:12', '2024-08-09 02:45:12', 0, NULL, '2024-08-09 06:45:12', '2024-08-09 06:45:12'),
(5976, 5, '2024-08-09 02:45:12', '2024-08-09 02:45:12', 0, NULL, '2024-08-09 06:45:12', '2024-08-09 06:45:12'),
(5977, 1, '2024-08-09 02:55:06', '2024-08-09 02:55:06', 0, NULL, '2024-08-09 06:55:06', '2024-08-09 06:55:06'),
(5978, 2, '2024-08-09 02:55:07', '2024-08-09 02:55:07', 0, NULL, '2024-08-09 06:55:07', '2024-08-09 06:55:07'),
(5979, 3, '2024-08-09 02:55:08', '2024-08-09 02:55:08', 0, NULL, '2024-08-09 06:55:08', '2024-08-09 06:55:08'),
(5980, 5, '2024-08-09 02:55:09', '2024-08-09 02:55:09', 0, NULL, '2024-08-09 06:55:09', '2024-08-09 06:55:09'),
(5981, 1, '2024-08-09 03:05:06', '2024-08-09 03:05:06', 0, NULL, '2024-08-09 07:05:07', '2024-08-09 07:05:07'),
(5982, 2, '2024-08-09 03:05:07', '2024-08-09 03:05:07', 0, NULL, '2024-08-09 07:05:07', '2024-08-09 07:05:07'),
(5983, 3, '2024-08-09 03:05:07', '2024-08-09 03:05:07', 0, NULL, '2024-08-09 07:05:07', '2024-08-09 07:05:07'),
(5984, 5, '2024-08-09 03:05:08', '2024-08-09 03:05:08', 0, NULL, '2024-08-09 07:05:08', '2024-08-09 07:05:08'),
(5985, 1, '2024-08-09 03:10:09', '2024-08-09 03:10:10', 0, NULL, '2024-08-09 07:10:10', '2024-08-09 07:10:10'),
(5986, 2, '2024-08-09 03:10:11', '2024-08-09 03:10:11', 0, NULL, '2024-08-09 07:10:13', '2024-08-09 07:10:13'),
(5987, 3, '2024-08-09 03:10:14', '2024-08-09 03:10:14', 0, NULL, '2024-08-09 07:10:14', '2024-08-09 07:10:14'),
(5988, 5, '2024-08-09 03:10:14', '2024-08-09 03:10:14', 0, NULL, '2024-08-09 07:10:14', '2024-08-09 07:10:14'),
(5989, 1, '2024-08-09 03:20:05', '2024-08-09 03:20:05', 0, NULL, '2024-08-09 07:20:06', '2024-08-09 07:20:06'),
(5990, 2, '2024-08-09 03:20:06', '2024-08-09 03:20:06', 0, NULL, '2024-08-09 07:20:06', '2024-08-09 07:20:06'),
(5991, 3, '2024-08-09 03:20:07', '2024-08-09 03:20:07', 0, NULL, '2024-08-09 07:20:07', '2024-08-09 07:20:07'),
(5992, 5, '2024-08-09 03:20:07', '2024-08-09 03:20:07', 0, NULL, '2024-08-09 07:20:08', '2024-08-09 07:20:08'),
(5993, 1, '2024-08-09 03:30:08', '2024-08-09 03:30:08', 0, NULL, '2024-08-09 07:30:09', '2024-08-09 07:30:09'),
(5994, 2, '2024-08-09 03:30:09', '2024-08-09 03:30:09', 0, NULL, '2024-08-09 07:30:10', '2024-08-09 07:30:10'),
(5995, 3, '2024-08-09 03:30:10', '2024-08-09 03:30:10', 0, NULL, '2024-08-09 07:30:10', '2024-08-09 07:30:10'),
(5996, 5, '2024-08-09 03:30:11', '2024-08-09 03:30:11', 0, NULL, '2024-08-09 07:30:11', '2024-08-09 07:30:11'),
(5997, 1, '2024-08-09 03:40:11', '2024-08-09 03:40:11', 0, NULL, '2024-08-09 07:40:12', '2024-08-09 07:40:12'),
(5998, 2, '2024-08-09 03:40:12', '2024-08-09 03:40:12', 0, NULL, '2024-08-09 07:40:12', '2024-08-09 07:40:12'),
(5999, 3, '2024-08-09 03:40:13', '2024-08-09 03:40:13', 0, NULL, '2024-08-09 07:40:13', '2024-08-09 07:40:13'),
(6000, 5, '2024-08-09 03:40:13', '2024-08-09 03:40:13', 0, NULL, '2024-08-09 07:40:13', '2024-08-09 07:40:13'),
(6001, 1, '2024-08-09 03:50:04', '2024-08-09 03:50:05', 0, NULL, '2024-08-09 07:50:05', '2024-08-09 07:50:05'),
(6002, 2, '2024-08-09 03:50:06', '2024-08-09 03:50:06', 0, NULL, '2024-08-09 07:50:11', '2024-08-09 07:50:11'),
(6003, 3, '2024-08-09 03:50:11', '2024-08-09 03:50:11', 0, NULL, '2024-08-09 07:50:12', '2024-08-09 07:50:12'),
(6004, 5, '2024-08-09 03:50:12', '2024-08-09 03:50:12', 0, NULL, '2024-08-09 07:50:12', '2024-08-09 07:50:12'),
(6005, 1, '2024-08-09 03:55:07', '2024-08-09 03:55:08', 0, NULL, '2024-08-09 07:55:08', '2024-08-09 07:55:08'),
(6006, 2, '2024-08-09 03:55:08', '2024-08-09 03:55:08', 0, NULL, '2024-08-09 07:55:08', '2024-08-09 07:55:08'),
(6007, 3, '2024-08-09 04:00:03', '2024-08-09 04:00:03', 0, NULL, '2024-08-09 08:00:03', '2024-08-09 08:00:03'),
(6008, 5, '2024-08-09 04:00:03', '2024-08-09 04:00:03', 0, NULL, '2024-08-09 08:00:04', '2024-08-09 08:00:04'),
(6009, 1, '2024-08-09 04:05:09', '2024-08-09 04:05:09', 0, NULL, '2024-08-09 08:05:10', '2024-08-09 08:05:10'),
(6010, 2, '2024-08-09 04:05:10', '2024-08-09 04:05:10', 0, NULL, '2024-08-09 08:05:10', '2024-08-09 08:05:10'),
(6011, 3, '2024-08-09 04:05:10', '2024-08-09 04:05:10', 0, NULL, '2024-08-09 08:05:11', '2024-08-09 08:05:11'),
(6012, 5, '2024-08-09 04:05:11', '2024-08-09 04:05:11', 0, NULL, '2024-08-09 08:05:11', '2024-08-09 08:05:11'),
(6013, 1, '2024-08-09 04:15:05', '2024-08-09 04:15:05', 0, NULL, '2024-08-09 08:15:05', '2024-08-09 08:15:05'),
(6014, 2, '2024-08-09 04:15:06', '2024-08-09 04:15:06', 0, NULL, '2024-08-09 08:15:06', '2024-08-09 08:15:06'),
(6015, 3, '2024-08-09 04:15:07', '2024-08-09 04:15:07', 0, NULL, '2024-08-09 08:15:07', '2024-08-09 08:15:07'),
(6016, 5, '2024-08-09 04:15:08', '2024-08-09 04:15:08', 0, NULL, '2024-08-09 08:15:09', '2024-08-09 08:15:09'),
(6017, 1, '2024-08-09 04:25:07', '2024-08-09 04:25:07', 0, NULL, '2024-08-09 08:25:08', '2024-08-09 08:25:08'),
(6018, 2, '2024-08-09 04:25:08', '2024-08-09 04:25:08', 0, NULL, '2024-08-09 08:25:09', '2024-08-09 08:25:09'),
(6019, 3, '2024-08-09 04:25:10', '2024-08-09 04:25:10', 0, NULL, '2024-08-09 08:25:10', '2024-08-09 08:25:10'),
(6020, 5, '2024-08-09 04:25:10', '2024-08-09 04:25:10', 0, NULL, '2024-08-09 08:25:10', '2024-08-09 08:25:10'),
(6021, 1, '2024-08-09 04:35:07', '2024-08-09 04:35:07', 0, NULL, '2024-08-09 08:35:08', '2024-08-09 08:35:08'),
(6022, 2, '2024-08-09 04:35:09', '2024-08-09 04:35:09', 0, NULL, '2024-08-09 08:35:09', '2024-08-09 08:35:09'),
(6023, 3, '2024-08-09 04:35:09', '2024-08-09 04:35:09', 0, NULL, '2024-08-09 08:35:10', '2024-08-09 08:35:10'),
(6024, 5, '2024-08-09 04:35:10', '2024-08-09 04:35:10', 0, NULL, '2024-08-09 08:35:10', '2024-08-09 08:35:10'),
(6025, 1, '2024-08-09 04:45:06', '2024-08-09 04:45:06', 0, NULL, '2024-08-09 08:45:07', '2024-08-09 08:45:07'),
(6026, 2, '2024-08-09 04:45:07', '2024-08-09 04:45:07', 0, NULL, '2024-08-09 08:45:07', '2024-08-09 08:45:07'),
(6027, 3, '2024-08-09 04:45:08', '2024-08-09 04:45:08', 0, NULL, '2024-08-09 08:45:08', '2024-08-09 08:45:08'),
(6028, 5, '2024-08-09 04:45:09', '2024-08-09 04:45:09', 0, NULL, '2024-08-09 08:45:09', '2024-08-09 08:45:09'),
(6029, 1, '2024-08-09 04:55:06', '2024-08-09 04:55:06', 0, NULL, '2024-08-09 08:55:07', '2024-08-09 08:55:07'),
(6030, 2, '2024-08-09 04:55:08', '2024-08-09 04:55:08', 0, NULL, '2024-08-09 08:55:08', '2024-08-09 08:55:08'),
(6031, 3, '2024-08-09 04:55:09', '2024-08-09 04:55:09', 0, NULL, '2024-08-09 08:55:09', '2024-08-09 08:55:09'),
(6032, 5, '2024-08-09 04:55:09', '2024-08-09 04:55:10', 0, NULL, '2024-08-09 08:55:10', '2024-08-09 08:55:10'),
(6033, 1, '2024-08-09 05:05:07', '2024-08-09 05:05:07', 0, NULL, '2024-08-09 09:05:08', '2024-08-09 09:05:08'),
(6034, 2, '2024-08-09 05:05:08', '2024-08-09 05:05:08', 0, NULL, '2024-08-09 09:05:08', '2024-08-09 09:05:08'),
(6035, 3, '2024-08-09 05:05:09', '2024-08-09 05:05:09', 0, NULL, '2024-08-09 09:05:09', '2024-08-09 09:05:09'),
(6036, 5, '2024-08-09 05:05:09', '2024-08-09 05:05:09', 0, NULL, '2024-08-09 09:05:09', '2024-08-09 09:05:09'),
(6037, 1, '2024-08-09 05:15:04', '2024-08-09 05:15:04', 0, NULL, '2024-08-09 09:15:04', '2024-08-09 09:15:04'),
(6038, 2, '2024-08-09 05:15:05', '2024-08-09 05:15:05', 0, NULL, '2024-08-09 09:15:06', '2024-08-09 09:15:06'),
(6039, 3, '2024-08-09 05:15:06', '2024-08-09 05:15:06', 0, NULL, '2024-08-09 09:15:07', '2024-08-09 09:15:07'),
(6040, 5, '2024-08-09 05:15:07', '2024-08-09 05:15:07', 0, NULL, '2024-08-09 09:15:08', '2024-08-09 09:15:08'),
(6041, 1, '2024-08-09 05:20:06', '2024-08-09 05:20:06', 0, NULL, '2024-08-09 09:20:07', '2024-08-09 09:20:07'),
(6042, 2, '2024-08-09 05:20:07', '2024-08-09 05:20:07', 0, NULL, '2024-08-09 09:20:08', '2024-08-09 09:20:08'),
(6043, 1, '2024-08-09 05:25:09', '2024-08-09 05:25:09', 0, NULL, '2024-08-09 09:25:10', '2024-08-09 09:25:10'),
(6044, 2, '2024-08-09 05:25:10', '2024-08-09 05:25:10', 0, NULL, '2024-08-09 09:25:10', '2024-08-09 09:25:10'),
(6045, 3, '2024-08-09 05:25:10', '2024-08-09 05:25:10', 0, NULL, '2024-08-09 09:25:10', '2024-08-09 09:25:10'),
(6046, 5, '2024-08-09 05:25:10', '2024-08-09 05:25:10', 0, NULL, '2024-08-09 09:25:10', '2024-08-09 09:25:10'),
(6047, 1, '2024-08-09 05:35:11', '2024-08-09 05:35:11', 0, NULL, '2024-08-09 09:35:11', '2024-08-09 09:35:11'),
(6048, 2, '2024-08-09 05:35:12', '2024-08-09 05:35:12', 0, NULL, '2024-08-09 09:35:12', '2024-08-09 09:35:12'),
(6049, 3, '2024-08-09 05:35:12', '2024-08-09 05:35:12', 0, NULL, '2024-08-09 09:35:12', '2024-08-09 09:35:12'),
(6050, 5, '2024-08-09 05:35:12', '2024-08-09 05:35:12', 0, NULL, '2024-08-09 09:35:13', '2024-08-09 09:35:13'),
(6051, 1, '2024-08-09 05:45:05', '2024-08-09 05:45:05', 0, NULL, '2024-08-09 09:45:06', '2024-08-09 09:45:06'),
(6052, 2, '2024-08-09 05:45:06', '2024-08-09 05:45:06', 0, NULL, '2024-08-09 09:45:06', '2024-08-09 09:45:06'),
(6053, 3, '2024-08-09 05:45:07', '2024-08-09 05:45:07', 0, NULL, '2024-08-09 09:45:07', '2024-08-09 09:45:07'),
(6054, 5, '2024-08-09 05:45:07', '2024-08-09 05:45:07', 0, NULL, '2024-08-09 09:45:08', '2024-08-09 09:45:08'),
(6055, 1, '2024-08-09 05:50:08', '2024-08-09 05:50:09', 0, NULL, '2024-08-09 09:50:09', '2024-08-09 09:50:09'),
(6056, 2, '2024-08-09 05:50:09', '2024-08-09 05:50:09', 0, NULL, '2024-08-09 09:50:10', '2024-08-09 09:50:10'),
(6057, 3, '2024-08-09 05:50:10', '2024-08-09 05:50:10', 0, NULL, '2024-08-09 09:50:10', '2024-08-09 09:50:10'),
(6058, 5, '2024-08-09 05:50:10', '2024-08-09 05:50:10', 0, NULL, '2024-08-09 09:50:11', '2024-08-09 09:50:11'),
(6059, 1, '2024-08-09 06:00:04', '2024-08-09 06:00:04', 0, NULL, '2024-08-09 10:00:05', '2024-08-09 10:00:05'),
(6060, 2, '2024-08-09 06:00:06', '2024-08-09 06:00:06', 0, NULL, '2024-08-09 10:00:06', '2024-08-09 10:00:06'),
(6061, 3, '2024-08-09 06:00:06', '2024-08-09 06:00:06', 0, NULL, '2024-08-09 10:00:07', '2024-08-09 10:00:07'),
(6062, 5, '2024-08-09 06:00:07', '2024-08-09 06:00:07', 0, NULL, '2024-08-09 10:00:09', '2024-08-09 10:00:09'),
(6063, 1, '2024-08-09 06:05:06', '2024-08-09 06:05:06', 0, NULL, '2024-08-09 10:05:06', '2024-08-09 10:05:06'),
(6064, 2, '2024-08-09 06:10:04', '2024-08-09 06:10:04', 0, NULL, '2024-08-09 10:10:05', '2024-08-09 10:10:05'),
(6065, 3, '2024-08-09 06:10:06', '2024-08-09 06:10:06', 0, NULL, '2024-08-09 10:10:06', '2024-08-09 10:10:06'),
(6066, 5, '2024-08-09 06:10:06', '2024-08-09 06:10:06', 0, NULL, '2024-08-09 10:10:07', '2024-08-09 10:10:07'),
(6067, 1, '2024-08-09 06:15:07', '2024-08-09 06:15:07', 0, NULL, '2024-08-09 10:15:07', '2024-08-09 10:15:07'),
(6068, 2, '2024-08-09 06:15:08', '2024-08-09 06:15:08', 0, NULL, '2024-08-09 10:15:08', '2024-08-09 10:15:08'),
(6069, 3, '2024-08-09 06:15:08', '2024-08-09 06:15:08', 0, NULL, '2024-08-09 10:15:08', '2024-08-09 10:15:08'),
(6070, 5, '2024-08-09 06:15:09', '2024-08-09 06:15:09', 0, NULL, '2024-08-09 10:15:09', '2024-08-09 10:15:09'),
(6071, 1, '2024-08-09 06:20:08', '2024-08-09 06:20:09', 1, NULL, '2024-08-09 10:20:10', '2024-08-09 10:20:10'),
(6072, 2, '2024-08-09 06:25:06', '2024-08-09 06:25:06', 0, NULL, '2024-08-09 10:25:06', '2024-08-09 10:25:06'),
(6073, 3, '2024-08-09 06:25:07', '2024-08-09 06:25:07', 0, NULL, '2024-08-09 10:25:07', '2024-08-09 10:25:07'),
(6074, 5, '2024-08-09 06:25:07', '2024-08-09 06:25:07', 0, NULL, '2024-08-09 10:25:08', '2024-08-09 10:25:08'),
(6075, 1, '2024-08-09 06:30:04', '2024-08-09 06:30:04', 0, NULL, '2024-08-09 10:30:04', '2024-08-09 10:30:04'),
(6076, 1, '2024-08-09 06:35:06', '2024-08-09 06:35:06', 0, NULL, '2024-08-09 10:35:07', '2024-08-09 10:35:07'),
(6077, 2, '2024-08-09 06:35:07', '2024-08-09 06:35:07', 0, NULL, '2024-08-09 10:35:07', '2024-08-09 10:35:07'),
(6078, 3, '2024-08-09 06:35:07', '2024-08-09 06:35:07', 0, NULL, '2024-08-09 10:35:08', '2024-08-09 10:35:08'),
(6079, 5, '2024-08-09 06:35:08', '2024-08-09 06:35:08', 0, NULL, '2024-08-09 10:35:08', '2024-08-09 10:35:08'),
(6080, 1, '2024-08-09 06:45:05', '2024-08-09 06:45:05', 0, NULL, '2024-08-09 10:45:06', '2024-08-09 10:45:06'),
(6081, 2, '2024-08-09 06:45:06', '2024-08-09 06:45:06', 0, NULL, '2024-08-09 10:45:07', '2024-08-09 10:45:07'),
(6082, 3, '2024-08-09 06:45:07', '2024-08-09 06:45:07', 0, NULL, '2024-08-09 10:45:07', '2024-08-09 10:45:07'),
(6083, 5, '2024-08-09 06:45:08', '2024-08-09 06:45:08', 0, NULL, '2024-08-09 10:45:08', '2024-08-09 10:45:08'),
(6084, 1, '2024-08-09 06:55:07', '2024-08-09 06:55:07', 0, NULL, '2024-08-09 10:55:07', '2024-08-09 10:55:07'),
(6085, 2, '2024-08-09 06:55:08', '2024-08-09 06:55:08', 0, NULL, '2024-08-09 10:55:09', '2024-08-09 10:55:09'),
(6086, 3, '2024-08-09 06:55:09', '2024-08-09 06:55:09', 0, NULL, '2024-08-09 10:55:10', '2024-08-09 10:55:10'),
(6087, 5, '2024-08-09 06:55:10', '2024-08-09 06:55:10', 0, NULL, '2024-08-09 10:55:11', '2024-08-09 10:55:11'),
(6088, 1, '2024-08-09 07:00:11', '2024-08-09 07:00:12', 0, NULL, '2024-08-09 11:00:12', '2024-08-09 11:00:12'),
(6089, 2, '2024-08-09 07:00:12', '2024-08-09 07:00:12', 0, NULL, '2024-08-09 11:00:13', '2024-08-09 11:00:13'),
(6090, 3, '2024-08-09 07:00:13', '2024-08-09 07:00:13', 0, NULL, '2024-08-09 11:00:13', '2024-08-09 11:00:13'),
(6091, 5, '2024-08-09 07:00:13', '2024-08-09 07:00:14', 0, NULL, '2024-08-09 11:00:14', '2024-08-09 11:00:14'),
(6092, 1, '2024-08-09 07:10:05', '2024-08-09 07:10:05', 0, NULL, '2024-08-09 11:10:05', '2024-08-09 11:10:05'),
(6093, 2, '2024-08-09 07:10:06', '2024-08-09 07:10:06', 0, NULL, '2024-08-09 11:10:06', '2024-08-09 11:10:06'),
(6094, 3, '2024-08-09 07:10:06', '2024-08-09 07:10:06', 0, NULL, '2024-08-09 11:10:06', '2024-08-09 11:10:06'),
(6095, 5, '2024-08-09 07:10:06', '2024-08-09 07:10:07', 0, NULL, '2024-08-09 11:10:07', '2024-08-09 11:10:07'),
(6096, 1, '2024-08-09 07:15:07', '2024-08-09 07:15:07', 0, NULL, '2024-08-09 11:15:07', '2024-08-09 11:15:07'),
(6097, 2, '2024-08-09 07:15:08', '2024-08-09 07:15:08', 0, NULL, '2024-08-09 11:15:08', '2024-08-09 11:15:08'),
(6098, 3, '2024-08-09 07:15:08', '2024-08-09 07:15:08', 0, NULL, '2024-08-09 11:15:10', '2024-08-09 11:15:10'),
(6099, 5, '2024-08-09 07:20:04', '2024-08-09 07:20:04', 0, NULL, '2024-08-09 11:20:05', '2024-08-09 11:20:05'),
(6100, 1, '2024-08-09 07:25:08', '2024-08-09 07:25:08', 0, NULL, '2024-08-09 11:25:08', '2024-08-09 11:25:08'),
(6101, 2, '2024-08-09 07:25:08', '2024-08-09 07:25:08', 0, NULL, '2024-08-09 11:25:08', '2024-08-09 11:25:08'),
(6102, 3, '2024-08-09 07:25:09', '2024-08-09 07:25:09', 0, NULL, '2024-08-09 11:25:09', '2024-08-09 11:25:09'),
(6103, 5, '2024-08-09 07:25:09', '2024-08-09 07:25:09', 0, NULL, '2024-08-09 11:25:09', '2024-08-09 11:25:09'),
(6104, 1, '2024-08-09 07:35:08', '2024-08-09 07:35:08', 0, NULL, '2024-08-09 11:35:08', '2024-08-09 11:35:08'),
(6105, 2, '2024-08-09 07:35:11', '2024-08-09 07:35:11', 0, NULL, '2024-08-09 11:35:11', '2024-08-09 11:35:11'),
(6106, 3, '2024-08-09 07:35:11', '2024-08-09 07:35:11', 0, NULL, '2024-08-09 11:35:11', '2024-08-09 11:35:11'),
(6107, 5, '2024-08-09 07:35:12', '2024-08-09 07:35:12', 0, NULL, '2024-08-09 11:35:12', '2024-08-09 11:35:12'),
(6108, 1, '2024-08-09 07:45:09', '2024-08-09 07:45:09', 0, NULL, '2024-08-09 11:45:10', '2024-08-09 11:45:10'),
(6109, 2, '2024-08-09 07:45:10', '2024-08-09 07:45:10', 0, NULL, '2024-08-09 11:45:10', '2024-08-09 11:45:10'),
(6110, 3, '2024-08-09 07:45:10', '2024-08-09 07:45:10', 0, NULL, '2024-08-09 11:45:11', '2024-08-09 11:45:11'),
(6111, 5, '2024-08-09 07:45:11', '2024-08-09 07:45:11', 0, NULL, '2024-08-09 11:45:11', '2024-08-09 11:45:11'),
(6112, 1, '2024-08-09 07:55:05', '2024-08-09 07:55:05', 0, NULL, '2024-08-09 11:55:06', '2024-08-09 11:55:06'),
(6113, 2, '2024-08-09 07:55:07', '2024-08-09 07:55:07', 0, NULL, '2024-08-09 11:55:07', '2024-08-09 11:55:07'),
(6114, 3, '2024-08-09 07:55:07', '2024-08-09 07:55:07', 0, NULL, '2024-08-09 11:55:08', '2024-08-09 11:55:08'),
(6115, 5, '2024-08-09 07:55:08', '2024-08-09 07:55:08', 0, NULL, '2024-08-09 11:55:08', '2024-08-09 11:55:08'),
(6116, 1, '2024-08-09 08:00:07', '2024-08-09 08:00:07', 0, NULL, '2024-08-09 12:00:08', '2024-08-09 12:00:08'),
(6117, 2, '2024-08-09 08:05:06', '2024-08-09 08:05:06', 0, NULL, '2024-08-09 12:05:07', '2024-08-09 12:05:07'),
(6118, 3, '2024-08-09 08:05:08', '2024-08-09 08:05:08', 0, NULL, '2024-08-09 12:05:09', '2024-08-09 12:05:09'),
(6119, 5, '2024-08-09 08:05:09', '2024-08-09 08:05:09', 0, NULL, '2024-08-09 12:05:12', '2024-08-09 12:05:12'),
(6120, 1, '2024-08-09 08:10:07', '2024-08-09 08:10:07', 0, NULL, '2024-08-09 12:10:08', '2024-08-09 12:10:08'),
(6121, 2, '2024-08-09 08:10:08', '2024-08-09 08:10:08', 0, NULL, '2024-08-09 12:10:08', '2024-08-09 12:10:08'),
(6122, 3, '2024-08-09 08:15:04', '2024-08-09 08:15:04', 0, NULL, '2024-08-09 12:15:05', '2024-08-09 12:15:05'),
(6123, 5, '2024-08-09 08:15:05', '2024-08-09 08:15:05', 0, NULL, '2024-08-09 12:15:06', '2024-08-09 12:15:06'),
(6124, 1, '2024-08-09 08:20:07', '2024-08-09 08:20:08', 1, NULL, '2024-08-09 12:20:08', '2024-08-09 12:20:08'),
(6125, 2, '2024-08-09 08:20:09', '2024-08-09 08:20:09', 0, NULL, '2024-08-09 12:20:09', '2024-08-09 12:20:09'),
(6126, 3, '2024-08-09 08:20:09', '2024-08-09 08:20:09', 0, NULL, '2024-08-09 12:20:10', '2024-08-09 12:20:10'),
(6127, 5, '2024-08-09 08:20:10', '2024-08-09 08:20:10', 0, NULL, '2024-08-09 12:20:10', '2024-08-09 12:20:10'),
(6128, 1, '2024-08-09 08:30:05', '2024-08-09 08:30:05', 0, NULL, '2024-08-09 12:30:06', '2024-08-09 12:30:06'),
(6129, 2, '2024-08-09 08:30:07', '2024-08-09 08:30:07', 0, NULL, '2024-08-09 12:30:07', '2024-08-09 12:30:07'),
(6130, 3, '2024-08-09 08:30:07', '2024-08-09 08:30:07', 0, NULL, '2024-08-09 12:30:08', '2024-08-09 12:30:08'),
(6131, 5, '2024-08-09 08:30:08', '2024-08-09 08:30:08', 0, NULL, '2024-08-09 12:30:09', '2024-08-09 12:30:09'),
(6132, 1, '2024-08-09 08:35:07', '2024-08-09 08:35:07', 0, NULL, '2024-08-09 12:35:07', '2024-08-09 12:35:07'),
(6133, 2, '2024-08-09 08:40:04', '2024-08-09 08:40:04', 0, NULL, '2024-08-09 12:40:04', '2024-08-09 12:40:04'),
(6134, 3, '2024-08-09 08:40:05', '2024-08-09 08:40:05', 0, NULL, '2024-08-09 12:40:05', '2024-08-09 12:40:05'),
(6135, 5, '2024-08-09 08:40:06', '2024-08-09 08:40:06', 0, NULL, '2024-08-09 12:40:06', '2024-08-09 12:40:06'),
(6136, 1, '2024-08-09 08:45:07', '2024-08-09 08:45:07', 0, NULL, '2024-08-09 12:45:08', '2024-08-09 12:45:08'),
(6137, 2, '2024-08-09 08:45:09', '2024-08-09 08:45:09', 0, NULL, '2024-08-09 12:45:09', '2024-08-09 12:45:09'),
(6138, 3, '2024-08-09 08:45:10', '2024-08-09 08:45:10', 0, NULL, '2024-08-09 12:45:10', '2024-08-09 12:45:10'),
(6139, 5, '2024-08-09 08:45:10', '2024-08-09 08:45:10', 0, NULL, '2024-08-09 12:45:11', '2024-08-09 12:45:11'),
(6140, 1, '2024-08-09 08:55:09', '2024-08-09 08:55:09', 0, NULL, '2024-08-09 12:55:09', '2024-08-09 12:55:09'),
(6141, 2, '2024-08-09 08:55:10', '2024-08-09 08:55:10', 0, NULL, '2024-08-09 12:55:10', '2024-08-09 12:55:10'),
(6142, 3, '2024-08-09 08:55:10', '2024-08-09 08:55:10', 0, NULL, '2024-08-09 12:55:11', '2024-08-09 12:55:11'),
(6143, 5, '2024-08-09 08:55:11', '2024-08-09 08:55:11', 0, NULL, '2024-08-09 12:55:11', '2024-08-09 12:55:11'),
(6144, 1, '2024-08-09 09:05:12', '2024-08-09 09:05:12', 0, NULL, '2024-08-09 13:05:12', '2024-08-09 13:05:12'),
(6145, 2, '2024-08-09 09:05:12', '2024-08-09 09:05:12', 0, NULL, '2024-08-09 13:05:13', '2024-08-09 13:05:13'),
(6146, 3, '2024-08-09 09:05:13', '2024-08-09 09:05:13', 0, NULL, '2024-08-09 13:05:13', '2024-08-09 13:05:13'),
(6147, 5, '2024-08-09 09:05:13', '2024-08-09 09:05:13', 0, NULL, '2024-08-09 13:05:13', '2024-08-09 13:05:13'),
(6148, 1, '2024-08-09 09:15:09', '2024-08-09 09:15:09', 0, NULL, '2024-08-09 13:15:09', '2024-08-09 13:15:09'),
(6149, 2, '2024-08-09 09:15:10', '2024-08-09 09:15:10', 0, NULL, '2024-08-09 13:15:10', '2024-08-09 13:15:10'),
(6150, 3, '2024-08-09 09:15:10', '2024-08-09 09:15:10', 0, NULL, '2024-08-09 13:15:10', '2024-08-09 13:15:10'),
(6151, 5, '2024-08-09 09:15:11', '2024-08-09 09:15:11', 0, NULL, '2024-08-09 13:15:11', '2024-08-09 13:15:11'),
(6152, 1, '2024-08-09 09:25:06', '2024-08-09 09:25:06', 0, NULL, '2024-08-09 13:25:07', '2024-08-09 13:25:07'),
(6153, 2, '2024-08-09 09:25:07', '2024-08-09 09:25:07', 0, NULL, '2024-08-09 13:25:08', '2024-08-09 13:25:08'),
(6154, 3, '2024-08-09 09:25:08', '2024-08-09 09:25:08', 0, NULL, '2024-08-09 13:25:12', '2024-08-09 13:25:12'),
(6155, 5, '2024-08-09 09:25:12', '2024-08-09 09:25:12', 0, NULL, '2024-08-09 13:25:12', '2024-08-09 13:25:12'),
(6156, 1, '2024-08-09 09:35:04', '2024-08-09 09:35:04', 0, NULL, '2024-08-09 13:35:04', '2024-08-09 13:35:04'),
(6157, 2, '2024-08-09 09:35:05', '2024-08-09 09:35:05', 0, NULL, '2024-08-09 13:35:08', '2024-08-09 13:35:08'),
(6158, 3, '2024-08-09 09:35:10', '2024-08-09 09:35:10', 0, NULL, '2024-08-09 13:35:11', '2024-08-09 13:35:11'),
(6159, 5, '2024-08-09 09:35:11', '2024-08-09 09:35:11', 0, NULL, '2024-08-09 13:35:11', '2024-08-09 13:35:11'),
(6160, 1, '2024-08-09 09:40:06', '2024-08-09 09:40:06', 0, NULL, '2024-08-09 13:40:07', '2024-08-09 13:40:07'),
(6161, 2, '2024-08-09 09:40:08', '2024-08-09 09:40:08', 0, NULL, '2024-08-09 13:40:08', '2024-08-09 13:40:08'),
(6162, 1, '2024-08-09 09:45:07', '2024-08-09 09:45:07', 0, NULL, '2024-08-09 13:45:08', '2024-08-09 13:45:08'),
(6163, 3, '2024-08-09 09:45:08', '2024-08-09 09:45:08', 0, NULL, '2024-08-09 13:45:08', '2024-08-09 13:45:08'),
(6164, 5, '2024-08-09 09:45:08', '2024-08-09 09:45:08', 0, NULL, '2024-08-09 13:45:08', '2024-08-09 13:45:08'),
(6165, 1, '2024-08-09 09:50:09', '2024-08-09 09:50:09', 0, NULL, '2024-08-09 13:50:09', '2024-08-09 13:50:09'),
(6166, 2, '2024-08-09 09:50:09', '2024-08-09 09:50:09', 0, NULL, '2024-08-09 13:50:09', '2024-08-09 13:50:09'),
(6167, 3, '2024-08-09 09:55:06', '2024-08-09 09:55:06', 0, NULL, '2024-08-09 13:55:06', '2024-08-09 13:55:06'),
(6168, 5, '2024-08-09 09:55:06', '2024-08-09 09:55:06', 0, NULL, '2024-08-09 13:55:07', '2024-08-09 13:55:07'),
(6169, 1, '2024-08-09 10:00:05', '2024-08-09 10:00:05', 0, NULL, '2024-08-09 14:00:06', '2024-08-09 14:00:06'),
(6170, 2, '2024-08-09 10:00:07', '2024-08-09 10:00:07', 0, NULL, '2024-08-09 14:00:08', '2024-08-09 14:00:08'),
(6171, 1, '2024-08-09 10:05:08', '2024-08-09 10:05:08', 0, NULL, '2024-08-09 14:05:08', '2024-08-09 14:05:08'),
(6172, 2, '2024-08-09 10:05:09', '2024-08-09 10:05:09', 0, NULL, '2024-08-09 14:05:09', '2024-08-09 14:05:09'),
(6173, 3, '2024-08-09 10:05:09', '2024-08-09 10:05:09', 0, NULL, '2024-08-09 14:05:10', '2024-08-09 14:05:10'),
(6174, 5, '2024-08-09 10:05:10', '2024-08-09 10:05:10', 0, NULL, '2024-08-09 14:05:10', '2024-08-09 14:05:10'),
(6175, 1, '2024-08-09 10:15:07', '2024-08-09 10:15:07', 0, NULL, '2024-08-09 14:15:07', '2024-08-09 14:15:07'),
(6176, 2, '2024-08-09 10:15:08', '2024-08-09 10:15:08', 0, NULL, '2024-08-09 14:15:08', '2024-08-09 14:15:08'),
(6177, 3, '2024-08-09 10:15:08', '2024-08-09 10:15:08', 0, NULL, '2024-08-09 14:15:08', '2024-08-09 14:15:08'),
(6178, 5, '2024-08-09 10:15:08', '2024-08-09 10:15:08', 0, NULL, '2024-08-09 14:15:09', '2024-08-09 14:15:09'),
(6179, 1, '2024-08-09 10:25:07', '2024-08-09 10:25:07', 0, NULL, '2024-08-09 14:25:08', '2024-08-09 14:25:08'),
(6180, 2, '2024-08-09 10:25:08', '2024-08-09 10:25:08', 0, NULL, '2024-08-09 14:25:09', '2024-08-09 14:25:09'),
(6181, 3, '2024-08-09 10:25:09', '2024-08-09 10:25:09', 0, NULL, '2024-08-09 14:25:09', '2024-08-09 14:25:09'),
(6182, 5, '2024-08-09 10:25:10', '2024-08-09 10:25:10', 0, NULL, '2024-08-09 14:25:10', '2024-08-09 14:25:10'),
(6183, 1, '2024-08-09 10:35:05', '2024-08-09 10:35:06', 0, NULL, '2024-08-09 14:35:06', '2024-08-09 14:35:06'),
(6184, 2, '2024-08-09 10:35:06', '2024-08-09 10:35:06', 0, NULL, '2024-08-09 14:35:06', '2024-08-09 14:35:06'),
(6185, 3, '2024-08-09 10:35:07', '2024-08-09 10:35:07', 0, NULL, '2024-08-09 14:35:07', '2024-08-09 14:35:07'),
(6186, 5, '2024-08-09 10:35:07', '2024-08-09 10:35:08', 0, NULL, '2024-08-09 14:35:08', '2024-08-09 14:35:08'),
(6187, 1, '2024-08-09 10:40:08', '2024-08-09 10:40:08', 0, NULL, '2024-08-09 14:40:08', '2024-08-09 14:40:08'),
(6188, 2, '2024-08-09 10:40:09', '2024-08-09 10:40:09', 0, NULL, '2024-08-09 14:40:09', '2024-08-09 14:40:09'),
(6189, 3, '2024-08-09 10:40:09', '2024-08-09 10:40:09', 0, NULL, '2024-08-09 14:40:10', '2024-08-09 14:40:10'),
(6190, 5, '2024-08-09 10:45:08', '2024-08-09 10:45:08', 0, NULL, '2024-08-09 14:45:08', '2024-08-09 14:45:08'),
(6191, 1, '2024-08-09 10:50:11', '2024-08-09 10:50:11', 0, NULL, '2024-08-09 14:50:11', '2024-08-09 14:50:11'),
(6192, 2, '2024-08-09 10:50:11', '2024-08-09 10:50:11', 0, NULL, '2024-08-09 14:50:12', '2024-08-09 14:50:12'),
(6193, 3, '2024-08-09 10:50:12', '2024-08-09 10:50:12', 0, NULL, '2024-08-09 14:50:12', '2024-08-09 14:50:12'),
(6194, 5, '2024-08-09 10:50:12', '2024-08-09 10:50:12', 0, NULL, '2024-08-09 14:50:13', '2024-08-09 14:50:13'),
(6195, 1, '2024-08-09 11:00:07', '2024-08-09 11:00:07', 0, NULL, '2024-08-09 15:00:08', '2024-08-09 15:00:08'),
(6196, 2, '2024-08-09 11:00:09', '2024-08-09 11:00:09', 0, NULL, '2024-08-09 15:00:09', '2024-08-09 15:00:09'),
(6197, 3, '2024-08-09 11:00:10', '2024-08-09 11:00:10', 0, NULL, '2024-08-09 15:00:11', '2024-08-09 15:00:11'),
(6198, 5, '2024-08-09 11:00:11', '2024-08-09 11:00:11', 0, NULL, '2024-08-09 15:00:11', '2024-08-09 15:00:11'),
(6199, 1, '2024-08-09 11:05:10', '2024-08-09 11:05:10', 0, NULL, '2024-08-09 15:05:10', '2024-08-09 15:05:10'),
(6200, 2, '2024-08-09 11:05:10', '2024-08-09 11:05:11', 0, NULL, '2024-08-09 15:05:11', '2024-08-09 15:05:11'),
(6201, 3, '2024-08-09 11:10:08', '2024-08-09 11:10:08', 0, NULL, '2024-08-09 15:10:09', '2024-08-09 15:10:09'),
(6202, 5, '2024-08-09 11:10:09', '2024-08-09 11:10:09', 0, NULL, '2024-08-09 15:10:10', '2024-08-09 15:10:10'),
(6203, 1, '2024-08-09 11:15:08', '2024-08-09 11:15:08', 0, NULL, '2024-08-09 15:15:08', '2024-08-09 15:15:08'),
(6204, 2, '2024-08-09 11:15:09', '2024-08-09 11:15:09', 0, NULL, '2024-08-09 15:15:10', '2024-08-09 15:15:10'),
(6205, 3, '2024-08-09 11:20:04', '2024-08-09 11:20:04', 0, NULL, '2024-08-09 15:20:05', '2024-08-09 15:20:05'),
(6206, 5, '2024-08-09 11:20:05', '2024-08-09 11:20:05', 0, NULL, '2024-08-09 15:20:05', '2024-08-09 15:20:05'),
(6207, 1, '2024-08-09 11:25:05', '2024-08-09 11:25:05', 0, NULL, '2024-08-09 15:25:11', '2024-08-09 15:25:11'),
(6208, 2, '2024-08-09 11:25:12', '2024-08-09 11:25:12', 0, NULL, '2024-08-09 15:25:13', '2024-08-09 15:25:13'),
(6209, 3, '2024-08-09 11:25:13', '2024-08-09 11:25:13', 0, NULL, '2024-08-09 15:25:13', '2024-08-09 15:25:13'),
(6210, 5, '2024-08-09 11:30:04', '2024-08-09 11:30:04', 0, NULL, '2024-08-09 15:30:05', '2024-08-09 15:30:05'),
(6211, 1, '2024-08-09 11:35:05', '2024-08-09 11:35:05', 0, NULL, '2024-08-09 15:35:06', '2024-08-09 15:35:06'),
(6212, 2, '2024-08-09 11:35:06', '2024-08-09 11:35:06', 0, NULL, '2024-08-09 15:35:07', '2024-08-09 15:35:07'),
(6213, 3, '2024-08-09 11:35:07', '2024-08-09 11:35:07', 0, NULL, '2024-08-09 15:35:08', '2024-08-09 15:35:08'),
(6214, 5, '2024-08-09 11:35:08', '2024-08-09 11:35:08', 0, NULL, '2024-08-09 15:35:08', '2024-08-09 15:35:08'),
(6215, 1, '2024-08-09 11:45:08', '2024-08-09 11:45:08', 0, NULL, '2024-08-09 15:45:08', '2024-08-09 15:45:08'),
(6216, 2, '2024-08-09 11:45:08', '2024-08-09 11:45:08', 0, NULL, '2024-08-09 15:45:09', '2024-08-09 15:45:09'),
(6217, 3, '2024-08-09 11:45:09', '2024-08-09 11:45:09', 0, NULL, '2024-08-09 15:45:09', '2024-08-09 15:45:09'),
(6218, 5, '2024-08-09 11:45:09', '2024-08-09 11:45:09', 0, NULL, '2024-08-09 15:45:10', '2024-08-09 15:45:10'),
(6219, 1, '2024-08-09 11:55:06', '2024-08-09 11:55:06', 0, NULL, '2024-08-09 15:55:06', '2024-08-09 15:55:06'),
(6220, 2, '2024-08-09 11:55:08', '2024-08-09 11:55:08', 0, NULL, '2024-08-09 15:55:09', '2024-08-09 15:55:09'),
(6221, 3, '2024-08-09 11:55:09', '2024-08-09 11:55:09', 0, NULL, '2024-08-09 15:55:10', '2024-08-09 15:55:10'),
(6222, 5, '2024-08-09 11:55:10', '2024-08-09 11:55:10', 0, NULL, '2024-08-09 15:55:10', '2024-08-09 15:55:10'),
(6223, 1, '2024-08-09 12:00:08', '2024-08-09 12:00:08', 0, NULL, '2024-08-09 16:00:09', '2024-08-09 16:00:09'),
(6224, 2, '2024-08-09 12:05:06', '2024-08-09 12:05:06', 0, NULL, '2024-08-09 16:05:06', '2024-08-09 16:05:06'),
(6225, 3, '2024-08-09 12:05:06', '2024-08-09 12:05:06', 0, NULL, '2024-08-09 16:05:06', '2024-08-09 16:05:06'),
(6226, 5, '2024-08-09 12:05:07', '2024-08-09 12:05:07', 0, NULL, '2024-08-09 16:05:08', '2024-08-09 16:05:08'),
(6227, 1, '2024-08-09 12:10:04', '2024-08-09 12:10:04', 0, NULL, '2024-08-09 16:10:05', '2024-08-09 16:10:05'),
(6228, 2, '2024-08-09 12:15:03', '2024-08-09 12:15:03', 0, NULL, '2024-08-09 16:15:04', '2024-08-09 16:15:04'),
(6229, 3, '2024-08-09 12:15:04', '2024-08-09 12:15:04', 0, NULL, '2024-08-09 16:15:04', '2024-08-09 16:15:04'),
(6230, 5, '2024-08-09 12:15:04', '2024-08-09 12:15:05', 0, NULL, '2024-08-09 16:15:05', '2024-08-09 16:15:05'),
(6231, 1, '2024-08-09 12:20:08', '2024-08-09 12:20:11', 3, NULL, '2024-08-09 16:20:12', '2024-08-09 16:20:12'),
(6232, 2, '2024-08-09 12:20:12', '2024-08-09 12:20:12', 0, NULL, '2024-08-09 16:20:12', '2024-08-09 16:20:12'),
(6233, 3, '2024-08-09 12:20:13', '2024-08-09 12:20:13', 0, NULL, '2024-08-09 16:20:13', '2024-08-09 16:20:13'),
(6234, 5, '2024-08-09 12:20:13', '2024-08-09 12:20:13', 0, NULL, '2024-08-09 16:20:14', '2024-08-09 16:20:14'),
(6235, 1, '2024-08-09 12:30:08', '2024-08-09 12:30:09', 0, NULL, '2024-08-09 16:30:12', '2024-08-09 16:30:12'),
(6236, 2, '2024-08-09 12:30:13', '2024-08-09 12:30:13', 0, NULL, '2024-08-09 16:30:13', '2024-08-09 16:30:13'),
(6237, 3, '2024-08-09 12:30:13', '2024-08-09 12:30:13', 0, NULL, '2024-08-09 16:30:13', '2024-08-09 16:30:13'),
(6238, 5, '2024-08-09 12:30:14', '2024-08-09 12:30:14', 0, NULL, '2024-08-09 16:30:14', '2024-08-09 16:30:14'),
(6239, 1, '2024-08-09 12:40:07', '2024-08-09 12:40:07', 0, NULL, '2024-08-09 16:40:07', '2024-08-09 16:40:07'),
(6240, 2, '2024-08-09 12:40:08', '2024-08-09 12:40:08', 0, NULL, '2024-08-09 16:40:08', '2024-08-09 16:40:08'),
(6241, 3, '2024-08-09 12:40:09', '2024-08-09 12:40:09', 0, NULL, '2024-08-09 16:40:09', '2024-08-09 16:40:09'),
(6242, 5, '2024-08-09 12:40:09', '2024-08-09 12:40:09', 0, NULL, '2024-08-09 16:40:09', '2024-08-09 16:40:09'),
(6243, 1, '2024-08-09 12:50:07', '2024-08-09 12:50:07', 0, NULL, '2024-08-09 16:50:08', '2024-08-09 16:50:08'),
(6244, 2, '2024-08-09 12:50:08', '2024-08-09 12:50:08', 0, NULL, '2024-08-09 16:50:08', '2024-08-09 16:50:08'),
(6245, 3, '2024-08-09 12:50:09', '2024-08-09 12:50:09', 0, NULL, '2024-08-09 16:50:09', '2024-08-09 16:50:09'),
(6246, 5, '2024-08-09 12:50:09', '2024-08-09 12:50:10', 0, NULL, '2024-08-09 16:50:10', '2024-08-09 16:50:10'),
(6247, 1, '2024-08-09 12:55:11', '2024-08-09 12:55:11', 0, NULL, '2024-08-09 16:55:11', '2024-08-09 16:55:11'),
(6248, 2, '2024-08-09 12:55:11', '2024-08-09 12:55:11', 0, NULL, '2024-08-09 16:55:11', '2024-08-09 16:55:11'),
(6249, 3, '2024-08-09 13:00:06', '2024-08-09 13:00:06', 0, NULL, '2024-08-09 17:00:07', '2024-08-09 17:00:07'),
(6250, 5, '2024-08-09 13:00:07', '2024-08-09 13:00:07', 0, NULL, '2024-08-09 17:00:07', '2024-08-09 17:00:07'),
(6251, 1, '2024-08-09 13:05:06', '2024-08-09 13:05:06', 0, NULL, '2024-08-09 17:05:06', '2024-08-09 17:05:06'),
(6252, 2, '2024-08-09 13:05:06', '2024-08-09 13:05:06', 0, NULL, '2024-08-09 17:05:07', '2024-08-09 17:05:07'),
(6253, 1, '2024-08-09 13:10:13', '2024-08-09 13:10:13', 0, NULL, '2024-08-09 17:10:13', '2024-08-09 17:10:13'),
(6254, 2, '2024-08-09 13:10:14', '2024-08-09 13:10:14', 0, NULL, '2024-08-09 17:10:14', '2024-08-09 17:10:14'),
(6255, 3, '2024-08-09 13:10:14', '2024-08-09 13:10:14', 0, NULL, '2024-08-09 17:10:15', '2024-08-09 17:10:15'),
(6256, 5, '2024-08-09 13:10:15', '2024-08-09 13:10:15', 0, NULL, '2024-08-09 17:10:15', '2024-08-09 17:10:15'),
(6257, 1, '2024-08-09 13:20:05', '2024-08-09 13:20:05', 0, NULL, '2024-08-09 17:20:05', '2024-08-09 17:20:05'),
(6258, 2, '2024-08-09 13:20:05', '2024-08-09 13:20:05', 0, NULL, '2024-08-09 17:20:06', '2024-08-09 17:20:06'),
(6259, 3, '2024-08-09 13:20:06', '2024-08-09 13:20:06', 0, NULL, '2024-08-09 17:20:06', '2024-08-09 17:20:06'),
(6260, 5, '2024-08-09 13:20:07', '2024-08-09 13:20:07', 0, NULL, '2024-08-09 17:20:07', '2024-08-09 17:20:07'),
(6261, 1, '2024-08-09 13:25:09', '2024-08-09 13:25:09', 0, NULL, '2024-08-09 17:25:10', '2024-08-09 17:25:10'),
(6262, 2, '2024-08-09 13:25:10', '2024-08-09 13:25:10', 0, NULL, '2024-08-09 17:25:10', '2024-08-09 17:25:10'),
(6263, 3, '2024-08-09 13:25:11', '2024-08-09 13:25:11', 0, NULL, '2024-08-09 17:25:11', '2024-08-09 17:25:11'),
(6264, 5, '2024-08-09 13:25:11', '2024-08-09 13:25:11', 0, NULL, '2024-08-09 17:25:11', '2024-08-09 17:25:11'),
(6265, 1, '2024-08-09 13:35:07', '2024-08-09 13:35:08', 0, NULL, '2024-08-09 17:35:08', '2024-08-09 17:35:08'),
(6266, 2, '2024-08-09 13:35:09', '2024-08-09 13:35:09', 0, NULL, '2024-08-09 17:35:09', '2024-08-09 17:35:09'),
(6267, 3, '2024-08-09 13:35:10', '2024-08-09 13:35:10', 0, NULL, '2024-08-09 17:35:10', '2024-08-09 17:35:10'),
(6268, 5, '2024-08-09 13:35:10', '2024-08-09 13:35:10', 0, NULL, '2024-08-09 17:35:11', '2024-08-09 17:35:11'),
(6269, 1, '2024-08-09 13:45:03', '2024-08-09 13:45:03', 0, NULL, '2024-08-09 17:45:03', '2024-08-09 17:45:03'),
(6270, 2, '2024-08-09 13:45:06', '2024-08-09 13:45:06', 0, NULL, '2024-08-09 17:45:06', '2024-08-09 17:45:06'),
(6271, 3, '2024-08-09 13:45:07', '2024-08-09 13:45:07', 0, NULL, '2024-08-09 17:45:07', '2024-08-09 17:45:07'),
(6272, 5, '2024-08-09 13:45:08', '2024-08-09 13:45:08', 0, NULL, '2024-08-09 17:45:08', '2024-08-09 17:45:08'),
(6273, 1, '2024-08-09 13:50:05', '2024-08-09 13:50:05', 0, NULL, '2024-08-09 17:50:05', '2024-08-09 17:50:05'),
(6274, 1, '2024-08-09 13:55:07', '2024-08-09 13:55:07', 0, NULL, '2024-08-09 17:55:08', '2024-08-09 17:55:08'),
(6275, 2, '2024-08-09 13:55:08', '2024-08-09 13:55:08', 0, NULL, '2024-08-09 17:55:09', '2024-08-09 17:55:09'),
(6276, 3, '2024-08-09 13:55:09', '2024-08-09 13:55:09', 0, NULL, '2024-08-09 17:55:09', '2024-08-09 17:55:09'),
(6277, 5, '2024-08-09 13:55:09', '2024-08-09 13:55:10', 0, NULL, '2024-08-09 17:55:10', '2024-08-09 17:55:10'),
(6278, 1, '2024-08-09 14:00:09', '2024-08-09 14:00:09', 0, NULL, '2024-08-09 18:00:15', '2024-08-09 18:00:15'),
(6279, 2, '2024-08-09 14:00:16', '2024-08-09 14:00:16', 0, NULL, '2024-08-09 18:00:16', '2024-08-09 18:00:16'),
(6280, 3, '2024-08-09 14:05:05', '2024-08-09 14:05:05', 0, NULL, '2024-08-09 18:05:05', '2024-08-09 18:05:05'),
(6281, 5, '2024-08-09 14:05:10', '2024-08-09 14:05:10', 0, NULL, '2024-08-09 18:05:12', '2024-08-09 18:05:12'),
(6282, 1, '2024-08-09 14:10:07', '2024-08-09 14:10:07', 0, NULL, '2024-08-09 18:10:07', '2024-08-09 18:10:07'),
(6283, 2, '2024-08-09 14:10:08', '2024-08-09 14:10:08', 0, NULL, '2024-08-09 18:10:08', '2024-08-09 18:10:08'),
(6284, 3, '2024-08-09 14:10:09', '2024-08-09 14:10:09', 0, NULL, '2024-08-09 18:10:09', '2024-08-09 18:10:09'),
(6285, 5, '2024-08-09 14:15:05', '2024-08-09 14:15:05', 0, NULL, '2024-08-09 18:15:06', '2024-08-09 18:15:06'),
(6286, 1, '2024-08-09 14:20:05', '2024-08-09 14:20:05', 0, NULL, '2024-08-09 18:20:05', '2024-08-09 18:20:05'),
(6287, 2, '2024-08-09 14:20:06', '2024-08-09 14:20:06', 0, NULL, '2024-08-09 18:20:07', '2024-08-09 18:20:07'),
(6288, 3, '2024-08-09 14:20:07', '2024-08-09 14:20:07', 0, NULL, '2024-08-09 18:20:08', '2024-08-09 18:20:08'),
(6289, 5, '2024-08-09 14:25:05', '2024-08-09 14:25:05', 0, NULL, '2024-08-09 18:25:06', '2024-08-09 18:25:06'),
(6290, 1, '2024-08-09 14:30:06', '2024-08-09 14:30:06', 0, NULL, '2024-08-09 18:30:07', '2024-08-09 18:30:07'),
(6291, 2, '2024-08-09 14:30:07', '2024-08-09 14:30:07', 0, NULL, '2024-08-09 18:30:08', '2024-08-09 18:30:08'),
(6292, 3, '2024-08-09 14:30:08', '2024-08-09 14:30:08', 0, NULL, '2024-08-09 18:30:09', '2024-08-09 18:30:09'),
(6293, 5, '2024-08-09 14:30:09', '2024-08-09 14:30:09', 0, NULL, '2024-08-09 18:30:11', '2024-08-09 18:30:11'),
(6294, 1, '2024-08-09 14:35:12', '2024-08-09 14:35:12', 0, NULL, '2024-08-09 18:35:13', '2024-08-09 18:35:13'),
(6295, 2, '2024-08-09 14:35:13', '2024-08-09 14:35:13', 0, NULL, '2024-08-09 18:35:13', '2024-08-09 18:35:13'),
(6296, 3, '2024-08-09 14:35:13', '2024-08-09 14:35:13', 0, NULL, '2024-08-09 18:35:14', '2024-08-09 18:35:14'),
(6297, 5, '2024-08-09 14:35:14', '2024-08-09 14:35:14', 0, NULL, '2024-08-09 18:35:14', '2024-08-09 18:35:14'),
(6298, 1, '2024-08-09 14:45:05', '2024-08-09 14:45:05', 0, NULL, '2024-08-09 18:45:06', '2024-08-09 18:45:06'),
(6299, 2, '2024-08-09 14:45:06', '2024-08-09 14:45:06', 0, NULL, '2024-08-09 18:45:07', '2024-08-09 18:45:07'),
(6300, 3, '2024-08-09 14:45:07', '2024-08-09 14:45:07', 0, NULL, '2024-08-09 18:45:07', '2024-08-09 18:45:07'),
(6301, 5, '2024-08-09 14:45:08', '2024-08-09 14:45:08', 0, NULL, '2024-08-09 18:45:08', '2024-08-09 18:45:08'),
(6302, 1, '2024-08-09 14:50:11', '2024-08-09 14:50:11', 0, NULL, '2024-08-09 18:50:12', '2024-08-09 18:50:12'),
(6303, 2, '2024-08-09 14:50:12', '2024-08-09 14:50:12', 0, NULL, '2024-08-09 18:50:13', '2024-08-09 18:50:13'),
(6304, 3, '2024-08-09 14:50:13', '2024-08-09 14:50:13', 0, NULL, '2024-08-09 18:50:13', '2024-08-09 18:50:13'),
(6305, 5, '2024-08-09 14:50:13', '2024-08-09 14:50:14', 0, NULL, '2024-08-09 18:50:14', '2024-08-09 18:50:14'),
(6306, 1, '2024-08-09 15:00:06', '2024-08-09 15:00:06', 0, NULL, '2024-08-09 19:00:06', '2024-08-09 19:00:06'),
(6307, 2, '2024-08-09 15:00:07', '2024-08-09 15:00:07', 0, NULL, '2024-08-09 19:00:07', '2024-08-09 19:00:07'),
(6308, 3, '2024-08-09 15:00:07', '2024-08-09 15:00:07', 0, NULL, '2024-08-09 19:00:08', '2024-08-09 19:00:08'),
(6309, 5, '2024-08-09 15:00:08', '2024-08-09 15:00:10', 1, NULL, '2024-08-09 19:00:10', '2024-08-09 19:00:10'),
(6310, 1, '2024-08-09 15:10:09', '2024-08-09 15:10:09', 0, NULL, '2024-08-09 19:10:09', '2024-08-09 19:10:09'),
(6311, 2, '2024-08-09 15:10:09', '2024-08-09 15:10:09', 0, NULL, '2024-08-09 19:10:10', '2024-08-09 19:10:10'),
(6312, 3, '2024-08-09 15:10:10', '2024-08-09 15:10:10', 0, NULL, '2024-08-09 19:10:10', '2024-08-09 19:10:10'),
(6313, 5, '2024-08-09 15:10:10', '2024-08-09 15:10:11', 0, NULL, '2024-08-09 19:10:11', '2024-08-09 19:10:11'),
(6314, 1, '2024-08-09 15:20:08', '2024-08-09 15:20:08', 0, NULL, '2024-08-09 19:20:08', '2024-08-09 19:20:08'),
(6315, 2, '2024-08-09 15:20:08', '2024-08-09 15:20:08', 0, NULL, '2024-08-09 19:20:09', '2024-08-09 19:20:09'),
(6316, 3, '2024-08-09 15:20:09', '2024-08-09 15:20:09', 0, NULL, '2024-08-09 19:20:09', '2024-08-09 19:20:09'),
(6317, 5, '2024-08-09 15:20:09', '2024-08-09 15:20:10', 0, NULL, '2024-08-09 19:20:10', '2024-08-09 19:20:10'),
(6318, 1, '2024-08-09 15:30:14', '2024-08-09 15:30:15', 0, NULL, '2024-08-09 19:30:16', '2024-08-09 19:30:16'),
(6319, 2, '2024-08-09 15:30:16', '2024-08-09 15:30:16', 0, NULL, '2024-08-09 19:30:16', '2024-08-09 19:30:16'),
(6320, 3, '2024-08-09 15:30:16', '2024-08-09 15:30:16', 0, NULL, '2024-08-09 19:30:17', '2024-08-09 19:30:17'),
(6321, 5, '2024-08-09 15:30:17', '2024-08-09 15:30:17', 0, NULL, '2024-08-09 19:30:17', '2024-08-09 19:30:17'),
(6322, 1, '2024-08-09 15:40:07', '2024-08-09 15:40:07', 0, NULL, '2024-08-09 19:40:07', '2024-08-09 19:40:07'),
(6323, 2, '2024-08-09 15:40:08', '2024-08-09 15:40:08', 0, NULL, '2024-08-09 19:40:09', '2024-08-09 19:40:09'),
(6324, 3, '2024-08-09 15:40:09', '2024-08-09 15:40:09', 0, NULL, '2024-08-09 19:40:10', '2024-08-09 19:40:10'),
(6325, 5, '2024-08-09 15:40:10', '2024-08-09 15:40:10', 0, NULL, '2024-08-09 19:40:10', '2024-08-09 19:40:10'),
(6326, 1, '2024-08-09 15:50:06', '2024-08-09 15:50:06', 0, NULL, '2024-08-09 19:50:07', '2024-08-09 19:50:07'),
(6327, 2, '2024-08-09 15:50:07', '2024-08-09 15:50:07', 0, NULL, '2024-08-09 19:50:08', '2024-08-09 19:50:08'),
(6328, 3, '2024-08-09 15:50:08', '2024-08-09 15:50:08', 0, NULL, '2024-08-09 19:50:10', '2024-08-09 19:50:10'),
(6329, 5, '2024-08-09 15:50:11', '2024-08-09 15:50:11', 0, NULL, '2024-08-09 19:50:11', '2024-08-09 19:50:11'),
(6330, 1, '2024-08-09 16:00:05', '2024-08-09 16:00:05', 0, NULL, '2024-08-09 20:00:05', '2024-08-09 20:00:05'),
(6331, 2, '2024-08-09 16:00:06', '2024-08-09 16:00:06', 0, NULL, '2024-08-09 20:00:07', '2024-08-09 20:00:07'),
(6332, 3, '2024-08-09 16:00:07', '2024-08-09 16:00:07', 0, NULL, '2024-08-09 20:00:08', '2024-08-09 20:00:08'),
(6333, 5, '2024-08-09 16:00:09', '2024-08-09 16:00:09', 0, NULL, '2024-08-09 20:00:09', '2024-08-09 20:00:09'),
(6334, 1, '2024-08-09 16:10:04', '2024-08-09 16:10:04', 0, NULL, '2024-08-09 20:10:04', '2024-08-09 20:10:04'),
(6335, 2, '2024-08-09 16:10:05', '2024-08-09 16:10:05', 0, NULL, '2024-08-09 20:10:05', '2024-08-09 20:10:05'),
(6336, 3, '2024-08-09 16:10:05', '2024-08-09 16:10:05', 0, NULL, '2024-08-09 20:10:06', '2024-08-09 20:10:06'),
(6337, 5, '2024-08-09 16:10:06', '2024-08-09 16:10:06', 0, NULL, '2024-08-09 20:10:06', '2024-08-09 20:10:06'),
(6338, 1, '2024-08-09 16:15:09', '2024-08-09 16:15:09', 0, NULL, '2024-08-09 20:15:09', '2024-08-09 20:15:09'),
(6339, 2, '2024-08-09 16:15:09', '2024-08-09 16:15:09', 0, NULL, '2024-08-09 20:15:10', '2024-08-09 20:15:10'),
(6340, 3, '2024-08-09 16:15:10', '2024-08-09 16:15:10', 0, NULL, '2024-08-09 20:15:10', '2024-08-09 20:15:10'),
(6341, 5, '2024-08-09 16:15:10', '2024-08-09 16:15:11', 0, NULL, '2024-08-09 20:15:11', '2024-08-09 20:15:11'),
(6342, 1, '2024-08-09 16:25:10', '2024-08-09 16:25:10', 0, NULL, '2024-08-09 20:25:11', '2024-08-09 20:25:11'),
(6343, 2, '2024-08-09 16:25:11', '2024-08-09 16:25:11', 0, NULL, '2024-08-09 20:25:11', '2024-08-09 20:25:11'),
(6344, 3, '2024-08-09 16:25:11', '2024-08-09 16:25:11', 0, NULL, '2024-08-09 20:25:12', '2024-08-09 20:25:12'),
(6345, 5, '2024-08-09 16:25:12', '2024-08-09 16:25:12', 0, NULL, '2024-08-09 20:25:12', '2024-08-09 20:25:12'),
(6346, 1, '2024-08-09 16:35:05', '2024-08-09 16:35:05', 0, NULL, '2024-08-09 20:35:06', '2024-08-09 20:35:06'),
(6347, 2, '2024-08-09 16:35:06', '2024-08-09 16:35:06', 0, NULL, '2024-08-09 20:35:06', '2024-08-09 20:35:06'),
(6348, 3, '2024-08-09 16:35:07', '2024-08-09 16:35:07', 0, NULL, '2024-08-09 20:35:07', '2024-08-09 20:35:07'),
(6349, 5, '2024-08-09 16:35:08', '2024-08-09 16:35:08', 0, NULL, '2024-08-09 20:35:08', '2024-08-09 20:35:08'),
(6350, 1, '2024-08-09 16:45:06', '2024-08-09 16:45:06', 0, NULL, '2024-08-09 20:45:06', '2024-08-09 20:45:06'),
(6351, 2, '2024-08-09 16:45:06', '2024-08-09 16:45:06', 0, NULL, '2024-08-09 20:45:07', '2024-08-09 20:45:07'),
(6352, 3, '2024-08-09 16:45:07', '2024-08-09 16:45:07', 0, NULL, '2024-08-09 20:45:07', '2024-08-09 20:45:07');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(6353, 5, '2024-08-09 16:45:08', '2024-08-09 16:45:08', 0, NULL, '2024-08-09 20:45:08', '2024-08-09 20:45:08'),
(6354, 1, '2024-08-09 16:50:08', '2024-08-09 16:50:08', 0, NULL, '2024-08-09 20:50:09', '2024-08-09 20:50:09'),
(6355, 2, '2024-08-09 16:50:09', '2024-08-09 16:50:09', 0, NULL, '2024-08-09 20:50:10', '2024-08-09 20:50:10'),
(6356, 3, '2024-08-09 16:50:10', '2024-08-09 16:50:10', 0, NULL, '2024-08-09 20:50:10', '2024-08-09 20:50:10'),
(6357, 5, '2024-08-09 16:55:07', '2024-08-09 16:55:07', 0, NULL, '2024-08-09 20:55:07', '2024-08-09 20:55:07'),
(6358, 1, '2024-08-09 17:00:06', '2024-08-09 17:00:06', 0, NULL, '2024-08-09 21:00:06', '2024-08-09 21:00:06'),
(6359, 2, '2024-08-09 17:00:07', '2024-08-09 17:00:07', 0, NULL, '2024-08-09 21:00:07', '2024-08-09 21:00:07'),
(6360, 3, '2024-08-09 17:00:08', '2024-08-09 17:00:08', 0, NULL, '2024-08-09 21:00:10', '2024-08-09 21:00:10'),
(6361, 5, '2024-08-09 17:05:06', '2024-08-09 17:05:06', 0, NULL, '2024-08-09 21:05:07', '2024-08-09 21:05:07'),
(6362, 1, '2024-08-09 17:10:05', '2024-08-09 17:10:05', 0, NULL, '2024-08-09 21:10:05', '2024-08-09 21:10:05'),
(6363, 2, '2024-08-09 17:10:06', '2024-08-09 17:10:06', 0, NULL, '2024-08-09 21:10:12', '2024-08-09 21:10:12'),
(6364, 3, '2024-08-09 17:10:13', '2024-08-09 17:10:13', 0, NULL, '2024-08-09 21:10:14', '2024-08-09 21:10:14'),
(6365, 1, '2024-08-09 17:15:08', '2024-08-09 17:15:08', 0, NULL, '2024-08-09 21:15:08', '2024-08-09 21:15:08'),
(6366, 2, '2024-08-09 17:15:09', '2024-08-09 17:15:09', 0, NULL, '2024-08-09 21:15:09', '2024-08-09 21:15:09'),
(6367, 5, '2024-08-09 17:15:09', '2024-08-09 17:15:09', 0, NULL, '2024-08-09 21:15:10', '2024-08-09 21:15:10'),
(6368, 1, '2024-08-09 17:20:11', '2024-08-09 17:20:11', 0, NULL, '2024-08-09 21:20:12', '2024-08-09 21:20:12'),
(6369, 2, '2024-08-09 17:20:12', '2024-08-09 17:20:12', 0, NULL, '2024-08-09 21:20:13', '2024-08-09 21:20:13'),
(6370, 3, '2024-08-09 17:20:13', '2024-08-09 17:20:13', 0, NULL, '2024-08-09 21:20:13', '2024-08-09 21:20:13'),
(6371, 5, '2024-08-09 17:20:13', '2024-08-09 17:20:14', 0, NULL, '2024-08-09 21:20:14', '2024-08-09 21:20:14'),
(6372, 1, '2024-08-09 17:30:07', '2024-08-09 17:30:07', 0, NULL, '2024-08-09 21:30:08', '2024-08-09 21:30:08'),
(6373, 2, '2024-08-09 17:30:09', '2024-08-09 17:30:09', 0, NULL, '2024-08-09 21:30:09', '2024-08-09 21:30:09'),
(6374, 3, '2024-08-09 17:30:09', '2024-08-09 17:30:09', 0, NULL, '2024-08-09 21:30:10', '2024-08-09 21:30:10'),
(6375, 5, '2024-08-09 17:30:10', '2024-08-09 17:30:10', 0, NULL, '2024-08-09 21:30:10', '2024-08-09 21:30:10'),
(6376, 1, '2024-08-09 17:40:05', '2024-08-09 17:40:05', 0, NULL, '2024-08-09 21:40:06', '2024-08-09 21:40:06'),
(6377, 2, '2024-08-09 17:40:07', '2024-08-09 17:40:07', 0, NULL, '2024-08-09 21:40:07', '2024-08-09 21:40:07'),
(6378, 3, '2024-08-09 17:40:07', '2024-08-09 17:40:07', 0, NULL, '2024-08-09 21:40:07', '2024-08-09 21:40:07'),
(6379, 5, '2024-08-09 17:40:08', '2024-08-09 17:40:08', 0, NULL, '2024-08-09 21:40:08', '2024-08-09 21:40:08'),
(6380, 1, '2024-08-09 17:50:05', '2024-08-09 17:50:05', 0, NULL, '2024-08-09 21:50:05', '2024-08-09 21:50:05'),
(6381, 2, '2024-08-09 17:50:06', '2024-08-09 17:50:06', 0, NULL, '2024-08-09 21:50:06', '2024-08-09 21:50:06'),
(6382, 3, '2024-08-09 17:50:06', '2024-08-09 17:50:06', 0, NULL, '2024-08-09 21:50:07', '2024-08-09 21:50:07'),
(6383, 5, '2024-08-09 17:50:07', '2024-08-09 17:50:07', 0, NULL, '2024-08-09 21:50:07', '2024-08-09 21:50:07'),
(6384, 1, '2024-08-09 18:00:07', '2024-08-09 18:00:07', 0, NULL, '2024-08-09 22:00:07', '2024-08-09 22:00:07'),
(6385, 2, '2024-08-09 18:00:08', '2024-08-09 18:00:08', 0, NULL, '2024-08-09 22:00:09', '2024-08-09 22:00:09'),
(6386, 3, '2024-08-09 18:00:10', '2024-08-09 18:00:10', 0, NULL, '2024-08-09 22:00:11', '2024-08-09 22:00:11'),
(6387, 5, '2024-08-09 18:00:11', '2024-08-09 18:00:11', 0, NULL, '2024-08-09 22:00:11', '2024-08-09 22:00:11'),
(6388, 1, '2024-08-09 18:10:11', '2024-08-09 18:10:11', 0, NULL, '2024-08-09 22:10:12', '2024-08-09 22:10:12'),
(6389, 2, '2024-08-09 18:10:12', '2024-08-09 18:10:12', 0, NULL, '2024-08-09 22:10:12', '2024-08-09 22:10:12'),
(6390, 3, '2024-08-09 18:10:12', '2024-08-09 18:10:12', 0, NULL, '2024-08-09 22:10:12', '2024-08-09 22:10:12'),
(6391, 5, '2024-08-09 18:10:13', '2024-08-09 18:10:13', 0, NULL, '2024-08-09 22:10:13', '2024-08-09 22:10:13'),
(6392, 1, '2024-08-09 18:20:06', '2024-08-09 18:20:06', 0, NULL, '2024-08-09 22:20:07', '2024-08-09 22:20:07'),
(6393, 2, '2024-08-09 18:20:07', '2024-08-09 18:20:07', 0, NULL, '2024-08-09 22:20:09', '2024-08-09 22:20:09'),
(6394, 3, '2024-08-09 18:20:09', '2024-08-09 18:20:09', 0, NULL, '2024-08-09 22:20:10', '2024-08-09 22:20:10'),
(6395, 5, '2024-08-09 18:20:10', '2024-08-09 18:20:10', 0, NULL, '2024-08-09 22:20:11', '2024-08-09 22:20:11'),
(6396, 1, '2024-08-09 18:30:05', '2024-08-09 18:30:05', 0, NULL, '2024-08-09 22:30:06', '2024-08-09 22:30:06'),
(6397, 2, '2024-08-09 18:30:08', '2024-08-09 18:30:08', 0, NULL, '2024-08-09 22:30:08', '2024-08-09 22:30:08'),
(6398, 3, '2024-08-09 18:30:09', '2024-08-09 18:30:09', 0, NULL, '2024-08-09 22:30:09', '2024-08-09 22:30:09'),
(6399, 5, '2024-08-09 18:30:11', '2024-08-09 18:30:11', 0, NULL, '2024-08-09 22:30:11', '2024-08-09 22:30:11'),
(6400, 1, '2024-08-09 18:35:06', '2024-08-09 18:35:06', 0, NULL, '2024-08-09 22:35:07', '2024-08-09 22:35:07'),
(6401, 2, '2024-08-09 18:40:05', '2024-08-09 18:40:05', 0, NULL, '2024-08-09 22:40:05', '2024-08-09 22:40:05'),
(6402, 3, '2024-08-09 18:40:05', '2024-08-09 18:40:05', 0, NULL, '2024-08-09 22:40:06', '2024-08-09 22:40:06'),
(6403, 5, '2024-08-09 18:40:06', '2024-08-09 18:40:06', 0, NULL, '2024-08-09 22:40:06', '2024-08-09 22:40:06'),
(6404, 1, '2024-08-09 18:45:11', '2024-08-09 18:45:11', 0, NULL, '2024-08-09 22:45:11', '2024-08-09 22:45:11'),
(6405, 2, '2024-08-09 18:45:12', '2024-08-09 18:45:12', 0, NULL, '2024-08-09 22:45:12', '2024-08-09 22:45:12'),
(6406, 3, '2024-08-09 18:45:12', '2024-08-09 18:45:12', 0, NULL, '2024-08-09 22:45:12', '2024-08-09 22:45:12'),
(6407, 5, '2024-08-09 18:45:13', '2024-08-09 18:45:13', 0, NULL, '2024-08-09 22:45:13', '2024-08-09 22:45:13'),
(6408, 1, '2024-08-09 18:55:12', '2024-08-09 18:55:12', 0, NULL, '2024-08-09 22:55:13', '2024-08-09 22:55:13'),
(6409, 2, '2024-08-09 18:55:13', '2024-08-09 18:55:13', 0, NULL, '2024-08-09 22:55:13', '2024-08-09 22:55:13'),
(6410, 3, '2024-08-09 18:55:13', '2024-08-09 18:55:13', 0, NULL, '2024-08-09 22:55:13', '2024-08-09 22:55:13'),
(6411, 5, '2024-08-09 18:55:13', '2024-08-09 18:55:13', 0, NULL, '2024-08-09 22:55:14', '2024-08-09 22:55:14'),
(6412, 1, '2024-08-09 19:05:10', '2024-08-09 19:05:10', 0, NULL, '2024-08-09 23:05:11', '2024-08-09 23:05:11'),
(6413, 2, '2024-08-09 19:05:11', '2024-08-09 19:05:11', 0, NULL, '2024-08-09 23:05:11', '2024-08-09 23:05:11'),
(6414, 3, '2024-08-09 19:05:11', '2024-08-09 19:05:11', 0, NULL, '2024-08-09 23:05:11', '2024-08-09 23:05:11'),
(6415, 5, '2024-08-09 19:05:11', '2024-08-09 19:05:11', 0, NULL, '2024-08-09 23:05:11', '2024-08-09 23:05:11'),
(6416, 1, '2024-08-09 19:15:08', '2024-08-09 19:15:08', 0, NULL, '2024-08-09 23:15:13', '2024-08-09 23:15:13'),
(6417, 2, '2024-08-09 19:15:13', '2024-08-09 19:15:13', 0, NULL, '2024-08-09 23:15:13', '2024-08-09 23:15:13'),
(6418, 3, '2024-08-09 19:15:13', '2024-08-09 19:15:13', 0, NULL, '2024-08-09 23:15:14', '2024-08-09 23:15:14'),
(6419, 5, '2024-08-09 19:15:14', '2024-08-09 19:15:14', 0, NULL, '2024-08-09 23:15:14', '2024-08-09 23:15:14'),
(6420, 1, '2024-08-09 19:25:10', '2024-08-09 19:25:10', 0, NULL, '2024-08-09 23:25:11', '2024-08-09 23:25:11'),
(6421, 2, '2024-08-09 19:25:11', '2024-08-09 19:25:11', 0, NULL, '2024-08-09 23:25:12', '2024-08-09 23:25:12'),
(6422, 3, '2024-08-09 19:25:12', '2024-08-09 19:25:12', 0, NULL, '2024-08-09 23:25:13', '2024-08-09 23:25:13'),
(6423, 5, '2024-08-09 19:25:13', '2024-08-09 19:25:13', 0, NULL, '2024-08-09 23:25:13', '2024-08-09 23:25:13'),
(6424, 1, '2024-08-09 19:35:12', '2024-08-09 19:35:12', 0, NULL, '2024-08-09 23:35:12', '2024-08-09 23:35:12'),
(6425, 2, '2024-08-09 19:35:12', '2024-08-09 19:35:12', 0, NULL, '2024-08-09 23:35:13', '2024-08-09 23:35:13'),
(6426, 3, '2024-08-09 19:35:13', '2024-08-09 19:35:13', 0, NULL, '2024-08-09 23:35:13', '2024-08-09 23:35:13'),
(6427, 5, '2024-08-09 19:35:13', '2024-08-09 19:35:13', 0, NULL, '2024-08-09 23:35:14', '2024-08-09 23:35:14'),
(6428, 1, '2024-08-09 19:45:08', '2024-08-09 19:45:08', 0, NULL, '2024-08-09 23:45:09', '2024-08-09 23:45:09'),
(6429, 2, '2024-08-09 19:45:09', '2024-08-09 19:45:09', 0, NULL, '2024-08-09 23:45:10', '2024-08-09 23:45:10'),
(6430, 3, '2024-08-09 19:45:10', '2024-08-09 19:45:10', 0, NULL, '2024-08-09 23:45:11', '2024-08-09 23:45:11'),
(6431, 5, '2024-08-09 19:45:11', '2024-08-09 19:45:11', 0, NULL, '2024-08-09 23:45:11', '2024-08-09 23:45:11'),
(6432, 1, '2024-08-09 19:55:06', '2024-08-09 19:55:06', 0, NULL, '2024-08-09 23:55:07', '2024-08-09 23:55:07'),
(6433, 2, '2024-08-09 19:55:07', '2024-08-09 19:55:07', 0, NULL, '2024-08-09 23:55:08', '2024-08-09 23:55:08'),
(6434, 3, '2024-08-09 19:55:08', '2024-08-09 19:55:08', 0, NULL, '2024-08-09 23:55:09', '2024-08-09 23:55:09'),
(6435, 5, '2024-08-09 19:55:09', '2024-08-09 19:55:09', 0, NULL, '2024-08-09 23:55:10', '2024-08-09 23:55:10'),
(6436, 1, '2024-08-09 20:00:19', '2024-08-09 20:00:19', 0, NULL, '2024-08-10 00:00:19', '2024-08-10 00:00:19'),
(6437, 2, '2024-08-09 20:00:20', '2024-08-09 20:00:20', 0, NULL, '2024-08-10 00:00:20', '2024-08-10 00:00:20'),
(6438, 3, '2024-08-09 20:00:20', '2024-08-09 20:00:20', 0, NULL, '2024-08-10 00:00:20', '2024-08-10 00:00:20'),
(6439, 5, '2024-08-09 20:00:21', '2024-08-09 20:00:21', 0, NULL, '2024-08-10 00:00:21', '2024-08-10 00:00:21'),
(6440, 1, '2024-08-09 20:10:09', '2024-08-09 20:10:09', 0, NULL, '2024-08-10 00:10:10', '2024-08-10 00:10:10'),
(6441, 2, '2024-08-09 20:10:11', '2024-08-09 20:10:11', 0, NULL, '2024-08-10 00:10:11', '2024-08-10 00:10:11'),
(6442, 3, '2024-08-09 20:10:11', '2024-08-09 20:10:11', 0, NULL, '2024-08-10 00:10:12', '2024-08-10 00:10:12'),
(6443, 5, '2024-08-09 20:10:12', '2024-08-09 20:10:12', 0, NULL, '2024-08-10 00:10:12', '2024-08-10 00:10:12'),
(6444, 1, '2024-08-09 20:20:05', '2024-08-09 20:20:05', 0, NULL, '2024-08-10 00:20:05', '2024-08-10 00:20:05'),
(6445, 2, '2024-08-09 20:20:06', '2024-08-09 20:20:06', 0, NULL, '2024-08-10 00:20:07', '2024-08-10 00:20:07'),
(6446, 3, '2024-08-09 20:20:07', '2024-08-09 20:20:07', 0, NULL, '2024-08-10 00:20:09', '2024-08-10 00:20:09'),
(6447, 5, '2024-08-09 20:20:09', '2024-08-09 20:20:09', 0, NULL, '2024-08-10 00:20:10', '2024-08-10 00:20:10'),
(6448, 1, '2024-08-09 20:25:14', '2024-08-09 20:25:15', 1, NULL, '2024-08-10 00:25:15', '2024-08-10 00:25:15'),
(6449, 2, '2024-08-09 20:25:15', '2024-08-09 20:25:15', 0, NULL, '2024-08-10 00:25:16', '2024-08-10 00:25:16'),
(6450, 3, '2024-08-09 20:25:16', '2024-08-09 20:25:16', 0, NULL, '2024-08-10 00:25:16', '2024-08-10 00:25:16'),
(6451, 5, '2024-08-09 20:25:16', '2024-08-09 20:25:16', 0, NULL, '2024-08-10 00:25:17', '2024-08-10 00:25:17'),
(6452, 1, '2024-08-09 20:35:06', '2024-08-09 20:35:07', 0, NULL, '2024-08-10 00:35:07', '2024-08-10 00:35:07'),
(6453, 2, '2024-08-09 20:35:07', '2024-08-09 20:35:07', 0, NULL, '2024-08-10 00:35:08', '2024-08-10 00:35:08'),
(6454, 3, '2024-08-09 20:35:08', '2024-08-09 20:35:08', 0, NULL, '2024-08-10 00:35:08', '2024-08-10 00:35:08'),
(6455, 5, '2024-08-09 20:35:09', '2024-08-09 20:35:09', 0, NULL, '2024-08-10 00:35:09', '2024-08-10 00:35:09'),
(6456, 1, '2024-08-09 20:45:08', '2024-08-09 20:45:08', 0, NULL, '2024-08-10 00:45:09', '2024-08-10 00:45:09'),
(6457, 2, '2024-08-09 20:45:13', '2024-08-09 20:45:13', 0, NULL, '2024-08-10 00:45:13', '2024-08-10 00:45:13'),
(6458, 3, '2024-08-09 20:45:14', '2024-08-09 20:45:14', 0, NULL, '2024-08-10 00:45:14', '2024-08-10 00:45:14'),
(6459, 5, '2024-08-09 20:45:14', '2024-08-09 20:45:15', 0, NULL, '2024-08-10 00:45:15', '2024-08-10 00:45:15'),
(6460, 1, '2024-08-09 20:55:07', '2024-08-09 20:55:07', 0, NULL, '2024-08-10 00:55:07', '2024-08-10 00:55:07'),
(6461, 2, '2024-08-09 20:55:07', '2024-08-09 20:55:07', 0, NULL, '2024-08-10 00:55:08', '2024-08-10 00:55:08'),
(6462, 3, '2024-08-09 20:55:08', '2024-08-09 20:55:08', 0, NULL, '2024-08-10 00:55:08', '2024-08-10 00:55:08'),
(6463, 5, '2024-08-09 20:55:08', '2024-08-09 20:55:08', 0, NULL, '2024-08-10 00:55:09', '2024-08-10 00:55:09'),
(6464, 1, '2024-08-09 21:00:14', '2024-08-09 21:00:14', 0, NULL, '2024-08-10 01:00:14', '2024-08-10 01:00:14'),
(6465, 2, '2024-08-09 21:00:14', '2024-08-09 21:00:14', 0, NULL, '2024-08-10 01:00:14', '2024-08-10 01:00:14'),
(6466, 3, '2024-08-09 21:00:15', '2024-08-09 21:00:15', 0, NULL, '2024-08-10 01:00:15', '2024-08-10 01:00:15'),
(6467, 5, '2024-08-09 21:00:15', '2024-08-09 21:00:15', 0, NULL, '2024-08-10 01:00:15', '2024-08-10 01:00:15'),
(6468, 1, '2024-08-09 21:10:08', '2024-08-09 21:10:08', 0, NULL, '2024-08-10 01:10:08', '2024-08-10 01:10:08'),
(6469, 2, '2024-08-09 21:10:09', '2024-08-09 21:10:09', 0, NULL, '2024-08-10 01:10:10', '2024-08-10 01:10:10'),
(6470, 3, '2024-08-09 21:10:10', '2024-08-09 21:10:10', 0, NULL, '2024-08-10 01:10:11', '2024-08-10 01:10:11'),
(6471, 5, '2024-08-09 21:10:11', '2024-08-09 21:10:11', 0, NULL, '2024-08-10 01:10:11', '2024-08-10 01:10:11'),
(6472, 1, '2024-08-09 21:20:07', '2024-08-09 21:20:07', 0, NULL, '2024-08-10 01:20:07', '2024-08-10 01:20:07'),
(6473, 2, '2024-08-09 21:20:08', '2024-08-09 21:20:08', 0, NULL, '2024-08-10 01:20:08', '2024-08-10 01:20:08'),
(6474, 3, '2024-08-09 21:20:09', '2024-08-09 21:20:09', 0, NULL, '2024-08-10 01:20:09', '2024-08-10 01:20:09'),
(6475, 5, '2024-08-09 21:20:09', '2024-08-09 21:20:09', 0, NULL, '2024-08-10 01:20:10', '2024-08-10 01:20:10'),
(6476, 1, '2024-08-09 21:30:07', '2024-08-09 21:30:07', 0, NULL, '2024-08-10 01:30:08', '2024-08-10 01:30:08'),
(6477, 2, '2024-08-09 21:30:08', '2024-08-09 21:30:08', 0, NULL, '2024-08-10 01:30:09', '2024-08-10 01:30:09'),
(6478, 3, '2024-08-09 21:30:09', '2024-08-09 21:30:09', 0, NULL, '2024-08-10 01:30:09', '2024-08-10 01:30:09'),
(6479, 5, '2024-08-09 21:30:10', '2024-08-09 21:30:10', 0, NULL, '2024-08-10 01:30:10', '2024-08-10 01:30:10'),
(6480, 1, '2024-08-09 21:35:11', '2024-08-09 21:35:11', 0, NULL, '2024-08-10 01:35:11', '2024-08-10 01:35:11'),
(6481, 2, '2024-08-09 21:35:11', '2024-08-09 21:35:11', 0, NULL, '2024-08-10 01:35:12', '2024-08-10 01:35:12'),
(6482, 3, '2024-08-09 21:35:12', '2024-08-09 21:35:12', 0, NULL, '2024-08-10 01:35:12', '2024-08-10 01:35:12'),
(6483, 5, '2024-08-09 21:40:07', '2024-08-09 21:40:07', 0, NULL, '2024-08-10 01:40:08', '2024-08-10 01:40:08'),
(6484, 1, '2024-08-09 21:45:07', '2024-08-09 21:45:07', 0, NULL, '2024-08-10 01:45:07', '2024-08-10 01:45:07'),
(6485, 2, '2024-08-09 21:45:08', '2024-08-09 21:45:08', 0, NULL, '2024-08-10 01:45:08', '2024-08-10 01:45:08'),
(6486, 3, '2024-08-09 21:45:08', '2024-08-09 21:45:08', 0, NULL, '2024-08-10 01:45:09', '2024-08-10 01:45:09'),
(6487, 1, '2024-08-09 21:50:10', '2024-08-09 21:50:10', 0, NULL, '2024-08-10 01:50:11', '2024-08-10 01:50:11'),
(6488, 2, '2024-08-09 21:50:11', '2024-08-09 21:50:11', 0, NULL, '2024-08-10 01:50:12', '2024-08-10 01:50:12'),
(6489, 3, '2024-08-09 21:50:12', '2024-08-09 21:50:12', 0, NULL, '2024-08-10 01:50:12', '2024-08-10 01:50:12'),
(6490, 5, '2024-08-09 21:50:13', '2024-08-09 21:50:13', 0, NULL, '2024-08-10 01:50:13', '2024-08-10 01:50:13'),
(6491, 1, '2024-08-09 22:00:13', '2024-08-09 22:00:13', 0, NULL, '2024-08-10 02:00:13', '2024-08-10 02:00:13'),
(6492, 2, '2024-08-09 22:00:13', '2024-08-09 22:00:13', 0, NULL, '2024-08-10 02:00:13', '2024-08-10 02:00:13'),
(6493, 3, '2024-08-09 22:00:14', '2024-08-09 22:00:14', 0, NULL, '2024-08-10 02:00:14', '2024-08-10 02:00:14'),
(6494, 5, '2024-08-09 22:00:14', '2024-08-09 22:00:14', 0, NULL, '2024-08-10 02:00:15', '2024-08-10 02:00:15'),
(6495, 1, '2024-08-09 22:10:08', '2024-08-09 22:10:08', 0, NULL, '2024-08-10 02:10:09', '2024-08-10 02:10:09'),
(6496, 2, '2024-08-09 22:10:09', '2024-08-09 22:10:09', 0, NULL, '2024-08-10 02:10:10', '2024-08-10 02:10:10'),
(6497, 3, '2024-08-09 22:10:14', '2024-08-09 22:10:14', 0, NULL, '2024-08-10 02:10:15', '2024-08-10 02:10:15'),
(6498, 5, '2024-08-09 22:10:15', '2024-08-09 22:10:15', 0, NULL, '2024-08-10 02:10:15', '2024-08-10 02:10:15'),
(6499, 1, '2024-08-09 22:15:11', '2024-08-09 22:15:11', 0, NULL, '2024-08-10 02:15:11', '2024-08-10 02:15:11'),
(6500, 2, '2024-08-09 22:15:12', '2024-08-09 22:15:12', 0, NULL, '2024-08-10 02:15:12', '2024-08-10 02:15:12'),
(6501, 3, '2024-08-09 22:20:07', '2024-08-09 22:20:07', 0, NULL, '2024-08-10 02:20:08', '2024-08-10 02:20:08'),
(6502, 5, '2024-08-09 22:20:08', '2024-08-09 22:20:08', 0, NULL, '2024-08-10 02:20:09', '2024-08-10 02:20:09'),
(6503, 1, '2024-08-09 22:25:12', '2024-08-09 22:25:12', 0, NULL, '2024-08-10 02:25:12', '2024-08-10 02:25:12'),
(6504, 2, '2024-08-09 22:25:12', '2024-08-09 22:25:12', 0, NULL, '2024-08-10 02:25:12', '2024-08-10 02:25:12'),
(6505, 3, '2024-08-09 22:25:13', '2024-08-09 22:25:13', 0, NULL, '2024-08-10 02:25:13', '2024-08-10 02:25:13'),
(6506, 5, '2024-08-09 22:25:13', '2024-08-09 22:25:13', 0, NULL, '2024-08-10 02:25:13', '2024-08-10 02:25:13'),
(6507, 1, '2024-08-09 22:35:08', '2024-08-09 22:35:08', 0, NULL, '2024-08-10 02:35:08', '2024-08-10 02:35:08'),
(6508, 2, '2024-08-09 22:35:09', '2024-08-09 22:35:09', 0, NULL, '2024-08-10 02:35:09', '2024-08-10 02:35:09'),
(6509, 3, '2024-08-09 22:35:10', '2024-08-09 22:35:10', 0, NULL, '2024-08-10 02:35:12', '2024-08-10 02:35:12'),
(6510, 5, '2024-08-09 22:35:13', '2024-08-09 22:35:13', 0, NULL, '2024-08-10 02:35:13', '2024-08-10 02:35:13'),
(6511, 1, '2024-08-09 22:45:12', '2024-08-09 22:45:13', 0, NULL, '2024-08-10 02:45:13', '2024-08-10 02:45:13'),
(6512, 2, '2024-08-09 22:45:13', '2024-08-09 22:45:13', 0, NULL, '2024-08-10 02:45:13', '2024-08-10 02:45:13'),
(6513, 3, '2024-08-09 22:45:14', '2024-08-09 22:45:14', 0, NULL, '2024-08-10 02:45:14', '2024-08-10 02:45:14'),
(6514, 5, '2024-08-09 22:45:14', '2024-08-09 22:45:14', 0, NULL, '2024-08-10 02:45:14', '2024-08-10 02:45:14'),
(6515, 1, '2024-08-09 22:55:06', '2024-08-09 22:55:06', 0, NULL, '2024-08-10 02:55:07', '2024-08-10 02:55:07'),
(6516, 2, '2024-08-09 22:55:07', '2024-08-09 22:55:07', 0, NULL, '2024-08-10 02:55:08', '2024-08-10 02:55:08'),
(6517, 3, '2024-08-09 22:55:09', '2024-08-09 22:55:09', 0, NULL, '2024-08-10 02:55:09', '2024-08-10 02:55:09'),
(6518, 5, '2024-08-09 22:55:09', '2024-08-09 22:55:09', 0, NULL, '2024-08-10 02:55:09', '2024-08-10 02:55:09'),
(6519, 1, '2024-08-09 23:00:09', '2024-08-09 23:00:09', 0, NULL, '2024-08-10 03:00:10', '2024-08-10 03:00:10'),
(6520, 2, '2024-08-09 23:00:11', '2024-08-09 23:00:11', 0, NULL, '2024-08-10 03:00:12', '2024-08-10 03:00:12'),
(6521, 3, '2024-08-09 23:05:07', '2024-08-09 23:05:07', 0, NULL, '2024-08-10 03:05:07', '2024-08-10 03:05:07'),
(6522, 5, '2024-08-09 23:05:08', '2024-08-09 23:05:08', 0, NULL, '2024-08-10 03:05:08', '2024-08-10 03:05:08'),
(6523, 1, '2024-08-09 23:10:09', '2024-08-09 23:10:09', 0, NULL, '2024-08-10 03:10:10', '2024-08-10 03:10:10'),
(6524, 2, '2024-08-09 23:10:11', '2024-08-09 23:10:11', 0, NULL, '2024-08-10 03:10:11', '2024-08-10 03:10:11'),
(6525, 3, '2024-08-09 23:10:12', '2024-08-09 23:10:12', 0, NULL, '2024-08-10 03:10:12', '2024-08-10 03:10:12'),
(6526, 5, '2024-08-09 23:10:12', '2024-08-09 23:10:12', 0, NULL, '2024-08-10 03:10:13', '2024-08-10 03:10:13'),
(6527, 1, '2024-08-09 23:20:05', '2024-08-09 23:20:05', 0, NULL, '2024-08-10 03:20:05', '2024-08-10 03:20:05'),
(6528, 2, '2024-08-09 23:20:06', '2024-08-09 23:20:06', 0, NULL, '2024-08-10 03:20:06', '2024-08-10 03:20:06'),
(6529, 3, '2024-08-09 23:20:07', '2024-08-09 23:20:07', 0, NULL, '2024-08-10 03:20:08', '2024-08-10 03:20:08'),
(6530, 5, '2024-08-09 23:20:08', '2024-08-09 23:20:08', 0, NULL, '2024-08-10 03:20:08', '2024-08-10 03:20:08'),
(6531, 1, '2024-08-09 23:25:08', '2024-08-09 23:25:08', 0, NULL, '2024-08-10 03:25:08', '2024-08-10 03:25:08'),
(6532, 2, '2024-08-09 23:25:09', '2024-08-09 23:25:09', 0, NULL, '2024-08-10 03:25:09', '2024-08-10 03:25:09'),
(6533, 3, '2024-08-09 23:30:07', '2024-08-09 23:30:07', 0, NULL, '2024-08-10 03:30:08', '2024-08-10 03:30:08'),
(6534, 5, '2024-08-09 23:30:09', '2024-08-09 23:30:09', 0, NULL, '2024-08-10 03:30:10', '2024-08-10 03:30:10'),
(6535, 1, '2024-08-09 23:35:07', '2024-08-09 23:35:07', 0, NULL, '2024-08-10 03:35:07', '2024-08-10 03:35:07'),
(6536, 2, '2024-08-09 23:35:09', '2024-08-09 23:35:09', 0, NULL, '2024-08-10 03:35:09', '2024-08-10 03:35:09'),
(6537, 3, '2024-08-09 23:40:07', '2024-08-09 23:40:07', 0, NULL, '2024-08-10 03:40:08', '2024-08-10 03:40:08'),
(6538, 5, '2024-08-09 23:40:08', '2024-08-09 23:40:08', 0, NULL, '2024-08-10 03:40:08', '2024-08-10 03:40:08'),
(6539, 1, '2024-08-09 23:45:09', '2024-08-09 23:45:09', 0, NULL, '2024-08-10 03:45:09', '2024-08-10 03:45:09'),
(6540, 2, '2024-08-09 23:45:11', '2024-08-09 23:45:11', 0, NULL, '2024-08-10 03:45:11', '2024-08-10 03:45:11'),
(6541, 3, '2024-08-09 23:45:11', '2024-08-09 23:45:11', 0, NULL, '2024-08-10 03:45:12', '2024-08-10 03:45:12'),
(6542, 5, '2024-08-09 23:50:05', '2024-08-09 23:50:05', 0, NULL, '2024-08-10 03:50:05', '2024-08-10 03:50:05'),
(6543, 1, '2024-08-09 23:55:10', '2024-08-09 23:55:11', 0, NULL, '2024-08-10 03:55:11', '2024-08-10 03:55:11'),
(6544, 2, '2024-08-09 23:55:11', '2024-08-09 23:55:11', 0, NULL, '2024-08-10 03:55:12', '2024-08-10 03:55:12'),
(6545, 3, '2024-08-09 23:55:12', '2024-08-09 23:55:12', 0, NULL, '2024-08-10 03:55:12', '2024-08-10 03:55:12'),
(6546, 5, '2024-08-09 23:55:12', '2024-08-09 23:55:12', 0, NULL, '2024-08-10 03:55:13', '2024-08-10 03:55:13'),
(6547, 1, '2024-08-10 00:05:02', '2024-08-10 00:05:02', 0, NULL, '2024-08-10 04:05:03', '2024-08-10 04:05:03'),
(6548, 2, '2024-08-10 00:05:03', '2024-08-10 00:05:03', 0, NULL, '2024-08-10 04:05:04', '2024-08-10 04:05:04'),
(6549, 3, '2024-08-10 00:05:04', '2024-08-10 00:05:04', 0, NULL, '2024-08-10 04:05:06', '2024-08-10 04:05:06'),
(6550, 5, '2024-08-10 00:05:06', '2024-08-10 00:05:06', 0, NULL, '2024-08-10 04:05:06', '2024-08-10 04:05:06'),
(6551, 1, '2024-08-10 00:10:05', '2024-08-10 00:10:05', 0, NULL, '2024-08-10 04:10:05', '2024-08-10 04:10:05'),
(6552, 2, '2024-08-10 00:10:06', '2024-08-10 00:10:06', 0, NULL, '2024-08-10 04:10:06', '2024-08-10 04:10:06'),
(6553, 3, '2024-08-10 00:10:06', '2024-08-10 00:10:06', 0, NULL, '2024-08-10 04:10:07', '2024-08-10 04:10:07'),
(6554, 1, '2024-08-10 00:15:11', '2024-08-10 00:15:11', 0, NULL, '2024-08-10 04:15:12', '2024-08-10 04:15:12'),
(6555, 2, '2024-08-10 00:15:13', '2024-08-10 00:15:13', 0, NULL, '2024-08-10 04:15:14', '2024-08-10 04:15:14'),
(6556, 3, '2024-08-10 00:15:15', '2024-08-10 00:15:15', 0, NULL, '2024-08-10 04:15:15', '2024-08-10 04:15:15'),
(6557, 5, '2024-08-10 00:15:15', '2024-08-10 00:15:15', 0, NULL, '2024-08-10 04:15:15', '2024-08-10 04:15:15'),
(6558, 1, '2024-08-10 00:25:06', '2024-08-10 00:25:07', 0, NULL, '2024-08-10 04:25:07', '2024-08-10 04:25:07'),
(6559, 2, '2024-08-10 00:25:07', '2024-08-10 00:25:07', 0, NULL, '2024-08-10 04:25:08', '2024-08-10 04:25:08'),
(6560, 3, '2024-08-10 00:25:08', '2024-08-10 00:25:08', 0, NULL, '2024-08-10 04:25:08', '2024-08-10 04:25:08'),
(6561, 5, '2024-08-10 00:25:08', '2024-08-10 00:25:08', 0, NULL, '2024-08-10 04:25:09', '2024-08-10 04:25:09'),
(6562, 1, '2024-08-10 00:35:06', '2024-08-10 00:35:06', 0, NULL, '2024-08-10 04:35:06', '2024-08-10 04:35:06'),
(6563, 2, '2024-08-10 00:35:07', '2024-08-10 00:35:07', 0, NULL, '2024-08-10 04:35:07', '2024-08-10 04:35:07'),
(6564, 3, '2024-08-10 00:35:07', '2024-08-10 00:35:07', 0, NULL, '2024-08-10 04:35:07', '2024-08-10 04:35:07'),
(6565, 5, '2024-08-10 00:35:08', '2024-08-10 00:35:08', 0, NULL, '2024-08-10 04:35:08', '2024-08-10 04:35:08'),
(6566, 1, '2024-08-10 00:45:10', '2024-08-10 00:45:10', 0, NULL, '2024-08-10 04:45:11', '2024-08-10 04:45:11'),
(6567, 2, '2024-08-10 00:45:11', '2024-08-10 00:45:11', 0, NULL, '2024-08-10 04:45:11', '2024-08-10 04:45:11'),
(6568, 3, '2024-08-10 00:45:12', '2024-08-10 00:45:12', 0, NULL, '2024-08-10 04:45:12', '2024-08-10 04:45:12'),
(6569, 5, '2024-08-10 00:45:12', '2024-08-10 00:45:12', 0, NULL, '2024-08-10 04:45:13', '2024-08-10 04:45:13'),
(6570, 1, '2024-08-10 00:55:03', '2024-08-10 00:55:03', 0, NULL, '2024-08-10 04:55:04', '2024-08-10 04:55:04'),
(6571, 2, '2024-08-10 00:55:04', '2024-08-10 00:55:04', 0, NULL, '2024-08-10 04:55:05', '2024-08-10 04:55:05'),
(6572, 3, '2024-08-10 00:55:05', '2024-08-10 00:55:05', 0, NULL, '2024-08-10 04:55:05', '2024-08-10 04:55:05'),
(6573, 5, '2024-08-10 00:55:08', '2024-08-10 00:55:08', 0, NULL, '2024-08-10 04:55:10', '2024-08-10 04:55:10'),
(6574, 1, '2024-08-10 01:00:09', '2024-08-10 01:00:09', 0, NULL, '2024-08-10 05:00:09', '2024-08-10 05:00:09'),
(6575, 2, '2024-08-10 01:00:09', '2024-08-10 01:00:09', 0, NULL, '2024-08-10 05:00:10', '2024-08-10 05:00:10'),
(6576, 3, '2024-08-10 01:00:10', '2024-08-10 01:00:10', 0, NULL, '2024-08-10 05:00:10', '2024-08-10 05:00:10'),
(6577, 5, '2024-08-10 01:05:08', '2024-08-10 01:05:08', 0, NULL, '2024-08-10 05:05:08', '2024-08-10 05:05:08'),
(6578, 1, '2024-08-10 01:10:07', '2024-08-10 01:10:07', 0, NULL, '2024-08-10 05:10:07', '2024-08-10 05:10:07'),
(6579, 2, '2024-08-10 01:10:08', '2024-08-10 01:10:08', 0, NULL, '2024-08-10 05:10:08', '2024-08-10 05:10:08'),
(6580, 3, '2024-08-10 01:10:08', '2024-08-10 01:10:08', 0, NULL, '2024-08-10 05:10:09', '2024-08-10 05:10:09'),
(6581, 5, '2024-08-10 01:15:08', '2024-08-10 01:15:08', 0, NULL, '2024-08-10 05:15:09', '2024-08-10 05:15:09'),
(6582, 1, '2024-08-10 01:20:11', '2024-08-10 01:20:12', 0, NULL, '2024-08-10 05:20:12', '2024-08-10 05:20:12'),
(6583, 2, '2024-08-10 01:20:13', '2024-08-10 01:20:13', 0, NULL, '2024-08-10 05:20:13', '2024-08-10 05:20:13'),
(6584, 3, '2024-08-10 01:20:13', '2024-08-10 01:20:13', 0, NULL, '2024-08-10 05:20:13', '2024-08-10 05:20:13'),
(6585, 5, '2024-08-10 01:20:13', '2024-08-10 01:20:13', 0, NULL, '2024-08-10 05:20:14', '2024-08-10 05:20:14'),
(6586, 1, '2024-08-10 01:30:05', '2024-08-10 01:30:05', 0, NULL, '2024-08-10 05:30:06', '2024-08-10 05:30:06'),
(6587, 2, '2024-08-10 01:30:06', '2024-08-10 01:30:06', 0, NULL, '2024-08-10 05:30:07', '2024-08-10 05:30:07'),
(6588, 3, '2024-08-10 01:30:07', '2024-08-10 01:30:07', 0, NULL, '2024-08-10 05:30:08', '2024-08-10 05:30:08'),
(6589, 5, '2024-08-10 01:30:09', '2024-08-10 01:30:09', 0, NULL, '2024-08-10 05:30:09', '2024-08-10 05:30:09'),
(6590, 1, '2024-08-10 01:35:06', '2024-08-10 01:35:06', 0, NULL, '2024-08-10 05:35:11', '2024-08-10 05:35:11'),
(6591, 1, '2024-08-10 01:40:07', '2024-08-10 01:40:08', 0, NULL, '2024-08-10 05:40:08', '2024-08-10 05:40:08'),
(6592, 2, '2024-08-10 01:40:08', '2024-08-10 01:40:08', 0, NULL, '2024-08-10 05:40:09', '2024-08-10 05:40:09'),
(6593, 3, '2024-08-10 01:40:09', '2024-08-10 01:40:09', 0, NULL, '2024-08-10 05:40:11', '2024-08-10 05:40:11'),
(6594, 5, '2024-08-10 01:40:13', '2024-08-10 01:40:13', 0, NULL, '2024-08-10 05:40:13', '2024-08-10 05:40:13'),
(6595, 1, '2024-08-10 01:50:04', '2024-08-10 01:50:06', 1, NULL, '2024-08-10 05:50:07', '2024-08-10 05:50:07'),
(6596, 2, '2024-08-10 01:50:10', '2024-08-10 01:50:10', 0, NULL, '2024-08-10 05:50:10', '2024-08-10 05:50:10'),
(6597, 3, '2024-08-10 01:50:10', '2024-08-10 01:50:10', 0, NULL, '2024-08-10 05:50:11', '2024-08-10 05:50:11'),
(6598, 5, '2024-08-10 01:50:11', '2024-08-10 01:50:11', 0, NULL, '2024-08-10 05:50:11', '2024-08-10 05:50:11'),
(6599, 1, '2024-08-10 01:55:09', '2024-08-10 01:55:09', 0, NULL, '2024-08-10 05:55:09', '2024-08-10 05:55:09'),
(6600, 2, '2024-08-10 02:00:06', '2024-08-10 02:00:06', 0, NULL, '2024-08-10 06:00:06', '2024-08-10 06:00:06'),
(6601, 3, '2024-08-10 02:00:07', '2024-08-10 02:00:07', 0, NULL, '2024-08-10 06:00:08', '2024-08-10 06:00:08'),
(6602, 5, '2024-08-10 02:00:08', '2024-08-10 02:00:08', 0, NULL, '2024-08-10 06:00:08', '2024-08-10 06:00:08'),
(6603, 1, '2024-08-10 02:05:08', '2024-08-10 02:05:08', 0, NULL, '2024-08-10 06:05:08', '2024-08-10 06:05:08'),
(6604, 2, '2024-08-10 02:05:09', '2024-08-10 02:05:09', 0, NULL, '2024-08-10 06:05:09', '2024-08-10 06:05:09'),
(6605, 3, '2024-08-10 02:05:09', '2024-08-10 02:05:09', 0, NULL, '2024-08-10 06:05:10', '2024-08-10 06:05:10'),
(6606, 5, '2024-08-10 02:10:07', '2024-08-10 02:10:07', 0, NULL, '2024-08-10 06:10:08', '2024-08-10 06:10:08'),
(6607, 1, '2024-08-10 02:15:13', '2024-08-10 02:15:13', 0, NULL, '2024-08-10 06:15:15', '2024-08-10 06:15:15'),
(6608, 2, '2024-08-10 02:15:15', '2024-08-10 02:15:15', 0, NULL, '2024-08-10 06:15:15', '2024-08-10 06:15:15'),
(6609, 3, '2024-08-10 02:15:15', '2024-08-10 02:15:15', 0, NULL, '2024-08-10 06:15:16', '2024-08-10 06:15:16'),
(6610, 5, '2024-08-10 02:15:16', '2024-08-10 02:15:16', 0, NULL, '2024-08-10 06:15:16', '2024-08-10 06:15:16'),
(6611, 1, '2024-08-10 02:25:06', '2024-08-10 02:25:06', 0, NULL, '2024-08-10 06:25:07', '2024-08-10 06:25:07'),
(6612, 2, '2024-08-10 02:25:07', '2024-08-10 02:25:07', 0, NULL, '2024-08-10 06:25:08', '2024-08-10 06:25:08'),
(6613, 3, '2024-08-10 02:25:08', '2024-08-10 02:25:08', 0, NULL, '2024-08-10 06:25:08', '2024-08-10 06:25:08'),
(6614, 5, '2024-08-10 02:25:08', '2024-08-10 02:25:08', 0, NULL, '2024-08-10 06:25:09', '2024-08-10 06:25:09'),
(6615, 1, '2024-08-10 02:30:07', '2024-08-10 02:30:07', 0, NULL, '2024-08-10 06:30:08', '2024-08-10 06:30:08'),
(6616, 2, '2024-08-10 02:35:05', '2024-08-10 02:35:05', 0, NULL, '2024-08-10 06:35:06', '2024-08-10 06:35:06'),
(6617, 3, '2024-08-10 02:35:06', '2024-08-10 02:35:06', 0, NULL, '2024-08-10 06:35:06', '2024-08-10 06:35:06'),
(6618, 5, '2024-08-10 02:35:06', '2024-08-10 02:35:06', 0, NULL, '2024-08-10 06:35:06', '2024-08-10 06:35:06'),
(6619, 1, '2024-08-10 02:40:07', '2024-08-10 02:40:08', 0, NULL, '2024-08-10 06:40:08', '2024-08-10 06:40:08'),
(6620, 2, '2024-08-10 02:40:08', '2024-08-10 02:40:08', 0, NULL, '2024-08-10 06:40:08', '2024-08-10 06:40:08'),
(6621, 3, '2024-08-10 02:40:08', '2024-08-10 02:40:08', 0, NULL, '2024-08-10 06:40:09', '2024-08-10 06:40:09'),
(6622, 5, '2024-08-10 02:40:09', '2024-08-10 02:40:09', 0, NULL, '2024-08-10 06:40:09', '2024-08-10 06:40:09'),
(6623, 1, '2024-08-10 02:50:06', '2024-08-10 02:50:06', 0, NULL, '2024-08-10 06:50:07', '2024-08-10 06:50:07'),
(6624, 2, '2024-08-10 02:50:07', '2024-08-10 02:50:07', 0, NULL, '2024-08-10 06:50:08', '2024-08-10 06:50:08'),
(6625, 3, '2024-08-10 02:50:08', '2024-08-10 02:50:08', 0, NULL, '2024-08-10 06:50:08', '2024-08-10 06:50:08'),
(6626, 5, '2024-08-10 02:50:08', '2024-08-10 02:50:09', 0, NULL, '2024-08-10 06:50:09', '2024-08-10 06:50:09'),
(6627, 1, '2024-08-10 02:55:07', '2024-08-10 02:55:07', 0, NULL, '2024-08-10 06:55:08', '2024-08-10 06:55:08'),
(6628, 1, '2024-08-10 03:00:12', '2024-08-10 03:00:12', 0, NULL, '2024-08-10 07:00:12', '2024-08-10 07:00:12'),
(6629, 2, '2024-08-10 03:00:13', '2024-08-10 03:00:13', 0, NULL, '2024-08-10 07:00:13', '2024-08-10 07:00:13'),
(6630, 3, '2024-08-10 03:00:14', '2024-08-10 03:00:14', 0, NULL, '2024-08-10 07:00:14', '2024-08-10 07:00:14'),
(6631, 5, '2024-08-10 03:00:14', '2024-08-10 03:00:14', 0, NULL, '2024-08-10 07:00:14', '2024-08-10 07:00:14'),
(6632, 1, '2024-08-10 03:10:08', '2024-08-10 03:10:08', 0, NULL, '2024-08-10 07:10:08', '2024-08-10 07:10:08'),
(6633, 2, '2024-08-10 03:10:09', '2024-08-10 03:10:09', 0, NULL, '2024-08-10 07:10:09', '2024-08-10 07:10:09'),
(6634, 3, '2024-08-10 03:10:10', '2024-08-10 03:10:10', 0, NULL, '2024-08-10 07:10:10', '2024-08-10 07:10:10'),
(6635, 5, '2024-08-10 03:10:10', '2024-08-10 03:10:10', 0, NULL, '2024-08-10 07:10:11', '2024-08-10 07:10:11'),
(6636, 1, '2024-08-10 03:20:05', '2024-08-10 03:20:05', 0, NULL, '2024-08-10 07:20:05', '2024-08-10 07:20:05'),
(6637, 2, '2024-08-10 03:20:06', '2024-08-10 03:20:06', 0, NULL, '2024-08-10 07:20:06', '2024-08-10 07:20:06'),
(6638, 3, '2024-08-10 03:20:06', '2024-08-10 03:20:06', 0, NULL, '2024-08-10 07:20:07', '2024-08-10 07:20:07'),
(6639, 5, '2024-08-10 03:20:07', '2024-08-10 03:20:07', 0, NULL, '2024-08-10 07:20:07', '2024-08-10 07:20:07'),
(6640, 1, '2024-08-10 03:30:08', '2024-08-10 03:30:09', 0, NULL, '2024-08-10 07:30:10', '2024-08-10 07:30:10'),
(6641, 2, '2024-08-10 03:30:10', '2024-08-10 03:30:10', 0, NULL, '2024-08-10 07:30:10', '2024-08-10 07:30:10'),
(6642, 3, '2024-08-10 03:30:10', '2024-08-10 03:30:10', 0, NULL, '2024-08-10 07:30:11', '2024-08-10 07:30:11'),
(6643, 5, '2024-08-10 03:30:11', '2024-08-10 03:30:11', 0, NULL, '2024-08-10 07:30:11', '2024-08-10 07:30:11'),
(6644, 1, '2024-08-10 03:40:06', '2024-08-10 03:40:07', 0, NULL, '2024-08-10 07:40:11', '2024-08-10 07:40:11'),
(6645, 2, '2024-08-10 03:40:12', '2024-08-10 03:40:12', 0, NULL, '2024-08-10 07:40:12', '2024-08-10 07:40:12'),
(6646, 3, '2024-08-10 03:40:12', '2024-08-10 03:40:12', 0, NULL, '2024-08-10 07:40:12', '2024-08-10 07:40:12'),
(6647, 5, '2024-08-10 03:40:12', '2024-08-10 03:40:12', 0, NULL, '2024-08-10 07:40:13', '2024-08-10 07:40:13'),
(6648, 1, '2024-08-10 03:50:05', '2024-08-10 03:50:06', 0, NULL, '2024-08-10 07:50:06', '2024-08-10 07:50:06'),
(6649, 2, '2024-08-10 03:50:06', '2024-08-10 03:50:06', 0, NULL, '2024-08-10 07:50:07', '2024-08-10 07:50:07'),
(6650, 3, '2024-08-10 03:50:07', '2024-08-10 03:50:07', 0, NULL, '2024-08-10 07:50:07', '2024-08-10 07:50:07'),
(6651, 5, '2024-08-10 03:50:08', '2024-08-10 03:50:08', 0, NULL, '2024-08-10 07:50:08', '2024-08-10 07:50:08'),
(6652, 1, '2024-08-10 03:55:09', '2024-08-10 03:55:09', 0, NULL, '2024-08-10 07:55:09', '2024-08-10 07:55:09'),
(6653, 2, '2024-08-10 03:55:10', '2024-08-10 03:55:10', 0, NULL, '2024-08-10 07:55:11', '2024-08-10 07:55:11'),
(6654, 3, '2024-08-10 03:55:11', '2024-08-10 03:55:11', 0, NULL, '2024-08-10 07:55:11', '2024-08-10 07:55:11'),
(6655, 5, '2024-08-10 03:55:11', '2024-08-10 03:55:11', 0, NULL, '2024-08-10 07:55:11', '2024-08-10 07:55:11'),
(6656, 1, '2024-08-10 04:00:15', '2024-08-10 04:00:15', 0, NULL, '2024-08-10 08:00:15', '2024-08-10 08:00:15'),
(6657, 2, '2024-08-10 04:05:11', '2024-08-10 04:05:11', 0, NULL, '2024-08-10 08:05:11', '2024-08-10 08:05:11'),
(6658, 3, '2024-08-10 04:05:12', '2024-08-10 04:05:12', 0, NULL, '2024-08-10 08:05:12', '2024-08-10 08:05:12'),
(6659, 5, '2024-08-10 04:05:12', '2024-08-10 04:05:12', 0, NULL, '2024-08-10 08:05:12', '2024-08-10 08:05:12'),
(6660, 1, '2024-08-10 04:10:08', '2024-08-10 04:10:08', 0, NULL, '2024-08-10 08:10:08', '2024-08-10 08:10:08'),
(6661, 2, '2024-08-10 04:15:08', '2024-08-10 04:15:08', 0, NULL, '2024-08-10 08:15:09', '2024-08-10 08:15:09'),
(6662, 3, '2024-08-10 04:15:09', '2024-08-10 04:15:09', 0, NULL, '2024-08-10 08:15:09', '2024-08-10 08:15:09'),
(6663, 5, '2024-08-10 04:15:09', '2024-08-10 04:15:09', 0, NULL, '2024-08-10 08:15:09', '2024-08-10 08:15:09'),
(6664, 1, '2024-08-10 04:20:05', '2024-08-10 04:20:05', 0, NULL, '2024-08-10 08:20:05', '2024-08-10 08:20:05'),
(6665, 2, '2024-08-10 04:25:05', '2024-08-10 04:25:05', 0, NULL, '2024-08-10 08:25:06', '2024-08-10 08:25:06'),
(6666, 3, '2024-08-10 04:25:06', '2024-08-10 04:25:06', 0, NULL, '2024-08-10 08:25:07', '2024-08-10 08:25:07'),
(6667, 5, '2024-08-10 04:25:07', '2024-08-10 04:25:07', 0, NULL, '2024-08-10 08:25:08', '2024-08-10 08:25:08'),
(6668, 1, '2024-08-10 04:30:11', '2024-08-10 04:30:12', 1, NULL, '2024-08-10 08:30:12', '2024-08-10 08:30:12'),
(6669, 2, '2024-08-10 04:30:12', '2024-08-10 04:30:12', 0, NULL, '2024-08-10 08:30:12', '2024-08-10 08:30:12'),
(6670, 3, '2024-08-10 04:30:12', '2024-08-10 04:30:12', 0, NULL, '2024-08-10 08:30:12', '2024-08-10 08:30:12'),
(6671, 5, '2024-08-10 04:30:12', '2024-08-10 04:30:12', 0, NULL, '2024-08-10 08:30:13', '2024-08-10 08:30:13'),
(6672, 1, '2024-08-10 04:40:02', '2024-08-10 04:40:02', 0, NULL, '2024-08-10 08:40:03', '2024-08-10 08:40:03'),
(6673, 2, '2024-08-10 04:40:03', '2024-08-10 04:40:03', 0, NULL, '2024-08-10 08:40:03', '2024-08-10 08:40:03'),
(6674, 3, '2024-08-10 04:40:04', '2024-08-10 04:40:04', 0, NULL, '2024-08-10 08:40:04', '2024-08-10 08:40:04'),
(6675, 5, '2024-08-10 04:40:05', '2024-08-10 04:40:05', 0, NULL, '2024-08-10 08:40:05', '2024-08-10 08:40:05'),
(6676, 1, '2024-08-10 04:45:05', '2024-08-10 04:45:05', 0, NULL, '2024-08-10 08:45:06', '2024-08-10 08:45:06'),
(6677, 2, '2024-08-10 04:45:06', '2024-08-10 04:45:06', 0, NULL, '2024-08-10 08:45:06', '2024-08-10 08:45:06'),
(6678, 3, '2024-08-10 04:45:06', '2024-08-10 04:45:06', 0, NULL, '2024-08-10 08:45:07', '2024-08-10 08:45:07'),
(6679, 5, '2024-08-10 04:50:03', '2024-08-10 04:50:03', 0, NULL, '2024-08-10 08:50:04', '2024-08-10 08:50:04'),
(6680, 1, '2024-08-10 04:55:05', '2024-08-10 04:55:05', 0, NULL, '2024-08-10 08:55:05', '2024-08-10 08:55:05'),
(6681, 2, '2024-08-10 04:55:06', '2024-08-10 04:55:06', 0, NULL, '2024-08-10 08:55:06', '2024-08-10 08:55:06'),
(6682, 3, '2024-08-10 04:55:06', '2024-08-10 04:55:06', 0, NULL, '2024-08-10 08:55:07', '2024-08-10 08:55:07'),
(6683, 5, '2024-08-10 04:55:07', '2024-08-10 04:55:07', 0, NULL, '2024-08-10 08:55:07', '2024-08-10 08:55:07'),
(6684, 1, '2024-08-10 05:05:05', '2024-08-10 05:05:05', 0, NULL, '2024-08-10 09:05:06', '2024-08-10 09:05:06'),
(6685, 2, '2024-08-10 05:05:06', '2024-08-10 05:05:06', 0, NULL, '2024-08-10 09:05:07', '2024-08-10 09:05:07'),
(6686, 3, '2024-08-10 05:05:07', '2024-08-10 05:05:07', 0, NULL, '2024-08-10 09:05:07', '2024-08-10 09:05:07'),
(6687, 5, '2024-08-10 05:05:07', '2024-08-10 05:05:07', 0, NULL, '2024-08-10 09:05:07', '2024-08-10 09:05:07'),
(6688, 1, '2024-08-10 05:10:08', '2024-08-10 05:10:09', 0, NULL, '2024-08-10 09:10:09', '2024-08-10 09:10:09'),
(6689, 2, '2024-08-10 05:10:09', '2024-08-10 05:10:09', 0, NULL, '2024-08-10 09:10:10', '2024-08-10 09:10:10'),
(6690, 3, '2024-08-10 05:10:10', '2024-08-10 05:10:10', 0, NULL, '2024-08-10 09:10:10', '2024-08-10 09:10:10'),
(6691, 5, '2024-08-10 05:10:10', '2024-08-10 05:10:10', 0, NULL, '2024-08-10 09:10:10', '2024-08-10 09:10:10'),
(6692, 1, '2024-08-10 05:20:07', '2024-08-10 05:20:07', 0, NULL, '2024-08-10 09:20:07', '2024-08-10 09:20:07'),
(6693, 2, '2024-08-10 05:20:07', '2024-08-10 05:20:07', 0, NULL, '2024-08-10 09:20:08', '2024-08-10 09:20:08'),
(6694, 3, '2024-08-10 05:20:08', '2024-08-10 05:20:08', 0, NULL, '2024-08-10 09:20:08', '2024-08-10 09:20:08'),
(6695, 5, '2024-08-10 05:20:08', '2024-08-10 05:20:08', 0, NULL, '2024-08-10 09:20:08', '2024-08-10 09:20:08'),
(6696, 1, '2024-08-10 05:30:06', '2024-08-10 05:30:06', 0, NULL, '2024-08-10 09:30:07', '2024-08-10 09:30:07'),
(6697, 2, '2024-08-10 05:30:07', '2024-08-10 05:30:07', 0, NULL, '2024-08-10 09:30:07', '2024-08-10 09:30:07'),
(6698, 3, '2024-08-10 05:30:08', '2024-08-10 05:30:08', 0, NULL, '2024-08-10 09:30:08', '2024-08-10 09:30:08'),
(6699, 5, '2024-08-10 05:30:08', '2024-08-10 05:30:08', 0, NULL, '2024-08-10 09:30:09', '2024-08-10 09:30:09'),
(6700, 1, '2024-08-10 05:40:05', '2024-08-10 05:40:05', 0, NULL, '2024-08-10 09:40:05', '2024-08-10 09:40:05'),
(6701, 2, '2024-08-10 05:40:10', '2024-08-10 05:40:10', 0, NULL, '2024-08-10 09:40:11', '2024-08-10 09:40:11'),
(6702, 3, '2024-08-10 05:40:11', '2024-08-10 05:40:11', 0, NULL, '2024-08-10 09:40:11', '2024-08-10 09:40:11'),
(6703, 5, '2024-08-10 05:40:11', '2024-08-10 05:40:11', 0, NULL, '2024-08-10 09:40:12', '2024-08-10 09:40:12'),
(6704, 1, '2024-08-10 05:50:08', '2024-08-10 05:50:08', 0, NULL, '2024-08-10 09:50:08', '2024-08-10 09:50:08'),
(6705, 2, '2024-08-10 05:50:08', '2024-08-10 05:50:08', 0, NULL, '2024-08-10 09:50:09', '2024-08-10 09:50:09'),
(6706, 3, '2024-08-10 05:50:09', '2024-08-10 05:50:09', 0, NULL, '2024-08-10 09:50:09', '2024-08-10 09:50:09'),
(6707, 5, '2024-08-10 05:50:10', '2024-08-10 05:50:10', 0, NULL, '2024-08-10 09:50:10', '2024-08-10 09:50:10'),
(6708, 1, '2024-08-10 06:00:11', '2024-08-10 06:00:11', 0, NULL, '2024-08-10 10:00:11', '2024-08-10 10:00:11'),
(6709, 2, '2024-08-10 06:00:11', '2024-08-10 06:00:11', 0, NULL, '2024-08-10 10:00:12', '2024-08-10 10:00:12'),
(6710, 3, '2024-08-10 06:00:12', '2024-08-10 06:00:12', 0, NULL, '2024-08-10 10:00:12', '2024-08-10 10:00:12'),
(6711, 5, '2024-08-10 06:00:12', '2024-08-10 06:00:12', 0, NULL, '2024-08-10 10:00:12', '2024-08-10 10:00:12'),
(6712, 1, '2024-08-10 06:10:08', '2024-08-10 06:10:08', 0, NULL, '2024-08-10 10:10:09', '2024-08-10 10:10:09'),
(6713, 2, '2024-08-10 06:10:09', '2024-08-10 06:10:09', 0, NULL, '2024-08-10 10:10:09', '2024-08-10 10:10:09'),
(6714, 3, '2024-08-10 06:10:10', '2024-08-10 06:10:10', 0, NULL, '2024-08-10 10:10:10', '2024-08-10 10:10:10'),
(6715, 5, '2024-08-10 06:10:10', '2024-08-10 06:10:11', 0, NULL, '2024-08-10 10:10:11', '2024-08-10 10:10:11'),
(6716, 1, '2024-08-10 06:20:03', '2024-08-10 06:20:03', 0, NULL, '2024-08-10 10:20:04', '2024-08-10 10:20:04'),
(6717, 2, '2024-08-10 06:20:05', '2024-08-10 06:20:05', 0, NULL, '2024-08-10 10:20:05', '2024-08-10 10:20:05'),
(6718, 3, '2024-08-10 06:20:05', '2024-08-10 06:20:05', 0, NULL, '2024-08-10 10:20:06', '2024-08-10 10:20:06'),
(6719, 5, '2024-08-10 06:20:06', '2024-08-10 06:20:06', 0, NULL, '2024-08-10 10:20:07', '2024-08-10 10:20:07'),
(6720, 1, '2024-08-10 06:25:07', '2024-08-10 06:25:07', 0, NULL, '2024-08-10 10:25:07', '2024-08-10 10:25:07'),
(6721, 2, '2024-08-10 06:25:08', '2024-08-10 06:25:08', 0, NULL, '2024-08-10 10:25:08', '2024-08-10 10:25:08'),
(6722, 3, '2024-08-10 06:25:08', '2024-08-10 06:25:08', 0, NULL, '2024-08-10 10:25:08', '2024-08-10 10:25:08'),
(6723, 5, '2024-08-10 06:25:09', '2024-08-10 06:25:09', 0, NULL, '2024-08-10 10:25:09', '2024-08-10 10:25:09'),
(6724, 1, '2024-08-10 06:35:06', '2024-08-10 06:35:06', 0, NULL, '2024-08-10 10:35:06', '2024-08-10 10:35:06'),
(6725, 2, '2024-08-10 06:35:07', '2024-08-10 06:35:07', 0, NULL, '2024-08-10 10:35:08', '2024-08-10 10:35:08'),
(6726, 3, '2024-08-10 06:35:08', '2024-08-10 06:35:08', 0, NULL, '2024-08-10 10:35:08', '2024-08-10 10:35:08'),
(6727, 5, '2024-08-10 06:35:08', '2024-08-10 06:35:08', 0, NULL, '2024-08-10 10:35:09', '2024-08-10 10:35:09'),
(6728, 1, '2024-08-10 06:40:10', '2024-08-10 06:40:10', 0, NULL, '2024-08-10 10:40:10', '2024-08-10 10:40:10'),
(6729, 2, '2024-08-10 06:40:11', '2024-08-10 06:40:11', 0, NULL, '2024-08-10 10:40:11', '2024-08-10 10:40:11'),
(6730, 3, '2024-08-10 06:40:11', '2024-08-10 06:40:11', 0, NULL, '2024-08-10 10:40:11', '2024-08-10 10:40:11'),
(6731, 5, '2024-08-10 06:40:12', '2024-08-10 06:40:12', 0, NULL, '2024-08-10 10:40:12', '2024-08-10 10:40:12'),
(6732, 1, '2024-08-10 06:50:07', '2024-08-10 06:50:07', 0, NULL, '2024-08-10 10:50:07', '2024-08-10 10:50:07'),
(6733, 2, '2024-08-10 06:50:08', '2024-08-10 06:50:08', 0, NULL, '2024-08-10 10:50:09', '2024-08-10 10:50:09'),
(6734, 3, '2024-08-10 06:50:09', '2024-08-10 06:50:09', 0, NULL, '2024-08-10 10:50:10', '2024-08-10 10:50:10'),
(6735, 5, '2024-08-10 06:50:10', '2024-08-10 06:50:10', 0, NULL, '2024-08-10 10:50:10', '2024-08-10 10:50:10'),
(6736, 1, '2024-08-10 07:00:07', '2024-08-10 07:00:07', 0, NULL, '2024-08-10 11:00:07', '2024-08-10 11:00:07'),
(6737, 2, '2024-08-10 07:00:08', '2024-08-10 07:00:08', 0, NULL, '2024-08-10 11:00:08', '2024-08-10 11:00:08'),
(6738, 3, '2024-08-10 07:00:08', '2024-08-10 07:00:08', 0, NULL, '2024-08-10 11:00:08', '2024-08-10 11:00:08'),
(6739, 5, '2024-08-10 07:00:09', '2024-08-10 07:00:09', 0, NULL, '2024-08-10 11:00:09', '2024-08-10 11:00:09'),
(6740, 1, '2024-08-10 07:10:08', '2024-08-10 07:10:08', 0, NULL, '2024-08-10 11:10:09', '2024-08-10 11:10:09'),
(6741, 2, '2024-08-10 07:10:10', '2024-08-10 07:10:10', 0, NULL, '2024-08-10 11:10:10', '2024-08-10 11:10:10'),
(6742, 3, '2024-08-10 07:10:10', '2024-08-10 07:10:10', 0, NULL, '2024-08-10 11:10:11', '2024-08-10 11:10:11'),
(6743, 5, '2024-08-10 07:10:11', '2024-08-10 07:10:11', 0, NULL, '2024-08-10 11:10:11', '2024-08-10 11:10:11'),
(6744, 1, '2024-08-10 07:15:10', '2024-08-10 07:15:11', 0, NULL, '2024-08-10 11:15:11', '2024-08-10 11:15:11'),
(6745, 2, '2024-08-10 07:20:05', '2024-08-10 07:20:05', 0, NULL, '2024-08-10 11:20:05', '2024-08-10 11:20:05'),
(6746, 3, '2024-08-10 07:20:06', '2024-08-10 07:20:06', 0, NULL, '2024-08-10 11:20:06', '2024-08-10 11:20:06'),
(6747, 5, '2024-08-10 07:20:07', '2024-08-10 07:20:07', 0, NULL, '2024-08-10 11:20:07', '2024-08-10 11:20:07'),
(6748, 1, '2024-08-10 07:25:08', '2024-08-10 07:25:08', 0, NULL, '2024-08-10 11:25:09', '2024-08-10 11:25:09'),
(6749, 2, '2024-08-10 07:25:09', '2024-08-10 07:25:09', 0, NULL, '2024-08-10 11:25:09', '2024-08-10 11:25:09'),
(6750, 3, '2024-08-10 07:25:09', '2024-08-10 07:25:09', 0, NULL, '2024-08-10 11:25:10', '2024-08-10 11:25:10'),
(6751, 5, '2024-08-10 07:25:10', '2024-08-10 07:25:10', 0, NULL, '2024-08-10 11:25:10', '2024-08-10 11:25:10'),
(6752, 1, '2024-08-10 07:30:09', '2024-08-10 07:30:09', 0, NULL, '2024-08-10 11:30:10', '2024-08-10 11:30:10'),
(6753, 2, '2024-08-10 07:35:05', '2024-08-10 07:35:05', 0, NULL, '2024-08-10 11:35:05', '2024-08-10 11:35:05'),
(6754, 3, '2024-08-10 07:35:06', '2024-08-10 07:35:06', 0, NULL, '2024-08-10 11:35:07', '2024-08-10 11:35:07'),
(6755, 5, '2024-08-10 07:35:07', '2024-08-10 07:35:07', 0, NULL, '2024-08-10 11:35:07', '2024-08-10 11:35:07'),
(6756, 1, '2024-08-10 07:40:06', '2024-08-10 07:40:06', 0, NULL, '2024-08-10 11:40:07', '2024-08-10 11:40:07'),
(6757, 2, '2024-08-10 07:40:07', '2024-08-10 07:40:07', 0, NULL, '2024-08-10 11:40:08', '2024-08-10 11:40:08'),
(6758, 3, '2024-08-10 07:45:05', '2024-08-10 07:45:05', 0, NULL, '2024-08-10 11:45:06', '2024-08-10 11:45:06'),
(6759, 5, '2024-08-10 07:45:07', '2024-08-10 07:45:07', 0, NULL, '2024-08-10 11:45:07', '2024-08-10 11:45:07'),
(6760, 1, '2024-08-10 07:50:11', '2024-08-10 07:50:11', 0, NULL, '2024-08-10 11:50:11', '2024-08-10 11:50:11'),
(6761, 2, '2024-08-10 07:50:11', '2024-08-10 07:50:11', 0, NULL, '2024-08-10 11:50:11', '2024-08-10 11:50:11'),
(6762, 3, '2024-08-10 07:50:11', '2024-08-10 07:50:11', 0, NULL, '2024-08-10 11:50:12', '2024-08-10 11:50:12'),
(6763, 5, '2024-08-10 07:50:12', '2024-08-10 07:50:12', 0, NULL, '2024-08-10 11:50:12', '2024-08-10 11:50:12'),
(6764, 1, '2024-08-10 08:00:07', '2024-08-10 08:00:08', 0, NULL, '2024-08-10 12:00:08', '2024-08-10 12:00:08'),
(6765, 2, '2024-08-10 08:00:08', '2024-08-10 08:00:08', 0, NULL, '2024-08-10 12:00:09', '2024-08-10 12:00:09'),
(6766, 3, '2024-08-10 08:00:09', '2024-08-10 08:00:09', 0, NULL, '2024-08-10 12:00:09', '2024-08-10 12:00:09'),
(6767, 5, '2024-08-10 08:00:09', '2024-08-10 08:00:09', 0, NULL, '2024-08-10 12:00:10', '2024-08-10 12:00:10'),
(6768, 1, '2024-08-10 08:10:04', '2024-08-10 08:10:04', 0, NULL, '2024-08-10 12:10:05', '2024-08-10 12:10:05'),
(6769, 2, '2024-08-10 08:10:06', '2024-08-10 08:10:06', 0, NULL, '2024-08-10 12:10:06', '2024-08-10 12:10:06'),
(6770, 3, '2024-08-10 08:10:06', '2024-08-10 08:10:06', 0, NULL, '2024-08-10 12:10:07', '2024-08-10 12:10:07'),
(6771, 5, '2024-08-10 08:10:07', '2024-08-10 08:10:07', 0, NULL, '2024-08-10 12:10:07', '2024-08-10 12:10:07'),
(6772, 1, '2024-08-10 08:20:06', '2024-08-10 08:20:06', 0, NULL, '2024-08-10 12:20:06', '2024-08-10 12:20:06'),
(6773, 2, '2024-08-10 08:20:07', '2024-08-10 08:20:07', 0, NULL, '2024-08-10 12:20:07', '2024-08-10 12:20:07'),
(6774, 3, '2024-08-10 08:20:07', '2024-08-10 08:20:07', 0, NULL, '2024-08-10 12:20:07', '2024-08-10 12:20:07'),
(6775, 5, '2024-08-10 08:20:08', '2024-08-10 08:20:08', 0, NULL, '2024-08-10 12:20:08', '2024-08-10 12:20:08'),
(6776, 1, '2024-08-10 08:30:02', '2024-08-10 08:30:02', 0, NULL, '2024-08-10 12:30:02', '2024-08-10 12:30:02'),
(6777, 2, '2024-08-10 08:30:03', '2024-08-10 08:30:03', 0, NULL, '2024-08-10 12:30:03', '2024-08-10 12:30:03'),
(6778, 3, '2024-08-10 08:30:03', '2024-08-10 08:30:03', 0, NULL, '2024-08-10 12:30:04', '2024-08-10 12:30:04'),
(6779, 5, '2024-08-10 08:30:04', '2024-08-10 08:30:04', 0, NULL, '2024-08-10 12:30:05', '2024-08-10 12:30:05'),
(6780, 1, '2024-08-10 08:35:05', '2024-08-10 08:35:05', 0, NULL, '2024-08-10 12:35:06', '2024-08-10 12:35:06'),
(6781, 2, '2024-08-10 08:35:06', '2024-08-10 08:35:06', 0, NULL, '2024-08-10 12:35:07', '2024-08-10 12:35:07'),
(6782, 3, '2024-08-10 08:35:07', '2024-08-10 08:35:07', 0, NULL, '2024-08-10 12:35:07', '2024-08-10 12:35:07'),
(6783, 5, '2024-08-10 08:35:08', '2024-08-10 08:35:08', 0, NULL, '2024-08-10 12:35:08', '2024-08-10 12:35:08'),
(6784, 1, '2024-08-10 08:40:09', '2024-08-10 08:40:09', 0, NULL, '2024-08-10 12:40:09', '2024-08-10 12:40:09'),
(6785, 2, '2024-08-10 08:40:09', '2024-08-10 08:40:09', 0, NULL, '2024-08-10 12:40:09', '2024-08-10 12:40:09'),
(6786, 3, '2024-08-10 08:40:10', '2024-08-10 08:40:10', 0, NULL, '2024-08-10 12:40:10', '2024-08-10 12:40:10'),
(6787, 5, '2024-08-10 08:45:07', '2024-08-10 08:45:08', 0, NULL, '2024-08-10 12:45:08', '2024-08-10 12:45:08'),
(6788, 1, '2024-08-10 08:50:12', '2024-08-10 08:50:12', 0, NULL, '2024-08-10 12:50:13', '2024-08-10 12:50:13'),
(6789, 2, '2024-08-10 08:50:13', '2024-08-10 08:50:13', 0, NULL, '2024-08-10 12:50:13', '2024-08-10 12:50:13'),
(6790, 3, '2024-08-10 08:50:13', '2024-08-10 08:50:13', 0, NULL, '2024-08-10 12:50:13', '2024-08-10 12:50:13'),
(6791, 5, '2024-08-10 08:50:13', '2024-08-10 08:50:13', 0, NULL, '2024-08-10 12:50:13', '2024-08-10 12:50:13'),
(6792, 1, '2024-08-10 09:00:07', '2024-08-10 09:00:07', 0, NULL, '2024-08-10 13:00:08', '2024-08-10 13:00:08'),
(6793, 2, '2024-08-10 09:00:08', '2024-08-10 09:00:08', 0, NULL, '2024-08-10 13:00:08', '2024-08-10 13:00:08'),
(6794, 3, '2024-08-10 09:00:08', '2024-08-10 09:00:08', 0, NULL, '2024-08-10 13:00:09', '2024-08-10 13:00:09'),
(6795, 5, '2024-08-10 09:00:09', '2024-08-10 09:00:09', 0, NULL, '2024-08-10 13:00:10', '2024-08-10 13:00:10'),
(6796, 1, '2024-08-10 09:10:06', '2024-08-10 09:10:06', 0, NULL, '2024-08-10 13:10:06', '2024-08-10 13:10:06'),
(6797, 2, '2024-08-10 09:10:07', '2024-08-10 09:10:07', 0, NULL, '2024-08-10 13:10:07', '2024-08-10 13:10:07'),
(6798, 3, '2024-08-10 09:10:08', '2024-08-10 09:10:08', 0, NULL, '2024-08-10 13:10:08', '2024-08-10 13:10:08'),
(6799, 5, '2024-08-10 09:10:08', '2024-08-10 09:10:08', 0, NULL, '2024-08-10 13:10:08', '2024-08-10 13:10:08'),
(6800, 1, '2024-08-10 09:15:08', '2024-08-10 09:15:08', 0, NULL, '2024-08-10 13:15:08', '2024-08-10 13:15:08'),
(6801, 2, '2024-08-10 09:15:09', '2024-08-10 09:15:09', 0, NULL, '2024-08-10 13:15:10', '2024-08-10 13:15:10'),
(6802, 3, '2024-08-10 09:20:08', '2024-08-10 09:20:08', 0, NULL, '2024-08-10 13:20:09', '2024-08-10 13:20:09'),
(6803, 5, '2024-08-10 09:20:09', '2024-08-10 09:20:09', 0, NULL, '2024-08-10 13:20:10', '2024-08-10 13:20:10'),
(6804, 1, '2024-08-10 09:25:07', '2024-08-10 09:25:07', 0, NULL, '2024-08-10 13:25:07', '2024-08-10 13:25:07'),
(6805, 2, '2024-08-10 09:25:08', '2024-08-10 09:25:08', 0, NULL, '2024-08-10 13:25:08', '2024-08-10 13:25:08');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(6806, 3, '2024-08-10 09:30:07', '2024-08-10 09:30:07', 0, NULL, '2024-08-10 13:30:07', '2024-08-10 13:30:07'),
(6807, 5, '2024-08-10 09:30:07', '2024-08-10 09:30:07', 0, NULL, '2024-08-10 13:30:08', '2024-08-10 13:30:08'),
(6808, 1, '2024-08-10 09:35:06', '2024-08-10 09:35:06', 0, NULL, '2024-08-10 13:35:06', '2024-08-10 13:35:06'),
(6809, 2, '2024-08-10 09:35:07', '2024-08-10 09:35:07', 0, NULL, '2024-08-10 13:35:07', '2024-08-10 13:35:07'),
(6810, 3, '2024-08-10 09:40:05', '2024-08-10 09:40:05', 0, NULL, '2024-08-10 13:40:06', '2024-08-10 13:40:06'),
(6811, 5, '2024-08-10 09:40:06', '2024-08-10 09:40:06', 0, NULL, '2024-08-10 13:40:06', '2024-08-10 13:40:06'),
(6812, 1, '2024-08-10 09:45:08', '2024-08-10 09:45:08', 0, NULL, '2024-08-10 13:45:08', '2024-08-10 13:45:08'),
(6813, 2, '2024-08-10 09:45:09', '2024-08-10 09:45:09', 0, NULL, '2024-08-10 13:45:09', '2024-08-10 13:45:09'),
(6814, 3, '2024-08-10 09:45:09', '2024-08-10 09:45:09', 0, NULL, '2024-08-10 13:45:09', '2024-08-10 13:45:09'),
(6815, 5, '2024-08-10 09:45:10', '2024-08-10 09:45:10', 0, NULL, '2024-08-10 13:45:10', '2024-08-10 13:45:10'),
(6816, 1, '2024-08-10 09:55:06', '2024-08-10 09:55:06', 0, NULL, '2024-08-10 13:55:07', '2024-08-10 13:55:07'),
(6817, 2, '2024-08-10 09:55:07', '2024-08-10 09:55:07', 0, NULL, '2024-08-10 13:55:07', '2024-08-10 13:55:07'),
(6818, 3, '2024-08-10 09:55:08', '2024-08-10 09:55:08', 0, NULL, '2024-08-10 13:55:08', '2024-08-10 13:55:08'),
(6819, 5, '2024-08-10 09:55:09', '2024-08-10 09:55:09', 0, NULL, '2024-08-10 13:55:09', '2024-08-10 13:55:09'),
(6820, 1, '2024-08-10 10:00:08', '2024-08-10 10:00:08', 0, NULL, '2024-08-10 14:00:08', '2024-08-10 14:00:08'),
(6821, 2, '2024-08-10 10:00:09', '2024-08-10 10:00:09', 0, NULL, '2024-08-10 14:00:09', '2024-08-10 14:00:09'),
(6822, 1, '2024-08-10 10:05:10', '2024-08-10 10:05:10', 0, NULL, '2024-08-10 14:05:10', '2024-08-10 14:05:10'),
(6823, 3, '2024-08-10 10:05:10', '2024-08-10 10:05:10', 0, NULL, '2024-08-10 14:05:10', '2024-08-10 14:05:10'),
(6824, 5, '2024-08-10 10:05:11', '2024-08-10 10:05:11', 0, NULL, '2024-08-10 14:05:11', '2024-08-10 14:05:11'),
(6825, 2, '2024-08-10 10:10:08', '2024-08-10 10:10:08', 0, NULL, '2024-08-10 14:10:08', '2024-08-10 14:10:08'),
(6826, 1, '2024-08-10 10:15:11', '2024-08-10 10:15:11', 0, NULL, '2024-08-10 14:15:11', '2024-08-10 14:15:11'),
(6827, 2, '2024-08-10 10:15:11', '2024-08-10 10:15:11', 0, NULL, '2024-08-10 14:15:11', '2024-08-10 14:15:11'),
(6828, 3, '2024-08-10 10:15:11', '2024-08-10 10:15:11', 0, NULL, '2024-08-10 14:15:12', '2024-08-10 14:15:12'),
(6829, 5, '2024-08-10 10:15:12', '2024-08-10 10:15:12', 0, NULL, '2024-08-10 14:15:12', '2024-08-10 14:15:12'),
(6830, 1, '2024-08-10 10:25:07', '2024-08-10 10:25:08', 0, NULL, '2024-08-10 14:25:08', '2024-08-10 14:25:08'),
(6831, 2, '2024-08-10 10:25:09', '2024-08-10 10:25:09', 0, NULL, '2024-08-10 14:25:09', '2024-08-10 14:25:09'),
(6832, 3, '2024-08-10 10:25:10', '2024-08-10 10:25:10', 0, NULL, '2024-08-10 14:25:10', '2024-08-10 14:25:10'),
(6833, 5, '2024-08-10 10:25:10', '2024-08-10 10:25:10', 0, NULL, '2024-08-10 14:25:10', '2024-08-10 14:25:10'),
(6834, 1, '2024-08-10 10:35:08', '2024-08-10 10:35:08', 0, NULL, '2024-08-10 14:35:08', '2024-08-10 14:35:08'),
(6835, 2, '2024-08-10 10:35:09', '2024-08-10 10:35:09', 0, NULL, '2024-08-10 14:35:09', '2024-08-10 14:35:09'),
(6836, 3, '2024-08-10 10:35:10', '2024-08-10 10:35:10', 0, NULL, '2024-08-10 14:35:10', '2024-08-10 14:35:10'),
(6837, 5, '2024-08-10 10:35:10', '2024-08-10 10:35:10', 0, NULL, '2024-08-10 14:35:10', '2024-08-10 14:35:10'),
(6838, 1, '2024-08-10 10:45:05', '2024-08-10 10:45:05', 0, NULL, '2024-08-10 14:45:06', '2024-08-10 14:45:06'),
(6839, 2, '2024-08-10 10:45:06', '2024-08-10 10:45:06', 0, NULL, '2024-08-10 14:45:06', '2024-08-10 14:45:06'),
(6840, 3, '2024-08-10 10:45:06', '2024-08-10 10:45:06', 0, NULL, '2024-08-10 14:45:07', '2024-08-10 14:45:07'),
(6841, 5, '2024-08-10 10:45:07', '2024-08-10 10:45:07', 0, NULL, '2024-08-10 14:45:08', '2024-08-10 14:45:08'),
(6842, 1, '2024-08-10 10:55:13', '2024-08-10 10:55:13', 0, NULL, '2024-08-10 14:55:14', '2024-08-10 14:55:14'),
(6843, 2, '2024-08-10 10:55:14', '2024-08-10 10:55:14', 0, NULL, '2024-08-10 14:55:14', '2024-08-10 14:55:14'),
(6844, 3, '2024-08-10 10:55:14', '2024-08-10 10:55:14', 0, NULL, '2024-08-10 14:55:15', '2024-08-10 14:55:15'),
(6845, 5, '2024-08-10 10:55:15', '2024-08-10 10:55:15', 0, NULL, '2024-08-10 14:55:15', '2024-08-10 14:55:15'),
(6846, 1, '2024-08-10 11:05:09', '2024-08-10 11:05:09', 0, NULL, '2024-08-10 15:05:09', '2024-08-10 15:05:09'),
(6847, 2, '2024-08-10 11:05:09', '2024-08-10 11:05:09', 0, NULL, '2024-08-10 15:05:10', '2024-08-10 15:05:10'),
(6848, 3, '2024-08-10 11:05:10', '2024-08-10 11:05:10', 0, NULL, '2024-08-10 15:05:10', '2024-08-10 15:05:10'),
(6849, 5, '2024-08-10 11:05:11', '2024-08-10 11:05:11', 0, NULL, '2024-08-10 15:05:11', '2024-08-10 15:05:11'),
(6850, 1, '2024-08-10 11:15:10', '2024-08-10 11:15:10', 0, NULL, '2024-08-10 15:15:11', '2024-08-10 15:15:11'),
(6851, 2, '2024-08-10 11:15:11', '2024-08-10 11:15:11', 0, NULL, '2024-08-10 15:15:11', '2024-08-10 15:15:11'),
(6852, 3, '2024-08-10 11:15:11', '2024-08-10 11:15:11', 0, NULL, '2024-08-10 15:15:12', '2024-08-10 15:15:12'),
(6853, 5, '2024-08-10 11:15:12', '2024-08-10 11:15:12', 0, NULL, '2024-08-10 15:15:12', '2024-08-10 15:15:12'),
(6854, 1, '2024-08-10 11:25:06', '2024-08-10 11:25:06', 0, NULL, '2024-08-10 15:25:06', '2024-08-10 15:25:06'),
(6855, 2, '2024-08-10 11:25:07', '2024-08-10 11:25:07', 0, NULL, '2024-08-10 15:25:07', '2024-08-10 15:25:07'),
(6856, 3, '2024-08-10 11:25:07', '2024-08-10 11:25:07', 0, NULL, '2024-08-10 15:25:07', '2024-08-10 15:25:07'),
(6857, 5, '2024-08-10 11:25:08', '2024-08-10 11:25:08', 0, NULL, '2024-08-10 15:25:08', '2024-08-10 15:25:08'),
(6858, 1, '2024-08-10 11:30:07', '2024-08-10 11:30:07', 0, NULL, '2024-08-10 15:30:08', '2024-08-10 15:30:08'),
(6859, 2, '2024-08-10 11:35:07', '2024-08-10 11:35:07', 0, NULL, '2024-08-10 15:35:07', '2024-08-10 15:35:07'),
(6860, 3, '2024-08-10 11:35:08', '2024-08-10 11:35:08', 0, NULL, '2024-08-10 15:35:08', '2024-08-10 15:35:08'),
(6861, 5, '2024-08-10 11:35:09', '2024-08-10 11:35:09', 0, NULL, '2024-08-10 15:35:09', '2024-08-10 15:35:09'),
(6862, 1, '2024-08-10 11:40:05', '2024-08-10 11:40:06', 0, NULL, '2024-08-10 15:40:07', '2024-08-10 15:40:07'),
(6863, 1, '2024-08-10 11:45:08', '2024-08-10 11:45:08', 0, NULL, '2024-08-10 15:45:09', '2024-08-10 15:45:09'),
(6864, 2, '2024-08-10 11:45:09', '2024-08-10 11:45:09', 0, NULL, '2024-08-10 15:45:10', '2024-08-10 15:45:10'),
(6865, 3, '2024-08-10 11:45:10', '2024-08-10 11:45:10', 0, NULL, '2024-08-10 15:45:10', '2024-08-10 15:45:10'),
(6866, 5, '2024-08-10 11:45:10', '2024-08-10 11:45:10', 0, NULL, '2024-08-10 15:45:10', '2024-08-10 15:45:10'),
(6867, 1, '2024-08-10 11:55:09', '2024-08-10 11:55:09', 0, NULL, '2024-08-10 15:55:10', '2024-08-10 15:55:10'),
(6868, 2, '2024-08-10 11:55:10', '2024-08-10 11:55:10', 0, NULL, '2024-08-10 15:55:10', '2024-08-10 15:55:10'),
(6869, 3, '2024-08-10 11:55:10', '2024-08-10 11:55:10', 0, NULL, '2024-08-10 15:55:10', '2024-08-10 15:55:10'),
(6870, 5, '2024-08-10 11:55:10', '2024-08-10 11:55:10', 0, NULL, '2024-08-10 15:55:11', '2024-08-10 15:55:11'),
(6871, 1, '2024-08-10 12:05:06', '2024-08-10 12:05:06', 0, NULL, '2024-08-10 16:05:06', '2024-08-10 16:05:06'),
(6872, 2, '2024-08-10 12:05:06', '2024-08-10 12:05:06', 0, NULL, '2024-08-10 16:05:07', '2024-08-10 16:05:07'),
(6873, 3, '2024-08-10 12:05:07', '2024-08-10 12:05:07', 0, NULL, '2024-08-10 16:05:07', '2024-08-10 16:05:07'),
(6874, 5, '2024-08-10 12:05:08', '2024-08-10 12:05:08', 0, NULL, '2024-08-10 16:05:08', '2024-08-10 16:05:08'),
(6875, 1, '2024-08-10 12:10:07', '2024-08-10 12:10:07', 0, NULL, '2024-08-10 16:10:07', '2024-08-10 16:10:07'),
(6876, 2, '2024-08-10 12:10:08', '2024-08-10 12:10:08', 0, NULL, '2024-08-10 16:10:09', '2024-08-10 16:10:09'),
(6877, 3, '2024-08-10 12:15:07', '2024-08-10 12:15:07', 0, NULL, '2024-08-10 16:15:07', '2024-08-10 16:15:07'),
(6878, 5, '2024-08-10 12:15:07', '2024-08-10 12:15:08', 0, NULL, '2024-08-10 16:15:08', '2024-08-10 16:15:08'),
(6879, 1, '2024-08-10 12:20:05', '2024-08-10 12:20:06', 0, NULL, '2024-08-10 16:20:06', '2024-08-10 16:20:06'),
(6880, 2, '2024-08-10 12:20:06', '2024-08-10 12:20:06', 0, NULL, '2024-08-10 16:20:07', '2024-08-10 16:20:07'),
(6881, 1, '2024-08-10 12:25:08', '2024-08-10 12:25:08', 0, NULL, '2024-08-10 16:25:08', '2024-08-10 16:25:08'),
(6882, 2, '2024-08-10 12:25:08', '2024-08-10 12:25:08', 0, NULL, '2024-08-10 16:25:09', '2024-08-10 16:25:09'),
(6883, 3, '2024-08-10 12:25:09', '2024-08-10 12:25:09', 0, NULL, '2024-08-10 16:25:09', '2024-08-10 16:25:09'),
(6884, 5, '2024-08-10 12:25:10', '2024-08-10 12:25:10', 0, NULL, '2024-08-10 16:25:10', '2024-08-10 16:25:10'),
(6885, 1, '2024-08-10 12:30:11', '2024-08-10 12:30:11', 0, NULL, '2024-08-10 16:30:12', '2024-08-10 16:30:12'),
(6886, 2, '2024-08-10 12:30:12', '2024-08-10 12:30:12', 0, NULL, '2024-08-10 16:30:12', '2024-08-10 16:30:12'),
(6887, 3, '2024-08-10 12:30:12', '2024-08-10 12:30:12', 0, NULL, '2024-08-10 16:30:12', '2024-08-10 16:30:12'),
(6888, 5, '2024-08-10 12:30:12', '2024-08-10 12:30:12', 0, NULL, '2024-08-10 16:30:13', '2024-08-10 16:30:13'),
(6889, 1, '2024-08-10 12:40:05', '2024-08-10 12:40:05', 0, NULL, '2024-08-10 16:40:06', '2024-08-10 16:40:06'),
(6890, 2, '2024-08-10 12:40:06', '2024-08-10 12:40:06', 0, NULL, '2024-08-10 16:40:07', '2024-08-10 16:40:07'),
(6891, 3, '2024-08-10 12:40:07', '2024-08-10 12:40:07', 0, NULL, '2024-08-10 16:40:09', '2024-08-10 16:40:09'),
(6892, 5, '2024-08-10 12:40:09', '2024-08-10 12:40:09', 0, NULL, '2024-08-10 16:40:09', '2024-08-10 16:40:09'),
(6893, 1, '2024-08-10 12:50:04', '2024-08-10 12:50:04', 0, NULL, '2024-08-10 16:50:05', '2024-08-10 16:50:05'),
(6894, 2, '2024-08-10 12:50:06', '2024-08-10 12:50:06', 0, NULL, '2024-08-10 16:50:06', '2024-08-10 16:50:06'),
(6895, 3, '2024-08-10 12:50:07', '2024-08-10 12:50:07', 0, NULL, '2024-08-10 16:50:08', '2024-08-10 16:50:08'),
(6896, 5, '2024-08-10 12:50:08', '2024-08-10 12:50:08', 0, NULL, '2024-08-10 16:50:08', '2024-08-10 16:50:08'),
(6897, 1, '2024-08-10 12:55:06', '2024-08-10 12:55:07', 0, NULL, '2024-08-10 16:55:07', '2024-08-10 16:55:07'),
(6898, 2, '2024-08-10 13:00:04', '2024-08-10 13:00:04', 0, NULL, '2024-08-10 17:00:05', '2024-08-10 17:00:05'),
(6899, 3, '2024-08-10 13:00:06', '2024-08-10 13:00:06', 0, NULL, '2024-08-10 17:00:07', '2024-08-10 17:00:07'),
(6900, 5, '2024-08-10 13:00:08', '2024-08-10 13:00:08', 0, NULL, '2024-08-10 17:00:09', '2024-08-10 17:00:09'),
(6901, 1, '2024-08-10 13:05:07', '2024-08-10 13:05:07', 0, NULL, '2024-08-10 17:05:08', '2024-08-10 17:05:08'),
(6902, 2, '2024-08-10 13:05:08', '2024-08-10 13:05:08', 0, NULL, '2024-08-10 17:05:09', '2024-08-10 17:05:09'),
(6903, 3, '2024-08-10 13:05:09', '2024-08-10 13:05:09', 0, NULL, '2024-08-10 17:05:09', '2024-08-10 17:05:09'),
(6904, 5, '2024-08-10 13:10:07', '2024-08-10 13:10:07', 0, NULL, '2024-08-10 17:10:09', '2024-08-10 17:10:09'),
(6905, 1, '2024-08-10 13:15:04', '2024-08-10 13:15:04', 0, NULL, '2024-08-10 17:15:06', '2024-08-10 17:15:06'),
(6906, 2, '2024-08-10 13:15:06', '2024-08-10 13:15:06', 0, NULL, '2024-08-10 17:15:07', '2024-08-10 17:15:07'),
(6907, 3, '2024-08-10 13:15:07', '2024-08-10 13:15:07', 0, NULL, '2024-08-10 17:15:08', '2024-08-10 17:15:08'),
(6908, 1, '2024-08-10 13:20:06', '2024-08-10 13:20:07', 0, NULL, '2024-08-10 17:20:07', '2024-08-10 17:20:07'),
(6909, 5, '2024-08-10 13:20:07', '2024-08-10 13:20:07', 0, NULL, '2024-08-10 17:20:08', '2024-08-10 17:20:08'),
(6910, 2, '2024-08-10 13:25:07', '2024-08-10 13:25:07', 0, NULL, '2024-08-10 17:25:08', '2024-08-10 17:25:08'),
(6911, 3, '2024-08-10 13:25:08', '2024-08-10 13:25:08', 0, NULL, '2024-08-10 17:25:09', '2024-08-10 17:25:09'),
(6912, 1, '2024-08-10 13:30:08', '2024-08-10 13:30:08', 0, NULL, '2024-08-10 17:30:08', '2024-08-10 17:30:08'),
(6913, 5, '2024-08-10 13:30:08', '2024-08-10 13:30:08', 0, NULL, '2024-08-10 17:30:09', '2024-08-10 17:30:09'),
(6914, 2, '2024-08-10 13:35:08', '2024-08-10 13:35:08', 0, NULL, '2024-08-10 17:35:08', '2024-08-10 17:35:08'),
(6915, 3, '2024-08-10 13:35:08', '2024-08-10 13:35:08', 0, NULL, '2024-08-10 17:35:08', '2024-08-10 17:35:08'),
(6916, 1, '2024-08-10 13:40:04', '2024-08-10 13:40:04', 0, NULL, '2024-08-10 17:40:04', '2024-08-10 17:40:04'),
(6917, 5, '2024-08-10 13:40:05', '2024-08-10 13:40:05', 0, NULL, '2024-08-10 17:40:05', '2024-08-10 17:40:05'),
(6918, 1, '2024-08-10 13:45:07', '2024-08-10 13:45:07', 0, NULL, '2024-08-10 17:45:08', '2024-08-10 17:45:08'),
(6919, 2, '2024-08-10 13:45:08', '2024-08-10 13:45:08', 0, NULL, '2024-08-10 17:45:09', '2024-08-10 17:45:09'),
(6920, 3, '2024-08-10 13:45:09', '2024-08-10 13:45:09', 0, NULL, '2024-08-10 17:45:09', '2024-08-10 17:45:09'),
(6921, 5, '2024-08-10 13:45:10', '2024-08-10 13:45:10', 0, NULL, '2024-08-10 17:45:10', '2024-08-10 17:45:10'),
(6922, 1, '2024-08-10 13:50:08', '2024-08-10 13:50:08', 0, NULL, '2024-08-10 17:50:08', '2024-08-10 17:50:08'),
(6923, 2, '2024-08-10 13:55:04', '2024-08-10 13:55:04', 0, NULL, '2024-08-10 17:55:05', '2024-08-10 17:55:05'),
(6924, 3, '2024-08-10 13:55:05', '2024-08-10 13:55:05', 0, NULL, '2024-08-10 17:55:06', '2024-08-10 17:55:06'),
(6925, 5, '2024-08-10 13:55:06', '2024-08-10 13:55:07', 0, NULL, '2024-08-10 17:55:07', '2024-08-10 17:55:07'),
(6926, 1, '2024-08-10 14:00:04', '2024-08-10 14:00:04', 0, NULL, '2024-08-10 18:00:05', '2024-08-10 18:00:05'),
(6927, 1, '2024-08-10 14:05:07', '2024-08-10 14:05:07', 0, NULL, '2024-08-10 18:05:07', '2024-08-10 18:05:07'),
(6928, 2, '2024-08-10 14:05:08', '2024-08-10 14:05:08', 0, NULL, '2024-08-10 18:05:08', '2024-08-10 18:05:08'),
(6929, 3, '2024-08-10 14:05:09', '2024-08-10 14:05:09', 0, NULL, '2024-08-10 18:05:09', '2024-08-10 18:05:09'),
(6930, 5, '2024-08-10 14:05:09', '2024-08-10 14:05:09', 0, NULL, '2024-08-10 18:05:09', '2024-08-10 18:05:09'),
(6931, 1, '2024-08-10 14:15:07', '2024-08-10 14:15:08', 0, NULL, '2024-08-10 18:15:11', '2024-08-10 18:15:11'),
(6932, 2, '2024-08-10 14:15:11', '2024-08-10 14:15:11', 0, NULL, '2024-08-10 18:15:11', '2024-08-10 18:15:11'),
(6933, 3, '2024-08-10 14:15:11', '2024-08-10 14:15:11', 0, NULL, '2024-08-10 18:15:11', '2024-08-10 18:15:11'),
(6934, 5, '2024-08-10 14:15:11', '2024-08-10 14:15:11', 0, NULL, '2024-08-10 18:15:12', '2024-08-10 18:15:12'),
(6935, 1, '2024-08-10 14:25:06', '2024-08-10 14:25:06', 0, NULL, '2024-08-10 18:25:06', '2024-08-10 18:25:06'),
(6936, 2, '2024-08-10 14:25:07', '2024-08-10 14:25:07', 0, NULL, '2024-08-10 18:25:07', '2024-08-10 18:25:07'),
(6937, 3, '2024-08-10 14:25:07', '2024-08-10 14:25:07', 0, NULL, '2024-08-10 18:25:08', '2024-08-10 18:25:08'),
(6938, 5, '2024-08-10 14:25:08', '2024-08-10 14:25:08', 0, NULL, '2024-08-10 18:25:09', '2024-08-10 18:25:09'),
(6939, 1, '2024-08-10 14:35:03', '2024-08-10 14:35:03', 0, NULL, '2024-08-10 18:35:04', '2024-08-10 18:35:04'),
(6940, 2, '2024-08-10 14:35:04', '2024-08-10 14:35:04', 0, NULL, '2024-08-10 18:35:04', '2024-08-10 18:35:04'),
(6941, 3, '2024-08-10 14:35:05', '2024-08-10 14:35:05', 0, NULL, '2024-08-10 18:35:05', '2024-08-10 18:35:05'),
(6942, 5, '2024-08-10 14:35:06', '2024-08-10 14:35:06', 0, NULL, '2024-08-10 18:35:07', '2024-08-10 18:35:07'),
(6943, 1, '2024-08-10 14:40:05', '2024-08-10 14:40:05', 0, NULL, '2024-08-10 18:40:06', '2024-08-10 18:40:06'),
(6944, 2, '2024-08-10 14:40:07', '2024-08-10 14:40:07', 0, NULL, '2024-08-10 18:40:07', '2024-08-10 18:40:07'),
(6945, 1, '2024-08-10 14:45:08', '2024-08-10 14:45:08', 0, NULL, '2024-08-10 18:45:09', '2024-08-10 18:45:09'),
(6946, 3, '2024-08-10 14:45:09', '2024-08-10 14:45:09', 0, NULL, '2024-08-10 18:45:09', '2024-08-10 18:45:09'),
(6947, 5, '2024-08-10 14:45:09', '2024-08-10 14:45:09', 0, NULL, '2024-08-10 18:45:10', '2024-08-10 18:45:10'),
(6948, 2, '2024-08-10 14:50:05', '2024-08-10 14:50:05', 0, NULL, '2024-08-10 18:50:11', '2024-08-10 18:50:11'),
(6949, 1, '2024-08-10 14:55:08', '2024-08-10 14:55:08', 0, NULL, '2024-08-10 18:55:09', '2024-08-10 18:55:09'),
(6950, 2, '2024-08-10 14:55:09', '2024-08-10 14:55:09', 0, NULL, '2024-08-10 18:55:09', '2024-08-10 18:55:09'),
(6951, 3, '2024-08-10 14:55:09', '2024-08-10 14:55:09', 0, NULL, '2024-08-10 18:55:10', '2024-08-10 18:55:10'),
(6952, 5, '2024-08-10 14:55:10', '2024-08-10 14:55:10', 0, NULL, '2024-08-10 18:55:10', '2024-08-10 18:55:10'),
(6953, 1, '2024-08-10 15:00:11', '2024-08-10 15:00:11', 0, NULL, '2024-08-10 19:00:11', '2024-08-10 19:00:11'),
(6954, 2, '2024-08-10 15:00:12', '2024-08-10 15:00:12', 0, NULL, '2024-08-10 19:00:12', '2024-08-10 19:00:12'),
(6955, 3, '2024-08-10 15:00:12', '2024-08-10 15:00:12', 0, NULL, '2024-08-10 19:00:13', '2024-08-10 19:00:13'),
(6956, 5, '2024-08-10 15:00:13', '2024-08-10 15:00:13', 0, NULL, '2024-08-10 19:00:13', '2024-08-10 19:00:13'),
(6957, 1, '2024-08-10 15:10:05', '2024-08-10 15:10:05', 0, NULL, '2024-08-10 19:10:06', '2024-08-10 19:10:06'),
(6958, 2, '2024-08-10 15:10:06', '2024-08-10 15:10:06', 0, NULL, '2024-08-10 19:10:07', '2024-08-10 19:10:07'),
(6959, 3, '2024-08-10 15:10:07', '2024-08-10 15:10:07', 0, NULL, '2024-08-10 19:10:07', '2024-08-10 19:10:07'),
(6960, 5, '2024-08-10 15:10:08', '2024-08-10 15:10:08', 0, NULL, '2024-08-10 19:10:08', '2024-08-10 19:10:08'),
(6961, 1, '2024-08-10 15:15:07', '2024-08-10 15:15:07', 0, NULL, '2024-08-10 19:15:08', '2024-08-10 19:15:08'),
(6962, 2, '2024-08-10 15:15:08', '2024-08-10 15:15:08', 0, NULL, '2024-08-10 19:15:08', '2024-08-10 19:15:08'),
(6963, 3, '2024-08-10 15:20:06', '2024-08-10 15:20:06', 0, NULL, '2024-08-10 19:20:06', '2024-08-10 19:20:06'),
(6964, 5, '2024-08-10 15:20:07', '2024-08-10 15:20:07', 0, NULL, '2024-08-10 19:20:08', '2024-08-10 19:20:08'),
(6965, 1, '2024-08-10 15:25:03', '2024-08-10 15:25:03', 0, NULL, '2024-08-10 19:25:03', '2024-08-10 19:25:03'),
(6966, 2, '2024-08-10 15:25:04', '2024-08-10 15:25:04', 0, NULL, '2024-08-10 19:25:04', '2024-08-10 19:25:04'),
(6967, 1, '2024-08-10 15:30:07', '2024-08-10 15:30:08', 0, NULL, '2024-08-10 19:30:08', '2024-08-10 19:30:08'),
(6968, 2, '2024-08-10 15:30:08', '2024-08-10 15:30:08', 0, NULL, '2024-08-10 19:30:09', '2024-08-10 19:30:09'),
(6969, 3, '2024-08-10 15:30:09', '2024-08-10 15:30:09', 0, NULL, '2024-08-10 19:30:09', '2024-08-10 19:30:09'),
(6970, 5, '2024-08-10 15:30:10', '2024-08-10 15:30:10', 0, NULL, '2024-08-10 19:30:10', '2024-08-10 19:30:10'),
(6971, 1, '2024-08-10 15:40:04', '2024-08-10 15:40:04', 0, NULL, '2024-08-10 19:40:04', '2024-08-10 19:40:04'),
(6972, 2, '2024-08-10 15:40:05', '2024-08-10 15:40:05', 0, NULL, '2024-08-10 19:40:06', '2024-08-10 19:40:06'),
(6973, 3, '2024-08-10 15:40:06', '2024-08-10 15:40:06', 0, NULL, '2024-08-10 19:40:07', '2024-08-10 19:40:07'),
(6974, 5, '2024-08-10 15:40:07', '2024-08-10 15:40:07', 0, NULL, '2024-08-10 19:40:07', '2024-08-10 19:40:07'),
(6975, 1, '2024-08-10 15:45:05', '2024-08-10 15:45:05', 0, NULL, '2024-08-10 19:45:05', '2024-08-10 19:45:05'),
(6976, 1, '2024-08-10 15:50:07', '2024-08-10 15:50:07', 0, NULL, '2024-08-10 19:50:07', '2024-08-10 19:50:07'),
(6977, 2, '2024-08-10 15:50:08', '2024-08-10 15:50:08', 0, NULL, '2024-08-10 19:50:08', '2024-08-10 19:50:08'),
(6978, 3, '2024-08-10 15:50:08', '2024-08-10 15:50:08', 0, NULL, '2024-08-10 19:50:08', '2024-08-10 19:50:08'),
(6979, 5, '2024-08-10 15:50:09', '2024-08-10 15:50:09', 0, NULL, '2024-08-10 19:50:09', '2024-08-10 19:50:09'),
(6980, 1, '2024-08-10 15:55:12', '2024-08-10 15:55:12', 0, NULL, '2024-08-10 19:55:12', '2024-08-10 19:55:12'),
(6981, 2, '2024-08-10 15:55:13', '2024-08-10 15:55:13', 0, NULL, '2024-08-10 19:55:13', '2024-08-10 19:55:13'),
(6982, 3, '2024-08-10 15:55:13', '2024-08-10 15:55:13', 0, NULL, '2024-08-10 19:55:13', '2024-08-10 19:55:13'),
(6983, 5, '2024-08-10 15:55:13', '2024-08-10 15:55:13', 0, NULL, '2024-08-10 19:55:14', '2024-08-10 19:55:14'),
(6984, 1, '2024-08-10 16:05:10', '2024-08-10 16:05:10', 0, NULL, '2024-08-10 20:05:11', '2024-08-10 20:05:11'),
(6985, 2, '2024-08-10 16:05:11', '2024-08-10 16:05:11', 0, NULL, '2024-08-10 20:05:11', '2024-08-10 20:05:11'),
(6986, 3, '2024-08-10 16:05:11', '2024-08-10 16:05:11', 0, NULL, '2024-08-10 20:05:11', '2024-08-10 20:05:11'),
(6987, 5, '2024-08-10 16:05:12', '2024-08-10 16:05:12', 0, NULL, '2024-08-10 20:05:12', '2024-08-10 20:05:12'),
(6988, 1, '2024-08-10 16:15:04', '2024-08-10 16:15:04', 0, NULL, '2024-08-10 20:15:05', '2024-08-10 20:15:05'),
(6989, 2, '2024-08-10 16:15:05', '2024-08-10 16:15:05', 0, NULL, '2024-08-10 20:15:06', '2024-08-10 20:15:06'),
(6990, 3, '2024-08-10 16:15:06', '2024-08-10 16:15:06', 0, NULL, '2024-08-10 20:15:06', '2024-08-10 20:15:06'),
(6991, 5, '2024-08-10 16:15:07', '2024-08-10 16:15:07', 0, NULL, '2024-08-10 20:15:07', '2024-08-10 20:15:07'),
(6992, 1, '2024-08-10 16:20:06', '2024-08-10 16:20:06', 0, NULL, '2024-08-10 20:20:07', '2024-08-10 20:20:07'),
(6993, 2, '2024-08-10 16:20:08', '2024-08-10 16:20:08', 0, NULL, '2024-08-10 20:20:08', '2024-08-10 20:20:08'),
(6994, 1, '2024-08-10 16:25:08', '2024-08-10 16:25:08', 0, NULL, '2024-08-10 20:25:08', '2024-08-10 20:25:08'),
(6995, 3, '2024-08-10 16:25:08', '2024-08-10 16:25:08', 0, NULL, '2024-08-10 20:25:09', '2024-08-10 20:25:09'),
(6996, 5, '2024-08-10 16:25:13', '2024-08-10 16:25:13', 0, NULL, '2024-08-10 20:25:13', '2024-08-10 20:25:13'),
(6997, 1, '2024-08-10 16:30:11', '2024-08-10 16:30:11', 0, NULL, '2024-08-10 20:30:12', '2024-08-10 20:30:12'),
(6998, 2, '2024-08-10 16:30:12', '2024-08-10 16:30:12', 0, NULL, '2024-08-10 20:30:13', '2024-08-10 20:30:13'),
(6999, 3, '2024-08-10 16:30:13', '2024-08-10 16:30:13', 0, NULL, '2024-08-10 20:30:13', '2024-08-10 20:30:13'),
(7000, 5, '2024-08-10 16:35:03', '2024-08-10 16:35:03', 0, NULL, '2024-08-10 20:35:04', '2024-08-10 20:35:04'),
(7001, 1, '2024-08-10 16:40:09', '2024-08-10 16:40:09', 0, NULL, '2024-08-10 20:40:09', '2024-08-10 20:40:09'),
(7002, 2, '2024-08-10 16:40:09', '2024-08-10 16:40:09', 0, NULL, '2024-08-10 20:40:10', '2024-08-10 20:40:10'),
(7003, 3, '2024-08-10 16:40:10', '2024-08-10 16:40:10', 0, NULL, '2024-08-10 20:40:10', '2024-08-10 20:40:10'),
(7004, 5, '2024-08-10 16:40:10', '2024-08-10 16:40:10', 0, NULL, '2024-08-10 20:40:11', '2024-08-10 20:40:11'),
(7005, 1, '2024-08-10 16:50:08', '2024-08-10 16:50:08', 0, NULL, '2024-08-10 20:50:08', '2024-08-10 20:50:08'),
(7006, 2, '2024-08-10 16:50:09', '2024-08-10 16:50:09', 0, NULL, '2024-08-10 20:50:09', '2024-08-10 20:50:09'),
(7007, 3, '2024-08-10 16:50:09', '2024-08-10 16:50:09', 0, NULL, '2024-08-10 20:50:10', '2024-08-10 20:50:10'),
(7008, 5, '2024-08-10 16:50:10', '2024-08-10 16:50:10', 0, NULL, '2024-08-10 20:50:10', '2024-08-10 20:50:10'),
(7009, 1, '2024-08-10 17:00:11', '2024-08-10 17:00:11', 0, NULL, '2024-08-10 21:00:11', '2024-08-10 21:00:11'),
(7010, 2, '2024-08-10 17:00:12', '2024-08-10 17:00:12', 0, NULL, '2024-08-10 21:00:12', '2024-08-10 21:00:12'),
(7011, 3, '2024-08-10 17:00:13', '2024-08-10 17:00:13', 0, NULL, '2024-08-10 21:00:13', '2024-08-10 21:00:13'),
(7012, 5, '2024-08-10 17:00:13', '2024-08-10 17:00:13', 0, NULL, '2024-08-10 21:00:13', '2024-08-10 21:00:13'),
(7013, 1, '2024-08-10 17:10:08', '2024-08-10 17:10:08', 0, NULL, '2024-08-10 21:10:08', '2024-08-10 21:10:08'),
(7014, 2, '2024-08-10 17:10:08', '2024-08-10 17:10:08', 0, NULL, '2024-08-10 21:10:09', '2024-08-10 21:10:09'),
(7015, 3, '2024-08-10 17:10:09', '2024-08-10 17:10:09', 0, NULL, '2024-08-10 21:10:10', '2024-08-10 21:10:10'),
(7016, 5, '2024-08-10 17:10:10', '2024-08-10 17:10:10', 0, NULL, '2024-08-10 21:10:10', '2024-08-10 21:10:10'),
(7017, 1, '2024-08-10 17:20:07', '2024-08-10 17:20:07', 0, NULL, '2024-08-10 21:20:08', '2024-08-10 21:20:08'),
(7018, 2, '2024-08-10 17:20:08', '2024-08-10 17:20:08', 0, NULL, '2024-08-10 21:20:08', '2024-08-10 21:20:08'),
(7019, 3, '2024-08-10 17:20:09', '2024-08-10 17:20:09', 0, NULL, '2024-08-10 21:20:09', '2024-08-10 21:20:09'),
(7020, 5, '2024-08-10 17:20:09', '2024-08-10 17:20:09', 0, NULL, '2024-08-10 21:20:10', '2024-08-10 21:20:10'),
(7021, 1, '2024-08-10 17:25:08', '2024-08-10 17:25:08', 0, NULL, '2024-08-10 21:25:08', '2024-08-10 21:25:08'),
(7022, 1, '2024-08-10 17:30:11', '2024-08-10 17:30:11', 0, NULL, '2024-08-10 21:30:11', '2024-08-10 21:30:11'),
(7023, 2, '2024-08-10 17:30:11', '2024-08-10 17:30:11', 0, NULL, '2024-08-10 21:30:12', '2024-08-10 21:30:12'),
(7024, 3, '2024-08-10 17:30:12', '2024-08-10 17:30:12', 0, NULL, '2024-08-10 21:30:12', '2024-08-10 21:30:12'),
(7025, 5, '2024-08-10 17:30:12', '2024-08-10 17:30:12', 0, NULL, '2024-08-10 21:30:13', '2024-08-10 21:30:13'),
(7026, 1, '2024-08-10 17:40:07', '2024-08-10 17:40:07', 0, NULL, '2024-08-10 21:40:07', '2024-08-10 21:40:07'),
(7027, 2, '2024-08-10 17:40:07', '2024-08-10 17:40:07', 0, NULL, '2024-08-10 21:40:07', '2024-08-10 21:40:07'),
(7028, 3, '2024-08-10 17:40:08', '2024-08-10 17:40:08', 0, NULL, '2024-08-10 21:40:08', '2024-08-10 21:40:08'),
(7029, 5, '2024-08-10 17:40:09', '2024-08-10 17:40:09', 0, NULL, '2024-08-10 21:40:09', '2024-08-10 21:40:09'),
(7030, 1, '2024-08-10 17:50:06', '2024-08-10 17:50:06', 0, NULL, '2024-08-10 21:50:06', '2024-08-10 21:50:06'),
(7031, 2, '2024-08-10 17:50:06', '2024-08-10 17:50:06', 0, NULL, '2024-08-10 21:50:07', '2024-08-10 21:50:07'),
(7032, 3, '2024-08-10 17:50:07', '2024-08-10 17:50:07', 0, NULL, '2024-08-10 21:50:08', '2024-08-10 21:50:08'),
(7033, 5, '2024-08-10 17:50:09', '2024-08-10 17:50:09', 0, NULL, '2024-08-10 21:50:09', '2024-08-10 21:50:09'),
(7034, 1, '2024-08-10 17:55:12', '2024-08-10 17:55:12', 0, NULL, '2024-08-10 21:55:13', '2024-08-10 21:55:13'),
(7035, 2, '2024-08-10 17:55:13', '2024-08-10 17:55:13', 0, NULL, '2024-08-10 21:55:13', '2024-08-10 21:55:13'),
(7036, 3, '2024-08-10 17:55:13', '2024-08-10 17:55:13', 0, NULL, '2024-08-10 21:55:13', '2024-08-10 21:55:13'),
(7037, 5, '2024-08-10 17:55:13', '2024-08-10 17:55:14', 0, NULL, '2024-08-10 21:55:14', '2024-08-10 21:55:14'),
(7038, 1, '2024-08-10 18:05:05', '2024-08-10 18:05:05', 0, NULL, '2024-08-10 22:05:06', '2024-08-10 22:05:06'),
(7039, 2, '2024-08-10 18:05:06', '2024-08-10 18:05:06', 0, NULL, '2024-08-10 22:05:07', '2024-08-10 22:05:07'),
(7040, 3, '2024-08-10 18:05:07', '2024-08-10 18:05:07', 0, NULL, '2024-08-10 22:05:07', '2024-08-10 22:05:07'),
(7041, 5, '2024-08-10 18:05:08', '2024-08-10 18:05:08', 0, NULL, '2024-08-10 22:05:08', '2024-08-10 22:05:08'),
(7042, 1, '2024-08-10 18:10:09', '2024-08-10 18:10:09', 0, NULL, '2024-08-10 22:10:09', '2024-08-10 22:10:09'),
(7043, 2, '2024-08-10 18:10:09', '2024-08-10 18:10:09', 0, NULL, '2024-08-10 22:10:09', '2024-08-10 22:10:09'),
(7044, 3, '2024-08-10 18:10:10', '2024-08-10 18:10:10', 0, NULL, '2024-08-10 22:10:11', '2024-08-10 22:10:11'),
(7045, 5, '2024-08-10 18:10:11', '2024-08-10 18:10:11', 0, NULL, '2024-08-10 22:10:11', '2024-08-10 22:10:11'),
(7046, 1, '2024-08-10 18:15:12', '2024-08-10 18:15:13', 0, NULL, '2024-08-10 22:15:13', '2024-08-10 22:15:13'),
(7047, 2, '2024-08-10 18:15:13', '2024-08-10 18:15:13', 0, NULL, '2024-08-10 22:15:13', '2024-08-10 22:15:13'),
(7048, 3, '2024-08-10 18:15:14', '2024-08-10 18:15:14', 0, NULL, '2024-08-10 22:15:14', '2024-08-10 22:15:14'),
(7049, 5, '2024-08-10 18:15:14', '2024-08-10 18:15:14', 0, NULL, '2024-08-10 22:15:14', '2024-08-10 22:15:14'),
(7050, 1, '2024-08-10 18:25:07', '2024-08-10 18:25:09', 1, NULL, '2024-08-10 22:25:09', '2024-08-10 22:25:09'),
(7051, 2, '2024-08-10 18:25:09', '2024-08-10 18:25:09', 0, NULL, '2024-08-10 22:25:10', '2024-08-10 22:25:10'),
(7052, 3, '2024-08-10 18:25:10', '2024-08-10 18:25:10', 0, NULL, '2024-08-10 22:25:11', '2024-08-10 22:25:11'),
(7053, 5, '2024-08-10 18:25:11', '2024-08-10 18:25:11', 0, NULL, '2024-08-10 22:25:12', '2024-08-10 22:25:12'),
(7054, 1, '2024-08-10 18:35:04', '2024-08-10 18:35:04', 0, NULL, '2024-08-10 22:35:05', '2024-08-10 22:35:05'),
(7055, 2, '2024-08-10 18:35:06', '2024-08-10 18:35:06', 0, NULL, '2024-08-10 22:35:06', '2024-08-10 22:35:06'),
(7056, 3, '2024-08-10 18:35:06', '2024-08-10 18:35:06', 0, NULL, '2024-08-10 22:35:07', '2024-08-10 22:35:07'),
(7057, 5, '2024-08-10 18:35:07', '2024-08-10 18:35:07', 0, NULL, '2024-08-10 22:35:08', '2024-08-10 22:35:08'),
(7058, 1, '2024-08-10 18:40:06', '2024-08-10 18:40:06', 0, NULL, '2024-08-10 22:40:06', '2024-08-10 22:40:06'),
(7059, 2, '2024-08-10 18:45:04', '2024-08-10 18:45:04', 0, NULL, '2024-08-10 22:45:04', '2024-08-10 22:45:04'),
(7060, 3, '2024-08-10 18:45:05', '2024-08-10 18:45:05', 0, NULL, '2024-08-10 22:45:05', '2024-08-10 22:45:05'),
(7061, 5, '2024-08-10 18:45:06', '2024-08-10 18:45:06', 0, NULL, '2024-08-10 22:45:06', '2024-08-10 22:45:06'),
(7062, 1, '2024-08-10 18:50:07', '2024-08-10 18:50:07', 0, NULL, '2024-08-10 22:50:07', '2024-08-10 22:50:07'),
(7063, 2, '2024-08-10 18:50:08', '2024-08-10 18:50:08', 0, NULL, '2024-08-10 22:50:08', '2024-08-10 22:50:08'),
(7064, 3, '2024-08-10 18:50:09', '2024-08-10 18:50:09', 0, NULL, '2024-08-10 22:50:09', '2024-08-10 22:50:09'),
(7065, 5, '2024-08-10 18:50:09', '2024-08-10 18:50:09', 0, NULL, '2024-08-10 22:50:09', '2024-08-10 22:50:09'),
(7066, 1, '2024-08-10 19:00:07', '2024-08-10 19:00:08', 0, NULL, '2024-08-10 23:00:08', '2024-08-10 23:00:08'),
(7067, 2, '2024-08-10 19:00:08', '2024-08-10 19:00:08', 0, NULL, '2024-08-10 23:00:09', '2024-08-10 23:00:09'),
(7068, 3, '2024-08-10 19:00:09', '2024-08-10 19:00:09', 0, NULL, '2024-08-10 23:00:10', '2024-08-10 23:00:10'),
(7069, 5, '2024-08-10 19:00:10', '2024-08-10 19:00:10', 0, NULL, '2024-08-10 23:00:10', '2024-08-10 23:00:10'),
(7070, 1, '2024-08-10 19:10:09', '2024-08-10 19:10:09', 0, NULL, '2024-08-10 23:10:10', '2024-08-10 23:10:10'),
(7071, 2, '2024-08-10 19:10:10', '2024-08-10 19:10:10', 0, NULL, '2024-08-10 23:10:11', '2024-08-10 23:10:11'),
(7072, 3, '2024-08-10 19:10:11', '2024-08-10 19:10:11', 0, NULL, '2024-08-10 23:10:11', '2024-08-10 23:10:11'),
(7073, 5, '2024-08-10 19:10:13', '2024-08-10 19:10:14', 1, NULL, '2024-08-10 23:10:15', '2024-08-10 23:10:15'),
(7074, 1, '2024-08-10 19:20:08', '2024-08-10 19:20:08', 0, NULL, '2024-08-10 23:20:08', '2024-08-10 23:20:08'),
(7075, 2, '2024-08-10 19:20:09', '2024-08-10 19:20:09', 0, NULL, '2024-08-10 23:20:09', '2024-08-10 23:20:09'),
(7076, 3, '2024-08-10 19:20:09', '2024-08-10 19:20:09', 0, NULL, '2024-08-10 23:20:09', '2024-08-10 23:20:09'),
(7077, 5, '2024-08-10 19:20:09', '2024-08-10 19:20:09', 0, NULL, '2024-08-10 23:20:10', '2024-08-10 23:20:10'),
(7078, 1, '2024-08-10 19:30:07', '2024-08-10 19:30:07', 0, NULL, '2024-08-10 23:30:08', '2024-08-10 23:30:08'),
(7079, 2, '2024-08-10 19:30:09', '2024-08-10 19:30:09', 0, NULL, '2024-08-10 23:30:09', '2024-08-10 23:30:09'),
(7080, 3, '2024-08-10 19:30:10', '2024-08-10 19:30:10', 0, NULL, '2024-08-10 23:30:11', '2024-08-10 23:30:11'),
(7081, 5, '2024-08-10 19:30:12', '2024-08-10 19:30:12', 0, NULL, '2024-08-10 23:30:12', '2024-08-10 23:30:12'),
(7082, 1, '2024-08-10 19:35:09', '2024-08-10 19:35:09', 0, NULL, '2024-08-10 23:35:10', '2024-08-10 23:35:10'),
(7083, 2, '2024-08-10 19:40:07', '2024-08-10 19:40:07', 0, NULL, '2024-08-10 23:40:07', '2024-08-10 23:40:07'),
(7084, 3, '2024-08-10 19:40:08', '2024-08-10 19:40:08', 0, NULL, '2024-08-10 23:40:08', '2024-08-10 23:40:08'),
(7085, 5, '2024-08-10 19:40:08', '2024-08-10 19:40:08', 0, NULL, '2024-08-10 23:40:09', '2024-08-10 23:40:09'),
(7086, 1, '2024-08-10 19:45:11', '2024-08-10 19:45:11', 0, NULL, '2024-08-10 23:45:11', '2024-08-10 23:45:11'),
(7087, 2, '2024-08-10 19:45:11', '2024-08-10 19:45:11', 0, NULL, '2024-08-10 23:45:11', '2024-08-10 23:45:11'),
(7088, 3, '2024-08-10 19:45:11', '2024-08-10 19:45:11', 0, NULL, '2024-08-10 23:45:11', '2024-08-10 23:45:11'),
(7089, 5, '2024-08-10 19:45:11', '2024-08-10 19:45:11', 0, NULL, '2024-08-10 23:45:12', '2024-08-10 23:45:12'),
(7090, 1, '2024-08-10 19:55:08', '2024-08-10 19:55:08', 0, NULL, '2024-08-10 23:55:09', '2024-08-10 23:55:09'),
(7091, 2, '2024-08-10 19:55:09', '2024-08-10 19:55:09', 0, NULL, '2024-08-10 23:55:10', '2024-08-10 23:55:10'),
(7092, 3, '2024-08-10 19:55:14', '2024-08-10 19:55:14', 0, NULL, '2024-08-10 23:55:14', '2024-08-10 23:55:14'),
(7093, 5, '2024-08-10 19:55:14', '2024-08-10 19:55:14', 0, NULL, '2024-08-10 23:55:14', '2024-08-10 23:55:14'),
(7094, 1, '2024-08-10 20:05:09', '2024-08-10 20:05:10', 0, NULL, '2024-08-11 00:05:11', '2024-08-11 00:05:11'),
(7095, 2, '2024-08-10 20:05:11', '2024-08-10 20:05:11', 0, NULL, '2024-08-11 00:05:12', '2024-08-11 00:05:12'),
(7096, 3, '2024-08-10 20:05:12', '2024-08-10 20:05:12', 0, NULL, '2024-08-11 00:05:12', '2024-08-11 00:05:12'),
(7097, 5, '2024-08-10 20:05:14', '2024-08-10 20:05:14', 0, NULL, '2024-08-11 00:05:15', '2024-08-11 00:05:15'),
(7098, 1, '2024-08-10 20:15:12', '2024-08-10 20:15:12', 0, NULL, '2024-08-11 00:15:13', '2024-08-11 00:15:13'),
(7099, 2, '2024-08-10 20:15:13', '2024-08-10 20:15:13', 0, NULL, '2024-08-11 00:15:13', '2024-08-11 00:15:13'),
(7100, 3, '2024-08-10 20:15:13', '2024-08-10 20:15:13', 0, NULL, '2024-08-11 00:15:13', '2024-08-11 00:15:13'),
(7101, 5, '2024-08-10 20:15:14', '2024-08-10 20:15:14', 0, NULL, '2024-08-11 00:15:14', '2024-08-11 00:15:14'),
(7102, 1, '2024-08-10 20:25:06', '2024-08-10 20:25:06', 0, NULL, '2024-08-11 00:25:07', '2024-08-11 00:25:07'),
(7103, 2, '2024-08-10 20:25:11', '2024-08-10 20:25:11', 0, NULL, '2024-08-11 00:25:15', '2024-08-11 00:25:15'),
(7104, 3, '2024-08-10 20:25:15', '2024-08-10 20:25:15', 0, NULL, '2024-08-11 00:25:16', '2024-08-11 00:25:16'),
(7105, 5, '2024-08-10 20:25:16', '2024-08-10 20:25:16', 0, NULL, '2024-08-11 00:25:16', '2024-08-11 00:25:16'),
(7106, 1, '2024-08-10 20:35:06', '2024-08-10 20:35:06', 0, NULL, '2024-08-11 00:35:06', '2024-08-11 00:35:06'),
(7107, 2, '2024-08-10 20:35:06', '2024-08-10 20:35:06', 0, NULL, '2024-08-11 00:35:07', '2024-08-11 00:35:07'),
(7108, 3, '2024-08-10 20:35:07', '2024-08-10 20:35:07', 0, NULL, '2024-08-11 00:35:07', '2024-08-11 00:35:07'),
(7109, 5, '2024-08-10 20:35:08', '2024-08-10 20:35:08', 0, NULL, '2024-08-11 00:35:08', '2024-08-11 00:35:08'),
(7110, 1, '2024-08-10 20:40:09', '2024-08-10 20:40:09', 0, NULL, '2024-08-11 00:40:09', '2024-08-11 00:40:09'),
(7111, 2, '2024-08-10 20:40:10', '2024-08-10 20:40:10', 0, NULL, '2024-08-11 00:40:10', '2024-08-11 00:40:10'),
(7112, 3, '2024-08-10 20:40:11', '2024-08-10 20:40:11', 0, NULL, '2024-08-11 00:40:11', '2024-08-11 00:40:11'),
(7113, 5, '2024-08-10 20:40:11', '2024-08-10 20:40:11', 0, NULL, '2024-08-11 00:40:11', '2024-08-11 00:40:11'),
(7114, 1, '2024-08-10 20:50:07', '2024-08-10 20:50:07', 0, NULL, '2024-08-11 00:50:07', '2024-08-11 00:50:07'),
(7115, 2, '2024-08-10 20:50:08', '2024-08-10 20:50:08', 0, NULL, '2024-08-11 00:50:08', '2024-08-11 00:50:08'),
(7116, 3, '2024-08-10 20:50:09', '2024-08-10 20:50:09', 0, NULL, '2024-08-11 00:50:09', '2024-08-11 00:50:09'),
(7117, 5, '2024-08-10 20:50:09', '2024-08-10 20:50:09', 0, NULL, '2024-08-11 00:50:10', '2024-08-11 00:50:10'),
(7118, 1, '2024-08-10 21:00:07', '2024-08-10 21:00:07', 0, NULL, '2024-08-11 01:00:07', '2024-08-11 01:00:07'),
(7119, 2, '2024-08-10 21:00:07', '2024-08-10 21:00:07', 0, NULL, '2024-08-11 01:00:08', '2024-08-11 01:00:08'),
(7120, 3, '2024-08-10 21:00:09', '2024-08-10 21:00:09', 0, NULL, '2024-08-11 01:00:09', '2024-08-11 01:00:09'),
(7121, 5, '2024-08-10 21:00:09', '2024-08-10 21:00:09', 0, NULL, '2024-08-11 01:00:10', '2024-08-11 01:00:10'),
(7122, 1, '2024-08-10 21:10:08', '2024-08-10 21:10:08', 0, NULL, '2024-08-11 01:10:08', '2024-08-11 01:10:08'),
(7123, 2, '2024-08-10 21:10:09', '2024-08-10 21:10:09', 0, NULL, '2024-08-11 01:10:09', '2024-08-11 01:10:09'),
(7124, 3, '2024-08-10 21:10:09', '2024-08-10 21:10:09', 0, NULL, '2024-08-11 01:10:09', '2024-08-11 01:10:09'),
(7125, 5, '2024-08-10 21:10:10', '2024-08-10 21:10:10', 0, NULL, '2024-08-11 01:10:10', '2024-08-11 01:10:10'),
(7126, 1, '2024-08-10 21:20:08', '2024-08-10 21:20:08', 0, NULL, '2024-08-11 01:20:08', '2024-08-11 01:20:08'),
(7127, 2, '2024-08-10 21:20:08', '2024-08-10 21:20:08', 0, NULL, '2024-08-11 01:20:08', '2024-08-11 01:20:08'),
(7128, 3, '2024-08-10 21:20:09', '2024-08-10 21:20:09', 0, NULL, '2024-08-11 01:20:09', '2024-08-11 01:20:09'),
(7129, 5, '2024-08-10 21:20:09', '2024-08-10 21:20:09', 0, NULL, '2024-08-11 01:20:10', '2024-08-11 01:20:10'),
(7130, 1, '2024-08-10 21:25:11', '2024-08-10 21:25:11', 0, NULL, '2024-08-11 01:25:11', '2024-08-11 01:25:11'),
(7131, 2, '2024-08-10 21:25:11', '2024-08-10 21:25:11', 0, NULL, '2024-08-11 01:25:11', '2024-08-11 01:25:11'),
(7132, 3, '2024-08-10 21:25:12', '2024-08-10 21:25:12', 0, NULL, '2024-08-11 01:25:12', '2024-08-11 01:25:12'),
(7133, 5, '2024-08-10 21:25:12', '2024-08-10 21:25:12', 0, NULL, '2024-08-11 01:25:12', '2024-08-11 01:25:12'),
(7134, 1, '2024-08-10 21:35:07', '2024-08-10 21:35:07', 0, NULL, '2024-08-11 01:35:08', '2024-08-11 01:35:08'),
(7135, 2, '2024-08-10 21:35:08', '2024-08-10 21:35:08', 0, NULL, '2024-08-11 01:35:08', '2024-08-11 01:35:08'),
(7136, 3, '2024-08-10 21:35:08', '2024-08-10 21:35:08', 0, NULL, '2024-08-11 01:35:08', '2024-08-11 01:35:08'),
(7137, 5, '2024-08-10 21:35:09', '2024-08-10 21:35:09', 0, NULL, '2024-08-11 01:35:09', '2024-08-11 01:35:09'),
(7138, 1, '2024-08-10 21:45:07', '2024-08-10 21:45:08', 0, NULL, '2024-08-11 01:45:08', '2024-08-11 01:45:08'),
(7139, 2, '2024-08-10 21:45:09', '2024-08-10 21:45:09', 0, NULL, '2024-08-11 01:45:09', '2024-08-11 01:45:09'),
(7140, 3, '2024-08-10 21:45:09', '2024-08-10 21:45:09', 0, NULL, '2024-08-11 01:45:10', '2024-08-11 01:45:10'),
(7141, 5, '2024-08-10 21:45:10', '2024-08-10 21:45:10', 0, NULL, '2024-08-11 01:45:10', '2024-08-11 01:45:10'),
(7142, 1, '2024-08-10 21:55:08', '2024-08-10 21:55:08', 0, NULL, '2024-08-11 01:55:08', '2024-08-11 01:55:08'),
(7143, 2, '2024-08-10 21:55:08', '2024-08-10 21:55:08', 0, NULL, '2024-08-11 01:55:09', '2024-08-11 01:55:09'),
(7144, 3, '2024-08-10 21:55:09', '2024-08-10 21:55:09', 0, NULL, '2024-08-11 01:55:10', '2024-08-11 01:55:10'),
(7145, 5, '2024-08-10 21:55:10', '2024-08-10 21:55:10', 0, NULL, '2024-08-11 01:55:10', '2024-08-11 01:55:10'),
(7146, 1, '2024-08-10 22:05:08', '2024-08-10 22:05:08', 0, NULL, '2024-08-11 02:05:09', '2024-08-11 02:05:09'),
(7147, 2, '2024-08-10 22:05:09', '2024-08-10 22:05:09', 0, NULL, '2024-08-11 02:05:09', '2024-08-11 02:05:09'),
(7148, 3, '2024-08-10 22:05:10', '2024-08-10 22:05:10', 0, NULL, '2024-08-11 02:05:10', '2024-08-11 02:05:10'),
(7149, 5, '2024-08-10 22:05:10', '2024-08-10 22:05:10', 0, NULL, '2024-08-11 02:05:10', '2024-08-11 02:05:10'),
(7150, 1, '2024-08-10 22:15:07', '2024-08-10 22:15:07', 0, NULL, '2024-08-11 02:15:08', '2024-08-11 02:15:08'),
(7151, 2, '2024-08-10 22:15:08', '2024-08-10 22:15:08', 0, NULL, '2024-08-11 02:15:09', '2024-08-11 02:15:09'),
(7152, 3, '2024-08-10 22:15:09', '2024-08-10 22:15:09', 0, NULL, '2024-08-11 02:15:09', '2024-08-11 02:15:09'),
(7153, 5, '2024-08-10 22:15:09', '2024-08-10 22:15:10', 0, NULL, '2024-08-11 02:15:10', '2024-08-11 02:15:10'),
(7154, 1, '2024-08-10 22:25:07', '2024-08-10 22:25:07', 0, NULL, '2024-08-11 02:25:07', '2024-08-11 02:25:07'),
(7155, 2, '2024-08-10 22:25:08', '2024-08-10 22:25:08', 0, NULL, '2024-08-11 02:25:08', '2024-08-11 02:25:08'),
(7156, 3, '2024-08-10 22:25:08', '2024-08-10 22:25:08', 0, NULL, '2024-08-11 02:25:09', '2024-08-11 02:25:09'),
(7157, 5, '2024-08-10 22:25:10', '2024-08-10 22:25:10', 0, NULL, '2024-08-11 02:25:10', '2024-08-11 02:25:10'),
(7158, 1, '2024-08-10 22:30:08', '2024-08-10 22:30:08', 0, NULL, '2024-08-11 02:30:09', '2024-08-11 02:30:09'),
(7159, 2, '2024-08-10 22:35:07', '2024-08-10 22:35:07', 0, NULL, '2024-08-11 02:35:08', '2024-08-11 02:35:08'),
(7160, 3, '2024-08-10 22:35:08', '2024-08-10 22:35:08', 0, NULL, '2024-08-11 02:35:08', '2024-08-11 02:35:08'),
(7161, 5, '2024-08-10 22:35:08', '2024-08-10 22:35:08', 0, NULL, '2024-08-11 02:35:09', '2024-08-11 02:35:09'),
(7162, 1, '2024-08-10 22:40:07', '2024-08-10 22:40:07', 0, NULL, '2024-08-11 02:40:07', '2024-08-11 02:40:07'),
(7163, 2, '2024-08-10 22:45:07', '2024-08-10 22:45:08', 0, NULL, '2024-08-11 02:45:08', '2024-08-11 02:45:08'),
(7164, 3, '2024-08-10 22:45:08', '2024-08-10 22:45:08', 0, NULL, '2024-08-11 02:45:09', '2024-08-11 02:45:09'),
(7165, 5, '2024-08-10 22:45:09', '2024-08-10 22:45:09', 0, NULL, '2024-08-11 02:45:09', '2024-08-11 02:45:09'),
(7166, 1, '2024-08-10 22:50:03', '2024-08-10 22:50:03', 0, NULL, '2024-08-11 02:50:03', '2024-08-11 02:50:03'),
(7167, 1, '2024-08-10 22:55:06', '2024-08-10 22:55:06', 0, NULL, '2024-08-11 02:55:06', '2024-08-11 02:55:06'),
(7168, 2, '2024-08-10 22:55:06', '2024-08-10 22:55:06', 0, NULL, '2024-08-11 02:55:06', '2024-08-11 02:55:06'),
(7169, 3, '2024-08-10 22:55:07', '2024-08-10 22:55:07', 0, NULL, '2024-08-11 02:55:08', '2024-08-11 02:55:08'),
(7170, 5, '2024-08-10 22:55:08', '2024-08-10 22:55:09', 0, NULL, '2024-08-11 02:55:09', '2024-08-11 02:55:09'),
(7171, 1, '2024-08-10 23:00:08', '2024-08-10 23:00:08', 0, NULL, '2024-08-11 03:00:08', '2024-08-11 03:00:08'),
(7172, 2, '2024-08-10 23:00:09', '2024-08-10 23:00:09', 0, NULL, '2024-08-11 03:00:10', '2024-08-11 03:00:10'),
(7173, 3, '2024-08-10 23:00:10', '2024-08-10 23:00:10', 0, NULL, '2024-08-11 03:00:10', '2024-08-11 03:00:10'),
(7174, 5, '2024-08-10 23:05:08', '2024-08-10 23:05:08', 0, NULL, '2024-08-11 03:05:09', '2024-08-11 03:05:09'),
(7175, 1, '2024-08-10 23:10:08', '2024-08-10 23:10:08', 0, NULL, '2024-08-11 03:10:08', '2024-08-11 03:10:08'),
(7176, 2, '2024-08-10 23:10:09', '2024-08-10 23:10:09', 0, NULL, '2024-08-11 03:10:09', '2024-08-11 03:10:09'),
(7177, 3, '2024-08-10 23:10:09', '2024-08-10 23:10:09', 0, NULL, '2024-08-11 03:10:10', '2024-08-11 03:10:10'),
(7178, 5, '2024-08-10 23:15:05', '2024-08-10 23:15:05', 0, NULL, '2024-08-11 03:15:06', '2024-08-11 03:15:06'),
(7179, 1, '2024-08-10 23:20:06', '2024-08-10 23:20:06', 0, NULL, '2024-08-11 03:20:07', '2024-08-11 03:20:07'),
(7180, 2, '2024-08-10 23:20:08', '2024-08-10 23:20:08', 0, NULL, '2024-08-11 03:20:08', '2024-08-11 03:20:08'),
(7181, 3, '2024-08-10 23:20:08', '2024-08-10 23:20:08', 0, NULL, '2024-08-11 03:20:08', '2024-08-11 03:20:08'),
(7182, 5, '2024-08-10 23:25:03', '2024-08-10 23:25:03', 0, NULL, '2024-08-11 03:25:05', '2024-08-11 03:25:05'),
(7183, 1, '2024-08-10 23:30:10', '2024-08-10 23:30:10', 0, NULL, '2024-08-11 03:30:10', '2024-08-11 03:30:10'),
(7184, 2, '2024-08-10 23:30:11', '2024-08-10 23:30:11', 0, NULL, '2024-08-11 03:30:11', '2024-08-11 03:30:11'),
(7185, 3, '2024-08-10 23:30:11', '2024-08-10 23:30:11', 0, NULL, '2024-08-11 03:30:11', '2024-08-11 03:30:11'),
(7186, 5, '2024-08-10 23:30:12', '2024-08-10 23:30:12', 0, NULL, '2024-08-11 03:30:12', '2024-08-11 03:30:12'),
(7187, 1, '2024-08-10 23:40:08', '2024-08-10 23:40:08', 0, NULL, '2024-08-11 03:40:08', '2024-08-11 03:40:08'),
(7188, 2, '2024-08-10 23:40:10', '2024-08-10 23:40:10', 0, NULL, '2024-08-11 03:40:10', '2024-08-11 03:40:10'),
(7189, 3, '2024-08-10 23:40:11', '2024-08-10 23:40:11', 0, NULL, '2024-08-11 03:40:11', '2024-08-11 03:40:11'),
(7190, 5, '2024-08-10 23:40:11', '2024-08-10 23:40:11', 0, NULL, '2024-08-11 03:40:11', '2024-08-11 03:40:11'),
(7191, 1, '2024-08-10 23:50:08', '2024-08-10 23:50:08', 0, NULL, '2024-08-11 03:50:08', '2024-08-11 03:50:08'),
(7192, 2, '2024-08-10 23:50:08', '2024-08-10 23:50:08', 0, NULL, '2024-08-11 03:50:08', '2024-08-11 03:50:08'),
(7193, 3, '2024-08-10 23:50:09', '2024-08-10 23:50:09', 0, NULL, '2024-08-11 03:50:09', '2024-08-11 03:50:09'),
(7194, 5, '2024-08-10 23:50:09', '2024-08-10 23:50:09', 0, NULL, '2024-08-11 03:50:09', '2024-08-11 03:50:09'),
(7195, 1, '2024-08-10 23:55:11', '2024-08-10 23:55:11', 0, NULL, '2024-08-11 03:55:11', '2024-08-11 03:55:11'),
(7196, 2, '2024-08-10 23:55:11', '2024-08-10 23:55:11', 0, NULL, '2024-08-11 03:55:11', '2024-08-11 03:55:11'),
(7197, 3, '2024-08-10 23:55:11', '2024-08-10 23:55:11', 0, NULL, '2024-08-11 03:55:12', '2024-08-11 03:55:12'),
(7198, 5, '2024-08-10 23:55:12', '2024-08-10 23:55:12', 0, NULL, '2024-08-11 03:55:12', '2024-08-11 03:55:12'),
(7199, 1, '2024-08-11 00:05:07', '2024-08-11 00:05:07', 0, NULL, '2024-08-11 04:05:07', '2024-08-11 04:05:07'),
(7200, 2, '2024-08-11 00:05:09', '2024-08-11 00:05:09', 0, NULL, '2024-08-11 04:05:09', '2024-08-11 04:05:09'),
(7201, 3, '2024-08-11 00:05:10', '2024-08-11 00:05:10', 0, NULL, '2024-08-11 04:05:10', '2024-08-11 04:05:10'),
(7202, 5, '2024-08-11 00:05:10', '2024-08-11 00:05:10', 0, NULL, '2024-08-11 04:05:11', '2024-08-11 04:05:11'),
(7203, 1, '2024-08-11 00:15:04', '2024-08-11 00:15:04', 0, NULL, '2024-08-11 04:15:04', '2024-08-11 04:15:04'),
(7204, 2, '2024-08-11 00:15:05', '2024-08-11 00:15:05', 0, NULL, '2024-08-11 04:15:06', '2024-08-11 04:15:06'),
(7205, 3, '2024-08-11 00:15:06', '2024-08-11 00:15:06', 0, NULL, '2024-08-11 04:15:07', '2024-08-11 04:15:07'),
(7206, 5, '2024-08-11 00:15:07', '2024-08-11 00:15:07', 0, NULL, '2024-08-11 04:15:07', '2024-08-11 04:15:07'),
(7207, 1, '2024-08-11 00:25:05', '2024-08-11 00:25:05', 0, NULL, '2024-08-11 04:25:06', '2024-08-11 04:25:06'),
(7208, 2, '2024-08-11 00:25:07', '2024-08-11 00:25:07', 0, NULL, '2024-08-11 04:25:08', '2024-08-11 04:25:08'),
(7209, 3, '2024-08-11 00:25:08', '2024-08-11 00:25:08', 0, NULL, '2024-08-11 04:25:09', '2024-08-11 04:25:09'),
(7210, 5, '2024-08-11 00:25:09', '2024-08-11 00:25:09', 0, NULL, '2024-08-11 04:25:10', '2024-08-11 04:25:10'),
(7211, 1, '2024-08-11 00:35:06', '2024-08-11 00:35:06', 0, NULL, '2024-08-11 04:35:06', '2024-08-11 04:35:06'),
(7212, 2, '2024-08-11 00:35:07', '2024-08-11 00:35:07', 0, NULL, '2024-08-11 04:35:08', '2024-08-11 04:35:08'),
(7213, 3, '2024-08-11 00:35:08', '2024-08-11 00:35:08', 0, NULL, '2024-08-11 04:35:08', '2024-08-11 04:35:08'),
(7214, 5, '2024-08-11 00:35:09', '2024-08-11 00:35:09', 0, NULL, '2024-08-11 04:35:09', '2024-08-11 04:35:09'),
(7215, 1, '2024-08-11 00:40:09', '2024-08-11 00:40:09', 0, NULL, '2024-08-11 04:40:09', '2024-08-11 04:40:09'),
(7216, 2, '2024-08-11 00:40:10', '2024-08-11 00:40:10', 0, NULL, '2024-08-11 04:40:10', '2024-08-11 04:40:10'),
(7217, 3, '2024-08-11 00:40:10', '2024-08-11 00:40:10', 0, NULL, '2024-08-11 04:40:10', '2024-08-11 04:40:10'),
(7218, 5, '2024-08-11 00:45:05', '2024-08-11 00:45:05', 0, NULL, '2024-08-11 04:45:05', '2024-08-11 04:45:05'),
(7219, 1, '2024-08-11 00:50:07', '2024-08-11 00:50:08', 0, NULL, '2024-08-11 04:50:08', '2024-08-11 04:50:08'),
(7220, 2, '2024-08-11 00:50:08', '2024-08-11 00:50:08', 0, NULL, '2024-08-11 04:50:09', '2024-08-11 04:50:09'),
(7221, 3, '2024-08-11 00:50:09', '2024-08-11 00:50:09', 0, NULL, '2024-08-11 04:50:10', '2024-08-11 04:50:10'),
(7222, 5, '2024-08-11 00:50:10', '2024-08-11 00:50:10', 0, NULL, '2024-08-11 04:50:10', '2024-08-11 04:50:10'),
(7223, 1, '2024-08-11 01:00:04', '2024-08-11 01:00:04', 0, NULL, '2024-08-11 05:00:05', '2024-08-11 05:00:05'),
(7224, 2, '2024-08-11 01:00:06', '2024-08-11 01:00:06', 0, NULL, '2024-08-11 05:00:06', '2024-08-11 05:00:06'),
(7225, 3, '2024-08-11 01:00:07', '2024-08-11 01:00:07', 0, NULL, '2024-08-11 05:00:08', '2024-08-11 05:00:08'),
(7226, 5, '2024-08-11 01:00:08', '2024-08-11 01:00:08', 0, NULL, '2024-08-11 05:00:08', '2024-08-11 05:00:08'),
(7227, 1, '2024-08-11 01:05:06', '2024-08-11 01:05:06', 0, NULL, '2024-08-11 05:05:06', '2024-08-11 05:05:06'),
(7228, 1, '2024-08-11 01:10:11', '2024-08-11 01:10:11', 0, NULL, '2024-08-11 05:10:11', '2024-08-11 05:10:11'),
(7229, 2, '2024-08-11 01:10:11', '2024-08-11 01:10:11', 0, NULL, '2024-08-11 05:10:12', '2024-08-11 05:10:12'),
(7230, 3, '2024-08-11 01:10:12', '2024-08-11 01:10:12', 0, NULL, '2024-08-11 05:10:12', '2024-08-11 05:10:12'),
(7231, 5, '2024-08-11 01:10:12', '2024-08-11 01:10:12', 0, NULL, '2024-08-11 05:10:13', '2024-08-11 05:10:13'),
(7232, 1, '2024-08-11 01:20:08', '2024-08-11 01:20:08', 0, NULL, '2024-08-11 05:20:09', '2024-08-11 05:20:09'),
(7233, 2, '2024-08-11 01:20:10', '2024-08-11 01:20:11', 0, NULL, '2024-08-11 05:20:11', '2024-08-11 05:20:11'),
(7234, 3, '2024-08-11 01:20:11', '2024-08-11 01:20:11', 0, NULL, '2024-08-11 05:20:11', '2024-08-11 05:20:11'),
(7235, 5, '2024-08-11 01:20:12', '2024-08-11 01:20:12', 0, NULL, '2024-08-11 05:20:12', '2024-08-11 05:20:12'),
(7236, 1, '2024-08-11 01:25:11', '2024-08-11 01:25:11', 0, NULL, '2024-08-11 05:25:12', '2024-08-11 05:25:12'),
(7237, 2, '2024-08-11 01:30:06', '2024-08-11 01:30:06', 0, NULL, '2024-08-11 05:30:07', '2024-08-11 05:30:07'),
(7238, 3, '2024-08-11 01:30:07', '2024-08-11 01:30:07', 0, NULL, '2024-08-11 05:30:07', '2024-08-11 05:30:07'),
(7239, 5, '2024-08-11 01:30:08', '2024-08-11 01:30:08', 0, NULL, '2024-08-11 05:30:08', '2024-08-11 05:30:08'),
(7240, 1, '2024-08-11 01:35:05', '2024-08-11 01:35:05', 0, NULL, '2024-08-11 05:35:05', '2024-08-11 05:35:05'),
(7241, 2, '2024-08-11 01:40:03', '2024-08-11 01:40:03', 0, NULL, '2024-08-11 05:40:04', '2024-08-11 05:40:04'),
(7242, 3, '2024-08-11 01:40:05', '2024-08-11 01:40:05', 0, NULL, '2024-08-11 05:40:06', '2024-08-11 05:40:06'),
(7243, 5, '2024-08-11 01:40:06', '2024-08-11 01:40:07', 0, NULL, '2024-08-11 05:40:07', '2024-08-11 05:40:07'),
(7244, 1, '2024-08-11 01:45:11', '2024-08-11 01:45:11', 0, NULL, '2024-08-11 05:45:11', '2024-08-11 05:45:11'),
(7245, 2, '2024-08-11 01:45:11', '2024-08-11 01:45:11', 0, NULL, '2024-08-11 05:45:11', '2024-08-11 05:45:11'),
(7246, 3, '2024-08-11 01:45:12', '2024-08-11 01:45:12', 0, NULL, '2024-08-11 05:45:12', '2024-08-11 05:45:12'),
(7247, 5, '2024-08-11 01:45:12', '2024-08-11 01:45:12', 0, NULL, '2024-08-11 05:45:12', '2024-08-11 05:45:12'),
(7248, 1, '2024-08-11 01:55:04', '2024-08-11 01:55:04', 0, NULL, '2024-08-11 05:55:04', '2024-08-11 05:55:04'),
(7249, 2, '2024-08-11 01:55:05', '2024-08-11 01:55:05', 0, NULL, '2024-08-11 05:55:05', '2024-08-11 05:55:05'),
(7250, 3, '2024-08-11 01:55:05', '2024-08-11 01:55:05', 0, NULL, '2024-08-11 05:55:05', '2024-08-11 05:55:05'),
(7251, 5, '2024-08-11 01:55:06', '2024-08-11 01:55:06', 0, NULL, '2024-08-11 05:55:06', '2024-08-11 05:55:06'),
(7252, 1, '2024-08-11 02:05:04', '2024-08-11 02:05:04', 0, NULL, '2024-08-11 06:05:05', '2024-08-11 06:05:05'),
(7253, 2, '2024-08-11 02:05:06', '2024-08-11 02:05:06', 0, NULL, '2024-08-11 06:05:06', '2024-08-11 06:05:06'),
(7254, 3, '2024-08-11 02:05:07', '2024-08-11 02:05:07', 0, NULL, '2024-08-11 06:05:07', '2024-08-11 06:05:07'),
(7255, 5, '2024-08-11 02:05:07', '2024-08-11 02:05:07', 0, NULL, '2024-08-11 06:05:08', '2024-08-11 06:05:08'),
(7256, 1, '2024-08-11 02:10:05', '2024-08-11 02:10:05', 0, NULL, '2024-08-11 06:10:06', '2024-08-11 06:10:06'),
(7257, 2, '2024-08-11 02:15:05', '2024-08-11 02:15:05', 0, NULL, '2024-08-11 06:15:06', '2024-08-11 06:15:06'),
(7258, 3, '2024-08-11 02:15:06', '2024-08-11 02:15:06', 0, NULL, '2024-08-11 06:15:07', '2024-08-11 06:15:07');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(7259, 5, '2024-08-11 02:15:07', '2024-08-11 02:15:07', 0, NULL, '2024-08-11 06:15:08', '2024-08-11 06:15:08'),
(7260, 1, '2024-08-11 02:20:09', '2024-08-11 02:20:09', 0, NULL, '2024-08-11 06:20:10', '2024-08-11 06:20:10'),
(7261, 2, '2024-08-11 02:20:10', '2024-08-11 02:20:10', 0, NULL, '2024-08-11 06:20:10', '2024-08-11 06:20:10'),
(7262, 3, '2024-08-11 02:20:10', '2024-08-11 02:20:10', 0, NULL, '2024-08-11 06:20:10', '2024-08-11 06:20:10'),
(7263, 5, '2024-08-11 02:20:11', '2024-08-11 02:20:11', 0, NULL, '2024-08-11 06:20:11', '2024-08-11 06:20:11'),
(7264, 1, '2024-08-11 02:30:04', '2024-08-11 02:30:04', 0, NULL, '2024-08-11 06:30:05', '2024-08-11 06:30:05'),
(7265, 2, '2024-08-11 02:30:06', '2024-08-11 02:30:06', 0, NULL, '2024-08-11 06:30:06', '2024-08-11 06:30:06'),
(7266, 3, '2024-08-11 02:30:07', '2024-08-11 02:30:07', 0, NULL, '2024-08-11 06:30:07', '2024-08-11 06:30:07'),
(7267, 5, '2024-08-11 02:30:08', '2024-08-11 02:30:08', 0, NULL, '2024-08-11 06:30:08', '2024-08-11 06:30:08'),
(7268, 1, '2024-08-11 02:35:06', '2024-08-11 02:35:06', 0, NULL, '2024-08-11 06:35:07', '2024-08-11 06:35:07'),
(7269, 2, '2024-08-11 02:40:05', '2024-08-11 02:40:05', 0, NULL, '2024-08-11 06:40:05', '2024-08-11 06:40:05'),
(7270, 3, '2024-08-11 02:40:06', '2024-08-11 02:40:06', 0, NULL, '2024-08-11 06:40:06', '2024-08-11 06:40:06'),
(7271, 5, '2024-08-11 02:40:07', '2024-08-11 02:40:07', 0, NULL, '2024-08-11 06:40:07', '2024-08-11 06:40:07'),
(7272, 1, '2024-08-11 02:45:05', '2024-08-11 02:45:05', 0, NULL, '2024-08-11 06:45:06', '2024-08-11 06:45:06'),
(7273, 2, '2024-08-11 02:50:05', '2024-08-11 02:50:05', 0, NULL, '2024-08-11 06:50:05', '2024-08-11 06:50:05'),
(7274, 3, '2024-08-11 02:50:05', '2024-08-11 02:50:05', 0, NULL, '2024-08-11 06:50:06', '2024-08-11 06:50:06'),
(7275, 5, '2024-08-11 02:50:06', '2024-08-11 02:50:06', 0, NULL, '2024-08-11 06:50:07', '2024-08-11 06:50:07'),
(7276, 1, '2024-08-11 02:55:04', '2024-08-11 02:55:04', 0, NULL, '2024-08-11 06:55:04', '2024-08-11 06:55:04'),
(7277, 1, '2024-08-11 03:00:05', '2024-08-11 03:00:05', 0, NULL, '2024-08-11 07:00:06', '2024-08-11 07:00:06'),
(7278, 2, '2024-08-11 03:00:07', '2024-08-11 03:00:07', 0, NULL, '2024-08-11 07:00:07', '2024-08-11 07:00:07'),
(7279, 3, '2024-08-11 03:00:07', '2024-08-11 03:00:07', 0, NULL, '2024-08-11 07:00:07', '2024-08-11 07:00:07'),
(7280, 5, '2024-08-11 03:00:08', '2024-08-11 03:00:08', 0, NULL, '2024-08-11 07:00:08', '2024-08-11 07:00:08'),
(7281, 1, '2024-08-11 03:05:07', '2024-08-11 03:05:07', 0, NULL, '2024-08-11 07:05:07', '2024-08-11 07:05:07'),
(7282, 2, '2024-08-11 03:10:03', '2024-08-11 03:10:03', 0, NULL, '2024-08-11 07:10:03', '2024-08-11 07:10:03'),
(7283, 3, '2024-08-11 03:10:04', '2024-08-11 03:10:04', 0, NULL, '2024-08-11 07:10:05', '2024-08-11 07:10:05'),
(7284, 5, '2024-08-11 03:10:05', '2024-08-11 03:10:05', 0, NULL, '2024-08-11 07:10:05', '2024-08-11 07:10:05'),
(7285, 1, '2024-08-11 03:15:09', '2024-08-11 03:15:09', 0, NULL, '2024-08-11 07:15:09', '2024-08-11 07:15:09'),
(7286, 2, '2024-08-11 03:15:10', '2024-08-11 03:15:10', 0, NULL, '2024-08-11 07:15:10', '2024-08-11 07:15:10'),
(7287, 3, '2024-08-11 03:15:10', '2024-08-11 03:15:10', 0, NULL, '2024-08-11 07:15:11', '2024-08-11 07:15:11'),
(7288, 5, '2024-08-11 03:15:11', '2024-08-11 03:15:11', 0, NULL, '2024-08-11 07:15:11', '2024-08-11 07:15:11'),
(7289, 1, '2024-08-11 03:25:05', '2024-08-11 03:25:05', 0, NULL, '2024-08-11 07:25:06', '2024-08-11 07:25:06'),
(7290, 2, '2024-08-11 03:25:06', '2024-08-11 03:25:06', 0, NULL, '2024-08-11 07:25:07', '2024-08-11 07:25:07'),
(7291, 3, '2024-08-11 03:25:07', '2024-08-11 03:25:07', 0, NULL, '2024-08-11 07:25:07', '2024-08-11 07:25:07'),
(7292, 5, '2024-08-11 03:25:07', '2024-08-11 03:25:07', 0, NULL, '2024-08-11 07:25:08', '2024-08-11 07:25:08'),
(7293, 1, '2024-08-11 03:30:06', '2024-08-11 03:30:06', 0, NULL, '2024-08-11 07:30:07', '2024-08-11 07:30:07'),
(7294, 1, '2024-08-11 03:35:08', '2024-08-11 03:35:09', 0, NULL, '2024-08-11 07:35:09', '2024-08-11 07:35:09'),
(7295, 2, '2024-08-11 03:35:09', '2024-08-11 03:35:09', 0, NULL, '2024-08-11 07:35:10', '2024-08-11 07:35:10'),
(7296, 3, '2024-08-11 03:35:10', '2024-08-11 03:35:10', 0, NULL, '2024-08-11 07:35:10', '2024-08-11 07:35:10'),
(7297, 5, '2024-08-11 03:35:10', '2024-08-11 03:35:10', 0, NULL, '2024-08-11 07:35:10', '2024-08-11 07:35:10'),
(7298, 1, '2024-08-11 03:45:06', '2024-08-11 03:45:06', 0, NULL, '2024-08-11 07:45:06', '2024-08-11 07:45:06'),
(7299, 2, '2024-08-11 03:45:07', '2024-08-11 03:45:07', 0, NULL, '2024-08-11 07:45:07', '2024-08-11 07:45:07'),
(7300, 3, '2024-08-11 03:45:07', '2024-08-11 03:45:07', 0, NULL, '2024-08-11 07:45:08', '2024-08-11 07:45:08'),
(7301, 5, '2024-08-11 03:45:08', '2024-08-11 03:45:08', 0, NULL, '2024-08-11 07:45:08', '2024-08-11 07:45:08'),
(7302, 1, '2024-08-11 03:55:07', '2024-08-11 03:55:07', 0, NULL, '2024-08-11 07:55:07', '2024-08-11 07:55:07'),
(7303, 2, '2024-08-11 03:55:11', '2024-08-11 03:55:11', 0, NULL, '2024-08-11 07:55:11', '2024-08-11 07:55:11'),
(7304, 3, '2024-08-11 03:55:11', '2024-08-11 03:55:11', 0, NULL, '2024-08-11 07:55:11', '2024-08-11 07:55:11'),
(7305, 5, '2024-08-11 03:55:11', '2024-08-11 03:55:11', 0, NULL, '2024-08-11 07:55:11', '2024-08-11 07:55:11'),
(7306, 1, '2024-08-11 04:05:06', '2024-08-11 04:05:06', 0, NULL, '2024-08-11 08:05:06', '2024-08-11 08:05:06'),
(7307, 2, '2024-08-11 04:05:07', '2024-08-11 04:05:07', 0, NULL, '2024-08-11 08:05:08', '2024-08-11 08:05:08'),
(7308, 3, '2024-08-11 04:05:08', '2024-08-11 04:05:08', 0, NULL, '2024-08-11 08:05:09', '2024-08-11 08:05:09'),
(7309, 5, '2024-08-11 04:05:09', '2024-08-11 04:05:09', 0, NULL, '2024-08-11 08:05:09', '2024-08-11 08:05:09'),
(7310, 1, '2024-08-11 04:15:06', '2024-08-11 04:15:06', 0, NULL, '2024-08-11 08:15:07', '2024-08-11 08:15:07'),
(7311, 2, '2024-08-11 04:15:07', '2024-08-11 04:15:07', 0, NULL, '2024-08-11 08:15:08', '2024-08-11 08:15:08'),
(7312, 3, '2024-08-11 04:15:08', '2024-08-11 04:15:08', 0, NULL, '2024-08-11 08:15:08', '2024-08-11 08:15:08'),
(7313, 5, '2024-08-11 04:15:09', '2024-08-11 04:15:09', 0, NULL, '2024-08-11 08:15:09', '2024-08-11 08:15:09'),
(7314, 1, '2024-08-11 04:25:05', '2024-08-11 04:25:06', 0, NULL, '2024-08-11 08:25:06', '2024-08-11 08:25:06'),
(7315, 2, '2024-08-11 04:25:07', '2024-08-11 04:25:07', 0, NULL, '2024-08-11 08:25:07', '2024-08-11 08:25:07'),
(7316, 3, '2024-08-11 04:25:07', '2024-08-11 04:25:07', 0, NULL, '2024-08-11 08:25:08', '2024-08-11 08:25:08'),
(7317, 5, '2024-08-11 04:25:09', '2024-08-11 04:25:09', 0, NULL, '2024-08-11 08:25:09', '2024-08-11 08:25:09'),
(7318, 1, '2024-08-11 04:30:08', '2024-08-11 04:30:08', 0, NULL, '2024-08-11 08:30:10', '2024-08-11 08:30:10'),
(7319, 2, '2024-08-11 04:35:05', '2024-08-11 04:35:05', 0, NULL, '2024-08-11 08:35:06', '2024-08-11 08:35:06'),
(7320, 3, '2024-08-11 04:35:06', '2024-08-11 04:35:06', 0, NULL, '2024-08-11 08:35:07', '2024-08-11 08:35:07'),
(7321, 5, '2024-08-11 04:35:07', '2024-08-11 04:35:07', 0, NULL, '2024-08-11 08:35:08', '2024-08-11 08:35:08'),
(7322, 1, '2024-08-11 04:40:07', '2024-08-11 04:40:07', 0, NULL, '2024-08-11 08:40:07', '2024-08-11 08:40:07'),
(7323, 2, '2024-08-11 04:40:08', '2024-08-11 04:40:08', 0, NULL, '2024-08-11 08:40:08', '2024-08-11 08:40:08'),
(7324, 3, '2024-08-11 04:40:09', '2024-08-11 04:40:09', 0, NULL, '2024-08-11 08:40:09', '2024-08-11 08:40:09'),
(7325, 5, '2024-08-11 04:45:02', '2024-08-11 04:45:02', 0, NULL, '2024-08-11 08:45:02', '2024-08-11 08:45:02'),
(7326, 1, '2024-08-11 04:50:07', '2024-08-11 04:50:07', 0, NULL, '2024-08-11 08:50:07', '2024-08-11 08:50:07'),
(7327, 2, '2024-08-11 04:50:08', '2024-08-11 04:50:08', 0, NULL, '2024-08-11 08:50:08', '2024-08-11 08:50:08'),
(7328, 3, '2024-08-11 04:50:08', '2024-08-11 04:50:08', 0, NULL, '2024-08-11 08:50:09', '2024-08-11 08:50:09'),
(7329, 5, '2024-08-11 04:50:09', '2024-08-11 04:50:09', 0, NULL, '2024-08-11 08:50:09', '2024-08-11 08:50:09'),
(7330, 1, '2024-08-11 05:00:05', '2024-08-11 05:00:05', 0, NULL, '2024-08-11 09:00:06', '2024-08-11 09:00:06'),
(7331, 2, '2024-08-11 05:00:06', '2024-08-11 05:00:06', 0, NULL, '2024-08-11 09:00:07', '2024-08-11 09:00:07'),
(7332, 3, '2024-08-11 05:00:07', '2024-08-11 05:00:07', 0, NULL, '2024-08-11 09:00:08', '2024-08-11 09:00:08'),
(7333, 5, '2024-08-11 05:00:09', '2024-08-11 05:00:09', 0, NULL, '2024-08-11 09:00:09', '2024-08-11 09:00:09'),
(7334, 1, '2024-08-11 05:10:07', '2024-08-11 05:10:07', 0, NULL, '2024-08-11 09:10:07', '2024-08-11 09:10:07'),
(7335, 2, '2024-08-11 05:10:07', '2024-08-11 05:10:07', 0, NULL, '2024-08-11 09:10:08', '2024-08-11 09:10:08'),
(7336, 3, '2024-08-11 05:10:08', '2024-08-11 05:10:08', 0, NULL, '2024-08-11 09:10:08', '2024-08-11 09:10:08'),
(7337, 5, '2024-08-11 05:10:08', '2024-08-11 05:10:08', 0, NULL, '2024-08-11 09:10:09', '2024-08-11 09:10:09'),
(7338, 1, '2024-08-11 05:20:05', '2024-08-11 05:20:05', 0, NULL, '2024-08-11 09:20:06', '2024-08-11 09:20:06'),
(7339, 2, '2024-08-11 05:20:07', '2024-08-11 05:20:07', 0, NULL, '2024-08-11 09:20:08', '2024-08-11 09:20:08'),
(7340, 3, '2024-08-11 05:20:08', '2024-08-11 05:20:08', 0, NULL, '2024-08-11 09:20:10', '2024-08-11 09:20:10'),
(7341, 5, '2024-08-11 05:20:10', '2024-08-11 05:20:10', 0, NULL, '2024-08-11 09:20:10', '2024-08-11 09:20:10'),
(7342, 1, '2024-08-11 05:25:07', '2024-08-11 05:25:07', 0, NULL, '2024-08-11 09:25:07', '2024-08-11 09:25:07'),
(7343, 2, '2024-08-11 05:30:06', '2024-08-11 05:30:06', 0, NULL, '2024-08-11 09:30:07', '2024-08-11 09:30:07'),
(7344, 3, '2024-08-11 05:30:11', '2024-08-11 05:30:11', 0, NULL, '2024-08-11 09:30:11', '2024-08-11 09:30:11'),
(7345, 5, '2024-08-11 05:30:12', '2024-08-11 05:30:12', 0, NULL, '2024-08-11 09:30:12', '2024-08-11 09:30:12'),
(7346, 1, '2024-08-11 05:35:05', '2024-08-11 05:35:05', 0, NULL, '2024-08-11 09:35:06', '2024-08-11 09:35:06'),
(7347, 2, '2024-08-11 05:40:04', '2024-08-11 05:40:04', 0, NULL, '2024-08-11 09:40:05', '2024-08-11 09:40:05'),
(7348, 3, '2024-08-11 05:40:05', '2024-08-11 05:40:05', 0, NULL, '2024-08-11 09:40:06', '2024-08-11 09:40:06'),
(7349, 5, '2024-08-11 05:40:06', '2024-08-11 05:40:06', 0, NULL, '2024-08-11 09:40:07', '2024-08-11 09:40:07'),
(7350, 1, '2024-08-11 05:45:02', '2024-08-11 05:45:02', 0, NULL, '2024-08-11 09:45:02', '2024-08-11 09:45:02'),
(7351, 1, '2024-08-11 05:50:10', '2024-08-11 05:50:11', 1, NULL, '2024-08-11 09:50:11', '2024-08-11 09:50:11'),
(7352, 2, '2024-08-11 05:50:12', '2024-08-11 05:50:12', 0, NULL, '2024-08-11 09:50:12', '2024-08-11 09:50:12'),
(7353, 3, '2024-08-11 05:50:12', '2024-08-11 05:50:12', 0, NULL, '2024-08-11 09:50:12', '2024-08-11 09:50:12'),
(7354, 5, '2024-08-11 05:50:12', '2024-08-11 05:50:12', 0, NULL, '2024-08-11 09:50:12', '2024-08-11 09:50:12'),
(7355, 1, '2024-08-11 06:00:06', '2024-08-11 06:00:06', 0, NULL, '2024-08-11 10:00:06', '2024-08-11 10:00:06'),
(7356, 2, '2024-08-11 06:00:07', '2024-08-11 06:00:07', 0, NULL, '2024-08-11 10:00:08', '2024-08-11 10:00:08'),
(7357, 3, '2024-08-11 06:00:08', '2024-08-11 06:00:08', 0, NULL, '2024-08-11 10:00:08', '2024-08-11 10:00:08'),
(7358, 5, '2024-08-11 06:00:09', '2024-08-11 06:00:09', 0, NULL, '2024-08-11 10:00:09', '2024-08-11 10:00:09'),
(7359, 1, '2024-08-11 06:10:03', '2024-08-11 06:10:03', 0, NULL, '2024-08-11 10:10:04', '2024-08-11 10:10:04'),
(7360, 2, '2024-08-11 06:10:05', '2024-08-11 06:10:05', 0, NULL, '2024-08-11 10:10:06', '2024-08-11 10:10:06'),
(7361, 3, '2024-08-11 06:10:06', '2024-08-11 06:10:06', 0, NULL, '2024-08-11 10:10:07', '2024-08-11 10:10:07'),
(7362, 5, '2024-08-11 06:10:07', '2024-08-11 06:10:07', 0, NULL, '2024-08-11 10:10:08', '2024-08-11 10:10:08'),
(7363, 1, '2024-08-11 06:15:05', '2024-08-11 06:15:05', 0, NULL, '2024-08-11 10:15:05', '2024-08-11 10:15:05'),
(7364, 2, '2024-08-11 06:20:03', '2024-08-11 06:20:03', 0, NULL, '2024-08-11 10:20:03', '2024-08-11 10:20:03'),
(7365, 3, '2024-08-11 06:20:04', '2024-08-11 06:20:04', 0, NULL, '2024-08-11 10:20:04', '2024-08-11 10:20:04'),
(7366, 5, '2024-08-11 06:20:04', '2024-08-11 06:20:04', 0, NULL, '2024-08-11 10:20:05', '2024-08-11 10:20:05'),
(7367, 1, '2024-08-11 06:25:03', '2024-08-11 06:25:03', 0, NULL, '2024-08-11 10:25:04', '2024-08-11 10:25:04'),
(7368, 1, '2024-08-11 06:30:07', '2024-08-11 06:30:07', 0, NULL, '2024-08-11 10:30:07', '2024-08-11 10:30:07'),
(7369, 2, '2024-08-11 06:30:08', '2024-08-11 06:30:08', 0, NULL, '2024-08-11 10:30:08', '2024-08-11 10:30:08'),
(7370, 3, '2024-08-11 06:30:08', '2024-08-11 06:30:08', 0, NULL, '2024-08-11 10:30:08', '2024-08-11 10:30:08'),
(7371, 5, '2024-08-11 06:30:08', '2024-08-11 06:30:08', 0, NULL, '2024-08-11 10:30:09', '2024-08-11 10:30:09'),
(7372, 1, '2024-08-11 06:35:08', '2024-08-11 06:35:08', 0, NULL, '2024-08-11 10:35:09', '2024-08-11 10:35:09'),
(7373, 2, '2024-08-11 06:40:08', '2024-08-11 06:40:08', 0, NULL, '2024-08-11 10:40:09', '2024-08-11 10:40:09'),
(7374, 3, '2024-08-11 06:40:09', '2024-08-11 06:40:09', 0, NULL, '2024-08-11 10:40:10', '2024-08-11 10:40:10'),
(7375, 5, '2024-08-11 06:40:10', '2024-08-11 06:40:10', 0, NULL, '2024-08-11 10:40:10', '2024-08-11 10:40:10'),
(7376, 1, '2024-08-11 06:45:06', '2024-08-11 06:45:06', 0, NULL, '2024-08-11 10:45:06', '2024-08-11 10:45:06'),
(7377, 2, '2024-08-11 06:50:06', '2024-08-11 06:50:06', 0, NULL, '2024-08-11 10:50:06', '2024-08-11 10:50:06'),
(7378, 3, '2024-08-11 06:50:07', '2024-08-11 06:50:07', 0, NULL, '2024-08-11 10:50:07', '2024-08-11 10:50:07'),
(7379, 5, '2024-08-11 06:50:07', '2024-08-11 06:50:07', 0, NULL, '2024-08-11 10:50:08', '2024-08-11 10:50:08'),
(7380, 1, '2024-08-11 06:55:05', '2024-08-11 06:55:05', 0, NULL, '2024-08-11 10:55:06', '2024-08-11 10:55:06'),
(7381, 1, '2024-08-11 07:00:10', '2024-08-11 07:00:10', 0, NULL, '2024-08-11 11:00:11', '2024-08-11 11:00:11'),
(7382, 2, '2024-08-11 07:00:11', '2024-08-11 07:00:11', 0, NULL, '2024-08-11 11:00:11', '2024-08-11 11:00:11'),
(7383, 3, '2024-08-11 07:00:11', '2024-08-11 07:00:11', 0, NULL, '2024-08-11 11:00:11', '2024-08-11 11:00:11'),
(7384, 5, '2024-08-11 07:00:12', '2024-08-11 07:00:12', 0, NULL, '2024-08-11 11:00:12', '2024-08-11 11:00:12'),
(7385, 1, '2024-08-11 07:10:07', '2024-08-11 07:10:07', 0, NULL, '2024-08-11 11:10:07', '2024-08-11 11:10:07'),
(7386, 2, '2024-08-11 07:10:07', '2024-08-11 07:10:07', 0, NULL, '2024-08-11 11:10:07', '2024-08-11 11:10:07'),
(7387, 3, '2024-08-11 07:10:08', '2024-08-11 07:10:08', 0, NULL, '2024-08-11 11:10:08', '2024-08-11 11:10:08'),
(7388, 5, '2024-08-11 07:10:08', '2024-08-11 07:10:08', 0, NULL, '2024-08-11 11:10:09', '2024-08-11 11:10:09'),
(7389, 1, '2024-08-11 07:20:07', '2024-08-11 07:20:07', 0, NULL, '2024-08-11 11:20:08', '2024-08-11 11:20:08'),
(7390, 2, '2024-08-11 07:20:08', '2024-08-11 07:20:08', 0, NULL, '2024-08-11 11:20:08', '2024-08-11 11:20:08'),
(7391, 3, '2024-08-11 07:20:08', '2024-08-11 07:20:08', 0, NULL, '2024-08-11 11:20:08', '2024-08-11 11:20:08'),
(7392, 5, '2024-08-11 07:20:09', '2024-08-11 07:20:09', 0, NULL, '2024-08-11 11:20:09', '2024-08-11 11:20:09'),
(7393, 1, '2024-08-11 07:30:03', '2024-08-11 07:30:03', 0, NULL, '2024-08-11 11:30:04', '2024-08-11 11:30:04'),
(7394, 2, '2024-08-11 07:30:08', '2024-08-11 07:30:08', 0, NULL, '2024-08-11 11:30:10', '2024-08-11 11:30:10'),
(7395, 3, '2024-08-11 07:30:10', '2024-08-11 07:30:10', 0, NULL, '2024-08-11 11:30:10', '2024-08-11 11:30:10'),
(7396, 5, '2024-08-11 07:30:10', '2024-08-11 07:30:10', 0, NULL, '2024-08-11 11:30:11', '2024-08-11 11:30:11'),
(7397, 1, '2024-08-11 07:35:06', '2024-08-11 07:35:06', 0, NULL, '2024-08-11 11:35:06', '2024-08-11 11:35:06'),
(7398, 2, '2024-08-11 07:40:05', '2024-08-11 07:40:05', 0, NULL, '2024-08-11 11:40:05', '2024-08-11 11:40:05'),
(7399, 3, '2024-08-11 07:40:06', '2024-08-11 07:40:06', 0, NULL, '2024-08-11 11:40:06', '2024-08-11 11:40:06'),
(7400, 5, '2024-08-11 07:40:06', '2024-08-11 07:40:06', 0, NULL, '2024-08-11 11:40:07', '2024-08-11 11:40:07'),
(7401, 1, '2024-08-11 07:45:07', '2024-08-11 07:45:07', 0, NULL, '2024-08-11 11:45:07', '2024-08-11 11:45:07'),
(7402, 2, '2024-08-11 07:45:08', '2024-08-11 07:45:08', 0, NULL, '2024-08-11 11:45:10', '2024-08-11 11:45:10'),
(7403, 3, '2024-08-11 07:45:10', '2024-08-11 07:45:10', 0, NULL, '2024-08-11 11:45:10', '2024-08-11 11:45:10'),
(7404, 5, '2024-08-11 07:45:11', '2024-08-11 07:45:11', 0, NULL, '2024-08-11 11:45:11', '2024-08-11 11:45:11'),
(7405, 1, '2024-08-11 07:55:03', '2024-08-11 07:55:03', 0, NULL, '2024-08-11 11:55:03', '2024-08-11 11:55:03'),
(7406, 2, '2024-08-11 07:55:03', '2024-08-11 07:55:03', 0, NULL, '2024-08-11 11:55:04', '2024-08-11 11:55:04'),
(7407, 3, '2024-08-11 07:55:04', '2024-08-11 07:55:04', 0, NULL, '2024-08-11 11:55:04', '2024-08-11 11:55:04'),
(7408, 5, '2024-08-11 07:55:04', '2024-08-11 07:55:04', 0, NULL, '2024-08-11 11:55:04', '2024-08-11 11:55:04'),
(7409, 1, '2024-08-11 08:00:08', '2024-08-11 08:00:08', 0, NULL, '2024-08-11 12:00:08', '2024-08-11 12:00:08'),
(7410, 2, '2024-08-11 08:00:08', '2024-08-11 08:00:08', 0, NULL, '2024-08-11 12:00:09', '2024-08-11 12:00:09'),
(7411, 3, '2024-08-11 08:00:09', '2024-08-11 08:00:09', 0, NULL, '2024-08-11 12:00:10', '2024-08-11 12:00:10'),
(7412, 5, '2024-08-11 08:00:10', '2024-08-11 08:00:10', 0, NULL, '2024-08-11 12:00:10', '2024-08-11 12:00:10'),
(7413, 1, '2024-08-11 08:10:04', '2024-08-11 08:10:04', 0, NULL, '2024-08-11 12:10:04', '2024-08-11 12:10:04'),
(7414, 2, '2024-08-11 08:10:04', '2024-08-11 08:10:04', 0, NULL, '2024-08-11 12:10:05', '2024-08-11 12:10:05'),
(7415, 3, '2024-08-11 08:10:05', '2024-08-11 08:10:05', 0, NULL, '2024-08-11 12:10:06', '2024-08-11 12:10:06'),
(7416, 5, '2024-08-11 08:10:06', '2024-08-11 08:10:06', 0, NULL, '2024-08-11 12:10:06', '2024-08-11 12:10:06'),
(7417, 1, '2024-08-11 08:15:08', '2024-08-11 08:15:09', 0, NULL, '2024-08-11 12:15:09', '2024-08-11 12:15:09'),
(7418, 2, '2024-08-11 08:15:09', '2024-08-11 08:15:09', 0, NULL, '2024-08-11 12:15:09', '2024-08-11 12:15:09'),
(7419, 3, '2024-08-11 08:15:10', '2024-08-11 08:15:10', 0, NULL, '2024-08-11 12:15:10', '2024-08-11 12:15:10'),
(7420, 5, '2024-08-11 08:15:10', '2024-08-11 08:15:10', 0, NULL, '2024-08-11 12:15:10', '2024-08-11 12:15:10'),
(7421, 1, '2024-08-11 08:25:03', '2024-08-11 08:25:03', 0, NULL, '2024-08-11 12:25:04', '2024-08-11 12:25:04'),
(7422, 2, '2024-08-11 08:25:04', '2024-08-11 08:25:04', 0, NULL, '2024-08-11 12:25:04', '2024-08-11 12:25:04'),
(7423, 3, '2024-08-11 08:25:04', '2024-08-11 08:25:04', 0, NULL, '2024-08-11 12:25:05', '2024-08-11 12:25:05'),
(7424, 5, '2024-08-11 08:25:05', '2024-08-11 08:25:05', 0, NULL, '2024-08-11 12:25:06', '2024-08-11 12:25:06'),
(7425, 1, '2024-08-11 08:30:06', '2024-08-11 08:30:06', 0, NULL, '2024-08-11 12:30:07', '2024-08-11 12:30:07'),
(7426, 2, '2024-08-11 08:30:07', '2024-08-11 08:30:07', 0, NULL, '2024-08-11 12:30:07', '2024-08-11 12:30:07'),
(7427, 3, '2024-08-11 08:30:08', '2024-08-11 08:30:08', 0, NULL, '2024-08-11 12:30:08', '2024-08-11 12:30:08'),
(7428, 5, '2024-08-11 08:30:08', '2024-08-11 08:30:08', 0, NULL, '2024-08-11 12:30:08', '2024-08-11 12:30:08'),
(7429, 1, '2024-08-11 08:40:07', '2024-08-11 08:40:08', 0, NULL, '2024-08-11 12:40:08', '2024-08-11 12:40:08'),
(7430, 2, '2024-08-11 08:40:08', '2024-08-11 08:40:08', 0, NULL, '2024-08-11 12:40:09', '2024-08-11 12:40:09'),
(7431, 3, '2024-08-11 08:40:09', '2024-08-11 08:40:09', 0, NULL, '2024-08-11 12:40:09', '2024-08-11 12:40:09'),
(7432, 5, '2024-08-11 08:40:10', '2024-08-11 08:40:10', 0, NULL, '2024-08-11 12:40:10', '2024-08-11 12:40:10'),
(7433, 1, '2024-08-11 08:50:08', '2024-08-11 08:50:09', 0, NULL, '2024-08-11 12:50:10', '2024-08-11 12:50:10'),
(7434, 2, '2024-08-11 08:50:10', '2024-08-11 08:50:10', 0, NULL, '2024-08-11 12:50:10', '2024-08-11 12:50:10'),
(7435, 3, '2024-08-11 08:50:11', '2024-08-11 08:50:11', 0, NULL, '2024-08-11 12:50:11', '2024-08-11 12:50:11'),
(7436, 5, '2024-08-11 08:50:11', '2024-08-11 08:50:11', 0, NULL, '2024-08-11 12:50:11', '2024-08-11 12:50:11'),
(7437, 1, '2024-08-11 09:00:08', '2024-08-11 09:00:08', 0, NULL, '2024-08-11 13:00:08', '2024-08-11 13:00:08'),
(7438, 2, '2024-08-11 09:00:09', '2024-08-11 09:00:09', 0, NULL, '2024-08-11 13:00:09', '2024-08-11 13:00:09'),
(7439, 3, '2024-08-11 09:00:10', '2024-08-11 09:00:10', 0, NULL, '2024-08-11 13:00:10', '2024-08-11 13:00:10'),
(7440, 5, '2024-08-11 09:00:10', '2024-08-11 09:00:10', 0, NULL, '2024-08-11 13:00:11', '2024-08-11 13:00:11'),
(7441, 1, '2024-08-11 09:10:04', '2024-08-11 09:10:04', 0, NULL, '2024-08-11 13:10:05', '2024-08-11 13:10:05'),
(7442, 2, '2024-08-11 09:10:05', '2024-08-11 09:10:05', 0, NULL, '2024-08-11 13:10:05', '2024-08-11 13:10:05'),
(7443, 3, '2024-08-11 09:10:06', '2024-08-11 09:10:06', 0, NULL, '2024-08-11 13:10:06', '2024-08-11 13:10:06'),
(7444, 5, '2024-08-11 09:10:06', '2024-08-11 09:10:06', 0, NULL, '2024-08-11 13:10:07', '2024-08-11 13:10:07'),
(7445, 1, '2024-08-11 09:15:06', '2024-08-11 09:15:06', 0, NULL, '2024-08-11 13:15:07', '2024-08-11 13:15:07'),
(7446, 2, '2024-08-11 09:15:07', '2024-08-11 09:15:07', 0, NULL, '2024-08-11 13:15:08', '2024-08-11 13:15:08'),
(7447, 1, '2024-08-11 09:20:07', '2024-08-11 09:20:08', 0, NULL, '2024-08-11 13:20:08', '2024-08-11 13:20:08'),
(7448, 3, '2024-08-11 09:20:08', '2024-08-11 09:20:08', 0, NULL, '2024-08-11 13:20:08', '2024-08-11 13:20:08'),
(7449, 5, '2024-08-11 09:20:09', '2024-08-11 09:20:09', 0, NULL, '2024-08-11 13:20:09', '2024-08-11 13:20:09'),
(7450, 2, '2024-08-11 09:25:04', '2024-08-11 09:25:04', 0, NULL, '2024-08-11 13:25:05', '2024-08-11 13:25:05'),
(7451, 1, '2024-08-11 09:30:04', '2024-08-11 09:30:04', 0, NULL, '2024-08-11 13:30:04', '2024-08-11 13:30:04'),
(7452, 3, '2024-08-11 09:30:05', '2024-08-11 09:30:05', 0, NULL, '2024-08-11 13:30:05', '2024-08-11 13:30:05'),
(7453, 5, '2024-08-11 09:30:05', '2024-08-11 09:30:05', 0, NULL, '2024-08-11 13:30:06', '2024-08-11 13:30:06'),
(7454, 2, '2024-08-11 09:35:03', '2024-08-11 09:35:03', 0, NULL, '2024-08-11 13:35:04', '2024-08-11 13:35:04'),
(7455, 1, '2024-08-11 09:40:03', '2024-08-11 09:40:03', 0, NULL, '2024-08-11 13:40:03', '2024-08-11 13:40:03'),
(7456, 3, '2024-08-11 09:40:04', '2024-08-11 09:40:04', 0, NULL, '2024-08-11 13:40:04', '2024-08-11 13:40:04'),
(7457, 5, '2024-08-11 09:40:05', '2024-08-11 09:40:05', 0, NULL, '2024-08-11 13:40:05', '2024-08-11 13:40:05'),
(7458, 1, '2024-08-11 09:45:07', '2024-08-11 09:45:07', 0, NULL, '2024-08-11 13:45:07', '2024-08-11 13:45:07'),
(7459, 2, '2024-08-11 09:45:07', '2024-08-11 09:45:07', 0, NULL, '2024-08-11 13:45:07', '2024-08-11 13:45:07'),
(7460, 3, '2024-08-11 09:45:08', '2024-08-11 09:45:08', 0, NULL, '2024-08-11 13:45:08', '2024-08-11 13:45:08'),
(7461, 5, '2024-08-11 09:45:08', '2024-08-11 09:45:08', 0, NULL, '2024-08-11 13:45:08', '2024-08-11 13:45:08'),
(7462, 1, '2024-08-11 09:55:03', '2024-08-11 09:55:03', 0, NULL, '2024-08-11 13:55:04', '2024-08-11 13:55:04'),
(7463, 2, '2024-08-11 09:55:04', '2024-08-11 09:55:04', 0, NULL, '2024-08-11 13:55:04', '2024-08-11 13:55:04'),
(7464, 3, '2024-08-11 09:55:05', '2024-08-11 09:55:05', 0, NULL, '2024-08-11 13:55:05', '2024-08-11 13:55:05'),
(7465, 5, '2024-08-11 09:55:05', '2024-08-11 09:55:05', 0, NULL, '2024-08-11 13:55:06', '2024-08-11 13:55:06'),
(7466, 1, '2024-08-11 10:00:13', '2024-08-11 10:00:13', 0, NULL, '2024-08-11 14:00:14', '2024-08-11 14:00:14'),
(7467, 2, '2024-08-11 10:00:14', '2024-08-11 10:00:14', 0, NULL, '2024-08-11 14:00:14', '2024-08-11 14:00:14'),
(7468, 3, '2024-08-11 10:00:14', '2024-08-11 10:00:14', 0, NULL, '2024-08-11 14:00:15', '2024-08-11 14:00:15'),
(7469, 5, '2024-08-11 10:00:15', '2024-08-11 10:00:15', 0, NULL, '2024-08-11 14:00:15', '2024-08-11 14:00:15'),
(7470, 1, '2024-08-11 10:10:03', '2024-08-11 10:10:03', 0, NULL, '2024-08-11 14:10:03', '2024-08-11 14:10:03'),
(7471, 2, '2024-08-11 10:10:03', '2024-08-11 10:10:03', 0, NULL, '2024-08-11 14:10:04', '2024-08-11 14:10:04'),
(7472, 3, '2024-08-11 10:10:04', '2024-08-11 10:10:04', 0, NULL, '2024-08-11 14:10:05', '2024-08-11 14:10:05'),
(7473, 5, '2024-08-11 10:10:05', '2024-08-11 10:10:05', 0, NULL, '2024-08-11 14:10:06', '2024-08-11 14:10:06'),
(7474, 1, '2024-08-11 10:15:06', '2024-08-11 10:15:06', 0, NULL, '2024-08-11 14:15:07', '2024-08-11 14:15:07'),
(7475, 2, '2024-08-11 10:15:07', '2024-08-11 10:15:07', 0, NULL, '2024-08-11 14:15:07', '2024-08-11 14:15:07'),
(7476, 3, '2024-08-11 10:15:08', '2024-08-11 10:15:08', 0, NULL, '2024-08-11 14:15:08', '2024-08-11 14:15:08'),
(7477, 5, '2024-08-11 10:15:11', '2024-08-11 10:15:11', 0, NULL, '2024-08-11 14:15:11', '2024-08-11 14:15:11'),
(7478, 1, '2024-08-11 10:20:07', '2024-08-11 10:20:07', 0, NULL, '2024-08-11 14:20:08', '2024-08-11 14:20:08'),
(7479, 2, '2024-08-11 10:25:07', '2024-08-11 10:25:07', 0, NULL, '2024-08-11 14:25:07', '2024-08-11 14:25:07'),
(7480, 3, '2024-08-11 10:25:07', '2024-08-11 10:25:07', 0, NULL, '2024-08-11 14:25:08', '2024-08-11 14:25:08'),
(7481, 5, '2024-08-11 10:25:08', '2024-08-11 10:25:08', 0, NULL, '2024-08-11 14:25:09', '2024-08-11 14:25:09'),
(7482, 1, '2024-08-11 10:30:09', '2024-08-11 10:30:09', 0, NULL, '2024-08-11 14:30:09', '2024-08-11 14:30:09'),
(7483, 2, '2024-08-11 10:30:10', '2024-08-11 10:30:10', 0, NULL, '2024-08-11 14:30:10', '2024-08-11 14:30:10'),
(7484, 3, '2024-08-11 10:30:10', '2024-08-11 10:30:10', 0, NULL, '2024-08-11 14:30:11', '2024-08-11 14:30:11'),
(7485, 5, '2024-08-11 10:30:11', '2024-08-11 10:30:11', 0, NULL, '2024-08-11 14:30:11', '2024-08-11 14:30:11'),
(7486, 1, '2024-08-11 10:40:08', '2024-08-11 10:40:09', 0, NULL, '2024-08-11 14:40:09', '2024-08-11 14:40:09'),
(7487, 2, '2024-08-11 10:40:09', '2024-08-11 10:40:09', 0, NULL, '2024-08-11 14:40:09', '2024-08-11 14:40:09'),
(7488, 3, '2024-08-11 10:40:10', '2024-08-11 10:40:10', 0, NULL, '2024-08-11 14:40:10', '2024-08-11 14:40:10'),
(7489, 5, '2024-08-11 10:40:10', '2024-08-11 10:40:10', 0, NULL, '2024-08-11 14:40:11', '2024-08-11 14:40:11'),
(7490, 1, '2024-08-11 10:50:06', '2024-08-11 10:50:06', 0, NULL, '2024-08-11 14:50:06', '2024-08-11 14:50:06'),
(7491, 2, '2024-08-11 10:50:07', '2024-08-11 10:50:07', 0, NULL, '2024-08-11 14:50:07', '2024-08-11 14:50:07'),
(7492, 3, '2024-08-11 10:50:07', '2024-08-11 10:50:07', 0, NULL, '2024-08-11 14:50:07', '2024-08-11 14:50:07'),
(7493, 5, '2024-08-11 10:50:08', '2024-08-11 10:50:08', 0, NULL, '2024-08-11 14:50:08', '2024-08-11 14:50:08'),
(7494, 1, '2024-08-11 11:00:06', '2024-08-11 11:00:06', 0, NULL, '2024-08-11 15:00:06', '2024-08-11 15:00:06'),
(7495, 2, '2024-08-11 11:00:06', '2024-08-11 11:00:06', 0, NULL, '2024-08-11 15:00:07', '2024-08-11 15:00:07'),
(7496, 3, '2024-08-11 11:00:07', '2024-08-11 11:00:07', 0, NULL, '2024-08-11 15:00:08', '2024-08-11 15:00:08'),
(7497, 5, '2024-08-11 11:00:08', '2024-08-11 11:00:08', 0, NULL, '2024-08-11 15:00:08', '2024-08-11 15:00:08'),
(7498, 1, '2024-08-11 11:10:03', '2024-08-11 11:10:03', 0, NULL, '2024-08-11 15:10:04', '2024-08-11 15:10:04'),
(7499, 2, '2024-08-11 11:10:04', '2024-08-11 11:10:04', 0, NULL, '2024-08-11 15:10:05', '2024-08-11 15:10:05'),
(7500, 3, '2024-08-11 11:10:06', '2024-08-11 11:10:06', 0, NULL, '2024-08-11 15:10:06', '2024-08-11 15:10:06'),
(7501, 5, '2024-08-11 11:10:06', '2024-08-11 11:10:06', 0, NULL, '2024-08-11 15:10:07', '2024-08-11 15:10:07'),
(7502, 1, '2024-08-11 11:15:04', '2024-08-11 11:15:04', 0, NULL, '2024-08-11 15:15:04', '2024-08-11 15:15:04'),
(7503, 1, '2024-08-11 11:20:09', '2024-08-11 11:20:09', 0, NULL, '2024-08-11 15:20:09', '2024-08-11 15:20:09'),
(7504, 2, '2024-08-11 11:20:10', '2024-08-11 11:20:10', 0, NULL, '2024-08-11 15:20:10', '2024-08-11 15:20:10'),
(7505, 3, '2024-08-11 11:20:10', '2024-08-11 11:20:10', 0, NULL, '2024-08-11 15:20:11', '2024-08-11 15:20:11'),
(7506, 5, '2024-08-11 11:20:11', '2024-08-11 11:20:11', 0, NULL, '2024-08-11 15:20:11', '2024-08-11 15:20:11'),
(7507, 1, '2024-08-11 11:30:06', '2024-08-11 11:30:06', 0, NULL, '2024-08-11 15:30:07', '2024-08-11 15:30:07'),
(7508, 2, '2024-08-11 11:30:08', '2024-08-11 11:30:08', 0, NULL, '2024-08-11 15:30:08', '2024-08-11 15:30:08'),
(7509, 3, '2024-08-11 11:30:08', '2024-08-11 11:30:08', 0, NULL, '2024-08-11 15:30:08', '2024-08-11 15:30:08'),
(7510, 5, '2024-08-11 11:30:09', '2024-08-11 11:30:09', 0, NULL, '2024-08-11 15:30:09', '2024-08-11 15:30:09'),
(7511, 1, '2024-08-11 11:35:07', '2024-08-11 11:35:08', 0, NULL, '2024-08-11 15:35:08', '2024-08-11 15:35:08'),
(7512, 2, '2024-08-11 11:40:06', '2024-08-11 11:40:06', 0, NULL, '2024-08-11 15:40:06', '2024-08-11 15:40:06'),
(7513, 3, '2024-08-11 11:40:07', '2024-08-11 11:40:07', 0, NULL, '2024-08-11 15:40:07', '2024-08-11 15:40:07'),
(7514, 5, '2024-08-11 11:40:08', '2024-08-11 11:40:08', 0, NULL, '2024-08-11 15:40:08', '2024-08-11 15:40:08'),
(7515, 1, '2024-08-11 11:45:09', '2024-08-11 11:45:09', 0, NULL, '2024-08-11 15:45:09', '2024-08-11 15:45:09'),
(7516, 2, '2024-08-11 11:45:09', '2024-08-11 11:45:09', 0, NULL, '2024-08-11 15:45:10', '2024-08-11 15:45:10'),
(7517, 3, '2024-08-11 11:45:10', '2024-08-11 11:45:10', 0, NULL, '2024-08-11 15:45:10', '2024-08-11 15:45:10'),
(7518, 5, '2024-08-11 11:45:10', '2024-08-11 11:45:10', 0, NULL, '2024-08-11 15:45:10', '2024-08-11 15:45:10'),
(7519, 1, '2024-08-11 11:55:08', '2024-08-11 11:55:09', 0, NULL, '2024-08-11 15:55:09', '2024-08-11 15:55:09'),
(7520, 2, '2024-08-11 11:55:09', '2024-08-11 11:55:09', 0, NULL, '2024-08-11 15:55:09', '2024-08-11 15:55:09'),
(7521, 3, '2024-08-11 11:55:09', '2024-08-11 11:55:09', 0, NULL, '2024-08-11 15:55:10', '2024-08-11 15:55:10'),
(7522, 5, '2024-08-11 11:55:10', '2024-08-11 11:55:10', 0, NULL, '2024-08-11 15:55:10', '2024-08-11 15:55:10'),
(7523, 1, '2024-08-11 12:00:12', '2024-08-11 12:00:12', 0, NULL, '2024-08-11 16:00:12', '2024-08-11 16:00:12'),
(7524, 2, '2024-08-11 12:00:13', '2024-08-11 12:00:13', 0, NULL, '2024-08-11 16:00:13', '2024-08-11 16:00:13'),
(7525, 3, '2024-08-11 12:00:13', '2024-08-11 12:00:13', 0, NULL, '2024-08-11 16:00:14', '2024-08-11 16:00:14'),
(7526, 5, '2024-08-11 12:00:14', '2024-08-11 12:00:14', 0, NULL, '2024-08-11 16:00:14', '2024-08-11 16:00:14'),
(7527, 1, '2024-08-11 12:10:04', '2024-08-11 12:10:04', 0, NULL, '2024-08-11 16:10:04', '2024-08-11 16:10:04'),
(7528, 2, '2024-08-11 12:10:05', '2024-08-11 12:10:05', 0, NULL, '2024-08-11 16:10:05', '2024-08-11 16:10:05'),
(7529, 3, '2024-08-11 12:10:06', '2024-08-11 12:10:06', 0, NULL, '2024-08-11 16:10:06', '2024-08-11 16:10:06'),
(7530, 5, '2024-08-11 12:10:07', '2024-08-11 12:10:07', 0, NULL, '2024-08-11 16:10:07', '2024-08-11 16:10:07'),
(7531, 1, '2024-08-11 12:20:06', '2024-08-11 12:20:07', 0, NULL, '2024-08-11 16:20:07', '2024-08-11 16:20:07'),
(7532, 2, '2024-08-11 12:20:07', '2024-08-11 12:20:07', 0, NULL, '2024-08-11 16:20:08', '2024-08-11 16:20:08'),
(7533, 3, '2024-08-11 12:20:08', '2024-08-11 12:20:08', 0, NULL, '2024-08-11 16:20:08', '2024-08-11 16:20:08'),
(7534, 5, '2024-08-11 12:20:08', '2024-08-11 12:20:08', 0, NULL, '2024-08-11 16:20:08', '2024-08-11 16:20:08'),
(7535, 1, '2024-08-11 12:30:08', '2024-08-11 12:30:08', 0, NULL, '2024-08-11 16:30:09', '2024-08-11 16:30:09'),
(7536, 2, '2024-08-11 12:30:09', '2024-08-11 12:30:09', 0, NULL, '2024-08-11 16:30:09', '2024-08-11 16:30:09'),
(7537, 3, '2024-08-11 12:30:10', '2024-08-11 12:30:10', 0, NULL, '2024-08-11 16:30:10', '2024-08-11 16:30:10'),
(7538, 5, '2024-08-11 12:30:10', '2024-08-11 12:30:10', 0, NULL, '2024-08-11 16:30:10', '2024-08-11 16:30:10'),
(7539, 1, '2024-08-11 12:40:06', '2024-08-11 12:40:06', 0, NULL, '2024-08-11 16:40:06', '2024-08-11 16:40:06'),
(7540, 2, '2024-08-11 12:40:06', '2024-08-11 12:40:06', 0, NULL, '2024-08-11 16:40:07', '2024-08-11 16:40:07'),
(7541, 3, '2024-08-11 12:40:07', '2024-08-11 12:40:07', 0, NULL, '2024-08-11 16:40:08', '2024-08-11 16:40:08'),
(7542, 5, '2024-08-11 12:40:08', '2024-08-11 12:40:08', 0, NULL, '2024-08-11 16:40:08', '2024-08-11 16:40:08'),
(7543, 1, '2024-08-11 12:45:08', '2024-08-11 12:45:08', 0, NULL, '2024-08-11 16:45:08', '2024-08-11 16:45:08'),
(7544, 2, '2024-08-11 12:45:08', '2024-08-11 12:45:08', 0, NULL, '2024-08-11 16:45:09', '2024-08-11 16:45:09'),
(7545, 3, '2024-08-11 12:50:05', '2024-08-11 12:50:06', 0, NULL, '2024-08-11 16:50:06', '2024-08-11 16:50:06'),
(7546, 5, '2024-08-11 12:50:06', '2024-08-11 12:50:06', 0, NULL, '2024-08-11 16:50:06', '2024-08-11 16:50:06'),
(7547, 1, '2024-08-11 12:55:08', '2024-08-11 12:55:08', 0, NULL, '2024-08-11 16:55:08', '2024-08-11 16:55:08'),
(7548, 2, '2024-08-11 12:55:08', '2024-08-11 12:55:08', 0, NULL, '2024-08-11 16:55:09', '2024-08-11 16:55:09'),
(7549, 3, '2024-08-11 12:55:09', '2024-08-11 12:55:09', 0, NULL, '2024-08-11 16:55:09', '2024-08-11 16:55:09'),
(7550, 5, '2024-08-11 12:55:09', '2024-08-11 12:55:09', 0, NULL, '2024-08-11 16:55:09', '2024-08-11 16:55:09'),
(7551, 1, '2024-08-11 13:00:11', '2024-08-11 13:00:11', 0, NULL, '2024-08-11 17:00:11', '2024-08-11 17:00:11'),
(7552, 2, '2024-08-11 13:00:12', '2024-08-11 13:00:12', 0, NULL, '2024-08-11 17:00:12', '2024-08-11 17:00:12'),
(7553, 3, '2024-08-11 13:00:12', '2024-08-11 13:00:12', 0, NULL, '2024-08-11 17:00:12', '2024-08-11 17:00:12'),
(7554, 5, '2024-08-11 13:00:12', '2024-08-11 13:00:12', 0, NULL, '2024-08-11 17:00:13', '2024-08-11 17:00:13'),
(7555, 1, '2024-08-11 13:10:08', '2024-08-11 13:10:08', 0, NULL, '2024-08-11 17:10:09', '2024-08-11 17:10:09'),
(7556, 2, '2024-08-11 13:10:09', '2024-08-11 13:10:09', 0, NULL, '2024-08-11 17:10:09', '2024-08-11 17:10:09'),
(7557, 3, '2024-08-11 13:10:10', '2024-08-11 13:10:10', 0, NULL, '2024-08-11 17:10:10', '2024-08-11 17:10:10'),
(7558, 5, '2024-08-11 13:10:10', '2024-08-11 13:10:10', 0, NULL, '2024-08-11 17:10:10', '2024-08-11 17:10:10'),
(7559, 1, '2024-08-11 13:20:05', '2024-08-11 13:20:05', 0, NULL, '2024-08-11 17:20:05', '2024-08-11 17:20:05'),
(7560, 2, '2024-08-11 13:20:06', '2024-08-11 13:20:06', 0, NULL, '2024-08-11 17:20:06', '2024-08-11 17:20:06'),
(7561, 3, '2024-08-11 13:20:06', '2024-08-11 13:20:06', 0, NULL, '2024-08-11 17:20:07', '2024-08-11 17:20:07'),
(7562, 5, '2024-08-11 13:20:07', '2024-08-11 13:20:07', 0, NULL, '2024-08-11 17:20:07', '2024-08-11 17:20:07'),
(7563, 1, '2024-08-11 13:25:07', '2024-08-11 13:25:07', 0, NULL, '2024-08-11 17:25:08', '2024-08-11 17:25:08'),
(7564, 2, '2024-08-11 13:25:08', '2024-08-11 13:25:08', 0, NULL, '2024-08-11 17:25:08', '2024-08-11 17:25:08'),
(7565, 3, '2024-08-11 13:25:09', '2024-08-11 13:25:09', 0, NULL, '2024-08-11 17:25:09', '2024-08-11 17:25:09'),
(7566, 5, '2024-08-11 13:30:07', '2024-08-11 13:30:08', 0, NULL, '2024-08-11 17:30:08', '2024-08-11 17:30:08'),
(7567, 1, '2024-08-11 13:35:08', '2024-08-11 13:35:09', 0, NULL, '2024-08-11 17:35:09', '2024-08-11 17:35:09'),
(7568, 2, '2024-08-11 13:35:09', '2024-08-11 13:35:09', 0, NULL, '2024-08-11 17:35:10', '2024-08-11 17:35:10'),
(7569, 3, '2024-08-11 13:35:10', '2024-08-11 13:35:10', 0, NULL, '2024-08-11 17:35:10', '2024-08-11 17:35:10'),
(7570, 5, '2024-08-11 13:40:08', '2024-08-11 13:40:08', 0, NULL, '2024-08-11 17:40:08', '2024-08-11 17:40:08'),
(7571, 1, '2024-08-11 13:45:07', '2024-08-11 13:45:07', 0, NULL, '2024-08-11 17:45:09', '2024-08-11 17:45:09'),
(7572, 2, '2024-08-11 13:45:12', '2024-08-11 13:45:12', 0, NULL, '2024-08-11 17:45:12', '2024-08-11 17:45:12'),
(7573, 3, '2024-08-11 13:45:12', '2024-08-11 13:45:12', 0, NULL, '2024-08-11 17:45:13', '2024-08-11 17:45:13'),
(7574, 5, '2024-08-11 13:50:07', '2024-08-11 13:50:07', 0, NULL, '2024-08-11 17:50:07', '2024-08-11 17:50:07'),
(7575, 1, '2024-08-11 13:55:07', '2024-08-11 13:55:07', 0, NULL, '2024-08-11 17:55:08', '2024-08-11 17:55:08'),
(7576, 2, '2024-08-11 13:55:08', '2024-08-11 13:55:08', 0, NULL, '2024-08-11 17:55:08', '2024-08-11 17:55:08'),
(7577, 3, '2024-08-11 13:55:09', '2024-08-11 13:55:09', 0, NULL, '2024-08-11 17:55:09', '2024-08-11 17:55:09'),
(7578, 1, '2024-08-11 14:00:09', '2024-08-11 14:00:09', 0, NULL, '2024-08-11 18:00:09', '2024-08-11 18:00:09'),
(7579, 2, '2024-08-11 14:00:10', '2024-08-11 14:00:10', 0, NULL, '2024-08-11 18:00:11', '2024-08-11 18:00:11'),
(7580, 5, '2024-08-11 14:00:12', '2024-08-11 14:00:12', 0, NULL, '2024-08-11 18:00:13', '2024-08-11 18:00:13'),
(7581, 3, '2024-08-11 14:05:06', '2024-08-11 14:05:06', 0, NULL, '2024-08-11 18:05:07', '2024-08-11 18:05:07'),
(7582, 1, '2024-08-11 14:10:08', '2024-08-11 14:10:08', 0, NULL, '2024-08-11 18:10:11', '2024-08-11 18:10:11'),
(7583, 2, '2024-08-11 14:10:12', '2024-08-11 14:10:12', 0, NULL, '2024-08-11 18:10:12', '2024-08-11 18:10:12'),
(7584, 3, '2024-08-11 14:10:12', '2024-08-11 14:10:12', 0, NULL, '2024-08-11 18:10:12', '2024-08-11 18:10:12'),
(7585, 5, '2024-08-11 14:10:13', '2024-08-11 14:10:13', 0, NULL, '2024-08-11 18:10:13', '2024-08-11 18:10:13'),
(7586, 1, '2024-08-11 14:20:07', '2024-08-11 14:20:08', 0, NULL, '2024-08-11 18:20:08', '2024-08-11 18:20:08'),
(7587, 2, '2024-08-11 14:20:09', '2024-08-11 14:20:09', 0, NULL, '2024-08-11 18:20:09', '2024-08-11 18:20:09'),
(7588, 3, '2024-08-11 14:20:09', '2024-08-11 14:20:09', 0, NULL, '2024-08-11 18:20:10', '2024-08-11 18:20:10'),
(7589, 5, '2024-08-11 14:20:10', '2024-08-11 14:20:10', 0, NULL, '2024-08-11 18:20:11', '2024-08-11 18:20:11'),
(7590, 1, '2024-08-11 14:30:07', '2024-08-11 14:30:07', 0, NULL, '2024-08-11 18:30:07', '2024-08-11 18:30:07'),
(7591, 2, '2024-08-11 14:30:08', '2024-08-11 14:30:08', 0, NULL, '2024-08-11 18:30:08', '2024-08-11 18:30:08'),
(7592, 3, '2024-08-11 14:30:09', '2024-08-11 14:30:09', 0, NULL, '2024-08-11 18:30:09', '2024-08-11 18:30:09'),
(7593, 5, '2024-08-11 14:30:10', '2024-08-11 14:30:10', 0, NULL, '2024-08-11 18:30:10', '2024-08-11 18:30:10'),
(7594, 1, '2024-08-11 14:40:05', '2024-08-11 14:40:05', 0, NULL, '2024-08-11 18:40:06', '2024-08-11 18:40:06'),
(7595, 2, '2024-08-11 14:40:06', '2024-08-11 14:40:06', 0, NULL, '2024-08-11 18:40:07', '2024-08-11 18:40:07'),
(7596, 3, '2024-08-11 14:40:07', '2024-08-11 14:40:07', 0, NULL, '2024-08-11 18:40:08', '2024-08-11 18:40:08'),
(7597, 5, '2024-08-11 14:40:08', '2024-08-11 14:40:08', 0, NULL, '2024-08-11 18:40:09', '2024-08-11 18:40:09'),
(7598, 1, '2024-08-11 14:45:07', '2024-08-11 14:45:07', 0, NULL, '2024-08-11 18:45:08', '2024-08-11 18:45:08'),
(7599, 2, '2024-08-11 14:45:08', '2024-08-11 14:45:08', 0, NULL, '2024-08-11 18:45:09', '2024-08-11 18:45:09'),
(7600, 1, '2024-08-11 14:50:08', '2024-08-11 14:50:08', 0, NULL, '2024-08-11 18:50:08', '2024-08-11 18:50:08'),
(7601, 3, '2024-08-11 14:50:09', '2024-08-11 14:50:09', 0, NULL, '2024-08-11 18:50:09', '2024-08-11 18:50:09'),
(7602, 5, '2024-08-11 14:50:09', '2024-08-11 14:50:10', 0, NULL, '2024-08-11 18:50:10', '2024-08-11 18:50:10'),
(7603, 2, '2024-08-11 14:55:08', '2024-08-11 14:55:09', 0, NULL, '2024-08-11 18:55:09', '2024-08-11 18:55:09'),
(7604, 1, '2024-08-11 15:00:08', '2024-08-11 15:00:08', 0, NULL, '2024-08-11 19:00:09', '2024-08-11 19:00:09'),
(7605, 3, '2024-08-11 15:00:10', '2024-08-11 15:00:10', 0, NULL, '2024-08-11 19:00:10', '2024-08-11 19:00:10'),
(7606, 5, '2024-08-11 15:00:10', '2024-08-11 15:00:10', 0, NULL, '2024-08-11 19:00:11', '2024-08-11 19:00:11'),
(7607, 2, '2024-08-11 15:05:08', '2024-08-11 15:05:08', 0, NULL, '2024-08-11 19:05:09', '2024-08-11 19:05:09'),
(7608, 1, '2024-08-11 15:10:07', '2024-08-11 15:10:07', 0, NULL, '2024-08-11 19:10:07', '2024-08-11 19:10:07'),
(7609, 3, '2024-08-11 15:10:08', '2024-08-11 15:10:08', 0, NULL, '2024-08-11 19:10:08', '2024-08-11 19:10:08'),
(7610, 5, '2024-08-11 15:10:09', '2024-08-11 15:10:09', 0, NULL, '2024-08-11 19:10:09', '2024-08-11 19:10:09'),
(7611, 2, '2024-08-11 15:15:07', '2024-08-11 15:15:07', 0, NULL, '2024-08-11 19:15:07', '2024-08-11 19:15:07'),
(7612, 1, '2024-08-11 15:20:08', '2024-08-11 15:20:09', 0, NULL, '2024-08-11 19:20:10', '2024-08-11 19:20:10'),
(7613, 2, '2024-08-11 15:20:10', '2024-08-11 15:20:10', 0, NULL, '2024-08-11 19:20:10', '2024-08-11 19:20:10'),
(7614, 3, '2024-08-11 15:20:11', '2024-08-11 15:20:11', 0, NULL, '2024-08-11 19:20:11', '2024-08-11 19:20:11'),
(7615, 5, '2024-08-11 15:20:11', '2024-08-11 15:20:11', 0, NULL, '2024-08-11 19:20:11', '2024-08-11 19:20:11'),
(7616, 1, '2024-08-11 15:30:11', '2024-08-11 15:30:12', 0, NULL, '2024-08-11 19:30:14', '2024-08-11 19:30:14'),
(7617, 2, '2024-08-11 15:30:15', '2024-08-11 15:30:15', 0, NULL, '2024-08-11 19:30:16', '2024-08-11 19:30:16'),
(7618, 3, '2024-08-11 15:30:16', '2024-08-11 15:30:16', 0, NULL, '2024-08-11 19:30:17', '2024-08-11 19:30:17'),
(7619, 5, '2024-08-11 15:30:17', '2024-08-11 15:30:17', 0, NULL, '2024-08-11 19:30:17', '2024-08-11 19:30:17'),
(7620, 1, '2024-08-11 15:40:14', '2024-08-11 15:40:14', 0, NULL, '2024-08-11 19:40:15', '2024-08-11 19:40:15'),
(7621, 2, '2024-08-11 15:40:15', '2024-08-11 15:40:15', 0, NULL, '2024-08-11 19:40:15', '2024-08-11 19:40:15'),
(7622, 3, '2024-08-11 15:40:15', '2024-08-11 15:40:15', 0, NULL, '2024-08-11 19:40:16', '2024-08-11 19:40:16'),
(7623, 5, '2024-08-11 15:40:16', '2024-08-11 15:40:16', 0, NULL, '2024-08-11 19:40:16', '2024-08-11 19:40:16'),
(7624, 1, '2024-08-11 15:50:13', '2024-08-11 15:50:13', 0, NULL, '2024-08-11 19:50:13', '2024-08-11 19:50:13'),
(7625, 2, '2024-08-11 15:50:13', '2024-08-11 15:50:13', 0, NULL, '2024-08-11 19:50:14', '2024-08-11 19:50:14'),
(7626, 3, '2024-08-11 15:50:14', '2024-08-11 15:50:14', 0, NULL, '2024-08-11 19:50:14', '2024-08-11 19:50:14'),
(7627, 5, '2024-08-11 15:50:14', '2024-08-11 15:50:14', 0, NULL, '2024-08-11 19:50:15', '2024-08-11 19:50:15'),
(7628, 1, '2024-08-11 16:00:08', '2024-08-11 16:00:08', 0, NULL, '2024-08-11 20:00:08', '2024-08-11 20:00:08'),
(7629, 2, '2024-08-11 16:00:09', '2024-08-11 16:00:09', 0, NULL, '2024-08-11 20:00:10', '2024-08-11 20:00:10'),
(7630, 3, '2024-08-11 16:00:10', '2024-08-11 16:00:10', 0, NULL, '2024-08-11 20:00:11', '2024-08-11 20:00:11'),
(7631, 5, '2024-08-11 16:00:11', '2024-08-11 16:00:11', 0, NULL, '2024-08-11 20:00:12', '2024-08-11 20:00:12'),
(7632, 1, '2024-08-11 16:10:05', '2024-08-11 16:10:05', 0, NULL, '2024-08-11 20:10:05', '2024-08-11 20:10:05'),
(7633, 2, '2024-08-11 16:10:06', '2024-08-11 16:10:06', 0, NULL, '2024-08-11 20:10:06', '2024-08-11 20:10:06'),
(7634, 3, '2024-08-11 16:10:07', '2024-08-11 16:10:07', 0, NULL, '2024-08-11 20:10:07', '2024-08-11 20:10:07'),
(7635, 5, '2024-08-11 16:10:07', '2024-08-11 16:10:07', 0, NULL, '2024-08-11 20:10:08', '2024-08-11 20:10:08'),
(7636, 1, '2024-08-11 16:15:09', '2024-08-11 16:15:09', 0, NULL, '2024-08-11 20:15:09', '2024-08-11 20:15:09'),
(7637, 2, '2024-08-11 16:15:09', '2024-08-11 16:15:09', 0, NULL, '2024-08-11 20:15:10', '2024-08-11 20:15:10'),
(7638, 3, '2024-08-11 16:15:10', '2024-08-11 16:15:10', 0, NULL, '2024-08-11 20:15:10', '2024-08-11 20:15:10'),
(7639, 5, '2024-08-11 16:15:10', '2024-08-11 16:15:10', 0, NULL, '2024-08-11 20:15:10', '2024-08-11 20:15:10'),
(7640, 1, '2024-08-11 16:25:06', '2024-08-11 16:25:06', 0, NULL, '2024-08-11 20:25:07', '2024-08-11 20:25:07'),
(7641, 2, '2024-08-11 16:25:08', '2024-08-11 16:25:08', 0, NULL, '2024-08-11 20:25:08', '2024-08-11 20:25:08'),
(7642, 3, '2024-08-11 16:25:08', '2024-08-11 16:25:08', 0, NULL, '2024-08-11 20:25:08', '2024-08-11 20:25:08'),
(7643, 5, '2024-08-11 16:25:09', '2024-08-11 16:25:09', 0, NULL, '2024-08-11 20:25:09', '2024-08-11 20:25:09'),
(7644, 1, '2024-08-11 16:30:08', '2024-08-11 16:30:08', 0, NULL, '2024-08-11 20:30:09', '2024-08-11 20:30:09'),
(7645, 2, '2024-08-11 16:35:07', '2024-08-11 16:35:07', 0, NULL, '2024-08-11 20:35:08', '2024-08-11 20:35:08'),
(7646, 3, '2024-08-11 16:35:08', '2024-08-11 16:35:08', 0, NULL, '2024-08-11 20:35:09', '2024-08-11 20:35:09'),
(7647, 5, '2024-08-11 16:35:10', '2024-08-11 16:35:10', 0, NULL, '2024-08-11 20:35:10', '2024-08-11 20:35:10'),
(7648, 1, '2024-08-11 16:40:03', '2024-08-11 16:40:03', 0, NULL, '2024-08-11 20:40:04', '2024-08-11 20:40:04'),
(7649, 1, '2024-08-11 16:45:06', '2024-08-11 16:45:06', 0, NULL, '2024-08-11 20:45:07', '2024-08-11 20:45:07'),
(7650, 2, '2024-08-11 16:45:07', '2024-08-11 16:45:07', 0, NULL, '2024-08-11 20:45:08', '2024-08-11 20:45:08'),
(7651, 3, '2024-08-11 16:45:08', '2024-08-11 16:45:08', 0, NULL, '2024-08-11 20:45:08', '2024-08-11 20:45:08'),
(7652, 5, '2024-08-11 16:45:09', '2024-08-11 16:45:09', 0, NULL, '2024-08-11 20:45:09', '2024-08-11 20:45:09'),
(7653, 1, '2024-08-11 16:50:11', '2024-08-11 16:50:11', 0, NULL, '2024-08-11 20:50:11', '2024-08-11 20:50:11'),
(7654, 2, '2024-08-11 16:50:11', '2024-08-11 16:50:11', 0, NULL, '2024-08-11 20:50:12', '2024-08-11 20:50:12'),
(7655, 3, '2024-08-11 16:50:12', '2024-08-11 16:50:12', 0, NULL, '2024-08-11 20:50:12', '2024-08-11 20:50:12'),
(7656, 5, '2024-08-11 16:50:12', '2024-08-11 16:50:12', 0, NULL, '2024-08-11 20:50:12', '2024-08-11 20:50:12'),
(7657, 1, '2024-08-11 17:00:05', '2024-08-11 17:00:05', 0, NULL, '2024-08-11 21:00:06', '2024-08-11 21:00:06'),
(7658, 2, '2024-08-11 17:00:06', '2024-08-11 17:00:06', 0, NULL, '2024-08-11 21:00:07', '2024-08-11 21:00:07'),
(7659, 3, '2024-08-11 17:00:08', '2024-08-11 17:00:08', 0, NULL, '2024-08-11 21:00:08', '2024-08-11 21:00:08'),
(7660, 5, '2024-08-11 17:00:08', '2024-08-11 17:00:08', 0, NULL, '2024-08-11 21:00:09', '2024-08-11 21:00:09'),
(7661, 1, '2024-08-11 17:10:06', '2024-08-11 17:10:06', 0, NULL, '2024-08-11 21:10:06', '2024-08-11 21:10:06'),
(7662, 2, '2024-08-11 17:10:07', '2024-08-11 17:10:07', 0, NULL, '2024-08-11 21:10:07', '2024-08-11 21:10:07'),
(7663, 3, '2024-08-11 17:10:07', '2024-08-11 17:10:07', 0, NULL, '2024-08-11 21:10:08', '2024-08-11 21:10:08'),
(7664, 5, '2024-08-11 17:10:08', '2024-08-11 17:10:08', 0, NULL, '2024-08-11 21:10:08', '2024-08-11 21:10:08'),
(7665, 1, '2024-08-11 17:15:07', '2024-08-11 17:15:07', 0, NULL, '2024-08-11 21:15:10', '2024-08-11 21:15:10'),
(7666, 1, '2024-08-11 17:20:10', '2024-08-11 17:20:10', 0, NULL, '2024-08-11 21:20:10', '2024-08-11 21:20:10'),
(7667, 2, '2024-08-11 17:20:11', '2024-08-11 17:20:11', 0, NULL, '2024-08-11 21:20:11', '2024-08-11 21:20:11'),
(7668, 3, '2024-08-11 17:20:11', '2024-08-11 17:20:11', 0, NULL, '2024-08-11 21:20:11', '2024-08-11 21:20:11'),
(7669, 5, '2024-08-11 17:20:12', '2024-08-11 17:20:12', 0, NULL, '2024-08-11 21:20:12', '2024-08-11 21:20:12'),
(7670, 1, '2024-08-11 17:30:07', '2024-08-11 17:30:07', 0, NULL, '2024-08-11 21:30:07', '2024-08-11 21:30:07'),
(7671, 2, '2024-08-11 17:30:07', '2024-08-11 17:30:07', 0, NULL, '2024-08-11 21:30:08', '2024-08-11 21:30:08'),
(7672, 3, '2024-08-11 17:30:08', '2024-08-11 17:30:08', 0, NULL, '2024-08-11 21:30:09', '2024-08-11 21:30:09'),
(7673, 5, '2024-08-11 17:30:09', '2024-08-11 17:30:09', 0, NULL, '2024-08-11 21:30:09', '2024-08-11 21:30:09'),
(7674, 1, '2024-08-11 17:40:06', '2024-08-11 17:40:06', 0, NULL, '2024-08-11 21:40:09', '2024-08-11 21:40:09'),
(7675, 2, '2024-08-11 17:40:12', '2024-08-11 17:40:12', 0, NULL, '2024-08-11 21:40:13', '2024-08-11 21:40:13'),
(7676, 3, '2024-08-11 17:40:13', '2024-08-11 17:40:13', 0, NULL, '2024-08-11 21:40:13', '2024-08-11 21:40:13'),
(7677, 5, '2024-08-11 17:40:13', '2024-08-11 17:40:13', 0, NULL, '2024-08-11 21:40:13', '2024-08-11 21:40:13'),
(7678, 1, '2024-08-11 17:50:10', '2024-08-11 17:50:10', 0, NULL, '2024-08-11 21:50:11', '2024-08-11 21:50:11'),
(7679, 2, '2024-08-11 17:50:11', '2024-08-11 17:50:11', 0, NULL, '2024-08-11 21:50:11', '2024-08-11 21:50:11'),
(7680, 3, '2024-08-11 17:50:12', '2024-08-11 17:50:12', 0, NULL, '2024-08-11 21:50:12', '2024-08-11 21:50:12'),
(7681, 5, '2024-08-11 17:50:12', '2024-08-11 17:50:12', 0, NULL, '2024-08-11 21:50:12', '2024-08-11 21:50:12'),
(7682, 1, '2024-08-11 18:00:08', '2024-08-11 18:00:09', 1, NULL, '2024-08-11 22:00:10', '2024-08-11 22:00:10'),
(7683, 2, '2024-08-11 18:00:10', '2024-08-11 18:00:10', 0, NULL, '2024-08-11 22:00:11', '2024-08-11 22:00:11'),
(7684, 3, '2024-08-11 18:00:11', '2024-08-11 18:00:11', 0, NULL, '2024-08-11 22:00:13', '2024-08-11 22:00:13'),
(7685, 5, '2024-08-11 18:00:15', '2024-08-11 18:00:15', 0, NULL, '2024-08-11 22:00:15', '2024-08-11 22:00:15'),
(7686, 1, '2024-08-11 18:10:13', '2024-08-11 18:10:13', 0, NULL, '2024-08-11 22:10:13', '2024-08-11 22:10:13'),
(7687, 2, '2024-08-11 18:10:14', '2024-08-11 18:10:14', 0, NULL, '2024-08-11 22:10:14', '2024-08-11 22:10:14'),
(7688, 3, '2024-08-11 18:10:14', '2024-08-11 18:10:14', 0, NULL, '2024-08-11 22:10:15', '2024-08-11 22:10:15'),
(7689, 5, '2024-08-11 18:10:15', '2024-08-11 18:10:15', 0, NULL, '2024-08-11 22:10:15', '2024-08-11 22:10:15'),
(7690, 1, '2024-08-11 18:20:06', '2024-08-11 18:20:06', 0, NULL, '2024-08-11 22:20:06', '2024-08-11 22:20:06'),
(7691, 2, '2024-08-11 18:20:07', '2024-08-11 18:20:07', 0, NULL, '2024-08-11 22:20:07', '2024-08-11 22:20:07'),
(7692, 3, '2024-08-11 18:20:11', '2024-08-11 18:20:11', 0, NULL, '2024-08-11 22:20:11', '2024-08-11 22:20:11'),
(7693, 5, '2024-08-11 18:20:11', '2024-08-11 18:20:11', 0, NULL, '2024-08-11 22:20:12', '2024-08-11 22:20:12'),
(7694, 1, '2024-08-11 18:30:07', '2024-08-11 18:30:07', 0, NULL, '2024-08-11 22:30:08', '2024-08-11 22:30:08'),
(7695, 2, '2024-08-11 18:30:08', '2024-08-11 18:30:08', 0, NULL, '2024-08-11 22:30:09', '2024-08-11 22:30:09'),
(7696, 3, '2024-08-11 18:30:09', '2024-08-11 18:30:09', 0, NULL, '2024-08-11 22:30:10', '2024-08-11 22:30:10'),
(7697, 5, '2024-08-11 18:30:10', '2024-08-11 18:30:10', 0, NULL, '2024-08-11 22:30:11', '2024-08-11 22:30:11'),
(7698, 1, '2024-08-11 18:40:05', '2024-08-11 18:40:05', 0, NULL, '2024-08-11 22:40:05', '2024-08-11 22:40:05'),
(7699, 2, '2024-08-11 18:40:07', '2024-08-11 18:40:07', 0, NULL, '2024-08-11 22:40:08', '2024-08-11 22:40:08'),
(7700, 3, '2024-08-11 18:40:08', '2024-08-11 18:40:08', 0, NULL, '2024-08-11 22:40:08', '2024-08-11 22:40:08'),
(7701, 5, '2024-08-11 18:40:09', '2024-08-11 18:40:09', 0, NULL, '2024-08-11 22:40:09', '2024-08-11 22:40:09'),
(7702, 1, '2024-08-11 18:45:07', '2024-08-11 18:45:07', 0, NULL, '2024-08-11 22:45:09', '2024-08-11 22:45:09'),
(7703, 2, '2024-08-11 18:50:07', '2024-08-11 18:50:07', 0, NULL, '2024-08-11 22:50:07', '2024-08-11 22:50:07'),
(7704, 3, '2024-08-11 18:50:08', '2024-08-11 18:50:08', 0, NULL, '2024-08-11 22:50:08', '2024-08-11 22:50:08'),
(7705, 5, '2024-08-11 18:50:08', '2024-08-11 18:50:08', 0, NULL, '2024-08-11 22:50:09', '2024-08-11 22:50:09'),
(7706, 1, '2024-08-11 18:55:10', '2024-08-11 18:55:10', 0, NULL, '2024-08-11 22:55:10', '2024-08-11 22:55:10'),
(7707, 2, '2024-08-11 19:00:06', '2024-08-11 19:00:06', 0, NULL, '2024-08-11 23:00:07', '2024-08-11 23:00:07'),
(7708, 3, '2024-08-11 19:00:07', '2024-08-11 19:00:07', 0, NULL, '2024-08-11 23:00:08', '2024-08-11 23:00:08'),
(7709, 5, '2024-08-11 19:00:08', '2024-08-11 19:00:08', 0, NULL, '2024-08-11 23:00:09', '2024-08-11 23:00:09'),
(7710, 1, '2024-08-11 19:05:04', '2024-08-11 19:05:04', 0, NULL, '2024-08-11 23:05:04', '2024-08-11 23:05:04'),
(7711, 1, '2024-08-11 19:10:07', '2024-08-11 19:10:07', 0, NULL, '2024-08-11 23:10:07', '2024-08-11 23:10:07');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(7712, 2, '2024-08-11 19:10:08', '2024-08-11 19:10:08', 0, NULL, '2024-08-11 23:10:08', '2024-08-11 23:10:08'),
(7713, 3, '2024-08-11 19:10:09', '2024-08-11 19:10:09', 0, NULL, '2024-08-11 23:10:09', '2024-08-11 23:10:09'),
(7714, 5, '2024-08-11 19:10:10', '2024-08-11 19:10:10', 0, NULL, '2024-08-11 23:10:10', '2024-08-11 23:10:10'),
(7715, 1, '2024-08-11 19:20:04', '2024-08-11 19:20:04', 0, NULL, '2024-08-11 23:20:05', '2024-08-11 23:20:05'),
(7716, 2, '2024-08-11 19:20:05', '2024-08-11 19:20:05', 0, NULL, '2024-08-11 23:20:06', '2024-08-11 23:20:06'),
(7717, 3, '2024-08-11 19:20:06', '2024-08-11 19:20:06', 0, NULL, '2024-08-11 23:20:06', '2024-08-11 23:20:06'),
(7718, 5, '2024-08-11 19:20:07', '2024-08-11 19:20:07', 0, NULL, '2024-08-11 23:20:07', '2024-08-11 23:20:07'),
(7719, 1, '2024-08-11 19:25:07', '2024-08-11 19:25:07', 0, NULL, '2024-08-11 23:25:08', '2024-08-11 23:25:08'),
(7720, 2, '2024-08-11 19:25:09', '2024-08-11 19:25:09', 0, NULL, '2024-08-11 23:25:09', '2024-08-11 23:25:09'),
(7721, 3, '2024-08-11 19:25:09', '2024-08-11 19:25:09', 0, NULL, '2024-08-11 23:25:09', '2024-08-11 23:25:09'),
(7722, 5, '2024-08-11 19:30:05', '2024-08-11 19:30:05', 0, NULL, '2024-08-11 23:30:06', '2024-08-11 23:30:06'),
(7723, 1, '2024-08-11 19:35:03', '2024-08-11 19:35:03', 0, NULL, '2024-08-11 23:35:04', '2024-08-11 23:35:04'),
(7724, 2, '2024-08-11 19:35:04', '2024-08-11 19:35:04', 0, NULL, '2024-08-11 23:35:05', '2024-08-11 23:35:05'),
(7725, 3, '2024-08-11 19:35:05', '2024-08-11 19:35:05', 0, NULL, '2024-08-11 23:35:05', '2024-08-11 23:35:05'),
(7726, 1, '2024-08-11 19:40:07', '2024-08-11 19:40:07', 0, NULL, '2024-08-11 23:40:08', '2024-08-11 23:40:08'),
(7727, 2, '2024-08-11 19:40:10', '2024-08-11 19:40:10', 0, NULL, '2024-08-11 23:40:10', '2024-08-11 23:40:10'),
(7728, 3, '2024-08-11 19:40:11', '2024-08-11 19:40:11', 0, NULL, '2024-08-11 23:40:11', '2024-08-11 23:40:11'),
(7729, 5, '2024-08-11 19:40:11', '2024-08-11 19:40:11', 0, NULL, '2024-08-11 23:40:12', '2024-08-11 23:40:12'),
(7730, 1, '2024-08-11 19:50:06', '2024-08-11 19:50:06', 0, NULL, '2024-08-11 23:50:06', '2024-08-11 23:50:06'),
(7731, 2, '2024-08-11 19:50:07', '2024-08-11 19:50:07', 0, NULL, '2024-08-11 23:50:07', '2024-08-11 23:50:07'),
(7732, 3, '2024-08-11 19:50:07', '2024-08-11 19:50:07', 0, NULL, '2024-08-11 23:50:10', '2024-08-11 23:50:10'),
(7733, 5, '2024-08-11 19:50:12', '2024-08-11 19:50:12', 0, NULL, '2024-08-11 23:50:12', '2024-08-11 23:50:12'),
(7734, 1, '2024-08-11 19:55:07', '2024-08-11 19:55:07', 0, NULL, '2024-08-11 23:55:08', '2024-08-11 23:55:08'),
(7735, 1, '2024-08-11 20:00:08', '2024-08-11 20:00:08', 0, NULL, '2024-08-12 00:00:08', '2024-08-12 00:00:08'),
(7736, 2, '2024-08-11 20:00:09', '2024-08-11 20:00:09', 0, NULL, '2024-08-12 00:00:09', '2024-08-12 00:00:09'),
(7737, 3, '2024-08-11 20:00:10', '2024-08-11 20:00:10', 0, NULL, '2024-08-12 00:00:10', '2024-08-12 00:00:10'),
(7738, 5, '2024-08-11 20:00:11', '2024-08-11 20:00:11', 0, NULL, '2024-08-12 00:00:11', '2024-08-12 00:00:11'),
(7739, 1, '2024-08-11 20:10:13', '2024-08-11 20:10:13', 0, NULL, '2024-08-12 00:10:13', '2024-08-12 00:10:13'),
(7740, 2, '2024-08-11 20:10:14', '2024-08-11 20:10:14', 0, NULL, '2024-08-12 00:10:14', '2024-08-12 00:10:14'),
(7741, 3, '2024-08-11 20:10:14', '2024-08-11 20:10:14', 0, NULL, '2024-08-12 00:10:14', '2024-08-12 00:10:14'),
(7742, 5, '2024-08-11 20:10:15', '2024-08-11 20:10:15', 0, NULL, '2024-08-12 00:10:15', '2024-08-12 00:10:15'),
(7743, 1, '2024-08-11 20:20:05', '2024-08-11 20:20:05', 0, NULL, '2024-08-12 00:20:06', '2024-08-12 00:20:06'),
(7744, 2, '2024-08-11 20:20:07', '2024-08-11 20:20:07', 0, NULL, '2024-08-12 00:20:08', '2024-08-12 00:20:08'),
(7745, 3, '2024-08-11 20:20:09', '2024-08-11 20:20:09', 0, NULL, '2024-08-12 00:20:09', '2024-08-12 00:20:09'),
(7746, 5, '2024-08-11 20:20:10', '2024-08-11 20:20:10', 0, NULL, '2024-08-12 00:20:10', '2024-08-12 00:20:10'),
(7747, 1, '2024-08-11 20:25:08', '2024-08-11 20:25:08', 0, NULL, '2024-08-12 00:25:10', '2024-08-12 00:25:10'),
(7748, 2, '2024-08-11 20:25:10', '2024-08-11 20:25:10', 0, NULL, '2024-08-12 00:25:10', '2024-08-12 00:25:10'),
(7749, 3, '2024-08-11 20:30:04', '2024-08-11 20:30:05', 0, NULL, '2024-08-12 00:30:05', '2024-08-12 00:30:05'),
(7750, 5, '2024-08-11 20:30:05', '2024-08-11 20:30:06', 0, NULL, '2024-08-12 00:30:06', '2024-08-12 00:30:06'),
(7751, 1, '2024-08-11 20:35:07', '2024-08-11 20:35:07', 0, NULL, '2024-08-12 00:35:09', '2024-08-12 00:35:09'),
(7752, 2, '2024-08-11 20:35:09', '2024-08-11 20:35:09', 0, NULL, '2024-08-12 00:35:09', '2024-08-12 00:35:09'),
(7753, 3, '2024-08-11 20:35:10', '2024-08-11 20:35:10', 0, NULL, '2024-08-12 00:35:10', '2024-08-12 00:35:10'),
(7754, 5, '2024-08-11 20:35:10', '2024-08-11 20:35:10', 0, NULL, '2024-08-12 00:35:11', '2024-08-12 00:35:11'),
(7755, 1, '2024-08-11 20:45:10', '2024-08-11 20:45:10', 0, NULL, '2024-08-12 00:45:11', '2024-08-12 00:45:11'),
(7756, 2, '2024-08-11 20:45:11', '2024-08-11 20:45:11', 0, NULL, '2024-08-12 00:45:11', '2024-08-12 00:45:11'),
(7757, 3, '2024-08-11 20:45:11', '2024-08-11 20:45:11', 0, NULL, '2024-08-12 00:45:12', '2024-08-12 00:45:12'),
(7758, 5, '2024-08-11 20:45:12', '2024-08-11 20:45:12', 0, NULL, '2024-08-12 00:45:12', '2024-08-12 00:45:12'),
(7759, 1, '2024-08-11 20:55:05', '2024-08-11 20:55:05', 0, NULL, '2024-08-12 00:55:05', '2024-08-12 00:55:05'),
(7760, 2, '2024-08-11 20:55:06', '2024-08-11 20:55:06', 0, NULL, '2024-08-12 00:55:06', '2024-08-12 00:55:06'),
(7761, 3, '2024-08-11 20:55:06', '2024-08-11 20:55:06', 0, NULL, '2024-08-12 00:55:07', '2024-08-12 00:55:07'),
(7762, 5, '2024-08-11 20:55:08', '2024-08-11 20:55:08', 0, NULL, '2024-08-12 00:55:08', '2024-08-12 00:55:08'),
(7763, 1, '2024-08-11 21:00:06', '2024-08-11 21:00:06', 0, NULL, '2024-08-12 01:00:07', '2024-08-12 01:00:07'),
(7764, 2, '2024-08-11 21:05:06', '2024-08-11 21:05:06', 0, NULL, '2024-08-12 01:05:07', '2024-08-12 01:05:07'),
(7765, 3, '2024-08-11 21:05:07', '2024-08-11 21:05:07', 0, NULL, '2024-08-12 01:05:08', '2024-08-12 01:05:08'),
(7766, 5, '2024-08-11 21:05:08', '2024-08-11 21:05:08', 0, NULL, '2024-08-12 01:05:09', '2024-08-12 01:05:09'),
(7767, 1, '2024-08-11 21:10:03', '2024-08-11 21:10:03', 0, NULL, '2024-08-12 01:10:03', '2024-08-12 01:10:03'),
(7768, 1, '2024-08-11 21:15:05', '2024-08-11 21:15:05', 0, NULL, '2024-08-12 01:15:06', '2024-08-12 01:15:06'),
(7769, 2, '2024-08-11 21:15:06', '2024-08-11 21:15:06', 0, NULL, '2024-08-12 01:15:07', '2024-08-12 01:15:07'),
(7770, 3, '2024-08-11 21:15:07', '2024-08-11 21:15:07', 0, NULL, '2024-08-12 01:15:08', '2024-08-12 01:15:08'),
(7771, 5, '2024-08-11 21:15:08', '2024-08-11 21:15:08', 0, NULL, '2024-08-12 01:15:08', '2024-08-12 01:15:08'),
(7772, 1, '2024-08-11 21:25:05', '2024-08-11 21:25:05', 0, NULL, '2024-08-12 01:25:06', '2024-08-12 01:25:06'),
(7773, 2, '2024-08-11 21:25:06', '2024-08-11 21:25:06', 0, NULL, '2024-08-12 01:25:11', '2024-08-12 01:25:11'),
(7774, 3, '2024-08-11 21:25:11', '2024-08-11 21:25:11', 0, NULL, '2024-08-12 01:25:12', '2024-08-12 01:25:12'),
(7775, 5, '2024-08-11 21:25:12', '2024-08-11 21:25:12', 0, NULL, '2024-08-12 01:25:12', '2024-08-12 01:25:12'),
(7776, 1, '2024-08-11 21:30:06', '2024-08-11 21:30:06', 0, NULL, '2024-08-12 01:30:06', '2024-08-12 01:30:06'),
(7777, 1, '2024-08-11 21:35:07', '2024-08-11 21:35:08', 0, NULL, '2024-08-12 01:35:09', '2024-08-12 01:35:09'),
(7778, 2, '2024-08-11 21:35:10', '2024-08-11 21:35:10', 0, NULL, '2024-08-12 01:35:10', '2024-08-12 01:35:10'),
(7779, 3, '2024-08-11 21:35:10', '2024-08-11 21:35:10', 0, NULL, '2024-08-12 01:35:11', '2024-08-12 01:35:11'),
(7780, 5, '2024-08-11 21:35:11', '2024-08-11 21:35:11', 0, NULL, '2024-08-12 01:35:11', '2024-08-12 01:35:11'),
(7781, 1, '2024-08-11 21:45:05', '2024-08-11 21:45:05', 0, NULL, '2024-08-12 01:45:05', '2024-08-12 01:45:05'),
(7782, 2, '2024-08-11 21:45:10', '2024-08-11 21:45:10', 0, NULL, '2024-08-12 01:45:11', '2024-08-12 01:45:11'),
(7783, 3, '2024-08-11 21:45:11', '2024-08-11 21:45:11', 0, NULL, '2024-08-12 01:45:11', '2024-08-12 01:45:11'),
(7784, 5, '2024-08-11 21:45:11', '2024-08-11 21:45:11', 0, NULL, '2024-08-12 01:45:11', '2024-08-12 01:45:11'),
(7785, 1, '2024-08-11 21:50:08', '2024-08-11 21:50:08', 0, NULL, '2024-08-12 01:50:08', '2024-08-12 01:50:08'),
(7786, 2, '2024-08-11 21:55:07', '2024-08-11 21:55:07', 0, NULL, '2024-08-12 01:55:08', '2024-08-12 01:55:08'),
(7787, 3, '2024-08-11 21:55:08', '2024-08-11 21:55:08', 0, NULL, '2024-08-12 01:55:09', '2024-08-12 01:55:09'),
(7788, 5, '2024-08-11 21:55:09', '2024-08-11 21:55:09', 0, NULL, '2024-08-12 01:55:09', '2024-08-12 01:55:09'),
(7789, 1, '2024-08-11 22:00:08', '2024-08-11 22:00:09', 0, NULL, '2024-08-12 02:00:09', '2024-08-12 02:00:09'),
(7790, 2, '2024-08-11 22:00:09', '2024-08-11 22:00:09', 0, NULL, '2024-08-12 02:00:10', '2024-08-12 02:00:10'),
(7791, 3, '2024-08-11 22:05:05', '2024-08-11 22:05:05', 0, NULL, '2024-08-12 02:05:05', '2024-08-12 02:05:05'),
(7792, 5, '2024-08-11 22:05:06', '2024-08-11 22:05:06', 0, NULL, '2024-08-12 02:05:06', '2024-08-12 02:05:06'),
(7793, 1, '2024-08-11 22:10:09', '2024-08-11 22:10:09', 0, NULL, '2024-08-12 02:10:09', '2024-08-12 02:10:09'),
(7794, 2, '2024-08-11 22:10:10', '2024-08-11 22:10:10', 0, NULL, '2024-08-12 02:10:10', '2024-08-12 02:10:10'),
(7795, 3, '2024-08-11 22:10:10', '2024-08-11 22:10:10', 0, NULL, '2024-08-12 02:10:10', '2024-08-12 02:10:10'),
(7796, 5, '2024-08-11 22:10:11', '2024-08-11 22:10:11', 0, NULL, '2024-08-12 02:10:11', '2024-08-12 02:10:11'),
(7797, 1, '2024-08-11 22:20:04', '2024-08-11 22:20:04', 0, NULL, '2024-08-12 02:20:04', '2024-08-12 02:20:04'),
(7798, 2, '2024-08-11 22:20:05', '2024-08-11 22:20:05', 0, NULL, '2024-08-12 02:20:05', '2024-08-12 02:20:05'),
(7799, 3, '2024-08-11 22:20:06', '2024-08-11 22:20:06', 0, NULL, '2024-08-12 02:20:06', '2024-08-12 02:20:06'),
(7800, 5, '2024-08-11 22:20:07', '2024-08-11 22:20:07', 0, NULL, '2024-08-12 02:20:07', '2024-08-12 02:20:07'),
(7801, 1, '2024-08-11 22:25:06', '2024-08-11 22:25:06', 0, NULL, '2024-08-12 02:25:06', '2024-08-12 02:25:06'),
(7802, 2, '2024-08-11 22:25:06', '2024-08-11 22:25:06', 0, NULL, '2024-08-12 02:25:07', '2024-08-12 02:25:07'),
(7803, 1, '2024-08-11 22:30:07', '2024-08-11 22:30:07', 0, NULL, '2024-08-12 02:30:10', '2024-08-12 02:30:10'),
(7804, 2, '2024-08-11 22:30:12', '2024-08-11 22:30:12', 0, NULL, '2024-08-12 02:30:13', '2024-08-12 02:30:13'),
(7805, 3, '2024-08-11 22:30:13', '2024-08-11 22:30:13', 0, NULL, '2024-08-12 02:30:13', '2024-08-12 02:30:13'),
(7806, 5, '2024-08-11 22:30:14', '2024-08-11 22:30:14', 0, NULL, '2024-08-12 02:30:14', '2024-08-12 02:30:14'),
(7807, 1, '2024-08-11 22:40:08', '2024-08-11 22:40:08', 0, NULL, '2024-08-12 02:40:10', '2024-08-12 02:40:10'),
(7808, 2, '2024-08-11 22:40:12', '2024-08-11 22:40:12', 0, NULL, '2024-08-12 02:40:12', '2024-08-12 02:40:12'),
(7809, 3, '2024-08-11 22:40:12', '2024-08-11 22:40:12', 0, NULL, '2024-08-12 02:40:13', '2024-08-12 02:40:13'),
(7810, 5, '2024-08-11 22:40:13', '2024-08-11 22:40:13', 0, NULL, '2024-08-12 02:40:13', '2024-08-12 02:40:13'),
(7811, 1, '2024-08-11 22:50:08', '2024-08-11 22:50:08', 0, NULL, '2024-08-12 02:50:08', '2024-08-12 02:50:08'),
(7812, 2, '2024-08-11 22:50:09', '2024-08-11 22:50:09', 0, NULL, '2024-08-12 02:50:10', '2024-08-12 02:50:10'),
(7813, 3, '2024-08-11 22:50:10', '2024-08-11 22:50:10', 0, NULL, '2024-08-12 02:50:11', '2024-08-12 02:50:11'),
(7814, 5, '2024-08-11 22:50:11', '2024-08-11 22:50:11', 0, NULL, '2024-08-12 02:50:11', '2024-08-12 02:50:11'),
(7815, 1, '2024-08-11 22:55:09', '2024-08-11 22:55:09', 0, NULL, '2024-08-12 02:55:09', '2024-08-12 02:55:09'),
(7816, 2, '2024-08-11 23:00:06', '2024-08-11 23:00:06', 0, NULL, '2024-08-12 03:00:07', '2024-08-12 03:00:07'),
(7817, 3, '2024-08-11 23:00:07', '2024-08-11 23:00:07', 0, NULL, '2024-08-12 03:00:08', '2024-08-12 03:00:08'),
(7818, 5, '2024-08-11 23:00:08', '2024-08-11 23:00:08', 0, NULL, '2024-08-12 03:00:08', '2024-08-12 03:00:08'),
(7819, 1, '2024-08-11 23:05:05', '2024-08-11 23:05:05', 0, NULL, '2024-08-12 03:05:06', '2024-08-12 03:05:06'),
(7820, 1, '2024-08-11 23:10:13', '2024-08-11 23:10:13', 0, NULL, '2024-08-12 03:10:13', '2024-08-12 03:10:13'),
(7821, 2, '2024-08-11 23:10:14', '2024-08-11 23:10:15', 0, NULL, '2024-08-12 03:10:16', '2024-08-12 03:10:16'),
(7822, 3, '2024-08-11 23:10:18', '2024-08-11 23:10:18', 0, NULL, '2024-08-12 03:10:18', '2024-08-12 03:10:18'),
(7823, 5, '2024-08-11 23:10:18', '2024-08-11 23:10:18', 0, NULL, '2024-08-12 03:10:18', '2024-08-12 03:10:18'),
(7824, 1, '2024-08-11 23:20:08', '2024-08-11 23:20:08', 0, NULL, '2024-08-12 03:20:08', '2024-08-12 03:20:08'),
(7825, 2, '2024-08-11 23:20:08', '2024-08-11 23:20:08', 0, NULL, '2024-08-12 03:20:09', '2024-08-12 03:20:09'),
(7826, 3, '2024-08-11 23:20:09', '2024-08-11 23:20:09', 0, NULL, '2024-08-12 03:20:09', '2024-08-12 03:20:09'),
(7827, 5, '2024-08-11 23:20:09', '2024-08-11 23:20:09', 0, NULL, '2024-08-12 03:20:10', '2024-08-12 03:20:10'),
(7828, 1, '2024-08-11 23:30:05', '2024-08-11 23:30:05', 0, NULL, '2024-08-12 03:30:05', '2024-08-12 03:30:05'),
(7829, 2, '2024-08-11 23:30:05', '2024-08-11 23:30:05', 0, NULL, '2024-08-12 03:30:06', '2024-08-12 03:30:06'),
(7830, 3, '2024-08-11 23:30:07', '2024-08-11 23:30:07', 0, NULL, '2024-08-12 03:30:08', '2024-08-12 03:30:08'),
(7831, 5, '2024-08-11 23:30:09', '2024-08-11 23:30:09', 0, NULL, '2024-08-12 03:30:10', '2024-08-12 03:30:10'),
(7832, 1, '2024-08-11 23:40:07', '2024-08-11 23:40:07', 0, NULL, '2024-08-12 03:40:08', '2024-08-12 03:40:08'),
(7833, 2, '2024-08-11 23:40:08', '2024-08-11 23:40:08', 0, NULL, '2024-08-12 03:40:09', '2024-08-12 03:40:09'),
(7834, 3, '2024-08-11 23:40:09', '2024-08-11 23:40:09', 0, NULL, '2024-08-12 03:40:09', '2024-08-12 03:40:09'),
(7835, 5, '2024-08-11 23:40:10', '2024-08-11 23:40:10', 0, NULL, '2024-08-12 03:40:10', '2024-08-12 03:40:10'),
(7836, 1, '2024-08-11 23:50:09', '2024-08-11 23:50:09', 0, NULL, '2024-08-12 03:50:09', '2024-08-12 03:50:09'),
(7837, 2, '2024-08-11 23:50:09', '2024-08-11 23:50:09', 0, NULL, '2024-08-12 03:50:10', '2024-08-12 03:50:10'),
(7838, 3, '2024-08-11 23:50:10', '2024-08-11 23:50:10', 0, NULL, '2024-08-12 03:50:10', '2024-08-12 03:50:10'),
(7839, 5, '2024-08-11 23:50:10', '2024-08-11 23:50:10', 0, NULL, '2024-08-12 03:50:11', '2024-08-12 03:50:11'),
(7840, 1, '2024-08-12 00:00:10', '2024-08-12 00:00:10', 0, NULL, '2024-08-12 04:00:10', '2024-08-12 04:00:10'),
(7841, 2, '2024-08-12 00:00:10', '2024-08-12 00:00:10', 0, NULL, '2024-08-12 04:00:10', '2024-08-12 04:00:10'),
(7842, 3, '2024-08-12 00:00:11', '2024-08-12 00:00:11', 0, NULL, '2024-08-12 04:00:11', '2024-08-12 04:00:11'),
(7843, 5, '2024-08-12 00:00:11', '2024-08-12 00:00:11', 0, NULL, '2024-08-12 04:00:11', '2024-08-12 04:00:11'),
(7844, 1, '2024-08-12 00:10:05', '2024-08-12 00:10:05', 0, NULL, '2024-08-12 04:10:06', '2024-08-12 04:10:06'),
(7845, 2, '2024-08-12 00:10:07', '2024-08-12 00:10:07', 0, NULL, '2024-08-12 04:10:07', '2024-08-12 04:10:07'),
(7846, 3, '2024-08-12 00:10:08', '2024-08-12 00:10:08', 0, NULL, '2024-08-12 04:10:09', '2024-08-12 04:10:09'),
(7847, 5, '2024-08-12 00:10:09', '2024-08-12 00:10:09', 0, NULL, '2024-08-12 04:10:10', '2024-08-12 04:10:10'),
(7848, 1, '2024-08-12 00:15:07', '2024-08-12 00:15:07', 0, NULL, '2024-08-12 04:15:08', '2024-08-12 04:15:08'),
(7849, 2, '2024-08-12 00:20:04', '2024-08-12 00:20:04', 0, NULL, '2024-08-12 04:20:04', '2024-08-12 04:20:04'),
(7850, 3, '2024-08-12 00:20:06', '2024-08-12 00:20:06', 0, NULL, '2024-08-12 04:20:06', '2024-08-12 04:20:06'),
(7851, 5, '2024-08-12 00:20:07', '2024-08-12 00:20:07', 0, NULL, '2024-08-12 04:20:08', '2024-08-12 04:20:08'),
(7852, 1, '2024-08-12 00:25:04', '2024-08-12 00:25:04', 0, NULL, '2024-08-12 04:25:05', '2024-08-12 04:25:05'),
(7853, 1, '2024-08-12 00:30:06', '2024-08-12 00:30:07', 0, NULL, '2024-08-12 04:30:07', '2024-08-12 04:30:07'),
(7854, 2, '2024-08-12 00:30:08', '2024-08-12 00:30:08', 0, NULL, '2024-08-12 04:30:08', '2024-08-12 04:30:08'),
(7855, 3, '2024-08-12 00:30:08', '2024-08-12 00:30:08', 0, NULL, '2024-08-12 04:30:09', '2024-08-12 04:30:09'),
(7856, 5, '2024-08-12 00:30:09', '2024-08-12 00:30:09', 0, NULL, '2024-08-12 04:30:09', '2024-08-12 04:30:09'),
(7857, 1, '2024-08-12 00:35:08', '2024-08-12 00:35:08', 0, NULL, '2024-08-12 04:35:08', '2024-08-12 04:35:08'),
(7858, 2, '2024-08-12 00:40:06', '2024-08-12 00:40:06', 0, NULL, '2024-08-12 04:40:07', '2024-08-12 04:40:07'),
(7859, 3, '2024-08-12 00:40:07', '2024-08-12 00:40:07', 0, NULL, '2024-08-12 04:40:07', '2024-08-12 04:40:07'),
(7860, 5, '2024-08-12 00:40:08', '2024-08-12 00:40:08', 0, NULL, '2024-08-12 04:40:08', '2024-08-12 04:40:08'),
(7861, 1, '2024-08-12 00:45:09', '2024-08-12 00:45:09', 0, NULL, '2024-08-12 04:45:09', '2024-08-12 04:45:09'),
(7862, 2, '2024-08-12 00:50:06', '2024-08-12 00:50:07', 0, NULL, '2024-08-12 04:50:07', '2024-08-12 04:50:07'),
(7863, 3, '2024-08-12 00:50:08', '2024-08-12 00:50:08', 0, NULL, '2024-08-12 04:50:08', '2024-08-12 04:50:08'),
(7864, 5, '2024-08-12 00:50:08', '2024-08-12 00:50:08', 0, NULL, '2024-08-12 04:50:08', '2024-08-12 04:50:08'),
(7865, 1, '2024-08-12 00:55:06', '2024-08-12 00:55:07', 0, NULL, '2024-08-12 04:55:07', '2024-08-12 04:55:07'),
(7866, 1, '2024-08-12 01:00:10', '2024-08-12 01:00:11', 0, NULL, '2024-08-12 05:00:12', '2024-08-12 05:00:12'),
(7867, 2, '2024-08-12 01:00:12', '2024-08-12 01:00:12', 0, NULL, '2024-08-12 05:00:12', '2024-08-12 05:00:12'),
(7868, 3, '2024-08-12 01:00:12', '2024-08-12 01:00:12', 0, NULL, '2024-08-12 05:00:12', '2024-08-12 05:00:12'),
(7869, 5, '2024-08-12 01:00:12', '2024-08-12 01:00:12', 0, NULL, '2024-08-12 05:00:13', '2024-08-12 05:00:13'),
(7870, 1, '2024-08-12 01:10:12', '2024-08-12 01:10:12', 0, NULL, '2024-08-12 05:10:12', '2024-08-12 05:10:12'),
(7871, 2, '2024-08-12 01:10:13', '2024-08-12 01:10:13', 0, NULL, '2024-08-12 05:10:13', '2024-08-12 05:10:13'),
(7872, 3, '2024-08-12 01:10:13', '2024-08-12 01:10:13', 0, NULL, '2024-08-12 05:10:13', '2024-08-12 05:10:13'),
(7873, 5, '2024-08-12 01:10:14', '2024-08-12 01:10:14', 0, NULL, '2024-08-12 05:10:14', '2024-08-12 05:10:14'),
(7874, 1, '2024-08-12 01:20:06', '2024-08-12 01:20:06', 0, NULL, '2024-08-12 05:20:07', '2024-08-12 05:20:07'),
(7875, 2, '2024-08-12 01:20:07', '2024-08-12 01:20:07', 0, NULL, '2024-08-12 05:20:08', '2024-08-12 05:20:08'),
(7876, 3, '2024-08-12 01:20:08', '2024-08-12 01:20:08', 0, NULL, '2024-08-12 05:20:08', '2024-08-12 05:20:08'),
(7877, 5, '2024-08-12 01:20:09', '2024-08-12 01:20:09', 0, NULL, '2024-08-12 05:20:09', '2024-08-12 05:20:09'),
(7878, 1, '2024-08-12 01:30:05', '2024-08-12 01:30:05', 0, NULL, '2024-08-12 05:30:05', '2024-08-12 05:30:05'),
(7879, 2, '2024-08-12 01:30:06', '2024-08-12 01:30:06', 0, NULL, '2024-08-12 05:30:06', '2024-08-12 05:30:06'),
(7880, 3, '2024-08-12 01:30:06', '2024-08-12 01:30:06', 0, NULL, '2024-08-12 05:30:07', '2024-08-12 05:30:07'),
(7881, 5, '2024-08-12 01:30:08', '2024-08-12 01:30:08', 0, NULL, '2024-08-12 05:30:13', '2024-08-12 05:30:13'),
(7882, 1, '2024-08-12 01:40:12', '2024-08-12 01:40:12', 0, NULL, '2024-08-12 05:40:12', '2024-08-12 05:40:12'),
(7883, 2, '2024-08-12 01:40:12', '2024-08-12 01:40:12', 0, NULL, '2024-08-12 05:40:12', '2024-08-12 05:40:12'),
(7884, 3, '2024-08-12 01:40:13', '2024-08-12 01:40:13', 0, NULL, '2024-08-12 05:40:13', '2024-08-12 05:40:13'),
(7885, 5, '2024-08-12 01:40:13', '2024-08-12 01:40:13', 0, NULL, '2024-08-12 05:40:13', '2024-08-12 05:40:13'),
(7886, 1, '2024-08-12 01:50:06', '2024-08-12 01:50:06', 0, NULL, '2024-08-12 05:50:06', '2024-08-12 05:50:06'),
(7887, 2, '2024-08-12 01:50:06', '2024-08-12 01:50:06', 0, NULL, '2024-08-12 05:50:07', '2024-08-12 05:50:07'),
(7888, 3, '2024-08-12 01:50:07', '2024-08-12 01:50:07', 0, NULL, '2024-08-12 05:50:07', '2024-08-12 05:50:07'),
(7889, 5, '2024-08-12 01:50:08', '2024-08-12 01:50:08', 0, NULL, '2024-08-12 05:50:08', '2024-08-12 05:50:08'),
(7890, 1, '2024-08-12 01:55:09', '2024-08-12 01:55:09', 0, NULL, '2024-08-12 05:55:10', '2024-08-12 05:55:10'),
(7891, 2, '2024-08-12 01:55:10', '2024-08-12 01:55:10', 0, NULL, '2024-08-12 05:55:10', '2024-08-12 05:55:10'),
(7892, 3, '2024-08-12 01:55:10', '2024-08-12 01:55:10', 0, NULL, '2024-08-12 05:55:10', '2024-08-12 05:55:10'),
(7893, 5, '2024-08-12 01:55:11', '2024-08-12 01:55:11', 0, NULL, '2024-08-12 05:55:11', '2024-08-12 05:55:11'),
(7894, 1, '2024-08-12 02:05:08', '2024-08-12 02:05:08', 0, NULL, '2024-08-12 06:05:09', '2024-08-12 06:05:09'),
(7895, 2, '2024-08-12 02:05:10', '2024-08-12 02:05:10', 0, NULL, '2024-08-12 06:05:10', '2024-08-12 06:05:10'),
(7896, 3, '2024-08-12 02:05:10', '2024-08-12 02:05:10', 0, NULL, '2024-08-12 06:05:10', '2024-08-12 06:05:10'),
(7897, 5, '2024-08-12 02:05:11', '2024-08-12 02:05:11', 0, NULL, '2024-08-12 06:05:11', '2024-08-12 06:05:11'),
(7898, 1, '2024-08-12 02:10:12', '2024-08-12 02:10:12', 0, NULL, '2024-08-12 06:10:12', '2024-08-12 06:10:12'),
(7899, 2, '2024-08-12 02:10:12', '2024-08-12 02:10:12', 0, NULL, '2024-08-12 06:10:12', '2024-08-12 06:10:12'),
(7900, 3, '2024-08-12 02:10:13', '2024-08-12 02:10:13', 0, NULL, '2024-08-12 06:10:13', '2024-08-12 06:10:13'),
(7901, 5, '2024-08-12 02:10:13', '2024-08-12 02:10:13', 0, NULL, '2024-08-12 06:10:14', '2024-08-12 06:10:14'),
(7902, 1, '2024-08-12 02:20:05', '2024-08-12 02:20:05', 0, NULL, '2024-08-12 06:20:06', '2024-08-12 06:20:06'),
(7903, 2, '2024-08-12 02:20:08', '2024-08-12 02:20:08', 0, NULL, '2024-08-12 06:20:08', '2024-08-12 06:20:08'),
(7904, 3, '2024-08-12 02:20:09', '2024-08-12 02:20:09', 0, NULL, '2024-08-12 06:20:09', '2024-08-12 06:20:09'),
(7905, 5, '2024-08-12 02:20:10', '2024-08-12 02:20:10', 0, NULL, '2024-08-12 06:20:10', '2024-08-12 06:20:10'),
(7906, 1, '2024-08-12 02:30:06', '2024-08-12 02:30:07', 0, NULL, '2024-08-12 06:30:08', '2024-08-12 06:30:08'),
(7907, 2, '2024-08-12 02:30:08', '2024-08-12 02:30:08', 0, NULL, '2024-08-12 06:30:08', '2024-08-12 06:30:08'),
(7908, 3, '2024-08-12 02:30:09', '2024-08-12 02:30:09', 0, NULL, '2024-08-12 06:30:09', '2024-08-12 06:30:09'),
(7909, 5, '2024-08-12 02:30:10', '2024-08-12 02:30:10', 0, NULL, '2024-08-12 06:30:10', '2024-08-12 06:30:10'),
(7910, 1, '2024-08-12 02:40:11', '2024-08-12 02:40:12', 1, NULL, '2024-08-12 06:40:13', '2024-08-12 06:40:13'),
(7911, 2, '2024-08-12 02:40:13', '2024-08-12 02:40:13', 0, NULL, '2024-08-12 06:40:13', '2024-08-12 06:40:13'),
(7912, 3, '2024-08-12 02:40:13', '2024-08-12 02:40:13', 0, NULL, '2024-08-12 06:40:13', '2024-08-12 06:40:13'),
(7913, 5, '2024-08-12 02:40:14', '2024-08-12 02:40:14', 0, NULL, '2024-08-12 06:40:14', '2024-08-12 06:40:14'),
(7914, 1, '2024-08-12 02:50:11', '2024-08-12 02:50:11', 0, NULL, '2024-08-12 06:50:11', '2024-08-12 06:50:11'),
(7915, 2, '2024-08-12 02:50:12', '2024-08-12 02:50:12', 0, NULL, '2024-08-12 06:50:12', '2024-08-12 06:50:12'),
(7916, 3, '2024-08-12 02:50:12', '2024-08-12 02:50:12', 0, NULL, '2024-08-12 06:50:12', '2024-08-12 06:50:12'),
(7917, 5, '2024-08-12 02:50:12', '2024-08-12 02:50:12', 0, NULL, '2024-08-12 06:50:12', '2024-08-12 06:50:12'),
(7918, 1, '2024-08-12 03:00:12', '2024-08-12 03:00:12', 0, NULL, '2024-08-12 07:00:12', '2024-08-12 07:00:12'),
(7919, 2, '2024-08-12 03:00:13', '2024-08-12 03:00:13', 0, NULL, '2024-08-12 07:00:13', '2024-08-12 07:00:13'),
(7920, 3, '2024-08-12 03:00:13', '2024-08-12 03:00:13', 0, NULL, '2024-08-12 07:00:13', '2024-08-12 07:00:13'),
(7921, 5, '2024-08-12 03:00:13', '2024-08-12 03:00:13', 0, NULL, '2024-08-12 07:00:13', '2024-08-12 07:00:13'),
(7922, 1, '2024-08-12 03:10:09', '2024-08-12 03:10:09', 0, NULL, '2024-08-12 07:10:10', '2024-08-12 07:10:10'),
(7923, 2, '2024-08-12 03:10:11', '2024-08-12 03:10:11', 0, NULL, '2024-08-12 07:10:12', '2024-08-12 07:10:12'),
(7924, 3, '2024-08-12 03:10:12', '2024-08-12 03:10:12', 0, NULL, '2024-08-12 07:10:12', '2024-08-12 07:10:12'),
(7925, 5, '2024-08-12 03:10:12', '2024-08-12 03:10:12', 0, NULL, '2024-08-12 07:10:13', '2024-08-12 07:10:13'),
(7926, 1, '2024-08-12 03:20:07', '2024-08-12 03:20:07', 0, NULL, '2024-08-12 07:20:07', '2024-08-12 07:20:07'),
(7927, 2, '2024-08-12 03:20:08', '2024-08-12 03:20:08', 0, NULL, '2024-08-12 07:20:08', '2024-08-12 07:20:08'),
(7928, 3, '2024-08-12 03:20:09', '2024-08-12 03:20:09', 0, NULL, '2024-08-12 07:20:09', '2024-08-12 07:20:09'),
(7929, 5, '2024-08-12 03:20:09', '2024-08-12 03:20:09', 0, NULL, '2024-08-12 07:20:10', '2024-08-12 07:20:10'),
(7930, 1, '2024-08-12 03:30:13', '2024-08-12 03:30:13', 0, NULL, '2024-08-12 07:30:13', '2024-08-12 07:30:13'),
(7931, 2, '2024-08-12 03:30:13', '2024-08-12 03:30:13', 0, NULL, '2024-08-12 07:30:13', '2024-08-12 07:30:13'),
(7932, 3, '2024-08-12 03:30:13', '2024-08-12 03:30:13', 0, NULL, '2024-08-12 07:30:14', '2024-08-12 07:30:14'),
(7933, 5, '2024-08-12 03:30:14', '2024-08-12 03:30:14', 0, NULL, '2024-08-12 07:30:14', '2024-08-12 07:30:14'),
(7934, 1, '2024-08-12 03:40:11', '2024-08-12 03:40:11', 0, NULL, '2024-08-12 07:40:12', '2024-08-12 07:40:12'),
(7935, 2, '2024-08-12 03:40:12', '2024-08-12 03:40:12', 0, NULL, '2024-08-12 07:40:12', '2024-08-12 07:40:12'),
(7936, 3, '2024-08-12 03:40:13', '2024-08-12 03:40:13', 0, NULL, '2024-08-12 07:40:13', '2024-08-12 07:40:13'),
(7937, 5, '2024-08-12 03:40:13', '2024-08-12 03:40:14', 0, NULL, '2024-08-12 07:40:14', '2024-08-12 07:40:14'),
(7938, 1, '2024-08-12 03:50:09', '2024-08-12 03:50:09', 0, NULL, '2024-08-12 07:50:09', '2024-08-12 07:50:09'),
(7939, 2, '2024-08-12 03:50:09', '2024-08-12 03:50:09', 0, NULL, '2024-08-12 07:50:09', '2024-08-12 07:50:09'),
(7940, 3, '2024-08-12 03:50:09', '2024-08-12 03:50:09', 0, NULL, '2024-08-12 07:50:10', '2024-08-12 07:50:10'),
(7941, 5, '2024-08-12 03:50:10', '2024-08-12 03:50:10', 0, NULL, '2024-08-12 07:50:10', '2024-08-12 07:50:10'),
(7942, 1, '2024-08-12 04:00:11', '2024-08-12 04:00:11', 0, NULL, '2024-08-12 08:00:11', '2024-08-12 08:00:11'),
(7943, 2, '2024-08-12 04:00:12', '2024-08-12 04:00:12', 0, NULL, '2024-08-12 08:00:12', '2024-08-12 08:00:12'),
(7944, 3, '2024-08-12 04:00:12', '2024-08-12 04:00:12', 0, NULL, '2024-08-12 08:00:12', '2024-08-12 08:00:12'),
(7945, 5, '2024-08-12 04:00:13', '2024-08-12 04:00:13', 0, NULL, '2024-08-12 08:00:13', '2024-08-12 08:00:13'),
(7946, 1, '2024-08-12 04:10:09', '2024-08-12 04:10:09', 0, NULL, '2024-08-12 08:10:10', '2024-08-12 08:10:10'),
(7947, 2, '2024-08-12 04:10:10', '2024-08-12 04:10:10', 0, NULL, '2024-08-12 08:10:10', '2024-08-12 08:10:10'),
(7948, 3, '2024-08-12 04:10:11', '2024-08-12 04:10:11', 0, NULL, '2024-08-12 08:10:12', '2024-08-12 08:10:12'),
(7949, 5, '2024-08-12 04:10:12', '2024-08-12 04:10:12', 0, NULL, '2024-08-12 08:10:13', '2024-08-12 08:10:13'),
(7950, 1, '2024-08-12 04:20:03', '2024-08-12 04:20:03', 0, NULL, '2024-08-12 08:20:04', '2024-08-12 08:20:04'),
(7951, 2, '2024-08-12 04:20:04', '2024-08-12 04:20:04', 0, NULL, '2024-08-12 08:20:04', '2024-08-12 08:20:04'),
(7952, 3, '2024-08-12 04:20:04', '2024-08-12 04:20:04', 0, NULL, '2024-08-12 08:20:05', '2024-08-12 08:20:05'),
(7953, 5, '2024-08-12 04:20:05', '2024-08-12 04:20:05', 0, NULL, '2024-08-12 08:20:06', '2024-08-12 08:20:06'),
(7954, 1, '2024-08-12 04:25:07', '2024-08-12 04:25:07', 0, NULL, '2024-08-12 08:25:08', '2024-08-12 08:25:08'),
(7955, 2, '2024-08-12 04:25:09', '2024-08-12 04:25:09', 0, NULL, '2024-08-12 08:25:09', '2024-08-12 08:25:09'),
(7956, 3, '2024-08-12 04:25:09', '2024-08-12 04:25:09', 0, NULL, '2024-08-12 08:25:10', '2024-08-12 08:25:10'),
(7957, 5, '2024-08-12 04:25:10', '2024-08-12 04:25:10', 0, NULL, '2024-08-12 08:25:10', '2024-08-12 08:25:10'),
(7958, 1, '2024-08-12 04:35:06', '2024-08-12 04:35:06', 0, NULL, '2024-08-12 08:35:07', '2024-08-12 08:35:07'),
(7959, 2, '2024-08-12 04:35:07', '2024-08-12 04:35:07', 0, NULL, '2024-08-12 08:35:07', '2024-08-12 08:35:07'),
(7960, 3, '2024-08-12 04:35:08', '2024-08-12 04:35:08', 0, NULL, '2024-08-12 08:35:08', '2024-08-12 08:35:08'),
(7961, 5, '2024-08-12 04:35:08', '2024-08-12 04:35:08', 0, NULL, '2024-08-12 08:35:09', '2024-08-12 08:35:09'),
(7962, 1, '2024-08-12 04:40:08', '2024-08-12 04:40:08', 0, NULL, '2024-08-12 08:40:09', '2024-08-12 08:40:09'),
(7963, 2, '2024-08-12 04:40:09', '2024-08-12 04:40:09', 0, NULL, '2024-08-12 08:40:09', '2024-08-12 08:40:09'),
(7964, 3, '2024-08-12 04:45:05', '2024-08-12 04:45:08', 2, NULL, '2024-08-12 08:45:10', '2024-08-12 08:45:10'),
(7965, 5, '2024-08-12 04:45:10', '2024-08-12 04:45:10', 0, NULL, '2024-08-12 08:45:11', '2024-08-12 08:45:11'),
(7966, 1, '2024-08-12 04:50:05', '2024-08-12 04:50:05', 0, NULL, '2024-08-12 08:50:06', '2024-08-12 08:50:06'),
(7967, 2, '2024-08-12 04:50:06', '2024-08-12 04:50:06', 0, NULL, '2024-08-12 08:50:06', '2024-08-12 08:50:06'),
(7968, 1, '2024-08-12 04:55:06', '2024-08-12 04:55:06', 0, NULL, '2024-08-12 08:55:07', '2024-08-12 08:55:07'),
(7969, 3, '2024-08-12 04:55:07', '2024-08-12 04:55:07', 0, NULL, '2024-08-12 08:55:08', '2024-08-12 08:55:08'),
(7970, 5, '2024-08-12 04:55:08', '2024-08-12 04:55:08', 0, NULL, '2024-08-12 08:55:09', '2024-08-12 08:55:09'),
(7971, 1, '2024-08-12 05:00:14', '2024-08-12 05:00:14', 0, NULL, '2024-08-12 09:00:14', '2024-08-12 09:00:14'),
(7972, 2, '2024-08-12 05:00:14', '2024-08-12 05:00:14', 0, NULL, '2024-08-12 09:00:14', '2024-08-12 09:00:14'),
(7973, 3, '2024-08-12 05:00:14', '2024-08-12 05:00:14', 0, NULL, '2024-08-12 09:00:15', '2024-08-12 09:00:15'),
(7974, 5, '2024-08-12 05:00:15', '2024-08-12 05:00:15', 0, NULL, '2024-08-12 09:00:15', '2024-08-12 09:00:15'),
(7975, 1, '2024-08-12 05:10:10', '2024-08-12 05:10:10', 0, NULL, '2024-08-12 09:10:10', '2024-08-12 09:10:10'),
(7976, 2, '2024-08-12 05:10:10', '2024-08-12 05:10:10', 0, NULL, '2024-08-12 09:10:10', '2024-08-12 09:10:10'),
(7977, 3, '2024-08-12 05:10:10', '2024-08-12 05:10:10', 0, NULL, '2024-08-12 09:10:11', '2024-08-12 09:10:11'),
(7978, 5, '2024-08-12 05:10:11', '2024-08-12 05:10:11', 0, NULL, '2024-08-12 09:10:11', '2024-08-12 09:10:11'),
(7979, 1, '2024-08-12 05:20:10', '2024-08-12 05:20:10', 0, NULL, '2024-08-12 09:20:11', '2024-08-12 09:20:11'),
(7980, 2, '2024-08-12 05:20:12', '2024-08-12 05:20:12', 0, NULL, '2024-08-12 09:20:12', '2024-08-12 09:20:12'),
(7981, 3, '2024-08-12 05:20:12', '2024-08-12 05:20:12', 0, NULL, '2024-08-12 09:20:13', '2024-08-12 09:20:13'),
(7982, 5, '2024-08-12 05:20:13', '2024-08-12 05:20:13', 0, NULL, '2024-08-12 09:20:13', '2024-08-12 09:20:13'),
(7983, 1, '2024-08-12 05:30:15', '2024-08-12 05:30:15', 0, NULL, '2024-08-12 09:30:15', '2024-08-12 09:30:15'),
(7984, 2, '2024-08-12 05:30:15', '2024-08-12 05:30:15', 0, NULL, '2024-08-12 09:30:15', '2024-08-12 09:30:15'),
(7985, 3, '2024-08-12 05:30:15', '2024-08-12 05:30:15', 0, NULL, '2024-08-12 09:30:16', '2024-08-12 09:30:16'),
(7986, 5, '2024-08-12 05:30:16', '2024-08-12 05:30:16', 0, NULL, '2024-08-12 09:30:16', '2024-08-12 09:30:16'),
(7987, 1, '2024-08-12 05:40:08', '2024-08-12 05:40:08', 0, NULL, '2024-08-12 09:40:08', '2024-08-12 09:40:08'),
(7988, 2, '2024-08-12 05:40:08', '2024-08-12 05:40:08', 0, NULL, '2024-08-12 09:40:08', '2024-08-12 09:40:08'),
(7989, 3, '2024-08-12 05:40:09', '2024-08-12 05:40:09', 0, NULL, '2024-08-12 09:40:09', '2024-08-12 09:40:09'),
(7990, 5, '2024-08-12 05:40:09', '2024-08-12 05:40:10', 0, NULL, '2024-08-12 09:40:10', '2024-08-12 09:40:10'),
(7991, 1, '2024-08-12 05:50:07', '2024-08-12 05:50:07', 0, NULL, '2024-08-12 09:50:08', '2024-08-12 09:50:08'),
(7992, 2, '2024-08-12 05:50:08', '2024-08-12 05:50:08', 0, NULL, '2024-08-12 09:50:08', '2024-08-12 09:50:08'),
(7993, 3, '2024-08-12 05:50:08', '2024-08-12 05:50:08', 0, NULL, '2024-08-12 09:50:09', '2024-08-12 09:50:09'),
(7994, 5, '2024-08-12 05:50:09', '2024-08-12 05:50:09', 0, NULL, '2024-08-12 09:50:09', '2024-08-12 09:50:09'),
(7995, 1, '2024-08-12 05:55:08', '2024-08-12 05:55:08', 0, NULL, '2024-08-12 09:55:08', '2024-08-12 09:55:08'),
(7996, 2, '2024-08-12 06:00:09', '2024-08-12 06:00:09', 0, NULL, '2024-08-12 10:00:09', '2024-08-12 10:00:09'),
(7997, 3, '2024-08-12 06:00:10', '2024-08-12 06:00:10', 0, NULL, '2024-08-12 10:00:10', '2024-08-12 10:00:10'),
(7998, 5, '2024-08-12 06:00:11', '2024-08-12 06:00:11', 0, NULL, '2024-08-12 10:00:11', '2024-08-12 10:00:11'),
(7999, 1, '2024-08-12 06:05:13', '2024-08-12 06:05:13', 0, NULL, '2024-08-12 10:05:13', '2024-08-12 10:05:13'),
(8000, 2, '2024-08-12 06:05:13', '2024-08-12 06:05:13', 0, NULL, '2024-08-12 10:05:13', '2024-08-12 10:05:13'),
(8001, 3, '2024-08-12 06:05:13', '2024-08-12 06:05:13', 0, NULL, '2024-08-12 10:05:14', '2024-08-12 10:05:14'),
(8002, 5, '2024-08-12 06:05:14', '2024-08-12 06:05:14', 0, NULL, '2024-08-12 10:05:14', '2024-08-12 10:05:14'),
(8003, 1, '2024-08-12 06:15:10', '2024-08-12 06:15:10', 0, NULL, '2024-08-12 10:15:10', '2024-08-12 10:15:10'),
(8004, 2, '2024-08-12 06:15:11', '2024-08-12 06:15:11', 0, NULL, '2024-08-12 10:15:11', '2024-08-12 10:15:11'),
(8005, 3, '2024-08-12 06:15:11', '2024-08-12 06:15:11', 0, NULL, '2024-08-12 10:15:11', '2024-08-12 10:15:11'),
(8006, 5, '2024-08-12 06:15:11', '2024-08-12 06:15:11', 0, NULL, '2024-08-12 10:15:11', '2024-08-12 10:15:11'),
(8007, 1, '2024-08-12 06:25:06', '2024-08-12 06:25:06', 0, NULL, '2024-08-12 10:25:06', '2024-08-12 10:25:06'),
(8008, 2, '2024-08-12 06:25:07', '2024-08-12 06:25:07', 0, NULL, '2024-08-12 10:25:07', '2024-08-12 10:25:07'),
(8009, 3, '2024-08-12 06:25:09', '2024-08-12 06:25:09', 0, NULL, '2024-08-12 10:25:11', '2024-08-12 10:25:11'),
(8010, 5, '2024-08-12 06:25:11', '2024-08-12 06:25:11', 0, NULL, '2024-08-12 10:25:12', '2024-08-12 10:25:12'),
(8011, 1, '2024-08-12 06:35:04', '2024-08-12 06:35:04', 0, NULL, '2024-08-12 10:35:04', '2024-08-12 10:35:04'),
(8012, 2, '2024-08-12 06:35:05', '2024-08-12 06:35:05', 0, NULL, '2024-08-12 10:35:06', '2024-08-12 10:35:06'),
(8013, 3, '2024-08-12 06:35:06', '2024-08-12 06:35:06', 0, NULL, '2024-08-12 10:35:07', '2024-08-12 10:35:07'),
(8014, 5, '2024-08-12 06:35:07', '2024-08-12 06:35:07', 0, NULL, '2024-08-12 10:35:08', '2024-08-12 10:35:08'),
(8015, 1, '2024-08-12 06:40:05', '2024-08-12 06:40:05', 0, NULL, '2024-08-12 10:40:06', '2024-08-12 10:40:06'),
(8016, 1, '2024-08-12 06:45:06', '2024-08-12 06:45:06', 0, NULL, '2024-08-12 10:45:07', '2024-08-12 10:45:07'),
(8017, 2, '2024-08-12 06:45:07', '2024-08-12 06:45:07', 0, NULL, '2024-08-12 10:45:08', '2024-08-12 10:45:08'),
(8018, 3, '2024-08-12 06:45:08', '2024-08-12 06:45:08', 0, NULL, '2024-08-12 10:45:08', '2024-08-12 10:45:08'),
(8019, 5, '2024-08-12 06:45:09', '2024-08-12 06:45:09', 0, NULL, '2024-08-12 10:45:09', '2024-08-12 10:45:09'),
(8020, 1, '2024-08-12 06:55:07', '2024-08-12 06:55:07', 0, NULL, '2024-08-12 10:55:07', '2024-08-12 10:55:07'),
(8021, 2, '2024-08-12 06:55:10', '2024-08-12 06:55:10', 0, NULL, '2024-08-12 10:55:11', '2024-08-12 10:55:11'),
(8022, 3, '2024-08-12 06:55:11', '2024-08-12 06:55:11', 0, NULL, '2024-08-12 10:55:12', '2024-08-12 10:55:12'),
(8023, 5, '2024-08-12 06:55:12', '2024-08-12 06:55:12', 0, NULL, '2024-08-12 10:55:12', '2024-08-12 10:55:12'),
(8024, 1, '2024-08-12 07:00:15', '2024-08-12 07:00:15', 0, NULL, '2024-08-12 11:00:15', '2024-08-12 11:00:15'),
(8025, 2, '2024-08-12 07:00:15', '2024-08-12 07:00:15', 0, NULL, '2024-08-12 11:00:16', '2024-08-12 11:00:16'),
(8026, 3, '2024-08-12 07:00:16', '2024-08-12 07:00:16', 0, NULL, '2024-08-12 11:00:16', '2024-08-12 11:00:16'),
(8027, 5, '2024-08-12 07:05:03', '2024-08-12 07:05:03', 0, NULL, '2024-08-12 11:05:03', '2024-08-12 11:05:03'),
(8028, 1, '2024-08-12 07:10:12', '2024-08-12 07:10:12', 0, NULL, '2024-08-12 11:10:12', '2024-08-12 11:10:12'),
(8029, 2, '2024-08-12 07:10:12', '2024-08-12 07:10:12', 0, NULL, '2024-08-12 11:10:12', '2024-08-12 11:10:12'),
(8030, 3, '2024-08-12 07:10:13', '2024-08-12 07:10:13', 0, NULL, '2024-08-12 11:10:13', '2024-08-12 11:10:13'),
(8031, 5, '2024-08-12 07:10:13', '2024-08-12 07:10:13', 0, NULL, '2024-08-12 11:10:13', '2024-08-12 11:10:13'),
(8032, 1, '2024-08-12 07:20:10', '2024-08-12 07:20:11', 0, NULL, '2024-08-12 11:20:11', '2024-08-12 11:20:11'),
(8033, 2, '2024-08-12 07:20:12', '2024-08-12 07:20:12', 0, NULL, '2024-08-12 11:20:12', '2024-08-12 11:20:12'),
(8034, 3, '2024-08-12 07:20:13', '2024-08-12 07:20:13', 0, NULL, '2024-08-12 11:20:13', '2024-08-12 11:20:13'),
(8035, 5, '2024-08-12 07:20:13', '2024-08-12 07:20:13', 0, NULL, '2024-08-12 11:20:13', '2024-08-12 11:20:13'),
(8036, 1, '2024-08-12 07:30:07', '2024-08-12 07:30:07', 0, NULL, '2024-08-12 11:30:08', '2024-08-12 11:30:08'),
(8037, 2, '2024-08-12 07:30:10', '2024-08-12 07:30:10', 0, NULL, '2024-08-12 11:30:11', '2024-08-12 11:30:11'),
(8038, 3, '2024-08-12 07:30:12', '2024-08-12 07:30:12', 0, NULL, '2024-08-12 11:30:14', '2024-08-12 11:30:14'),
(8039, 5, '2024-08-12 07:30:14', '2024-08-12 07:30:14', 0, NULL, '2024-08-12 11:30:14', '2024-08-12 11:30:14'),
(8040, 1, '2024-08-12 07:35:10', '2024-08-12 07:35:11', 0, NULL, '2024-08-12 11:35:11', '2024-08-12 11:35:11'),
(8041, 2, '2024-08-12 07:40:07', '2024-08-12 07:40:07', 0, NULL, '2024-08-12 11:40:07', '2024-08-12 11:40:07'),
(8042, 3, '2024-08-12 07:40:08', '2024-08-12 07:40:08', 0, NULL, '2024-08-12 11:40:08', '2024-08-12 11:40:08'),
(8043, 5, '2024-08-12 07:40:09', '2024-08-12 07:40:09', 0, NULL, '2024-08-12 11:40:10', '2024-08-12 11:40:10'),
(8044, 1, '2024-08-12 07:45:03', '2024-08-12 07:45:03', 0, NULL, '2024-08-12 11:45:04', '2024-08-12 11:45:04'),
(8045, 1, '2024-08-12 07:50:07', '2024-08-12 07:50:07', 0, NULL, '2024-08-12 11:50:08', '2024-08-12 11:50:08'),
(8046, 2, '2024-08-12 07:50:09', '2024-08-12 07:50:09', 0, NULL, '2024-08-12 11:50:09', '2024-08-12 11:50:09'),
(8047, 3, '2024-08-12 07:50:10', '2024-08-12 07:50:10', 0, NULL, '2024-08-12 11:50:10', '2024-08-12 11:50:10'),
(8048, 5, '2024-08-12 07:50:10', '2024-08-12 07:50:10', 0, NULL, '2024-08-12 11:50:11', '2024-08-12 11:50:11'),
(8049, 1, '2024-08-12 07:55:09', '2024-08-12 07:55:09', 0, NULL, '2024-08-12 11:55:10', '2024-08-12 11:55:10'),
(8050, 2, '2024-08-12 08:00:07', '2024-08-12 08:00:07', 0, NULL, '2024-08-12 12:00:09', '2024-08-12 12:00:09'),
(8051, 3, '2024-08-12 08:00:09', '2024-08-12 08:00:09', 0, NULL, '2024-08-12 12:00:10', '2024-08-12 12:00:10'),
(8052, 5, '2024-08-12 08:00:10', '2024-08-12 08:00:10', 0, NULL, '2024-08-12 12:00:10', '2024-08-12 12:00:10'),
(8053, 1, '2024-08-12 08:05:06', '2024-08-12 08:05:06', 0, NULL, '2024-08-12 12:05:07', '2024-08-12 12:05:07'),
(8054, 2, '2024-08-12 08:10:06', '2024-08-12 08:10:06', 0, NULL, '2024-08-12 12:10:07', '2024-08-12 12:10:07'),
(8055, 3, '2024-08-12 08:10:08', '2024-08-12 08:10:08', 0, NULL, '2024-08-12 12:10:08', '2024-08-12 12:10:08'),
(8056, 5, '2024-08-12 08:10:08', '2024-08-12 08:10:08', 0, NULL, '2024-08-12 12:10:08', '2024-08-12 12:10:08'),
(8057, 1, '2024-08-12 08:15:06', '2024-08-12 08:15:06', 0, NULL, '2024-08-12 12:15:07', '2024-08-12 12:15:07'),
(8058, 2, '2024-08-12 08:20:05', '2024-08-12 08:20:05', 0, NULL, '2024-08-12 12:20:06', '2024-08-12 12:20:06'),
(8059, 3, '2024-08-12 08:20:06', '2024-08-12 08:20:06', 0, NULL, '2024-08-12 12:20:07', '2024-08-12 12:20:07'),
(8060, 5, '2024-08-12 08:20:07', '2024-08-12 08:20:07', 0, NULL, '2024-08-12 12:20:08', '2024-08-12 12:20:08'),
(8061, 1, '2024-08-12 08:25:06', '2024-08-12 08:25:06', 0, NULL, '2024-08-12 12:25:06', '2024-08-12 12:25:06'),
(8062, 2, '2024-08-12 08:25:07', '2024-08-12 08:25:07', 0, NULL, '2024-08-12 12:25:07', '2024-08-12 12:25:07'),
(8063, 1, '2024-08-12 08:30:07', '2024-08-12 08:30:07', 0, NULL, '2024-08-12 12:30:07', '2024-08-12 12:30:07'),
(8064, 3, '2024-08-12 08:30:10', '2024-08-12 08:30:10', 0, NULL, '2024-08-12 12:30:11', '2024-08-12 12:30:11'),
(8065, 5, '2024-08-12 08:30:13', '2024-08-12 08:30:13', 0, NULL, '2024-08-12 12:30:14', '2024-08-12 12:30:14'),
(8066, 2, '2024-08-12 08:35:08', '2024-08-12 08:35:08', 0, NULL, '2024-08-12 12:35:08', '2024-08-12 12:35:08'),
(8067, 1, '2024-08-12 08:40:05', '2024-08-12 08:40:05', 0, NULL, '2024-08-12 12:40:06', '2024-08-12 12:40:06'),
(8068, 3, '2024-08-12 08:40:06', '2024-08-12 08:40:06', 0, NULL, '2024-08-12 12:40:06', '2024-08-12 12:40:06'),
(8069, 5, '2024-08-12 08:40:07', '2024-08-12 08:40:07', 0, NULL, '2024-08-12 12:40:07', '2024-08-12 12:40:07'),
(8070, 2, '2024-08-12 08:45:04', '2024-08-12 08:45:04', 0, NULL, '2024-08-12 12:45:05', '2024-08-12 12:45:05'),
(8071, 1, '2024-08-12 08:50:06', '2024-08-12 08:50:06', 0, NULL, '2024-08-12 12:50:09', '2024-08-12 12:50:09'),
(8072, 2, '2024-08-12 08:50:10', '2024-08-12 08:50:10', 0, NULL, '2024-08-12 12:50:10', '2024-08-12 12:50:10'),
(8073, 3, '2024-08-12 08:50:10', '2024-08-12 08:50:10', 0, NULL, '2024-08-12 12:50:11', '2024-08-12 12:50:11'),
(8074, 5, '2024-08-12 08:50:11', '2024-08-12 08:50:11', 0, NULL, '2024-08-12 12:50:11', '2024-08-12 12:50:11'),
(8075, 1, '2024-08-12 09:00:08', '2024-08-12 09:00:08', 0, NULL, '2024-08-12 13:00:09', '2024-08-12 13:00:09'),
(8076, 2, '2024-08-12 09:00:09', '2024-08-12 09:00:09', 0, NULL, '2024-08-12 13:00:10', '2024-08-12 13:00:10'),
(8077, 3, '2024-08-12 09:00:10', '2024-08-12 09:00:10', 0, NULL, '2024-08-12 13:00:10', '2024-08-12 13:00:10'),
(8078, 5, '2024-08-12 09:00:10', '2024-08-12 09:00:10', 0, NULL, '2024-08-12 13:00:11', '2024-08-12 13:00:11'),
(8079, 1, '2024-08-12 09:10:07', '2024-08-12 09:10:08', 0, NULL, '2024-08-12 13:10:08', '2024-08-12 13:10:08'),
(8080, 2, '2024-08-12 09:10:08', '2024-08-12 09:10:08', 0, NULL, '2024-08-12 13:10:10', '2024-08-12 13:10:10'),
(8081, 3, '2024-08-12 09:10:10', '2024-08-12 09:10:10', 0, NULL, '2024-08-12 13:10:10', '2024-08-12 13:10:10'),
(8082, 5, '2024-08-12 09:10:11', '2024-08-12 09:10:11', 0, NULL, '2024-08-12 13:10:11', '2024-08-12 13:10:11'),
(8083, 1, '2024-08-12 09:15:10', '2024-08-12 09:15:10', 0, NULL, '2024-08-12 13:15:10', '2024-08-12 13:15:10'),
(8084, 2, '2024-08-12 09:15:10', '2024-08-12 09:15:10', 0, NULL, '2024-08-12 13:15:10', '2024-08-12 13:15:10'),
(8085, 3, '2024-08-12 09:20:10', '2024-08-12 09:20:10', 0, NULL, '2024-08-12 13:20:10', '2024-08-12 13:20:10'),
(8086, 5, '2024-08-12 09:20:10', '2024-08-12 09:20:10', 0, NULL, '2024-08-12 13:20:11', '2024-08-12 13:20:11'),
(8087, 1, '2024-08-12 09:25:04', '2024-08-12 09:25:04', 0, NULL, '2024-08-12 13:25:05', '2024-08-12 13:25:05'),
(8088, 2, '2024-08-12 09:25:05', '2024-08-12 09:25:05', 0, NULL, '2024-08-12 13:25:05', '2024-08-12 13:25:05'),
(8089, 1, '2024-08-12 09:30:09', '2024-08-12 09:30:09', 0, NULL, '2024-08-12 13:30:10', '2024-08-12 13:30:10'),
(8090, 2, '2024-08-12 09:30:10', '2024-08-12 09:30:10', 0, NULL, '2024-08-12 13:30:10', '2024-08-12 13:30:10'),
(8091, 3, '2024-08-12 09:30:10', '2024-08-12 09:30:10', 0, NULL, '2024-08-12 13:30:10', '2024-08-12 13:30:10'),
(8092, 5, '2024-08-12 09:30:11', '2024-08-12 09:30:11', 0, NULL, '2024-08-12 13:30:11', '2024-08-12 13:30:11'),
(8093, 1, '2024-08-12 09:40:06', '2024-08-12 09:40:06', 0, NULL, '2024-08-12 13:40:06', '2024-08-12 13:40:06'),
(8094, 2, '2024-08-12 09:40:07', '2024-08-12 09:40:07', 0, NULL, '2024-08-12 13:40:07', '2024-08-12 13:40:07'),
(8095, 3, '2024-08-12 09:40:07', '2024-08-12 09:40:07', 0, NULL, '2024-08-12 13:40:08', '2024-08-12 13:40:08'),
(8096, 5, '2024-08-12 09:40:08', '2024-08-12 09:40:08', 0, NULL, '2024-08-12 13:40:09', '2024-08-12 13:40:09'),
(8097, 1, '2024-08-12 09:45:07', '2024-08-12 09:45:07', 0, NULL, '2024-08-12 13:45:08', '2024-08-12 13:45:08'),
(8098, 1, '2024-08-12 09:50:09', '2024-08-12 09:50:09', 0, NULL, '2024-08-12 13:50:09', '2024-08-12 13:50:09'),
(8099, 2, '2024-08-12 09:50:09', '2024-08-12 09:50:09', 0, NULL, '2024-08-12 13:50:10', '2024-08-12 13:50:10'),
(8100, 3, '2024-08-12 09:50:10', '2024-08-12 09:50:10', 0, NULL, '2024-08-12 13:50:10', '2024-08-12 13:50:10'),
(8101, 5, '2024-08-12 09:50:10', '2024-08-12 09:50:10', 0, NULL, '2024-08-12 13:50:11', '2024-08-12 13:50:11'),
(8102, 1, '2024-08-12 10:00:06', '2024-08-12 10:00:06', 0, NULL, '2024-08-12 14:00:06', '2024-08-12 14:00:06'),
(8103, 2, '2024-08-12 10:00:07', '2024-08-12 10:00:07', 0, NULL, '2024-08-12 14:00:07', '2024-08-12 14:00:07'),
(8104, 3, '2024-08-12 10:00:08', '2024-08-12 10:00:08', 0, NULL, '2024-08-12 14:00:09', '2024-08-12 14:00:09'),
(8105, 5, '2024-08-12 10:00:10', '2024-08-12 10:00:10', 0, NULL, '2024-08-12 14:00:10', '2024-08-12 14:00:10'),
(8106, 1, '2024-08-12 10:10:07', '2024-08-12 10:10:07', 0, NULL, '2024-08-12 14:10:08', '2024-08-12 14:10:08'),
(8107, 2, '2024-08-12 10:10:08', '2024-08-12 10:10:08', 0, NULL, '2024-08-12 14:10:08', '2024-08-12 14:10:08'),
(8108, 3, '2024-08-12 10:10:09', '2024-08-12 10:10:09', 0, NULL, '2024-08-12 14:10:09', '2024-08-12 14:10:09'),
(8109, 5, '2024-08-12 10:10:10', '2024-08-12 10:10:10', 0, NULL, '2024-08-12 14:10:10', '2024-08-12 14:10:10'),
(8110, 1, '2024-08-12 10:20:05', '2024-08-12 10:20:05', 0, NULL, '2024-08-12 14:20:06', '2024-08-12 14:20:06'),
(8111, 2, '2024-08-12 10:20:11', '2024-08-12 10:20:11', 0, NULL, '2024-08-12 14:20:11', '2024-08-12 14:20:11'),
(8112, 3, '2024-08-12 10:20:11', '2024-08-12 10:20:11', 0, NULL, '2024-08-12 14:20:12', '2024-08-12 14:20:12'),
(8113, 5, '2024-08-12 10:20:12', '2024-08-12 10:20:12', 0, NULL, '2024-08-12 14:20:12', '2024-08-12 14:20:12'),
(8114, 1, '2024-08-12 10:25:09', '2024-08-12 10:25:09', 0, NULL, '2024-08-12 14:25:09', '2024-08-12 14:25:09'),
(8115, 2, '2024-08-12 10:30:11', '2024-08-12 10:30:11', 0, NULL, '2024-08-12 14:30:12', '2024-08-12 14:30:12'),
(8116, 3, '2024-08-12 10:30:12', '2024-08-12 10:30:12', 0, NULL, '2024-08-12 14:30:12', '2024-08-12 14:30:12'),
(8117, 5, '2024-08-12 10:30:12', '2024-08-12 10:30:12', 0, NULL, '2024-08-12 14:30:12', '2024-08-12 14:30:12'),
(8118, 1, '2024-08-12 10:35:07', '2024-08-12 10:35:07', 0, NULL, '2024-08-12 14:35:07', '2024-08-12 14:35:07'),
(8119, 2, '2024-08-12 10:40:06', '2024-08-12 10:40:06', 0, NULL, '2024-08-12 14:40:06', '2024-08-12 14:40:06'),
(8120, 3, '2024-08-12 10:40:08', '2024-08-12 10:40:08', 0, NULL, '2024-08-12 14:40:08', '2024-08-12 14:40:08'),
(8121, 5, '2024-08-12 10:40:08', '2024-08-12 10:40:08', 0, NULL, '2024-08-12 14:40:09', '2024-08-12 14:40:09'),
(8122, 1, '2024-08-12 10:45:04', '2024-08-12 10:45:04', 0, NULL, '2024-08-12 14:45:04', '2024-08-12 14:45:04'),
(8123, 2, '2024-08-12 10:50:03', '2024-08-12 10:50:03', 0, NULL, '2024-08-12 14:50:03', '2024-08-12 14:50:03'),
(8124, 3, '2024-08-12 10:50:04', '2024-08-12 10:50:04', 0, NULL, '2024-08-12 14:50:04', '2024-08-12 14:50:04'),
(8125, 5, '2024-08-12 10:50:04', '2024-08-12 10:50:05', 0, NULL, '2024-08-12 14:50:05', '2024-08-12 14:50:05'),
(8126, 1, '2024-08-12 10:55:05', '2024-08-12 10:55:06', 0, NULL, '2024-08-12 14:55:06', '2024-08-12 14:55:06'),
(8127, 2, '2024-08-12 10:55:07', '2024-08-12 10:55:07', 0, NULL, '2024-08-12 14:55:07', '2024-08-12 14:55:07'),
(8128, 3, '2024-08-12 10:55:08', '2024-08-12 10:55:08', 0, NULL, '2024-08-12 14:55:08', '2024-08-12 14:55:08'),
(8129, 1, '2024-08-12 11:00:12', '2024-08-12 11:00:12', 0, NULL, '2024-08-12 15:00:13', '2024-08-12 15:00:13'),
(8130, 2, '2024-08-12 11:00:13', '2024-08-12 11:00:13', 0, NULL, '2024-08-12 15:00:13', '2024-08-12 15:00:13'),
(8131, 3, '2024-08-12 11:00:13', '2024-08-12 11:00:13', 0, NULL, '2024-08-12 15:00:13', '2024-08-12 15:00:13'),
(8132, 5, '2024-08-12 11:00:13', '2024-08-12 11:00:13', 0, NULL, '2024-08-12 15:00:13', '2024-08-12 15:00:13'),
(8133, 1, '2024-08-12 11:10:08', '2024-08-12 11:10:08', 0, NULL, '2024-08-12 15:10:08', '2024-08-12 15:10:08'),
(8134, 2, '2024-08-12 11:10:08', '2024-08-12 11:10:08', 0, NULL, '2024-08-12 15:10:09', '2024-08-12 15:10:09'),
(8135, 3, '2024-08-12 11:10:09', '2024-08-12 11:10:09', 0, NULL, '2024-08-12 15:10:09', '2024-08-12 15:10:09'),
(8136, 5, '2024-08-12 11:10:10', '2024-08-12 11:10:10', 0, NULL, '2024-08-12 15:10:10', '2024-08-12 15:10:10'),
(8137, 1, '2024-08-12 11:20:07', '2024-08-12 11:20:07', 0, NULL, '2024-08-12 15:20:07', '2024-08-12 15:20:07'),
(8138, 2, '2024-08-12 11:20:08', '2024-08-12 11:20:08', 0, NULL, '2024-08-12 15:20:08', '2024-08-12 15:20:08'),
(8139, 3, '2024-08-12 11:20:09', '2024-08-12 11:20:09', 0, NULL, '2024-08-12 15:20:09', '2024-08-12 15:20:09'),
(8140, 5, '2024-08-12 11:20:09', '2024-08-12 11:20:09', 0, NULL, '2024-08-12 15:20:09', '2024-08-12 15:20:09'),
(8141, 1, '2024-08-12 11:30:05', '2024-08-12 11:30:05', 0, NULL, '2024-08-12 15:30:06', '2024-08-12 15:30:06'),
(8142, 2, '2024-08-12 11:30:06', '2024-08-12 11:30:06', 0, NULL, '2024-08-12 15:30:07', '2024-08-12 15:30:07'),
(8143, 3, '2024-08-12 11:30:07', '2024-08-12 11:30:07', 0, NULL, '2024-08-12 15:30:07', '2024-08-12 15:30:07'),
(8144, 5, '2024-08-12 11:30:08', '2024-08-12 11:30:08', 0, NULL, '2024-08-12 15:30:08', '2024-08-12 15:30:08'),
(8145, 1, '2024-08-12 11:35:07', '2024-08-12 11:35:08', 0, NULL, '2024-08-12 15:35:09', '2024-08-12 15:35:09'),
(8146, 2, '2024-08-12 11:35:09', '2024-08-12 11:35:09', 0, NULL, '2024-08-12 15:35:10', '2024-08-12 15:35:10'),
(8147, 3, '2024-08-12 11:40:07', '2024-08-12 11:40:07', 0, NULL, '2024-08-12 15:40:07', '2024-08-12 15:40:07'),
(8148, 5, '2024-08-12 11:40:07', '2024-08-12 11:40:07', 0, NULL, '2024-08-12 15:40:08', '2024-08-12 15:40:08'),
(8149, 1, '2024-08-12 11:45:04', '2024-08-12 11:45:04', 0, NULL, '2024-08-12 15:45:05', '2024-08-12 15:45:05'),
(8150, 2, '2024-08-12 11:45:05', '2024-08-12 11:45:05', 0, NULL, '2024-08-12 15:45:05', '2024-08-12 15:45:05'),
(8151, 1, '2024-08-12 11:50:06', '2024-08-12 11:50:06', 0, NULL, '2024-08-12 15:50:06', '2024-08-12 15:50:06'),
(8152, 2, '2024-08-12 11:50:06', '2024-08-12 11:50:06', 0, NULL, '2024-08-12 15:50:06', '2024-08-12 15:50:06'),
(8153, 3, '2024-08-12 11:50:07', '2024-08-12 11:50:07', 0, NULL, '2024-08-12 15:50:08', '2024-08-12 15:50:08'),
(8154, 5, '2024-08-12 11:50:08', '2024-08-12 11:50:08', 0, NULL, '2024-08-12 15:50:08', '2024-08-12 15:50:08'),
(8155, 1, '2024-08-12 12:00:06', '2024-08-12 12:00:06', 0, NULL, '2024-08-12 16:00:06', '2024-08-12 16:00:06'),
(8156, 2, '2024-08-12 12:00:06', '2024-08-12 12:00:06', 0, NULL, '2024-08-12 16:00:07', '2024-08-12 16:00:07'),
(8157, 3, '2024-08-12 12:00:08', '2024-08-12 12:00:08', 0, NULL, '2024-08-12 16:00:12', '2024-08-12 16:00:12'),
(8158, 5, '2024-08-12 12:00:12', '2024-08-12 12:00:12', 0, NULL, '2024-08-12 16:00:13', '2024-08-12 16:00:13'),
(8159, 1, '2024-08-12 12:10:07', '2024-08-12 12:10:07', 0, NULL, '2024-08-12 16:10:08', '2024-08-12 16:10:08'),
(8160, 2, '2024-08-12 12:10:08', '2024-08-12 12:10:08', 0, NULL, '2024-08-12 16:10:08', '2024-08-12 16:10:08'),
(8161, 3, '2024-08-12 12:10:09', '2024-08-12 12:10:09', 0, NULL, '2024-08-12 16:10:09', '2024-08-12 16:10:09'),
(8162, 5, '2024-08-12 12:10:10', '2024-08-12 12:10:10', 0, NULL, '2024-08-12 16:10:10', '2024-08-12 16:10:10'),
(8163, 1, '2024-08-12 12:20:08', '2024-08-12 12:20:08', 0, NULL, '2024-08-12 16:20:08', '2024-08-12 16:20:08'),
(8164, 2, '2024-08-12 12:20:09', '2024-08-12 12:20:09', 0, NULL, '2024-08-12 16:20:09', '2024-08-12 16:20:09');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(8165, 3, '2024-08-12 12:20:10', '2024-08-12 12:20:10', 0, NULL, '2024-08-12 16:20:10', '2024-08-12 16:20:10'),
(8166, 5, '2024-08-12 12:20:10', '2024-08-12 12:20:10', 0, NULL, '2024-08-12 16:20:10', '2024-08-12 16:20:10'),
(8167, 1, '2024-08-12 12:30:06', '2024-08-12 12:30:06', 0, NULL, '2024-08-12 16:30:07', '2024-08-12 16:30:07'),
(8168, 2, '2024-08-12 12:30:07', '2024-08-12 12:30:07', 0, NULL, '2024-08-12 16:30:07', '2024-08-12 16:30:07'),
(8169, 3, '2024-08-12 12:30:08', '2024-08-12 12:30:08', 0, NULL, '2024-08-12 16:30:08', '2024-08-12 16:30:08'),
(8170, 5, '2024-08-12 12:30:08', '2024-08-12 12:30:08', 0, NULL, '2024-08-12 16:30:09', '2024-08-12 16:30:09'),
(8171, 1, '2024-08-12 12:40:10', '2024-08-12 12:40:10', 0, NULL, '2024-08-12 16:40:10', '2024-08-12 16:40:10'),
(8172, 2, '2024-08-12 12:40:10', '2024-08-12 12:40:10', 0, NULL, '2024-08-12 16:40:11', '2024-08-12 16:40:11'),
(8173, 3, '2024-08-12 12:40:11', '2024-08-12 12:40:11', 0, NULL, '2024-08-12 16:40:11', '2024-08-12 16:40:11'),
(8174, 5, '2024-08-12 12:40:11', '2024-08-12 12:40:11', 0, NULL, '2024-08-12 16:40:11', '2024-08-12 16:40:11'),
(8175, 1, '2024-08-12 12:50:03', '2024-08-12 12:50:03', 0, NULL, '2024-08-12 16:50:04', '2024-08-12 16:50:04'),
(8176, 2, '2024-08-12 12:50:04', '2024-08-12 12:50:04', 0, NULL, '2024-08-12 16:50:04', '2024-08-12 16:50:04'),
(8177, 3, '2024-08-12 12:50:04', '2024-08-12 12:50:04', 0, NULL, '2024-08-12 16:50:05', '2024-08-12 16:50:05'),
(8178, 5, '2024-08-12 12:50:05', '2024-08-12 12:50:05', 0, NULL, '2024-08-12 16:50:05', '2024-08-12 16:50:05'),
(8179, 1, '2024-08-12 12:55:07', '2024-08-12 12:55:07', 0, NULL, '2024-08-12 16:55:07', '2024-08-12 16:55:07'),
(8180, 2, '2024-08-12 12:55:07', '2024-08-12 12:55:07', 0, NULL, '2024-08-12 16:55:07', '2024-08-12 16:55:07'),
(8181, 3, '2024-08-12 12:55:08', '2024-08-12 12:55:08', 0, NULL, '2024-08-12 16:55:08', '2024-08-12 16:55:08'),
(8182, 5, '2024-08-12 12:55:08', '2024-08-12 12:55:08', 0, NULL, '2024-08-12 16:55:09', '2024-08-12 16:55:09'),
(8183, 1, '2024-08-12 13:00:09', '2024-08-12 13:00:09', 0, NULL, '2024-08-12 17:00:10', '2024-08-12 17:00:10'),
(8184, 2, '2024-08-12 13:00:10', '2024-08-12 13:00:10', 0, NULL, '2024-08-12 17:00:11', '2024-08-12 17:00:11'),
(8185, 3, '2024-08-12 13:05:04', '2024-08-12 13:05:04', 0, NULL, '2024-08-12 17:05:05', '2024-08-12 17:05:05'),
(8186, 5, '2024-08-12 13:05:05', '2024-08-12 13:05:05', 0, NULL, '2024-08-12 17:05:06', '2024-08-12 17:05:06'),
(8187, 1, '2024-08-12 13:10:03', '2024-08-12 13:10:03', 0, NULL, '2024-08-12 17:10:03', '2024-08-12 17:10:03'),
(8188, 2, '2024-08-12 13:10:03', '2024-08-12 13:10:03', 0, NULL, '2024-08-12 17:10:04', '2024-08-12 17:10:04'),
(8189, 1, '2024-08-12 13:15:05', '2024-08-12 13:15:05', 0, NULL, '2024-08-12 17:15:06', '2024-08-12 17:15:06'),
(8190, 2, '2024-08-12 13:15:06', '2024-08-12 13:15:06', 0, NULL, '2024-08-12 17:15:06', '2024-08-12 17:15:06'),
(8191, 3, '2024-08-12 13:15:07', '2024-08-12 13:15:07', 0, NULL, '2024-08-12 17:15:08', '2024-08-12 17:15:08'),
(8192, 5, '2024-08-12 13:15:08', '2024-08-12 13:15:08', 0, NULL, '2024-08-12 17:15:08', '2024-08-12 17:15:08'),
(8193, 1, '2024-08-12 13:20:07', '2024-08-12 13:20:07', 0, NULL, '2024-08-12 17:20:07', '2024-08-12 17:20:07'),
(8194, 2, '2024-08-12 13:25:05', '2024-08-12 13:25:06', 0, NULL, '2024-08-12 17:25:06', '2024-08-12 17:25:06'),
(8195, 3, '2024-08-12 13:25:07', '2024-08-12 13:25:07', 0, NULL, '2024-08-12 17:25:07', '2024-08-12 17:25:07'),
(8196, 5, '2024-08-12 13:25:07', '2024-08-12 13:25:07', 0, NULL, '2024-08-12 17:25:08', '2024-08-12 17:25:08'),
(8197, 1, '2024-08-12 13:30:05', '2024-08-12 13:30:05', 0, NULL, '2024-08-12 17:30:05', '2024-08-12 17:30:05'),
(8198, 2, '2024-08-12 13:35:03', '2024-08-12 13:35:03', 0, NULL, '2024-08-12 17:35:06', '2024-08-12 17:35:06'),
(8199, 3, '2024-08-12 13:35:07', '2024-08-12 13:35:07', 0, NULL, '2024-08-12 17:35:07', '2024-08-12 17:35:07'),
(8200, 5, '2024-08-12 13:35:08', '2024-08-12 13:35:08', 0, NULL, '2024-08-12 17:35:08', '2024-08-12 17:35:08'),
(8201, 1, '2024-08-12 13:40:07', '2024-08-12 13:40:08', 0, NULL, '2024-08-12 17:40:08', '2024-08-12 17:40:08'),
(8202, 2, '2024-08-12 13:40:08', '2024-08-12 13:40:08', 0, NULL, '2024-08-12 17:40:08', '2024-08-12 17:40:08'),
(8203, 3, '2024-08-12 13:45:06', '2024-08-12 13:45:06', 0, NULL, '2024-08-12 17:45:07', '2024-08-12 17:45:07'),
(8204, 5, '2024-08-12 13:45:07', '2024-08-12 13:45:07', 0, NULL, '2024-08-12 17:45:08', '2024-08-12 17:45:08'),
(8205, 1, '2024-08-12 13:50:05', '2024-08-12 13:50:05', 0, NULL, '2024-08-12 17:50:05', '2024-08-12 17:50:05'),
(8206, 2, '2024-08-12 13:50:05', '2024-08-12 13:50:05', 0, NULL, '2024-08-12 17:50:06', '2024-08-12 17:50:06'),
(8207, 1, '2024-08-12 13:55:06', '2024-08-12 13:55:07', 0, NULL, '2024-08-12 17:55:07', '2024-08-12 17:55:07'),
(8208, 2, '2024-08-12 13:55:08', '2024-08-12 13:55:08', 0, NULL, '2024-08-12 17:55:08', '2024-08-12 17:55:08'),
(8209, 3, '2024-08-12 13:55:08', '2024-08-12 13:55:08', 0, NULL, '2024-08-12 17:55:09', '2024-08-12 17:55:09'),
(8210, 5, '2024-08-12 13:55:09', '2024-08-12 13:55:09', 0, NULL, '2024-08-12 17:55:09', '2024-08-12 17:55:09'),
(8211, 1, '2024-08-12 14:05:06', '2024-08-12 14:05:06', 0, NULL, '2024-08-12 18:05:06', '2024-08-12 18:05:06'),
(8212, 2, '2024-08-12 14:05:07', '2024-08-12 14:05:07', 0, NULL, '2024-08-12 18:05:07', '2024-08-12 18:05:07'),
(8213, 3, '2024-08-12 14:05:08', '2024-08-12 14:05:08', 0, NULL, '2024-08-12 18:05:08', '2024-08-12 18:05:08'),
(8214, 5, '2024-08-12 14:05:08', '2024-08-12 14:05:08', 0, NULL, '2024-08-12 18:05:09', '2024-08-12 18:05:09'),
(8215, 1, '2024-08-12 14:10:07', '2024-08-12 14:10:07', 0, NULL, '2024-08-12 18:10:07', '2024-08-12 18:10:07'),
(8216, 1, '2024-08-12 14:15:08', '2024-08-12 14:15:08', 0, NULL, '2024-08-12 18:15:08', '2024-08-12 18:15:08'),
(8217, 2, '2024-08-12 14:15:09', '2024-08-12 14:15:09', 0, NULL, '2024-08-12 18:15:09', '2024-08-12 18:15:09'),
(8218, 3, '2024-08-12 14:15:09', '2024-08-12 14:15:09', 0, NULL, '2024-08-12 18:15:10', '2024-08-12 18:15:10'),
(8219, 5, '2024-08-12 14:15:10', '2024-08-12 14:15:10', 0, NULL, '2024-08-12 18:15:10', '2024-08-12 18:15:10'),
(8220, 1, '2024-08-12 14:25:03', '2024-08-12 14:25:03', 0, NULL, '2024-08-12 18:25:04', '2024-08-12 18:25:04'),
(8221, 2, '2024-08-12 14:25:04', '2024-08-12 14:25:04', 0, NULL, '2024-08-12 18:25:05', '2024-08-12 18:25:05'),
(8222, 3, '2024-08-12 14:25:05', '2024-08-12 14:25:05', 0, NULL, '2024-08-12 18:25:06', '2024-08-12 18:25:06'),
(8223, 5, '2024-08-12 14:25:06', '2024-08-12 14:25:06', 0, NULL, '2024-08-12 18:25:07', '2024-08-12 18:25:07'),
(8224, 1, '2024-08-12 14:30:09', '2024-08-12 14:30:09', 0, NULL, '2024-08-12 18:30:09', '2024-08-12 18:30:09'),
(8225, 2, '2024-08-12 14:30:09', '2024-08-12 14:30:09', 0, NULL, '2024-08-12 18:30:10', '2024-08-12 18:30:10'),
(8226, 3, '2024-08-12 14:30:10', '2024-08-12 14:30:10', 0, NULL, '2024-08-12 18:30:11', '2024-08-12 18:30:11'),
(8227, 5, '2024-08-12 14:30:11', '2024-08-12 14:30:11', 0, NULL, '2024-08-12 18:30:11', '2024-08-12 18:30:11'),
(8228, 1, '2024-08-12 14:40:08', '2024-08-12 14:40:08', 0, NULL, '2024-08-12 18:40:08', '2024-08-12 18:40:08'),
(8229, 2, '2024-08-12 14:40:08', '2024-08-12 14:40:08', 0, NULL, '2024-08-12 18:40:09', '2024-08-12 18:40:09'),
(8230, 3, '2024-08-12 14:40:09', '2024-08-12 14:40:09', 0, NULL, '2024-08-12 18:40:09', '2024-08-12 18:40:09'),
(8231, 5, '2024-08-12 14:40:10', '2024-08-12 14:40:10', 0, NULL, '2024-08-12 18:40:10', '2024-08-12 18:40:10'),
(8232, 1, '2024-08-12 14:50:07', '2024-08-12 14:50:07', 0, NULL, '2024-08-12 18:50:08', '2024-08-12 18:50:08'),
(8233, 2, '2024-08-12 14:50:08', '2024-08-12 14:50:08', 0, NULL, '2024-08-12 18:50:08', '2024-08-12 18:50:08'),
(8234, 3, '2024-08-12 14:50:08', '2024-08-12 14:50:08', 0, NULL, '2024-08-12 18:50:09', '2024-08-12 18:50:09'),
(8235, 5, '2024-08-12 14:50:09', '2024-08-12 14:50:09', 0, NULL, '2024-08-12 18:50:09', '2024-08-12 18:50:09'),
(8236, 1, '2024-08-12 14:55:11', '2024-08-12 14:55:11', 0, NULL, '2024-08-12 18:55:11', '2024-08-12 18:55:11'),
(8237, 2, '2024-08-12 14:55:11', '2024-08-12 14:55:11', 0, NULL, '2024-08-12 18:55:12', '2024-08-12 18:55:12'),
(8238, 3, '2024-08-12 14:55:12', '2024-08-12 14:55:12', 0, NULL, '2024-08-12 18:55:12', '2024-08-12 18:55:12'),
(8239, 5, '2024-08-12 14:55:12', '2024-08-12 14:55:12', 0, NULL, '2024-08-12 18:55:12', '2024-08-12 18:55:12'),
(8240, 1, '2024-08-12 15:05:10', '2024-08-12 15:05:10', 0, NULL, '2024-08-12 19:05:10', '2024-08-12 19:05:10'),
(8241, 2, '2024-08-12 15:05:11', '2024-08-12 15:05:11', 0, NULL, '2024-08-12 19:05:11', '2024-08-12 19:05:11'),
(8242, 3, '2024-08-12 15:05:11', '2024-08-12 15:05:11', 0, NULL, '2024-08-12 19:05:11', '2024-08-12 19:05:11'),
(8243, 5, '2024-08-12 15:05:12', '2024-08-12 15:05:12', 0, NULL, '2024-08-12 19:05:12', '2024-08-12 19:05:12'),
(8244, 1, '2024-08-12 15:15:05', '2024-08-12 15:15:05', 0, NULL, '2024-08-12 19:15:05', '2024-08-12 19:15:05'),
(8245, 2, '2024-08-12 15:15:06', '2024-08-12 15:15:06', 0, NULL, '2024-08-12 19:15:06', '2024-08-12 19:15:06'),
(8246, 3, '2024-08-12 15:15:06', '2024-08-12 15:15:06', 0, NULL, '2024-08-12 19:15:07', '2024-08-12 19:15:07'),
(8247, 5, '2024-08-12 15:15:08', '2024-08-12 15:15:08', 0, NULL, '2024-08-12 19:15:08', '2024-08-12 19:15:08'),
(8248, 1, '2024-08-12 15:20:07', '2024-08-12 15:20:07', 0, NULL, '2024-08-12 19:20:08', '2024-08-12 19:20:08'),
(8249, 2, '2024-08-12 15:20:09', '2024-08-12 15:20:09', 0, NULL, '2024-08-12 19:20:09', '2024-08-12 19:20:09'),
(8250, 3, '2024-08-12 15:20:10', '2024-08-12 15:20:10', 0, NULL, '2024-08-12 19:20:11', '2024-08-12 19:20:11'),
(8251, 5, '2024-08-12 15:25:07', '2024-08-12 15:25:07', 0, NULL, '2024-08-12 19:25:07', '2024-08-12 19:25:07'),
(8252, 1, '2024-08-12 15:30:05', '2024-08-12 15:30:05', 0, NULL, '2024-08-12 19:30:06', '2024-08-12 19:30:06'),
(8253, 2, '2024-08-12 15:30:07', '2024-08-12 15:30:07', 0, NULL, '2024-08-12 19:30:07', '2024-08-12 19:30:07'),
(8254, 3, '2024-08-12 15:30:07', '2024-08-12 15:30:07', 0, NULL, '2024-08-12 19:30:08', '2024-08-12 19:30:08'),
(8255, 5, '2024-08-12 15:35:03', '2024-08-12 15:35:03', 0, NULL, '2024-08-12 19:35:04', '2024-08-12 19:35:04'),
(8256, 1, '2024-08-12 15:40:06', '2024-08-12 15:40:06', 0, NULL, '2024-08-12 19:40:06', '2024-08-12 19:40:06'),
(8257, 2, '2024-08-12 15:40:06', '2024-08-12 15:40:06', 0, NULL, '2024-08-12 19:40:07', '2024-08-12 19:40:07'),
(8258, 3, '2024-08-12 15:40:07', '2024-08-12 15:40:07', 0, NULL, '2024-08-12 19:40:07', '2024-08-12 19:40:07'),
(8259, 5, '2024-08-12 15:40:08', '2024-08-12 15:40:09', 1, NULL, '2024-08-12 19:40:09', '2024-08-12 19:40:09'),
(8260, 1, '2024-08-12 15:50:06', '2024-08-12 15:50:06', 0, NULL, '2024-08-12 19:50:06', '2024-08-12 19:50:06'),
(8261, 2, '2024-08-12 15:50:06', '2024-08-12 15:50:06', 0, NULL, '2024-08-12 19:50:06', '2024-08-12 19:50:06'),
(8262, 3, '2024-08-12 15:50:06', '2024-08-12 15:50:06', 0, NULL, '2024-08-12 19:50:07', '2024-08-12 19:50:07'),
(8263, 5, '2024-08-12 15:50:07', '2024-08-12 15:50:07', 0, NULL, '2024-08-12 19:50:07', '2024-08-12 19:50:07'),
(8264, 1, '2024-08-12 16:00:04', '2024-08-12 16:00:04', 0, NULL, '2024-08-12 20:00:05', '2024-08-12 20:00:05'),
(8265, 2, '2024-08-12 16:00:05', '2024-08-12 16:00:06', 0, NULL, '2024-08-12 20:00:06', '2024-08-12 20:00:06'),
(8266, 3, '2024-08-12 16:00:07', '2024-08-12 16:00:07', 0, NULL, '2024-08-12 20:00:07', '2024-08-12 20:00:07'),
(8267, 5, '2024-08-12 16:00:08', '2024-08-12 16:00:08', 0, NULL, '2024-08-12 20:00:08', '2024-08-12 20:00:08'),
(8268, 1, '2024-08-12 16:05:05', '2024-08-12 16:05:05', 0, NULL, '2024-08-12 20:05:06', '2024-08-12 20:05:06'),
(8269, 2, '2024-08-12 16:10:05', '2024-08-12 16:10:05', 0, NULL, '2024-08-12 20:10:05', '2024-08-12 20:10:05'),
(8270, 3, '2024-08-12 16:10:06', '2024-08-12 16:10:06', 0, NULL, '2024-08-12 20:10:06', '2024-08-12 20:10:06'),
(8271, 5, '2024-08-12 16:10:07', '2024-08-12 16:10:08', 0, NULL, '2024-08-12 20:10:08', '2024-08-12 20:10:08'),
(8272, 1, '2024-08-12 16:15:08', '2024-08-12 16:15:08', 0, NULL, '2024-08-12 20:15:09', '2024-08-12 20:15:09'),
(8273, 2, '2024-08-12 16:15:09', '2024-08-12 16:15:09', 0, NULL, '2024-08-12 20:15:09', '2024-08-12 20:15:09'),
(8274, 3, '2024-08-12 16:15:10', '2024-08-12 16:15:10', 0, NULL, '2024-08-12 20:15:10', '2024-08-12 20:15:10'),
(8275, 5, '2024-08-12 16:20:05', '2024-08-12 16:20:05', 0, NULL, '2024-08-12 20:20:07', '2024-08-12 20:20:07'),
(8276, 1, '2024-08-12 16:25:05', '2024-08-12 16:25:06', 0, NULL, '2024-08-12 20:25:06', '2024-08-12 20:25:06'),
(8277, 2, '2024-08-12 16:25:06', '2024-08-12 16:25:06', 0, NULL, '2024-08-12 20:25:06', '2024-08-12 20:25:06'),
(8278, 3, '2024-08-12 16:25:07', '2024-08-12 16:25:07', 0, NULL, '2024-08-12 20:25:07', '2024-08-12 20:25:07'),
(8279, 1, '2024-08-12 16:30:09', '2024-08-12 16:30:09', 0, NULL, '2024-08-12 20:30:09', '2024-08-12 20:30:09'),
(8280, 2, '2024-08-12 16:30:09', '2024-08-12 16:30:09', 0, NULL, '2024-08-12 20:30:10', '2024-08-12 20:30:10'),
(8281, 3, '2024-08-12 16:30:10', '2024-08-12 16:30:10', 0, NULL, '2024-08-12 20:30:11', '2024-08-12 20:30:11'),
(8282, 5, '2024-08-12 16:30:11', '2024-08-12 16:30:11', 0, NULL, '2024-08-12 20:30:11', '2024-08-12 20:30:11'),
(8283, 1, '2024-08-12 16:40:12', '2024-08-12 16:40:12', 0, NULL, '2024-08-12 20:40:12', '2024-08-12 20:40:12'),
(8284, 2, '2024-08-12 16:40:13', '2024-08-12 16:40:13', 0, NULL, '2024-08-12 20:40:13', '2024-08-12 20:40:13'),
(8285, 3, '2024-08-12 16:40:13', '2024-08-12 16:40:13', 0, NULL, '2024-08-12 20:40:14', '2024-08-12 20:40:14'),
(8286, 5, '2024-08-12 16:40:14', '2024-08-12 16:40:14', 0, NULL, '2024-08-12 20:40:14', '2024-08-12 20:40:14'),
(8287, 1, '2024-08-12 16:50:08', '2024-08-12 16:50:08', 0, NULL, '2024-08-12 20:50:09', '2024-08-12 20:50:09'),
(8288, 2, '2024-08-12 16:50:09', '2024-08-12 16:50:09', 0, NULL, '2024-08-12 20:50:09', '2024-08-12 20:50:09'),
(8289, 3, '2024-08-12 16:50:10', '2024-08-12 16:50:10', 0, NULL, '2024-08-12 20:50:10', '2024-08-12 20:50:10'),
(8290, 5, '2024-08-12 16:50:10', '2024-08-12 16:50:10', 0, NULL, '2024-08-12 20:50:11', '2024-08-12 20:50:11'),
(8291, 1, '2024-08-12 17:00:05', '2024-08-12 17:00:05', 0, NULL, '2024-08-12 21:00:06', '2024-08-12 21:00:06'),
(8292, 2, '2024-08-12 17:00:06', '2024-08-12 17:00:06', 0, NULL, '2024-08-12 21:00:06', '2024-08-12 21:00:06'),
(8293, 3, '2024-08-12 17:00:07', '2024-08-12 17:00:07', 0, NULL, '2024-08-12 21:00:07', '2024-08-12 21:00:07'),
(8294, 5, '2024-08-12 17:00:08', '2024-08-12 17:00:08', 0, NULL, '2024-08-12 21:00:08', '2024-08-12 21:00:08'),
(8295, 1, '2024-08-12 17:05:09', '2024-08-12 17:05:09', 0, NULL, '2024-08-12 21:05:09', '2024-08-12 21:05:09'),
(8296, 2, '2024-08-12 17:05:09', '2024-08-12 17:05:09', 0, NULL, '2024-08-12 21:05:10', '2024-08-12 21:05:10'),
(8297, 3, '2024-08-12 17:05:10', '2024-08-12 17:05:10', 0, NULL, '2024-08-12 21:05:10', '2024-08-12 21:05:10'),
(8298, 5, '2024-08-12 17:05:10', '2024-08-12 17:05:10', 0, NULL, '2024-08-12 21:05:11', '2024-08-12 21:05:11'),
(8299, 1, '2024-08-12 17:15:04', '2024-08-12 17:15:04', 0, NULL, '2024-08-12 21:15:04', '2024-08-12 21:15:04'),
(8300, 2, '2024-08-12 17:15:05', '2024-08-12 17:15:05', 0, NULL, '2024-08-12 21:15:05', '2024-08-12 21:15:05'),
(8301, 3, '2024-08-12 17:15:05', '2024-08-12 17:15:05', 0, NULL, '2024-08-12 21:15:05', '2024-08-12 21:15:05'),
(8302, 5, '2024-08-12 17:15:05', '2024-08-12 17:15:05', 0, NULL, '2024-08-12 21:15:06', '2024-08-12 21:15:06'),
(8303, 1, '2024-08-12 17:20:07', '2024-08-12 17:20:07', 0, NULL, '2024-08-12 21:20:08', '2024-08-12 21:20:08'),
(8304, 2, '2024-08-12 17:20:08', '2024-08-12 17:20:08', 0, NULL, '2024-08-12 21:20:08', '2024-08-12 21:20:08'),
(8305, 3, '2024-08-12 17:20:08', '2024-08-12 17:20:08', 0, NULL, '2024-08-12 21:20:09', '2024-08-12 21:20:09'),
(8306, 5, '2024-08-12 17:20:09', '2024-08-12 17:20:09', 0, NULL, '2024-08-12 21:20:09', '2024-08-12 21:20:09'),
(8307, 1, '2024-08-12 17:30:10', '2024-08-12 17:30:10', 0, NULL, '2024-08-12 21:30:10', '2024-08-12 21:30:10'),
(8308, 2, '2024-08-12 17:30:10', '2024-08-12 17:30:10', 0, NULL, '2024-08-12 21:30:11', '2024-08-12 21:30:11'),
(8309, 3, '2024-08-12 17:30:11', '2024-08-12 17:30:11', 0, NULL, '2024-08-12 21:30:11', '2024-08-12 21:30:11'),
(8310, 5, '2024-08-12 17:30:12', '2024-08-12 17:30:12', 0, NULL, '2024-08-12 21:30:12', '2024-08-12 21:30:12'),
(8311, 1, '2024-08-12 17:40:08', '2024-08-12 17:40:08', 0, NULL, '2024-08-12 21:40:08', '2024-08-12 21:40:08'),
(8312, 2, '2024-08-12 17:40:09', '2024-08-12 17:40:09', 0, NULL, '2024-08-12 21:40:10', '2024-08-12 21:40:10'),
(8313, 3, '2024-08-12 17:40:10', '2024-08-12 17:40:10', 0, NULL, '2024-08-12 21:40:10', '2024-08-12 21:40:10'),
(8314, 5, '2024-08-12 17:40:10', '2024-08-12 17:40:11', 0, NULL, '2024-08-12 21:40:11', '2024-08-12 21:40:11'),
(8315, 1, '2024-08-12 17:50:07', '2024-08-12 17:50:07', 0, NULL, '2024-08-12 21:50:08', '2024-08-12 21:50:08'),
(8316, 2, '2024-08-12 17:50:08', '2024-08-12 17:50:08', 0, NULL, '2024-08-12 21:50:09', '2024-08-12 21:50:09'),
(8317, 3, '2024-08-12 17:50:09', '2024-08-12 17:50:09', 0, NULL, '2024-08-12 21:50:10', '2024-08-12 21:50:10'),
(8318, 5, '2024-08-12 17:50:10', '2024-08-12 17:50:10', 0, NULL, '2024-08-12 21:50:11', '2024-08-12 21:50:11'),
(8319, 1, '2024-08-12 17:55:10', '2024-08-12 17:55:10', 0, NULL, '2024-08-12 21:55:10', '2024-08-12 21:55:10'),
(8320, 2, '2024-08-12 17:55:10', '2024-08-12 17:55:10', 0, NULL, '2024-08-12 21:55:11', '2024-08-12 21:55:11'),
(8321, 3, '2024-08-12 18:00:07', '2024-08-12 18:00:07', 0, NULL, '2024-08-12 22:00:08', '2024-08-12 22:00:08'),
(8322, 5, '2024-08-12 18:00:09', '2024-08-12 18:00:09', 0, NULL, '2024-08-12 22:00:10', '2024-08-12 22:00:10'),
(8323, 1, '2024-08-12 18:05:10', '2024-08-12 18:05:10', 0, NULL, '2024-08-12 22:05:11', '2024-08-12 22:05:11'),
(8324, 2, '2024-08-12 18:05:11', '2024-08-12 18:05:11', 0, NULL, '2024-08-12 22:05:12', '2024-08-12 22:05:12'),
(8325, 3, '2024-08-12 18:05:12', '2024-08-12 18:05:12', 0, NULL, '2024-08-12 22:05:12', '2024-08-12 22:05:12'),
(8326, 5, '2024-08-12 18:10:05', '2024-08-12 18:10:05', 0, NULL, '2024-08-12 22:10:05', '2024-08-12 22:10:05'),
(8327, 1, '2024-08-12 18:15:07', '2024-08-12 18:15:11', 3, NULL, '2024-08-12 22:15:11', '2024-08-12 22:15:11'),
(8328, 2, '2024-08-12 18:15:12', '2024-08-12 18:15:12', 0, NULL, '2024-08-12 22:15:12', '2024-08-12 22:15:12'),
(8329, 3, '2024-08-12 18:15:13', '2024-08-12 18:15:13', 0, NULL, '2024-08-12 22:15:13', '2024-08-12 22:15:13'),
(8330, 5, '2024-08-12 18:15:13', '2024-08-12 18:15:13', 0, NULL, '2024-08-12 22:15:13', '2024-08-12 22:15:13'),
(8331, 1, '2024-08-12 18:25:04', '2024-08-12 18:25:05', 0, NULL, '2024-08-12 22:25:05', '2024-08-12 22:25:05'),
(8332, 2, '2024-08-12 18:25:05', '2024-08-12 18:25:05', 0, NULL, '2024-08-12 22:25:05', '2024-08-12 22:25:05'),
(8333, 3, '2024-08-12 18:25:06', '2024-08-12 18:25:06', 0, NULL, '2024-08-12 22:25:06', '2024-08-12 22:25:06'),
(8334, 5, '2024-08-12 18:25:06', '2024-08-12 18:25:06', 0, NULL, '2024-08-12 22:25:07', '2024-08-12 22:25:07'),
(8335, 1, '2024-08-12 18:35:06', '2024-08-12 18:35:06', 0, NULL, '2024-08-12 22:35:07', '2024-08-12 22:35:07'),
(8336, 2, '2024-08-12 18:35:07', '2024-08-12 18:35:07', 0, NULL, '2024-08-12 22:35:08', '2024-08-12 22:35:08'),
(8337, 3, '2024-08-12 18:35:09', '2024-08-12 18:35:09', 0, NULL, '2024-08-12 22:35:09', '2024-08-12 22:35:09'),
(8338, 5, '2024-08-12 18:35:09', '2024-08-12 18:35:09', 0, NULL, '2024-08-12 22:35:09', '2024-08-12 22:35:09'),
(8339, 1, '2024-08-12 18:45:05', '2024-08-12 18:45:05', 0, NULL, '2024-08-12 22:45:06', '2024-08-12 22:45:06'),
(8340, 2, '2024-08-12 18:45:06', '2024-08-12 18:45:06', 0, NULL, '2024-08-12 22:45:07', '2024-08-12 22:45:07'),
(8341, 3, '2024-08-12 18:45:07', '2024-08-12 18:45:07', 0, NULL, '2024-08-12 22:45:07', '2024-08-12 22:45:07'),
(8342, 5, '2024-08-12 18:45:07', '2024-08-12 18:45:07', 0, NULL, '2024-08-12 22:45:08', '2024-08-12 22:45:08'),
(8343, 1, '2024-08-12 18:50:07', '2024-08-12 18:50:07', 0, NULL, '2024-08-12 22:50:07', '2024-08-12 22:50:07'),
(8344, 2, '2024-08-12 18:55:07', '2024-08-12 18:55:07', 0, NULL, '2024-08-12 22:55:07', '2024-08-12 22:55:07'),
(8345, 3, '2024-08-12 18:55:08', '2024-08-12 18:55:08', 0, NULL, '2024-08-12 22:55:08', '2024-08-12 22:55:08'),
(8346, 5, '2024-08-12 18:55:08', '2024-08-12 18:55:08', 0, NULL, '2024-08-12 22:55:08', '2024-08-12 22:55:08'),
(8347, 1, '2024-08-12 19:00:12', '2024-08-12 19:00:12', 0, NULL, '2024-08-12 23:00:12', '2024-08-12 23:00:12'),
(8348, 2, '2024-08-12 19:00:12', '2024-08-12 19:00:12', 0, NULL, '2024-08-12 23:00:12', '2024-08-12 23:00:12'),
(8349, 3, '2024-08-12 19:00:13', '2024-08-12 19:00:13', 0, NULL, '2024-08-12 23:00:13', '2024-08-12 23:00:13'),
(8350, 5, '2024-08-12 19:00:13', '2024-08-12 19:00:13', 0, NULL, '2024-08-12 23:00:13', '2024-08-12 23:00:13'),
(8351, 1, '2024-08-12 19:10:07', '2024-08-12 19:10:07', 0, NULL, '2024-08-12 23:10:08', '2024-08-12 23:10:08'),
(8352, 2, '2024-08-12 19:10:08', '2024-08-12 19:10:08', 0, NULL, '2024-08-12 23:10:08', '2024-08-12 23:10:08'),
(8353, 3, '2024-08-12 19:10:09', '2024-08-12 19:10:09', 0, NULL, '2024-08-12 23:10:09', '2024-08-12 23:10:09'),
(8354, 5, '2024-08-12 19:10:09', '2024-08-12 19:10:09', 0, NULL, '2024-08-12 23:10:10', '2024-08-12 23:10:10'),
(8355, 1, '2024-08-12 19:20:04', '2024-08-12 19:20:04', 0, NULL, '2024-08-12 23:20:05', '2024-08-12 23:20:05'),
(8356, 2, '2024-08-12 19:20:05', '2024-08-12 19:20:05', 0, NULL, '2024-08-12 23:20:05', '2024-08-12 23:20:05'),
(8357, 3, '2024-08-12 19:20:06', '2024-08-12 19:20:06', 0, NULL, '2024-08-12 23:20:06', '2024-08-12 23:20:06'),
(8358, 5, '2024-08-12 19:20:08', '2024-08-12 19:20:08', 0, NULL, '2024-08-12 23:20:12', '2024-08-12 23:20:12'),
(8359, 1, '2024-08-12 19:25:05', '2024-08-12 19:25:05', 0, NULL, '2024-08-12 23:25:05', '2024-08-12 23:25:05'),
(8360, 2, '2024-08-12 19:30:05', '2024-08-12 19:30:05', 0, NULL, '2024-08-12 23:30:06', '2024-08-12 23:30:06'),
(8361, 3, '2024-08-12 19:30:06', '2024-08-12 19:30:06', 0, NULL, '2024-08-12 23:30:07', '2024-08-12 23:30:07'),
(8362, 5, '2024-08-12 19:30:07', '2024-08-12 19:30:08', 0, NULL, '2024-08-12 23:30:08', '2024-08-12 23:30:08'),
(8363, 1, '2024-08-12 19:35:04', '2024-08-12 19:35:04', 0, NULL, '2024-08-12 23:35:04', '2024-08-12 23:35:04'),
(8364, 2, '2024-08-12 19:40:03', '2024-08-12 19:40:03', 0, NULL, '2024-08-12 23:40:04', '2024-08-12 23:40:04'),
(8365, 3, '2024-08-12 19:40:04', '2024-08-12 19:40:04', 0, NULL, '2024-08-12 23:40:05', '2024-08-12 23:40:05'),
(8366, 5, '2024-08-12 19:40:05', '2024-08-12 19:40:05', 0, NULL, '2024-08-12 23:40:05', '2024-08-12 23:40:05'),
(8367, 1, '2024-08-12 19:45:10', '2024-08-12 19:45:10', 0, NULL, '2024-08-12 23:45:10', '2024-08-12 23:45:10'),
(8368, 2, '2024-08-12 19:45:10', '2024-08-12 19:45:10', 0, NULL, '2024-08-12 23:45:11', '2024-08-12 23:45:11'),
(8369, 3, '2024-08-12 19:45:11', '2024-08-12 19:45:11', 0, NULL, '2024-08-12 23:45:11', '2024-08-12 23:45:11'),
(8370, 5, '2024-08-12 19:45:11', '2024-08-12 19:45:11', 0, NULL, '2024-08-12 23:45:12', '2024-08-12 23:45:12'),
(8371, 1, '2024-08-12 19:55:11', '2024-08-12 19:55:11', 0, NULL, '2024-08-12 23:55:12', '2024-08-12 23:55:12'),
(8372, 2, '2024-08-12 19:55:12', '2024-08-12 19:55:12', 0, NULL, '2024-08-12 23:55:12', '2024-08-12 23:55:12'),
(8373, 3, '2024-08-12 19:55:13', '2024-08-12 19:55:13', 0, NULL, '2024-08-12 23:55:13', '2024-08-12 23:55:13'),
(8374, 5, '2024-08-12 19:55:13', '2024-08-12 19:55:13', 0, NULL, '2024-08-12 23:55:13', '2024-08-12 23:55:13'),
(8375, 1, '2024-08-12 20:05:07', '2024-08-12 20:05:07', 0, NULL, '2024-08-13 00:05:07', '2024-08-13 00:05:07'),
(8376, 2, '2024-08-12 20:05:07', '2024-08-12 20:05:07', 0, NULL, '2024-08-13 00:05:08', '2024-08-13 00:05:08'),
(8377, 3, '2024-08-12 20:05:08', '2024-08-12 20:05:08', 0, NULL, '2024-08-13 00:05:08', '2024-08-13 00:05:08'),
(8378, 5, '2024-08-12 20:05:09', '2024-08-12 20:05:09', 0, NULL, '2024-08-13 00:05:09', '2024-08-13 00:05:09'),
(8379, 1, '2024-08-12 20:10:12', '2024-08-12 20:10:12', 0, NULL, '2024-08-13 00:10:13', '2024-08-13 00:10:13'),
(8380, 2, '2024-08-12 20:10:14', '2024-08-12 20:10:14', 0, NULL, '2024-08-13 00:10:15', '2024-08-13 00:10:15'),
(8381, 3, '2024-08-12 20:10:15', '2024-08-12 20:10:15', 0, NULL, '2024-08-13 00:10:16', '2024-08-13 00:10:16'),
(8382, 5, '2024-08-12 20:15:04', '2024-08-12 20:15:04', 0, NULL, '2024-08-13 00:15:04', '2024-08-13 00:15:04'),
(8383, 1, '2024-08-12 20:20:07', '2024-08-12 20:20:07', 0, NULL, '2024-08-13 00:20:07', '2024-08-13 00:20:07'),
(8384, 2, '2024-08-12 20:20:07', '2024-08-12 20:20:07', 0, NULL, '2024-08-13 00:20:07', '2024-08-13 00:20:07'),
(8385, 3, '2024-08-12 20:20:08', '2024-08-12 20:20:08', 0, NULL, '2024-08-13 00:20:08', '2024-08-13 00:20:08'),
(8386, 5, '2024-08-12 20:20:08', '2024-08-12 20:20:08', 0, NULL, '2024-08-13 00:20:09', '2024-08-13 00:20:09'),
(8387, 1, '2024-08-12 20:30:05', '2024-08-12 20:30:05', 0, NULL, '2024-08-13 00:30:06', '2024-08-13 00:30:06'),
(8388, 2, '2024-08-12 20:30:06', '2024-08-12 20:30:06', 0, NULL, '2024-08-13 00:30:06', '2024-08-13 00:30:06'),
(8389, 3, '2024-08-12 20:30:06', '2024-08-12 20:30:06', 0, NULL, '2024-08-13 00:30:06', '2024-08-13 00:30:06'),
(8390, 5, '2024-08-12 20:30:06', '2024-08-12 20:30:06', 0, NULL, '2024-08-13 00:30:07', '2024-08-13 00:30:07'),
(8391, 1, '2024-08-12 20:40:08', '2024-08-12 20:40:08', 0, NULL, '2024-08-13 00:40:09', '2024-08-13 00:40:09'),
(8392, 2, '2024-08-12 20:40:09', '2024-08-12 20:40:09', 0, NULL, '2024-08-13 00:40:09', '2024-08-13 00:40:09'),
(8393, 3, '2024-08-12 20:40:10', '2024-08-12 20:40:10', 0, NULL, '2024-08-13 00:40:10', '2024-08-13 00:40:10'),
(8394, 5, '2024-08-12 20:40:10', '2024-08-12 20:40:10', 0, NULL, '2024-08-13 00:40:10', '2024-08-13 00:40:10'),
(8395, 1, '2024-08-12 20:50:09', '2024-08-12 20:50:09', 0, NULL, '2024-08-13 00:50:09', '2024-08-13 00:50:09'),
(8396, 2, '2024-08-12 20:50:11', '2024-08-12 20:50:11', 0, NULL, '2024-08-13 00:50:11', '2024-08-13 00:50:11'),
(8397, 3, '2024-08-12 20:50:11', '2024-08-12 20:50:11', 0, NULL, '2024-08-13 00:50:11', '2024-08-13 00:50:11'),
(8398, 5, '2024-08-12 20:50:11', '2024-08-12 20:50:11', 0, NULL, '2024-08-13 00:50:12', '2024-08-13 00:50:12'),
(8399, 1, '2024-08-12 21:00:05', '2024-08-12 21:00:05', 0, NULL, '2024-08-13 01:00:06', '2024-08-13 01:00:06'),
(8400, 2, '2024-08-12 21:00:06', '2024-08-12 21:00:06', 0, NULL, '2024-08-13 01:00:06', '2024-08-13 01:00:06'),
(8401, 3, '2024-08-12 21:00:06', '2024-08-12 21:00:06', 0, NULL, '2024-08-13 01:00:06', '2024-08-13 01:00:06'),
(8402, 5, '2024-08-12 21:00:06', '2024-08-12 21:00:06', 0, NULL, '2024-08-13 01:00:06', '2024-08-13 01:00:06'),
(8403, 1, '2024-08-12 21:05:06', '2024-08-12 21:05:06', 0, NULL, '2024-08-13 01:05:06', '2024-08-13 01:05:06'),
(8404, 1, '2024-08-12 21:10:07', '2024-08-12 21:10:07', 0, NULL, '2024-08-13 01:10:07', '2024-08-13 01:10:07'),
(8405, 2, '2024-08-12 21:10:08', '2024-08-12 21:10:08', 0, NULL, '2024-08-13 01:10:08', '2024-08-13 01:10:08'),
(8406, 3, '2024-08-12 21:10:08', '2024-08-12 21:10:08', 0, NULL, '2024-08-13 01:10:08', '2024-08-13 01:10:08'),
(8407, 5, '2024-08-12 21:10:09', '2024-08-12 21:10:09', 0, NULL, '2024-08-13 01:10:09', '2024-08-13 01:10:09'),
(8408, 1, '2024-08-12 21:20:04', '2024-08-12 21:20:04', 0, NULL, '2024-08-13 01:20:04', '2024-08-13 01:20:04'),
(8409, 2, '2024-08-12 21:20:05', '2024-08-12 21:20:05', 0, NULL, '2024-08-13 01:20:05', '2024-08-13 01:20:05'),
(8410, 3, '2024-08-12 21:20:05', '2024-08-12 21:20:05', 0, NULL, '2024-08-13 01:20:05', '2024-08-13 01:20:05'),
(8411, 5, '2024-08-12 21:20:06', '2024-08-12 21:20:06', 0, NULL, '2024-08-13 01:20:06', '2024-08-13 01:20:06'),
(8412, 1, '2024-08-12 21:25:06', '2024-08-12 21:25:07', 0, NULL, '2024-08-13 01:25:07', '2024-08-13 01:25:07'),
(8413, 2, '2024-08-12 21:25:08', '2024-08-12 21:25:08', 0, NULL, '2024-08-13 01:25:08', '2024-08-13 01:25:08'),
(8414, 3, '2024-08-12 21:25:08', '2024-08-12 21:25:08', 0, NULL, '2024-08-13 01:25:08', '2024-08-13 01:25:08'),
(8415, 5, '2024-08-12 21:30:07', '2024-08-12 21:30:07', 0, NULL, '2024-08-13 01:30:07', '2024-08-13 01:30:07'),
(8416, 1, '2024-08-12 21:35:06', '2024-08-12 21:35:06', 0, NULL, '2024-08-13 01:35:06', '2024-08-13 01:35:06'),
(8417, 2, '2024-08-12 21:35:08', '2024-08-12 21:35:08', 0, NULL, '2024-08-13 01:35:08', '2024-08-13 01:35:08'),
(8418, 3, '2024-08-12 21:35:08', '2024-08-12 21:35:08', 0, NULL, '2024-08-13 01:35:08', '2024-08-13 01:35:08'),
(8419, 5, '2024-08-12 21:40:05', '2024-08-12 21:40:05', 0, NULL, '2024-08-13 01:40:05', '2024-08-13 01:40:05'),
(8420, 1, '2024-08-12 21:45:05', '2024-08-12 21:45:05', 0, NULL, '2024-08-13 01:45:05', '2024-08-13 01:45:05'),
(8421, 2, '2024-08-12 21:45:05', '2024-08-12 21:45:05', 0, NULL, '2024-08-13 01:45:05', '2024-08-13 01:45:05'),
(8422, 3, '2024-08-12 21:45:06', '2024-08-12 21:45:06', 0, NULL, '2024-08-13 01:45:06', '2024-08-13 01:45:06'),
(8423, 1, '2024-08-12 21:50:07', '2024-08-12 21:50:07', 0, NULL, '2024-08-13 01:50:08', '2024-08-13 01:50:08'),
(8424, 2, '2024-08-12 21:50:08', '2024-08-12 21:50:08', 0, NULL, '2024-08-13 01:50:08', '2024-08-13 01:50:08'),
(8425, 3, '2024-08-12 21:50:08', '2024-08-12 21:50:08', 0, NULL, '2024-08-13 01:50:08', '2024-08-13 01:50:08'),
(8426, 5, '2024-08-12 21:50:08', '2024-08-12 21:50:08', 0, NULL, '2024-08-13 01:50:09', '2024-08-13 01:50:09'),
(8427, 1, '2024-08-12 21:55:08', '2024-08-12 21:55:08', 0, NULL, '2024-08-13 01:55:08', '2024-08-13 01:55:08'),
(8428, 2, '2024-08-12 22:00:05', '2024-08-12 22:00:05', 0, NULL, '2024-08-13 02:00:05', '2024-08-13 02:00:05'),
(8429, 3, '2024-08-12 22:00:05', '2024-08-12 22:00:05', 0, NULL, '2024-08-13 02:00:06', '2024-08-13 02:00:06'),
(8430, 5, '2024-08-12 22:00:06', '2024-08-12 22:00:06', 0, NULL, '2024-08-13 02:00:06', '2024-08-13 02:00:06'),
(8431, 1, '2024-08-12 22:05:08', '2024-08-12 22:05:08', 0, NULL, '2024-08-13 02:05:08', '2024-08-13 02:05:08'),
(8432, 2, '2024-08-12 22:05:08', '2024-08-12 22:05:08', 0, NULL, '2024-08-13 02:05:08', '2024-08-13 02:05:08'),
(8433, 3, '2024-08-12 22:05:08', '2024-08-12 22:05:08', 0, NULL, '2024-08-13 02:05:09', '2024-08-13 02:05:09'),
(8434, 5, '2024-08-12 22:05:09', '2024-08-12 22:05:09', 0, NULL, '2024-08-13 02:05:09', '2024-08-13 02:05:09'),
(8435, 1, '2024-08-12 22:15:03', '2024-08-12 22:15:03', 0, NULL, '2024-08-13 02:15:03', '2024-08-13 02:15:03'),
(8436, 2, '2024-08-12 22:15:03', '2024-08-12 22:15:03', 0, NULL, '2024-08-13 02:15:03', '2024-08-13 02:15:03'),
(8437, 3, '2024-08-12 22:15:04', '2024-08-12 22:15:04', 0, NULL, '2024-08-13 02:15:04', '2024-08-13 02:15:04'),
(8438, 5, '2024-08-12 22:15:04', '2024-08-12 22:15:04', 0, NULL, '2024-08-13 02:15:05', '2024-08-13 02:15:05'),
(8439, 1, '2024-08-12 22:25:05', '2024-08-12 22:25:05', 0, NULL, '2024-08-13 02:25:05', '2024-08-13 02:25:05'),
(8440, 2, '2024-08-12 22:25:06', '2024-08-12 22:25:06', 0, NULL, '2024-08-13 02:25:06', '2024-08-13 02:25:06'),
(8441, 3, '2024-08-12 22:25:06', '2024-08-12 22:25:06', 0, NULL, '2024-08-13 02:25:06', '2024-08-13 02:25:06'),
(8442, 5, '2024-08-12 22:25:07', '2024-08-12 22:25:07', 0, NULL, '2024-08-13 02:25:07', '2024-08-13 02:25:07'),
(8443, 1, '2024-08-12 22:35:03', '2024-08-12 22:35:03', 0, NULL, '2024-08-13 02:35:03', '2024-08-13 02:35:03'),
(8444, 2, '2024-08-12 22:35:04', '2024-08-12 22:35:04', 0, NULL, '2024-08-13 02:35:04', '2024-08-13 02:35:04'),
(8445, 3, '2024-08-12 22:35:04', '2024-08-12 22:35:04', 0, NULL, '2024-08-13 02:35:04', '2024-08-13 02:35:04'),
(8446, 5, '2024-08-12 22:35:05', '2024-08-12 22:35:05', 0, NULL, '2024-08-13 02:35:05', '2024-08-13 02:35:05'),
(8447, 1, '2024-08-12 22:40:04', '2024-08-12 22:40:04', 0, NULL, '2024-08-13 02:40:04', '2024-08-13 02:40:04'),
(8448, 1, '2024-08-12 22:45:05', '2024-08-12 22:45:05', 0, NULL, '2024-08-13 02:45:05', '2024-08-13 02:45:05'),
(8449, 2, '2024-08-12 22:45:06', '2024-08-12 22:45:06', 0, NULL, '2024-08-13 02:45:06', '2024-08-13 02:45:06'),
(8450, 3, '2024-08-12 22:45:06', '2024-08-12 22:45:06', 0, NULL, '2024-08-13 02:45:07', '2024-08-13 02:45:07'),
(8451, 5, '2024-08-12 22:45:07', '2024-08-12 22:45:07', 0, NULL, '2024-08-13 02:45:07', '2024-08-13 02:45:07'),
(8452, 1, '2024-08-12 22:55:05', '2024-08-12 22:55:05', 0, NULL, '2024-08-13 02:55:06', '2024-08-13 02:55:06'),
(8453, 2, '2024-08-12 22:55:06', '2024-08-12 22:55:06', 0, NULL, '2024-08-13 02:55:07', '2024-08-13 02:55:07'),
(8454, 3, '2024-08-12 22:55:07', '2024-08-12 22:55:07', 0, NULL, '2024-08-13 02:55:07', '2024-08-13 02:55:07'),
(8455, 5, '2024-08-12 22:55:07', '2024-08-12 22:55:08', 0, NULL, '2024-08-13 02:55:08', '2024-08-13 02:55:08'),
(8456, 1, '2024-08-12 23:05:08', '2024-08-12 23:05:08', 0, NULL, '2024-08-13 03:05:08', '2024-08-13 03:05:08'),
(8457, 2, '2024-08-12 23:05:08', '2024-08-12 23:05:08', 0, NULL, '2024-08-13 03:05:09', '2024-08-13 03:05:09'),
(8458, 3, '2024-08-12 23:05:09', '2024-08-12 23:05:09', 0, NULL, '2024-08-13 03:05:09', '2024-08-13 03:05:09'),
(8459, 5, '2024-08-12 23:05:09', '2024-08-12 23:05:09', 0, NULL, '2024-08-13 03:05:10', '2024-08-13 03:05:10'),
(8460, 1, '2024-08-12 23:15:06', '2024-08-12 23:15:06', 0, NULL, '2024-08-13 03:15:06', '2024-08-13 03:15:06'),
(8461, 2, '2024-08-12 23:15:06', '2024-08-12 23:15:06', 0, NULL, '2024-08-13 03:15:07', '2024-08-13 03:15:07'),
(8462, 3, '2024-08-12 23:15:07', '2024-08-12 23:15:07', 0, NULL, '2024-08-13 03:15:08', '2024-08-13 03:15:08'),
(8463, 5, '2024-08-12 23:15:08', '2024-08-12 23:15:08', 0, NULL, '2024-08-13 03:15:08', '2024-08-13 03:15:08'),
(8464, 1, '2024-08-12 23:25:04', '2024-08-12 23:25:04', 0, NULL, '2024-08-13 03:25:04', '2024-08-13 03:25:04'),
(8465, 2, '2024-08-12 23:25:05', '2024-08-12 23:25:05', 0, NULL, '2024-08-13 03:25:05', '2024-08-13 03:25:05'),
(8466, 3, '2024-08-12 23:25:05', '2024-08-12 23:25:05', 0, NULL, '2024-08-13 03:25:05', '2024-08-13 03:25:05'),
(8467, 5, '2024-08-12 23:25:06', '2024-08-12 23:25:06', 0, NULL, '2024-08-13 03:25:06', '2024-08-13 03:25:06'),
(8468, 1, '2024-08-12 23:30:06', '2024-08-12 23:30:06', 0, NULL, '2024-08-13 03:30:06', '2024-08-13 03:30:06'),
(8469, 2, '2024-08-12 23:30:07', '2024-08-12 23:30:07', 0, NULL, '2024-08-13 03:30:07', '2024-08-13 03:30:07'),
(8470, 3, '2024-08-12 23:30:07', '2024-08-12 23:30:07', 0, NULL, '2024-08-13 03:30:08', '2024-08-13 03:30:08'),
(8471, 5, '2024-08-12 23:35:04', '2024-08-12 23:35:04', 0, NULL, '2024-08-13 03:35:04', '2024-08-13 03:35:04'),
(8472, 1, '2024-08-12 23:40:05', '2024-08-12 23:40:05', 0, NULL, '2024-08-13 03:40:05', '2024-08-13 03:40:05'),
(8473, 2, '2024-08-12 23:40:05', '2024-08-12 23:40:05', 0, NULL, '2024-08-13 03:40:05', '2024-08-13 03:40:05'),
(8474, 3, '2024-08-12 23:40:06', '2024-08-12 23:40:06', 0, NULL, '2024-08-13 03:40:06', '2024-08-13 03:40:06'),
(8475, 5, '2024-08-12 23:40:06', '2024-08-12 23:40:06', 0, NULL, '2024-08-13 03:40:07', '2024-08-13 03:40:07'),
(8476, 1, '2024-08-12 23:50:08', '2024-08-12 23:50:09', 0, NULL, '2024-08-13 03:50:09', '2024-08-13 03:50:09'),
(8477, 2, '2024-08-12 23:50:09', '2024-08-12 23:50:09', 0, NULL, '2024-08-13 03:50:09', '2024-08-13 03:50:09'),
(8478, 3, '2024-08-12 23:50:09', '2024-08-12 23:50:09', 0, NULL, '2024-08-13 03:50:10', '2024-08-13 03:50:10'),
(8479, 5, '2024-08-12 23:50:10', '2024-08-12 23:50:10', 0, NULL, '2024-08-13 03:50:10', '2024-08-13 03:50:10'),
(8480, 1, '2024-08-13 00:00:08', '2024-08-13 00:00:08', 0, NULL, '2024-08-13 04:00:09', '2024-08-13 04:00:09'),
(8481, 2, '2024-08-13 00:00:09', '2024-08-13 00:00:09', 0, NULL, '2024-08-13 04:00:09', '2024-08-13 04:00:09'),
(8482, 3, '2024-08-13 00:00:09', '2024-08-13 00:00:09', 0, NULL, '2024-08-13 04:00:09', '2024-08-13 04:00:09'),
(8483, 5, '2024-08-13 00:00:09', '2024-08-13 00:00:09', 0, NULL, '2024-08-13 04:00:10', '2024-08-13 04:00:10'),
(8484, 1, '2024-08-13 00:10:06', '2024-08-13 00:10:06', 0, NULL, '2024-08-13 04:10:06', '2024-08-13 04:10:06'),
(8485, 2, '2024-08-13 00:10:06', '2024-08-13 00:10:06', 0, NULL, '2024-08-13 04:10:07', '2024-08-13 04:10:07'),
(8486, 3, '2024-08-13 00:10:07', '2024-08-13 00:10:07', 0, NULL, '2024-08-13 04:10:07', '2024-08-13 04:10:07'),
(8487, 5, '2024-08-13 00:10:08', '2024-08-13 00:10:08', 0, NULL, '2024-08-13 04:10:08', '2024-08-13 04:10:08'),
(8488, 1, '2024-08-13 00:20:06', '2024-08-13 00:20:06', 0, NULL, '2024-08-13 04:20:06', '2024-08-13 04:20:06'),
(8489, 2, '2024-08-13 00:20:06', '2024-08-13 00:20:06', 0, NULL, '2024-08-13 04:20:06', '2024-08-13 04:20:06'),
(8490, 3, '2024-08-13 00:20:07', '2024-08-13 00:20:07', 0, NULL, '2024-08-13 04:20:07', '2024-08-13 04:20:07'),
(8491, 5, '2024-08-13 00:20:07', '2024-08-13 00:20:07', 0, NULL, '2024-08-13 04:20:07', '2024-08-13 04:20:07'),
(8492, 1, '2024-08-13 00:30:08', '2024-08-13 00:30:08', 0, NULL, '2024-08-13 04:30:08', '2024-08-13 04:30:08'),
(8493, 2, '2024-08-13 00:30:09', '2024-08-13 00:30:09', 0, NULL, '2024-08-13 04:30:10', '2024-08-13 04:30:10'),
(8494, 3, '2024-08-13 00:30:10', '2024-08-13 00:30:10', 0, NULL, '2024-08-13 04:30:10', '2024-08-13 04:30:10'),
(8495, 5, '2024-08-13 00:30:10', '2024-08-13 00:30:10', 0, NULL, '2024-08-13 04:30:10', '2024-08-13 04:30:10'),
(8496, 1, '2024-08-13 00:40:06', '2024-08-13 00:40:06', 0, NULL, '2024-08-13 04:40:07', '2024-08-13 04:40:07'),
(8497, 2, '2024-08-13 00:40:07', '2024-08-13 00:40:07', 0, NULL, '2024-08-13 04:40:07', '2024-08-13 04:40:07'),
(8498, 3, '2024-08-13 00:40:08', '2024-08-13 00:40:08', 0, NULL, '2024-08-13 04:40:08', '2024-08-13 04:40:08'),
(8499, 5, '2024-08-13 00:40:08', '2024-08-13 00:40:08', 0, NULL, '2024-08-13 04:40:09', '2024-08-13 04:40:09'),
(8500, 1, '2024-08-13 00:45:08', '2024-08-13 00:45:08', 0, NULL, '2024-08-13 04:45:08', '2024-08-13 04:45:08'),
(8501, 2, '2024-08-13 00:50:03', '2024-08-13 00:50:03', 0, NULL, '2024-08-13 04:50:03', '2024-08-13 04:50:03'),
(8502, 3, '2024-08-13 00:50:03', '2024-08-13 00:50:03', 0, NULL, '2024-08-13 04:50:04', '2024-08-13 04:50:04'),
(8503, 5, '2024-08-13 00:50:04', '2024-08-13 00:50:04', 0, NULL, '2024-08-13 04:50:04', '2024-08-13 04:50:04'),
(8504, 1, '2024-08-13 00:55:04', '2024-08-13 00:55:04', 0, NULL, '2024-08-13 04:55:04', '2024-08-13 04:55:04'),
(8505, 2, '2024-08-13 00:55:04', '2024-08-13 00:55:04', 0, NULL, '2024-08-13 04:55:04', '2024-08-13 04:55:04'),
(8506, 3, '2024-08-13 00:55:04', '2024-08-13 00:55:04', 0, NULL, '2024-08-13 04:55:05', '2024-08-13 04:55:05'),
(8507, 1, '2024-08-13 01:00:11', '2024-08-13 01:00:11', 0, NULL, '2024-08-13 05:00:11', '2024-08-13 05:00:11'),
(8508, 2, '2024-08-13 01:00:11', '2024-08-13 01:00:11', 0, NULL, '2024-08-13 05:00:12', '2024-08-13 05:00:12'),
(8509, 3, '2024-08-13 01:00:12', '2024-08-13 01:00:12', 0, NULL, '2024-08-13 05:00:12', '2024-08-13 05:00:12'),
(8510, 5, '2024-08-13 01:00:12', '2024-08-13 01:00:12', 0, NULL, '2024-08-13 05:00:12', '2024-08-13 05:00:12'),
(8511, 1, '2024-08-13 01:10:06', '2024-08-13 01:10:07', 0, NULL, '2024-08-13 05:10:07', '2024-08-13 05:10:07'),
(8512, 2, '2024-08-13 01:10:07', '2024-08-13 01:10:07', 0, NULL, '2024-08-13 05:10:07', '2024-08-13 05:10:07'),
(8513, 3, '2024-08-13 01:10:08', '2024-08-13 01:10:08', 0, NULL, '2024-08-13 05:10:08', '2024-08-13 05:10:08'),
(8514, 5, '2024-08-13 01:10:08', '2024-08-13 01:10:08', 0, NULL, '2024-08-13 05:10:08', '2024-08-13 05:10:08'),
(8515, 1, '2024-08-13 01:20:07', '2024-08-13 01:20:07', 0, NULL, '2024-08-13 05:20:07', '2024-08-13 05:20:07'),
(8516, 2, '2024-08-13 01:20:08', '2024-08-13 01:20:08', 0, NULL, '2024-08-13 05:20:08', '2024-08-13 05:20:08'),
(8517, 3, '2024-08-13 01:20:08', '2024-08-13 01:20:08', 0, NULL, '2024-08-13 05:20:09', '2024-08-13 05:20:09'),
(8518, 5, '2024-08-13 01:20:09', '2024-08-13 01:20:09', 0, NULL, '2024-08-13 05:20:10', '2024-08-13 05:20:10'),
(8519, 1, '2024-08-13 01:30:07', '2024-08-13 01:30:07', 0, NULL, '2024-08-13 05:30:08', '2024-08-13 05:30:08'),
(8520, 2, '2024-08-13 01:30:08', '2024-08-13 01:30:08', 0, NULL, '2024-08-13 05:30:08', '2024-08-13 05:30:08'),
(8521, 3, '2024-08-13 01:30:08', '2024-08-13 01:30:08', 0, NULL, '2024-08-13 05:30:08', '2024-08-13 05:30:08'),
(8522, 5, '2024-08-13 01:30:09', '2024-08-13 01:30:09', 0, NULL, '2024-08-13 05:30:09', '2024-08-13 05:30:09'),
(8523, 1, '2024-08-13 01:40:05', '2024-08-13 01:40:05', 0, NULL, '2024-08-13 05:40:05', '2024-08-13 05:40:05'),
(8524, 2, '2024-08-13 01:40:05', '2024-08-13 01:40:05', 0, NULL, '2024-08-13 05:40:06', '2024-08-13 05:40:06'),
(8525, 3, '2024-08-13 01:40:06', '2024-08-13 01:40:06', 0, NULL, '2024-08-13 05:40:06', '2024-08-13 05:40:06'),
(8526, 5, '2024-08-13 01:40:06', '2024-08-13 01:40:06', 0, NULL, '2024-08-13 05:40:06', '2024-08-13 05:40:06'),
(8527, 1, '2024-08-13 01:45:07', '2024-08-13 01:45:07', 0, NULL, '2024-08-13 05:45:07', '2024-08-13 05:45:07'),
(8528, 2, '2024-08-13 01:45:07', '2024-08-13 01:45:07', 0, NULL, '2024-08-13 05:45:08', '2024-08-13 05:45:08'),
(8529, 3, '2024-08-13 01:45:08', '2024-08-13 01:45:08', 0, NULL, '2024-08-13 05:45:08', '2024-08-13 05:45:08'),
(8530, 5, '2024-08-13 01:45:08', '2024-08-13 01:45:08', 0, NULL, '2024-08-13 05:45:09', '2024-08-13 05:45:09'),
(8531, 1, '2024-08-13 01:55:07', '2024-08-13 01:55:07', 0, NULL, '2024-08-13 05:55:07', '2024-08-13 05:55:07'),
(8532, 2, '2024-08-13 01:55:07', '2024-08-13 01:55:07', 0, NULL, '2024-08-13 05:55:07', '2024-08-13 05:55:07'),
(8533, 3, '2024-08-13 01:55:08', '2024-08-13 01:55:08', 0, NULL, '2024-08-13 05:55:08', '2024-08-13 05:55:08'),
(8534, 5, '2024-08-13 01:55:08', '2024-08-13 01:55:08', 0, NULL, '2024-08-13 05:55:08', '2024-08-13 05:55:08'),
(8535, 1, '2024-08-13 02:00:08', '2024-08-13 02:00:08', 0, NULL, '2024-08-13 06:00:09', '2024-08-13 06:00:09'),
(8536, 2, '2024-08-13 02:00:09', '2024-08-13 02:00:09', 0, NULL, '2024-08-13 06:00:09', '2024-08-13 06:00:09'),
(8537, 3, '2024-08-13 02:05:06', '2024-08-13 02:05:06', 0, NULL, '2024-08-13 06:05:07', '2024-08-13 06:05:07'),
(8538, 5, '2024-08-13 02:05:07', '2024-08-13 02:05:07', 0, NULL, '2024-08-13 06:05:07', '2024-08-13 06:05:07'),
(8539, 1, '2024-08-13 02:10:03', '2024-08-13 02:10:03', 0, NULL, '2024-08-13 06:10:03', '2024-08-13 06:10:03'),
(8540, 2, '2024-08-13 02:10:04', '2024-08-13 02:10:04', 0, NULL, '2024-08-13 06:10:04', '2024-08-13 06:10:04'),
(8541, 1, '2024-08-13 02:15:06', '2024-08-13 02:15:06', 0, NULL, '2024-08-13 06:15:06', '2024-08-13 06:15:06'),
(8542, 2, '2024-08-13 02:15:07', '2024-08-13 02:15:07', 0, NULL, '2024-08-13 06:15:07', '2024-08-13 06:15:07'),
(8543, 3, '2024-08-13 02:15:07', '2024-08-13 02:15:07', 0, NULL, '2024-08-13 06:15:07', '2024-08-13 06:15:07'),
(8544, 5, '2024-08-13 02:15:08', '2024-08-13 02:15:08', 0, NULL, '2024-08-13 06:15:08', '2024-08-13 06:15:08'),
(8545, 1, '2024-08-13 02:25:05', '2024-08-13 02:25:05', 0, NULL, '2024-08-13 06:25:05', '2024-08-13 06:25:05'),
(8546, 2, '2024-08-13 02:25:06', '2024-08-13 02:25:06', 0, NULL, '2024-08-13 06:25:06', '2024-08-13 06:25:06'),
(8547, 3, '2024-08-13 02:25:06', '2024-08-13 02:25:06', 0, NULL, '2024-08-13 06:25:06', '2024-08-13 06:25:06'),
(8548, 5, '2024-08-13 02:25:07', '2024-08-13 02:25:07', 0, NULL, '2024-08-13 06:25:07', '2024-08-13 06:25:07'),
(8549, 1, '2024-08-13 02:35:06', '2024-08-13 02:35:06', 0, NULL, '2024-08-13 06:35:06', '2024-08-13 06:35:06'),
(8550, 2, '2024-08-13 02:35:06', '2024-08-13 02:35:06', 0, NULL, '2024-08-13 06:35:07', '2024-08-13 06:35:07'),
(8551, 3, '2024-08-13 02:35:07', '2024-08-13 02:35:07', 0, NULL, '2024-08-13 06:35:08', '2024-08-13 06:35:08'),
(8552, 5, '2024-08-13 02:35:08', '2024-08-13 02:35:08', 0, NULL, '2024-08-13 06:35:08', '2024-08-13 06:35:08'),
(8553, 1, '2024-08-13 02:40:09', '2024-08-13 02:40:09', 0, NULL, '2024-08-13 06:40:09', '2024-08-13 06:40:09'),
(8554, 2, '2024-08-13 02:40:09', '2024-08-13 02:40:09', 0, NULL, '2024-08-13 06:40:09', '2024-08-13 06:40:09'),
(8555, 3, '2024-08-13 02:40:10', '2024-08-13 02:40:10', 0, NULL, '2024-08-13 06:40:10', '2024-08-13 06:40:10'),
(8556, 5, '2024-08-13 02:40:10', '2024-08-13 02:40:10', 0, NULL, '2024-08-13 06:40:10', '2024-08-13 06:40:10'),
(8557, 1, '2024-08-13 02:50:07', '2024-08-13 02:50:07', 0, NULL, '2024-08-13 06:50:07', '2024-08-13 06:50:07'),
(8558, 2, '2024-08-13 02:50:07', '2024-08-13 02:50:07', 0, NULL, '2024-08-13 06:50:09', '2024-08-13 06:50:09'),
(8559, 3, '2024-08-13 02:50:10', '2024-08-13 02:50:10', 0, NULL, '2024-08-13 06:50:10', '2024-08-13 06:50:10'),
(8560, 5, '2024-08-13 02:50:10', '2024-08-13 02:50:10', 0, NULL, '2024-08-13 06:50:10', '2024-08-13 06:50:10'),
(8561, 1, '2024-08-13 03:00:07', '2024-08-13 03:00:07', 0, NULL, '2024-08-13 07:00:07', '2024-08-13 07:00:07'),
(8562, 2, '2024-08-13 03:00:07', '2024-08-13 03:00:07', 0, NULL, '2024-08-13 07:00:07', '2024-08-13 07:00:07'),
(8563, 3, '2024-08-13 03:00:07', '2024-08-13 03:00:07', 0, NULL, '2024-08-13 07:00:08', '2024-08-13 07:00:08'),
(8564, 5, '2024-08-13 03:00:08', '2024-08-13 03:00:08', 0, NULL, '2024-08-13 07:00:08', '2024-08-13 07:00:08'),
(8565, 1, '2024-08-13 03:10:03', '2024-08-13 03:10:03', 0, NULL, '2024-08-13 07:10:03', '2024-08-13 07:10:03'),
(8566, 2, '2024-08-13 03:10:03', '2024-08-13 03:10:03', 0, NULL, '2024-08-13 07:10:04', '2024-08-13 07:10:04'),
(8567, 3, '2024-08-13 03:10:04', '2024-08-13 03:10:04', 0, NULL, '2024-08-13 07:10:04', '2024-08-13 07:10:04'),
(8568, 5, '2024-08-13 03:10:05', '2024-08-13 03:10:05', 0, NULL, '2024-08-13 07:10:05', '2024-08-13 07:10:05'),
(8569, 1, '2024-08-13 03:15:04', '2024-08-13 03:15:04', 0, NULL, '2024-08-13 07:15:04', '2024-08-13 07:15:04'),
(8570, 2, '2024-08-13 03:15:04', '2024-08-13 03:15:04', 0, NULL, '2024-08-13 07:15:04', '2024-08-13 07:15:04'),
(8571, 1, '2024-08-13 03:20:06', '2024-08-13 03:20:06', 0, NULL, '2024-08-13 07:20:06', '2024-08-13 07:20:06'),
(8572, 2, '2024-08-13 03:20:06', '2024-08-13 03:20:06', 0, NULL, '2024-08-13 07:20:07', '2024-08-13 07:20:07'),
(8573, 3, '2024-08-13 03:20:07', '2024-08-13 03:20:07', 0, NULL, '2024-08-13 07:20:07', '2024-08-13 07:20:07'),
(8574, 5, '2024-08-13 03:20:07', '2024-08-13 03:20:07', 0, NULL, '2024-08-13 07:20:07', '2024-08-13 07:20:07'),
(8575, 1, '2024-08-13 03:30:08', '2024-08-13 03:30:08', 0, NULL, '2024-08-13 07:30:08', '2024-08-13 07:30:08'),
(8576, 2, '2024-08-13 03:30:08', '2024-08-13 03:30:08', 0, NULL, '2024-08-13 07:30:09', '2024-08-13 07:30:09'),
(8577, 3, '2024-08-13 03:30:09', '2024-08-13 03:30:09', 0, NULL, '2024-08-13 07:30:09', '2024-08-13 07:30:09'),
(8578, 5, '2024-08-13 03:30:09', '2024-08-13 03:30:09', 0, NULL, '2024-08-13 07:30:09', '2024-08-13 07:30:09'),
(8579, 1, '2024-08-13 03:40:03', '2024-08-13 03:40:03', 0, NULL, '2024-08-13 07:40:03', '2024-08-13 07:40:03'),
(8580, 2, '2024-08-13 03:40:04', '2024-08-13 03:40:04', 0, NULL, '2024-08-13 07:40:07', '2024-08-13 07:40:07'),
(8581, 3, '2024-08-13 03:40:07', '2024-08-13 03:40:07', 0, NULL, '2024-08-13 07:40:07', '2024-08-13 07:40:07'),
(8582, 5, '2024-08-13 03:40:07', '2024-08-13 03:40:07', 0, NULL, '2024-08-13 07:40:07', '2024-08-13 07:40:07'),
(8583, 1, '2024-08-13 03:45:06', '2024-08-13 03:45:06', 0, NULL, '2024-08-13 07:45:06', '2024-08-13 07:45:06'),
(8584, 2, '2024-08-13 03:45:06', '2024-08-13 03:45:06', 0, NULL, '2024-08-13 07:45:07', '2024-08-13 07:45:07'),
(8585, 3, '2024-08-13 03:50:03', '2024-08-13 03:50:03', 0, NULL, '2024-08-13 07:50:03', '2024-08-13 07:50:03'),
(8586, 5, '2024-08-13 03:50:03', '2024-08-13 03:50:04', 0, NULL, '2024-08-13 07:50:04', '2024-08-13 07:50:04'),
(8587, 1, '2024-08-13 03:55:07', '2024-08-13 03:55:08', 0, NULL, '2024-08-13 07:55:08', '2024-08-13 07:55:08'),
(8588, 2, '2024-08-13 03:55:09', '2024-08-13 03:55:09', 0, NULL, '2024-08-13 07:55:09', '2024-08-13 07:55:09'),
(8589, 3, '2024-08-13 03:55:09', '2024-08-13 03:55:09', 0, NULL, '2024-08-13 07:55:09', '2024-08-13 07:55:09'),
(8590, 5, '2024-08-13 03:55:09', '2024-08-13 03:55:09', 0, NULL, '2024-08-13 07:55:09', '2024-08-13 07:55:09'),
(8591, 1, '2024-08-13 04:05:06', '2024-08-13 04:05:06', 0, NULL, '2024-08-13 08:05:06', '2024-08-13 08:05:06'),
(8592, 2, '2024-08-13 04:05:07', '2024-08-13 04:05:07', 0, NULL, '2024-08-13 08:05:07', '2024-08-13 08:05:07'),
(8593, 3, '2024-08-13 04:05:07', '2024-08-13 04:05:07', 0, NULL, '2024-08-13 08:05:08', '2024-08-13 08:05:08'),
(8594, 5, '2024-08-13 04:05:08', '2024-08-13 04:05:08', 0, NULL, '2024-08-13 08:05:08', '2024-08-13 08:05:08'),
(8595, 1, '2024-08-13 04:10:07', '2024-08-13 04:10:07', 0, NULL, '2024-08-13 08:10:07', '2024-08-13 08:10:07'),
(8596, 2, '2024-08-13 04:15:06', '2024-08-13 04:15:06', 0, NULL, '2024-08-13 08:15:06', '2024-08-13 08:15:06'),
(8597, 3, '2024-08-13 04:15:06', '2024-08-13 04:15:06', 0, NULL, '2024-08-13 08:15:06', '2024-08-13 08:15:06'),
(8598, 5, '2024-08-13 04:15:07', '2024-08-13 04:15:07', 0, NULL, '2024-08-13 08:15:07', '2024-08-13 08:15:07'),
(8599, 1, '2024-08-13 04:20:06', '2024-08-13 04:20:06', 0, NULL, '2024-08-13 08:20:06', '2024-08-13 08:20:06'),
(8600, 2, '2024-08-13 04:25:02', '2024-08-13 04:25:02', 0, NULL, '2024-08-13 08:25:03', '2024-08-13 08:25:03'),
(8601, 3, '2024-08-13 04:25:03', '2024-08-13 04:25:03', 0, NULL, '2024-08-13 08:25:03', '2024-08-13 08:25:03'),
(8602, 5, '2024-08-13 04:25:03', '2024-08-13 04:25:03', 0, NULL, '2024-08-13 08:25:04', '2024-08-13 08:25:04'),
(8603, 1, '2024-08-13 04:30:06', '2024-08-13 04:30:06', 0, NULL, '2024-08-13 08:30:07', '2024-08-13 08:30:07'),
(8604, 2, '2024-08-13 04:30:07', '2024-08-13 04:30:07', 0, NULL, '2024-08-13 08:30:10', '2024-08-13 08:30:10'),
(8605, 3, '2024-08-13 04:30:10', '2024-08-13 04:30:10', 0, NULL, '2024-08-13 08:30:10', '2024-08-13 08:30:10'),
(8606, 5, '2024-08-13 04:30:10', '2024-08-13 04:30:10', 0, NULL, '2024-08-13 08:30:10', '2024-08-13 08:30:10'),
(8607, 1, '2024-08-13 04:40:05', '2024-08-13 04:40:05', 0, NULL, '2024-08-13 08:40:06', '2024-08-13 08:40:06'),
(8608, 2, '2024-08-13 04:40:06', '2024-08-13 04:40:06', 0, NULL, '2024-08-13 08:40:06', '2024-08-13 08:40:06'),
(8609, 3, '2024-08-13 04:40:06', '2024-08-13 04:40:06', 0, NULL, '2024-08-13 08:40:07', '2024-08-13 08:40:07'),
(8610, 5, '2024-08-13 04:40:07', '2024-08-13 04:40:07', 0, NULL, '2024-08-13 08:40:07', '2024-08-13 08:40:07'),
(8611, 1, '2024-08-13 04:45:07', '2024-08-13 04:45:07', 0, NULL, '2024-08-13 08:45:07', '2024-08-13 08:45:07'),
(8612, 2, '2024-08-13 04:45:07', '2024-08-13 04:45:07', 0, NULL, '2024-08-13 08:45:07', '2024-08-13 08:45:07'),
(8613, 3, '2024-08-13 04:45:07', '2024-08-13 04:45:07', 0, NULL, '2024-08-13 08:45:07', '2024-08-13 08:45:07'),
(8614, 5, '2024-08-13 04:50:07', '2024-08-13 04:50:07', 0, NULL, '2024-08-13 08:50:07', '2024-08-13 08:50:07'),
(8615, 1, '2024-08-13 04:55:06', '2024-08-13 04:55:06', 0, NULL, '2024-08-13 08:55:06', '2024-08-13 08:55:06'),
(8616, 2, '2024-08-13 04:55:06', '2024-08-13 04:55:06', 0, NULL, '2024-08-13 08:55:06', '2024-08-13 08:55:06'),
(8617, 3, '2024-08-13 04:55:07', '2024-08-13 04:55:07', 0, NULL, '2024-08-13 08:55:07', '2024-08-13 08:55:07');
INSERT INTO `cron_job_logs` (`id`, `cron_job_id`, `start_at`, `end_at`, `duration`, `error`, `created_at`, `updated_at`) VALUES
(8618, 1, '2024-08-13 05:00:08', '2024-08-13 05:00:08', 0, NULL, '2024-08-13 09:00:08', '2024-08-13 09:00:08'),
(8619, 2, '2024-08-13 05:00:08', '2024-08-13 05:00:08', 0, NULL, '2024-08-13 09:00:09', '2024-08-13 09:00:09'),
(8620, 3, '2024-08-13 05:00:09', '2024-08-13 05:00:09', 0, NULL, '2024-08-13 09:00:09', '2024-08-13 09:00:09'),
(8621, 5, '2024-08-13 05:00:09', '2024-08-13 05:00:09', 0, NULL, '2024-08-13 09:00:10', '2024-08-13 09:00:10'),
(8622, 1, '2024-08-13 05:10:07', '2024-08-13 05:10:07', 0, NULL, '2024-08-13 09:10:08', '2024-08-13 09:10:08'),
(8623, 2, '2024-08-13 05:10:08', '2024-08-13 05:10:08', 0, NULL, '2024-08-13 09:10:08', '2024-08-13 09:10:08'),
(8624, 3, '2024-08-13 05:10:08', '2024-08-13 05:10:08', 0, NULL, '2024-08-13 09:10:09', '2024-08-13 09:10:09'),
(8625, 5, '2024-08-13 05:10:09', '2024-08-13 05:10:09', 0, NULL, '2024-08-13 09:10:09', '2024-08-13 09:10:09'),
(8626, 1, '2024-08-13 05:15:09', '2024-08-13 05:15:09', 0, NULL, '2024-08-13 09:15:09', '2024-08-13 09:15:09'),
(8627, 2, '2024-08-13 05:15:09', '2024-08-13 05:15:09', 0, NULL, '2024-08-13 09:15:09', '2024-08-13 09:15:09'),
(8628, 3, '2024-08-13 05:15:10', '2024-08-13 05:15:10', 0, NULL, '2024-08-13 09:15:10', '2024-08-13 09:15:10'),
(8629, 5, '2024-08-13 05:20:07', '2024-08-13 05:20:07', 0, NULL, '2024-08-13 09:20:07', '2024-08-13 09:20:07'),
(8630, 1, '2024-08-13 05:25:03', '2024-08-13 05:25:03', 0, NULL, '2024-08-13 09:25:03', '2024-08-13 09:25:03'),
(8631, 2, '2024-08-13 05:25:03', '2024-08-13 05:25:03', 0, NULL, '2024-08-13 09:25:04', '2024-08-13 09:25:04'),
(8632, 3, '2024-08-13 05:25:04', '2024-08-13 05:25:04', 0, NULL, '2024-08-13 09:25:04', '2024-08-13 09:25:04'),
(8633, 1, '2024-08-13 05:30:08', '2024-08-13 05:30:08', 0, NULL, '2024-08-13 09:30:08', '2024-08-13 09:30:08'),
(8634, 2, '2024-08-13 05:30:09', '2024-08-13 05:30:09', 0, NULL, '2024-08-13 09:30:09', '2024-08-13 09:30:09'),
(8635, 3, '2024-08-13 05:30:09', '2024-08-13 05:30:09', 0, NULL, '2024-08-13 09:30:10', '2024-08-13 09:30:10'),
(8636, 5, '2024-08-13 05:30:10', '2024-08-13 05:30:10', 0, NULL, '2024-08-13 09:30:10', '2024-08-13 09:30:10'),
(8637, 1, '2024-08-13 05:40:05', '2024-08-13 05:40:05', 0, NULL, '2024-08-13 09:40:06', '2024-08-13 09:40:06'),
(8638, 2, '2024-08-13 05:40:06', '2024-08-13 05:40:06', 0, NULL, '2024-08-13 09:40:06', '2024-08-13 09:40:06'),
(8639, 3, '2024-08-13 05:40:06', '2024-08-13 05:40:06', 0, NULL, '2024-08-13 09:40:07', '2024-08-13 09:40:07'),
(8640, 5, '2024-08-13 05:40:07', '2024-08-13 05:40:07', 0, NULL, '2024-08-13 09:40:07', '2024-08-13 09:40:07'),
(8641, 1, '2024-08-13 05:50:06', '2024-08-13 05:50:06', 0, NULL, '2024-08-13 09:50:06', '2024-08-13 09:50:06'),
(8642, 2, '2024-08-13 05:50:06', '2024-08-13 05:50:06', 0, NULL, '2024-08-13 09:50:07', '2024-08-13 09:50:07'),
(8643, 3, '2024-08-13 05:50:07', '2024-08-13 05:50:07', 0, NULL, '2024-08-13 09:50:07', '2024-08-13 09:50:07'),
(8644, 5, '2024-08-13 05:50:07', '2024-08-13 05:50:07', 0, NULL, '2024-08-13 09:50:08', '2024-08-13 09:50:08'),
(8645, 1, '2024-08-13 06:00:06', '2024-08-13 06:00:06', 0, NULL, '2024-08-13 10:00:07', '2024-08-13 10:00:07'),
(8646, 2, '2024-08-13 06:00:07', '2024-08-13 06:00:07', 0, NULL, '2024-08-13 10:00:07', '2024-08-13 10:00:07'),
(8647, 3, '2024-08-13 06:00:08', '2024-08-13 06:00:08', 0, NULL, '2024-08-13 10:00:08', '2024-08-13 10:00:08'),
(8648, 5, '2024-08-13 06:00:08', '2024-08-13 06:00:08', 0, NULL, '2024-08-13 10:00:09', '2024-08-13 10:00:09'),
(8649, 1, '2024-08-13 06:05:09', '2024-08-13 06:05:09', 0, NULL, '2024-08-13 10:05:09', '2024-08-13 10:05:09'),
(8650, 2, '2024-08-13 06:05:09', '2024-08-13 06:05:09', 0, NULL, '2024-08-13 10:05:09', '2024-08-13 10:05:09'),
(8651, 3, '2024-08-13 06:10:04', '2024-08-13 06:10:04', 0, NULL, '2024-08-13 10:10:04', '2024-08-13 10:10:04'),
(8652, 5, '2024-08-13 06:10:04', '2024-08-13 06:10:04', 0, NULL, '2024-08-13 10:10:05', '2024-08-13 10:10:05'),
(8653, 1, '2024-08-13 06:15:06', '2024-08-13 06:15:06', 0, NULL, '2024-08-13 10:15:06', '2024-08-13 10:15:06'),
(8654, 2, '2024-08-13 06:15:07', '2024-08-13 06:15:07', 0, NULL, '2024-08-13 10:15:07', '2024-08-13 10:15:07'),
(8655, 3, '2024-08-13 06:15:07', '2024-08-13 06:15:07', 0, NULL, '2024-08-13 10:15:07', '2024-08-13 10:15:07'),
(8656, 5, '2024-08-13 06:15:08', '2024-08-13 06:15:08', 0, NULL, '2024-08-13 10:15:08', '2024-08-13 10:15:08'),
(8657, 1, '2024-08-13 06:25:08', '2024-08-13 06:25:08', 0, NULL, '2024-08-13 10:25:08', '2024-08-13 10:25:08'),
(8658, 2, '2024-08-13 06:25:08', '2024-08-13 06:25:08', 0, NULL, '2024-08-13 10:25:08', '2024-08-13 10:25:08'),
(8659, 3, '2024-08-13 06:25:08', '2024-08-13 06:25:08', 0, NULL, '2024-08-13 10:25:08', '2024-08-13 10:25:08'),
(8660, 5, '2024-08-13 06:25:09', '2024-08-13 06:25:09', 0, NULL, '2024-08-13 10:25:09', '2024-08-13 10:25:09'),
(8661, 1, '2024-08-13 06:35:06', '2024-08-13 06:35:06', 0, NULL, '2024-08-13 10:35:07', '2024-08-13 10:35:07'),
(8662, 2, '2024-08-13 06:35:07', '2024-08-13 06:35:07', 0, NULL, '2024-08-13 10:35:07', '2024-08-13 10:35:07'),
(8663, 3, '2024-08-13 06:35:07', '2024-08-13 06:35:07', 0, NULL, '2024-08-13 10:35:07', '2024-08-13 10:35:07'),
(8664, 5, '2024-08-13 06:35:08', '2024-08-13 06:35:08', 0, NULL, '2024-08-13 10:35:08', '2024-08-13 10:35:08'),
(8665, 1, '2024-08-13 06:40:07', '2024-08-13 06:40:07', 0, NULL, '2024-08-13 10:40:07', '2024-08-13 10:40:07'),
(8666, 2, '2024-08-13 06:45:04', '2024-08-13 06:45:04', 0, NULL, '2024-08-13 10:45:04', '2024-08-13 10:45:04'),
(8667, 3, '2024-08-13 06:45:04', '2024-08-13 06:45:04', 0, NULL, '2024-08-13 10:45:05', '2024-08-13 10:45:05'),
(8668, 5, '2024-08-13 06:45:05', '2024-08-13 06:45:05', 0, NULL, '2024-08-13 10:45:06', '2024-08-13 10:45:06'),
(8669, 1, '2024-08-13 06:50:08', '2024-08-13 06:50:08', 0, NULL, '2024-08-13 10:50:08', '2024-08-13 10:50:08'),
(8670, 2, '2024-08-13 06:50:09', '2024-08-13 06:50:09', 0, NULL, '2024-08-13 10:50:09', '2024-08-13 10:50:09'),
(8671, 3, '2024-08-13 06:50:09', '2024-08-13 06:50:09', 0, NULL, '2024-08-13 10:50:10', '2024-08-13 10:50:10'),
(8672, 5, '2024-08-13 06:50:10', '2024-08-13 06:50:10', 0, NULL, '2024-08-13 10:50:10', '2024-08-13 10:50:10'),
(8673, 1, '2024-08-13 07:00:03', '2024-08-13 07:00:04', 0, NULL, '2024-08-13 11:00:04', '2024-08-13 11:00:04'),
(8674, 2, '2024-08-13 07:00:04', '2024-08-13 07:00:04', 0, NULL, '2024-08-13 11:00:04', '2024-08-13 11:00:04'),
(8675, 3, '2024-08-13 07:00:04', '2024-08-13 07:00:04', 0, NULL, '2024-08-13 11:00:04', '2024-08-13 11:00:04'),
(8676, 5, '2024-08-13 07:00:05', '2024-08-13 07:00:05', 0, NULL, '2024-08-13 11:00:05', '2024-08-13 11:00:05'),
(8677, 1, '2024-08-13 07:05:06', '2024-08-13 07:05:06', 0, NULL, '2024-08-13 11:05:06', '2024-08-13 11:05:06'),
(8678, 2, '2024-08-13 07:05:06', '2024-08-13 07:05:07', 0, NULL, '2024-08-13 11:05:07', '2024-08-13 11:05:07'),
(8679, 3, '2024-08-13 07:05:07', '2024-08-13 07:05:07', 0, NULL, '2024-08-13 11:05:07', '2024-08-13 11:05:07'),
(8680, 5, '2024-08-13 07:05:08', '2024-08-13 07:05:08', 0, NULL, '2024-08-13 11:05:08', '2024-08-13 11:05:08'),
(8681, 1, '2024-08-13 07:15:06', '2024-08-13 07:15:06', 0, NULL, '2024-08-13 11:15:07', '2024-08-13 11:15:07'),
(8682, 2, '2024-08-13 07:15:07', '2024-08-13 07:15:07', 0, NULL, '2024-08-13 11:15:07', '2024-08-13 11:15:07'),
(8683, 3, '2024-08-13 07:15:07', '2024-08-13 07:15:07', 0, NULL, '2024-08-13 11:15:08', '2024-08-13 11:15:08'),
(8684, 5, '2024-08-13 07:15:08', '2024-08-13 07:15:08', 0, NULL, '2024-08-13 11:15:08', '2024-08-13 11:15:08'),
(8685, 1, '2024-08-13 07:20:08', '2024-08-13 07:20:08', 0, NULL, '2024-08-13 11:20:08', '2024-08-13 11:20:08'),
(8686, 2, '2024-08-13 07:20:08', '2024-08-13 07:20:08', 0, NULL, '2024-08-13 11:20:09', '2024-08-13 11:20:09'),
(8687, 3, '2024-08-13 07:20:09', '2024-08-13 07:20:09', 0, NULL, '2024-08-13 11:20:09', '2024-08-13 11:20:09'),
(8688, 5, '2024-08-13 07:25:08', '2024-08-13 07:25:08', 0, NULL, '2024-08-13 11:25:08', '2024-08-13 11:25:08'),
(8689, 1, '2024-08-13 07:30:07', '2024-08-13 07:30:07', 0, NULL, '2024-08-13 11:30:07', '2024-08-13 11:30:07'),
(8690, 2, '2024-08-13 07:30:08', '2024-08-13 07:30:08', 0, NULL, '2024-08-13 11:30:08', '2024-08-13 11:30:08'),
(8691, 3, '2024-08-13 07:30:08', '2024-08-13 07:30:08', 0, NULL, '2024-08-13 11:30:08', '2024-08-13 11:30:08'),
(8692, 5, '2024-08-13 07:35:03', '2024-08-13 07:35:03', 0, NULL, '2024-08-13 11:35:03', '2024-08-13 11:35:03'),
(8693, 1, '2024-08-13 07:40:06', '2024-08-13 07:40:06', 0, NULL, '2024-08-13 11:40:06', '2024-08-13 11:40:06'),
(8694, 2, '2024-08-13 07:40:07', '2024-08-13 07:40:07', 0, NULL, '2024-08-13 11:40:07', '2024-08-13 11:40:07'),
(8695, 3, '2024-08-13 07:40:07', '2024-08-13 07:40:07', 0, NULL, '2024-08-13 11:40:07', '2024-08-13 11:40:07'),
(8696, 5, '2024-08-13 07:40:07', '2024-08-13 07:40:08', 0, NULL, '2024-08-13 11:40:08', '2024-08-13 11:40:08'),
(8697, 1, '2024-08-13 07:50:07', '2024-08-13 07:50:07', 0, NULL, '2024-08-13 11:50:07', '2024-08-13 11:50:07'),
(8698, 2, '2024-08-13 07:50:08', '2024-08-13 07:50:08', 0, NULL, '2024-08-13 11:50:08', '2024-08-13 11:50:08'),
(8699, 3, '2024-08-13 07:50:08', '2024-08-13 07:50:08', 0, NULL, '2024-08-13 11:50:08', '2024-08-13 11:50:08'),
(8700, 5, '2024-08-13 07:50:08', '2024-08-13 07:50:08', 0, NULL, '2024-08-13 11:50:09', '2024-08-13 11:50:09'),
(8701, 1, '2024-08-13 08:00:09', '2024-08-13 08:00:09', 0, NULL, '2024-08-13 12:00:09', '2024-08-13 12:00:09'),
(8702, 2, '2024-08-13 08:00:09', '2024-08-13 08:00:09', 0, NULL, '2024-08-13 12:00:09', '2024-08-13 12:00:09'),
(8703, 3, '2024-08-13 08:00:09', '2024-08-13 08:00:09', 0, NULL, '2024-08-13 12:00:10', '2024-08-13 12:00:10'),
(8704, 5, '2024-08-13 08:00:10', '2024-08-13 08:00:10', 0, NULL, '2024-08-13 12:00:10', '2024-08-13 12:00:10'),
(8705, 1, '2024-08-13 08:10:06', '2024-08-13 08:10:06', 0, NULL, '2024-08-13 12:10:07', '2024-08-13 12:10:07'),
(8706, 2, '2024-08-13 08:10:07', '2024-08-13 08:10:07', 0, NULL, '2024-08-13 12:10:07', '2024-08-13 12:10:07'),
(8707, 3, '2024-08-13 08:10:07', '2024-08-13 08:10:07', 0, NULL, '2024-08-13 12:10:07', '2024-08-13 12:10:07'),
(8708, 5, '2024-08-13 08:10:07', '2024-08-13 08:10:07', 0, NULL, '2024-08-13 12:10:07', '2024-08-13 12:10:07'),
(8709, 1, '2024-08-13 08:20:04', '2024-08-13 08:20:04', 0, NULL, '2024-08-13 12:20:04', '2024-08-13 12:20:04'),
(8710, 2, '2024-08-13 08:20:05', '2024-08-13 08:20:05', 0, NULL, '2024-08-13 12:20:05', '2024-08-13 12:20:05'),
(8711, 3, '2024-08-13 08:20:05', '2024-08-13 08:20:05', 0, NULL, '2024-08-13 12:20:06', '2024-08-13 12:20:06'),
(8712, 5, '2024-08-13 08:20:06', '2024-08-13 08:20:06', 0, NULL, '2024-08-13 12:20:06', '2024-08-13 12:20:06'),
(8713, 1, '2024-08-13 08:25:05', '2024-08-13 08:25:05', 0, NULL, '2024-08-13 12:25:05', '2024-08-13 12:25:05'),
(8714, 2, '2024-08-13 08:30:03', '2024-08-13 08:30:03', 0, NULL, '2024-08-13 12:30:04', '2024-08-13 12:30:04'),
(8715, 3, '2024-08-13 08:30:04', '2024-08-13 08:30:04', 0, NULL, '2024-08-13 12:30:05', '2024-08-13 12:30:05'),
(8716, 5, '2024-08-13 08:30:05', '2024-08-13 08:30:05', 0, NULL, '2024-08-13 12:30:05', '2024-08-13 12:30:05'),
(8717, 1, '2024-08-13 08:35:08', '2024-08-13 08:35:08', 0, NULL, '2024-08-13 12:35:08', '2024-08-13 12:35:08'),
(8718, 2, '2024-08-13 08:35:08', '2024-08-13 08:35:08', 0, NULL, '2024-08-13 12:35:08', '2024-08-13 12:35:08'),
(8719, 3, '2024-08-13 08:35:09', '2024-08-13 08:35:09', 0, NULL, '2024-08-13 12:35:09', '2024-08-13 12:35:09'),
(8720, 5, '2024-08-13 08:35:09', '2024-08-13 08:35:09', 0, NULL, '2024-08-13 12:35:09', '2024-08-13 12:35:09'),
(8721, 1, '2024-08-13 08:45:07', '2024-08-13 08:45:07', 0, NULL, '2024-08-13 12:45:08', '2024-08-13 12:45:08'),
(8722, 2, '2024-08-13 08:45:08', '2024-08-13 08:45:08', 0, NULL, '2024-08-13 12:45:08', '2024-08-13 12:45:08'),
(8723, 3, '2024-08-13 08:45:08', '2024-08-13 08:45:08', 0, NULL, '2024-08-13 12:45:08', '2024-08-13 12:45:08'),
(8724, 5, '2024-08-13 08:45:09', '2024-08-13 08:45:09', 0, NULL, '2024-08-13 12:45:09', '2024-08-13 12:45:09'),
(8725, 1, '2024-08-13 08:55:07', '2024-08-13 08:55:07', 0, NULL, '2024-08-13 12:55:07', '2024-08-13 12:55:07'),
(8726, 2, '2024-08-13 08:55:07', '2024-08-13 08:55:07', 0, NULL, '2024-08-13 12:55:08', '2024-08-13 12:55:08'),
(8727, 3, '2024-08-13 08:55:08', '2024-08-13 08:55:08', 0, NULL, '2024-08-13 12:55:08', '2024-08-13 12:55:08'),
(8728, 5, '2024-08-13 08:55:08', '2024-08-13 08:55:09', 0, NULL, '2024-08-13 12:55:09', '2024-08-13 12:55:09'),
(8729, 1, '2024-08-13 09:05:06', '2024-08-13 09:05:06', 0, NULL, '2024-08-13 13:05:06', '2024-08-13 13:05:06'),
(8730, 2, '2024-08-13 09:05:06', '2024-08-13 09:05:06', 0, NULL, '2024-08-13 13:05:06', '2024-08-13 13:05:06'),
(8731, 3, '2024-08-13 09:05:07', '2024-08-13 09:05:07', 0, NULL, '2024-08-13 13:05:07', '2024-08-13 13:05:07'),
(8732, 5, '2024-08-13 09:05:07', '2024-08-13 09:05:07', 0, NULL, '2024-08-13 13:05:07', '2024-08-13 13:05:07'),
(8733, 1, '2024-08-13 09:15:07', '2024-08-13 09:15:07', 0, NULL, '2024-08-13 13:15:08', '2024-08-13 13:15:08'),
(8734, 2, '2024-08-13 09:15:08', '2024-08-13 09:15:08', 0, NULL, '2024-08-13 13:15:08', '2024-08-13 13:15:08'),
(8735, 3, '2024-08-13 09:15:08', '2024-08-13 09:15:08', 0, NULL, '2024-08-13 13:15:08', '2024-08-13 13:15:08'),
(8736, 5, '2024-08-13 09:15:09', '2024-08-13 09:15:09', 0, NULL, '2024-08-13 13:15:09', '2024-08-13 13:15:09'),
(8737, 1, '2024-08-13 09:25:05', '2024-08-13 09:25:05', 0, NULL, '2024-08-13 13:25:05', '2024-08-13 13:25:05'),
(8738, 2, '2024-08-13 09:25:05', '2024-08-13 09:25:05', 0, NULL, '2024-08-13 13:25:06', '2024-08-13 13:25:06'),
(8739, 3, '2024-08-13 09:25:06', '2024-08-13 09:25:06', 0, NULL, '2024-08-13 13:25:06', '2024-08-13 13:25:06'),
(8740, 5, '2024-08-13 09:25:07', '2024-08-13 09:25:07', 0, NULL, '2024-08-13 13:25:07', '2024-08-13 13:25:07'),
(8741, 1, '2024-08-13 09:30:08', '2024-08-13 09:30:08', 0, NULL, '2024-08-13 13:30:08', '2024-08-13 13:30:08'),
(8742, 2, '2024-08-13 09:30:08', '2024-08-13 09:30:08', 0, NULL, '2024-08-13 13:30:08', '2024-08-13 13:30:08'),
(8743, 3, '2024-08-13 09:30:08', '2024-08-13 09:30:08', 0, NULL, '2024-08-13 13:30:09', '2024-08-13 13:30:09'),
(8744, 5, '2024-08-13 09:35:03', '2024-08-13 09:35:03', 0, NULL, '2024-08-13 13:35:03', '2024-08-13 13:35:03'),
(8745, 1, '2024-08-13 09:40:03', '2024-08-13 09:40:03', 0, NULL, '2024-08-13 13:40:03', '2024-08-13 13:40:03'),
(8746, 2, '2024-08-13 09:40:04', '2024-08-13 09:40:04', 0, NULL, '2024-08-13 13:40:04', '2024-08-13 13:40:04'),
(8747, 3, '2024-08-13 09:40:04', '2024-08-13 09:40:04', 0, NULL, '2024-08-13 13:40:04', '2024-08-13 13:40:04'),
(8748, 1, '2024-08-13 09:45:08', '2024-08-13 09:45:08', 0, NULL, '2024-08-13 13:45:08', '2024-08-13 13:45:08'),
(8749, 2, '2024-08-13 09:45:09', '2024-08-13 09:45:09', 0, NULL, '2024-08-13 13:45:09', '2024-08-13 13:45:09'),
(8750, 3, '2024-08-13 09:45:09', '2024-08-13 09:45:09', 0, NULL, '2024-08-13 13:45:09', '2024-08-13 13:45:09'),
(8751, 5, '2024-08-13 09:45:10', '2024-08-13 09:45:10', 0, NULL, '2024-08-13 13:45:10', '2024-08-13 13:45:10'),
(8752, 1, '2024-08-13 09:55:03', '2024-08-13 09:55:03', 0, NULL, '2024-08-13 13:55:04', '2024-08-13 13:55:04'),
(8753, 2, '2024-08-13 09:55:04', '2024-08-13 09:55:04', 0, NULL, '2024-08-13 13:55:04', '2024-08-13 13:55:04'),
(8754, 3, '2024-08-13 09:55:05', '2024-08-13 09:55:05', 0, NULL, '2024-08-13 13:55:05', '2024-08-13 13:55:05'),
(8755, 5, '2024-08-13 09:55:05', '2024-08-13 09:55:05', 0, NULL, '2024-08-13 13:55:05', '2024-08-13 13:55:05'),
(8756, 1, '2024-08-13 10:00:08', '2024-08-13 10:00:08', 0, NULL, '2024-08-13 14:00:09', '2024-08-13 14:00:09'),
(8757, 2, '2024-08-13 10:00:09', '2024-08-13 10:00:09', 0, NULL, '2024-08-13 14:00:09', '2024-08-13 14:00:09'),
(8758, 3, '2024-08-13 10:00:10', '2024-08-13 10:00:10', 0, NULL, '2024-08-13 14:00:10', '2024-08-13 14:00:10'),
(8759, 5, '2024-08-13 10:00:10', '2024-08-13 10:00:10', 0, NULL, '2024-08-13 14:00:10', '2024-08-13 14:00:10'),
(8760, 1, '2024-08-13 10:10:08', '2024-08-13 10:10:08', 0, NULL, '2024-08-13 14:10:08', '2024-08-13 14:10:08'),
(8761, 2, '2024-08-13 10:10:08', '2024-08-13 10:10:08', 0, NULL, '2024-08-13 14:10:08', '2024-08-13 14:10:08'),
(8762, 3, '2024-08-13 10:10:09', '2024-08-13 10:10:09', 0, NULL, '2024-08-13 14:10:09', '2024-08-13 14:10:09'),
(8763, 5, '2024-08-13 10:10:09', '2024-08-13 10:10:09', 0, NULL, '2024-08-13 14:10:09', '2024-08-13 14:10:09'),
(8764, 1, '2024-08-13 10:20:10', '2024-08-13 10:20:10', 0, NULL, '2024-08-13 14:20:10', '2024-08-13 14:20:10'),
(8765, 2, '2024-08-13 10:20:11', '2024-08-13 10:20:11', 0, NULL, '2024-08-13 14:20:11', '2024-08-13 14:20:11'),
(8766, 3, '2024-08-13 10:20:11', '2024-08-13 10:20:11', 0, NULL, '2024-08-13 14:20:12', '2024-08-13 14:20:12'),
(8767, 5, '2024-08-13 10:20:12', '2024-08-13 10:20:12', 0, NULL, '2024-08-13 14:20:12', '2024-08-13 14:20:12'),
(8768, 1, '2024-08-13 10:30:07', '2024-08-13 10:30:08', 0, NULL, '2024-08-13 14:30:08', '2024-08-13 14:30:08'),
(8769, 2, '2024-08-13 10:30:08', '2024-08-13 10:30:08', 0, NULL, '2024-08-13 14:30:09', '2024-08-13 14:30:09'),
(8770, 3, '2024-08-13 10:30:09', '2024-08-13 10:30:09', 0, NULL, '2024-08-13 14:30:09', '2024-08-13 14:30:09'),
(8771, 5, '2024-08-13 10:30:10', '2024-08-13 10:30:10', 0, NULL, '2024-08-13 14:30:10', '2024-08-13 14:30:10'),
(8772, 1, '2024-08-13 10:35:11', '2024-08-13 10:35:12', 0, NULL, '2024-08-13 14:35:12', '2024-08-13 14:35:12'),
(8773, 2, '2024-08-13 10:35:12', '2024-08-13 10:35:12', 0, NULL, '2024-08-13 14:35:12', '2024-08-13 14:35:12'),
(8774, 3, '2024-08-13 10:35:12', '2024-08-13 10:35:12', 0, NULL, '2024-08-13 14:35:12', '2024-08-13 14:35:12'),
(8775, 5, '2024-08-13 10:35:12', '2024-08-13 10:35:12', 0, NULL, '2024-08-13 14:35:13', '2024-08-13 14:35:13'),
(8776, 1, '2024-08-13 10:45:06', '2024-08-13 10:45:06', 0, NULL, '2024-08-13 14:45:07', '2024-08-13 14:45:07'),
(8777, 2, '2024-08-13 10:45:07', '2024-08-13 10:45:07', 0, NULL, '2024-08-13 14:45:07', '2024-08-13 14:45:07'),
(8778, 3, '2024-08-13 10:45:07', '2024-08-13 10:45:07', 0, NULL, '2024-08-13 14:45:07', '2024-08-13 14:45:07'),
(8779, 5, '2024-08-13 10:45:07', '2024-08-13 10:45:07', 0, NULL, '2024-08-13 14:45:08', '2024-08-13 14:45:08'),
(8780, 1, '2024-08-13 10:50:11', '2024-08-13 10:50:11', 0, NULL, '2024-08-13 14:50:11', '2024-08-13 14:50:11'),
(8781, 2, '2024-08-13 10:50:12', '2024-08-13 10:50:12', 0, NULL, '2024-08-13 14:50:12', '2024-08-13 14:50:12'),
(8782, 3, '2024-08-13 10:50:12', '2024-08-13 10:50:12', 0, NULL, '2024-08-13 14:50:12', '2024-08-13 14:50:12'),
(8783, 5, '2024-08-13 10:50:13', '2024-08-13 10:50:13', 0, NULL, '2024-08-13 14:50:13', '2024-08-13 14:50:13'),
(8784, 1, '2024-08-13 11:00:03', '2024-08-13 11:00:03', 0, NULL, '2024-08-13 15:00:04', '2024-08-13 15:00:04'),
(8785, 2, '2024-08-13 11:00:04', '2024-08-13 11:00:04', 0, NULL, '2024-08-13 15:00:04', '2024-08-13 15:00:04'),
(8786, 3, '2024-08-13 11:00:05', '2024-08-13 11:00:05', 0, NULL, '2024-08-13 15:00:05', '2024-08-13 15:00:05'),
(8787, 5, '2024-08-13 11:00:06', '2024-08-13 11:00:06', 0, NULL, '2024-08-13 15:00:06', '2024-08-13 15:00:06'),
(8788, 1, '2024-08-13 11:05:08', '2024-08-13 11:05:08', 0, NULL, '2024-08-13 15:05:09', '2024-08-13 15:05:09'),
(8789, 2, '2024-08-13 11:05:09', '2024-08-13 11:05:09', 0, NULL, '2024-08-13 15:05:09', '2024-08-13 15:05:09'),
(8790, 3, '2024-08-13 11:05:09', '2024-08-13 11:05:09', 0, NULL, '2024-08-13 15:05:09', '2024-08-13 15:05:09'),
(8791, 5, '2024-08-13 11:05:10', '2024-08-13 11:05:10', 0, NULL, '2024-08-13 15:05:10', '2024-08-13 15:05:10'),
(8792, 1, '2024-08-13 11:15:04', '2024-08-13 11:15:04', 0, NULL, '2024-08-13 15:15:04', '2024-08-13 15:15:04'),
(8793, 2, '2024-08-13 11:15:04', '2024-08-13 11:15:04', 0, NULL, '2024-08-13 15:15:05', '2024-08-13 15:15:05'),
(8794, 3, '2024-08-13 11:15:05', '2024-08-13 11:15:05', 0, NULL, '2024-08-13 15:15:05', '2024-08-13 15:15:05'),
(8795, 5, '2024-08-13 11:15:05', '2024-08-13 11:15:05', 0, NULL, '2024-08-13 15:15:05', '2024-08-13 15:15:05'),
(8796, 1, '2024-08-13 11:20:09', '2024-08-13 11:20:09', 0, NULL, '2024-08-13 15:20:09', '2024-08-13 15:20:09'),
(8797, 2, '2024-08-13 11:20:09', '2024-08-13 11:20:09', 0, NULL, '2024-08-13 15:20:09', '2024-08-13 15:20:09'),
(8798, 3, '2024-08-13 11:20:10', '2024-08-13 11:20:10', 0, NULL, '2024-08-13 15:20:10', '2024-08-13 15:20:10'),
(8799, 5, '2024-08-13 11:20:10', '2024-08-13 11:20:10', 0, NULL, '2024-08-13 15:20:11', '2024-08-13 15:20:11'),
(8800, 1, '2024-08-13 11:30:04', '2024-08-13 11:30:04', 0, NULL, '2024-08-13 15:30:05', '2024-08-13 15:30:05'),
(8801, 2, '2024-08-13 11:30:05', '2024-08-13 11:30:05', 0, NULL, '2024-08-13 15:30:06', '2024-08-13 15:30:06'),
(8802, 3, '2024-08-13 11:30:06', '2024-08-13 11:30:06', 0, NULL, '2024-08-13 15:30:06', '2024-08-13 15:30:06'),
(8803, 5, '2024-08-13 11:30:06', '2024-08-13 11:30:06', 0, NULL, '2024-08-13 15:30:07', '2024-08-13 15:30:07'),
(8804, 1, '2024-08-13 11:35:06', '2024-08-13 11:35:06', 0, NULL, '2024-08-13 15:35:06', '2024-08-13 15:35:06'),
(8805, 2, '2024-08-13 11:35:06', '2024-08-13 11:35:06', 0, NULL, '2024-08-13 15:35:07', '2024-08-13 15:35:07'),
(8806, 3, '2024-08-13 11:40:03', '2024-08-13 11:40:03', 0, NULL, '2024-08-13 15:40:03', '2024-08-13 15:40:03'),
(8807, 5, '2024-08-13 11:40:04', '2024-08-13 11:40:04', 0, NULL, '2024-08-13 15:40:05', '2024-08-13 15:40:05'),
(8808, 1, '2024-08-13 11:45:03', '2024-08-13 11:45:03', 0, NULL, '2024-08-13 15:45:03', '2024-08-13 15:45:03'),
(8809, 2, '2024-08-13 11:45:03', '2024-08-13 11:45:03', 0, NULL, '2024-08-13 15:45:04', '2024-08-13 15:45:04'),
(8810, 1, '2024-08-13 11:50:07', '2024-08-13 11:50:07', 0, NULL, '2024-08-13 15:50:07', '2024-08-13 15:50:07'),
(8811, 2, '2024-08-13 11:50:07', '2024-08-13 11:50:07', 0, NULL, '2024-08-13 15:50:08', '2024-08-13 15:50:08'),
(8812, 3, '2024-08-13 11:50:08', '2024-08-13 11:50:08', 0, NULL, '2024-08-13 15:50:08', '2024-08-13 15:50:08'),
(8813, 5, '2024-08-13 11:50:08', '2024-08-13 11:50:09', 0, NULL, '2024-08-13 15:50:09', '2024-08-13 15:50:09'),
(8814, 1, '2024-08-13 12:00:07', '2024-08-13 12:00:07', 0, NULL, '2024-08-13 16:00:08', '2024-08-13 16:00:08'),
(8815, 2, '2024-08-13 12:00:08', '2024-08-13 12:00:08', 0, NULL, '2024-08-13 16:00:08', '2024-08-13 16:00:08'),
(8816, 3, '2024-08-13 12:00:09', '2024-08-13 12:00:09', 0, NULL, '2024-08-13 16:00:10', '2024-08-13 16:00:10'),
(8817, 5, '2024-08-13 12:00:12', '2024-08-13 12:00:12', 0, NULL, '2024-08-13 16:00:12', '2024-08-13 16:00:12'),
(8818, 1, '2024-08-13 12:05:08', '2024-08-13 12:05:08', 0, NULL, '2024-08-13 16:05:08', '2024-08-13 16:05:08'),
(8819, 2, '2024-08-13 12:10:07', '2024-08-13 12:10:07', 0, NULL, '2024-08-13 16:10:08', '2024-08-13 16:10:08'),
(8820, 3, '2024-08-13 12:10:08', '2024-08-13 12:10:08', 0, NULL, '2024-08-13 16:10:08', '2024-08-13 16:10:08'),
(8821, 5, '2024-08-13 12:10:09', '2024-08-13 12:10:09', 0, NULL, '2024-08-13 16:10:09', '2024-08-13 16:10:09'),
(8822, 1, '2024-08-13 12:15:06', '2024-08-13 12:15:06', 0, NULL, '2024-08-13 16:15:06', '2024-08-13 16:15:06'),
(8823, 2, '2024-08-13 12:20:06', '2024-08-13 12:20:06', 0, NULL, '2024-08-13 16:20:07', '2024-08-13 16:20:07'),
(8824, 3, '2024-08-13 12:20:07', '2024-08-13 12:20:07', 0, NULL, '2024-08-13 16:20:07', '2024-08-13 16:20:07'),
(8825, 5, '2024-08-13 12:20:07', '2024-08-13 12:20:07', 0, NULL, '2024-08-13 16:20:08', '2024-08-13 16:20:08'),
(8826, 1, '2024-08-13 12:25:06', '2024-08-13 12:25:06', 0, NULL, '2024-08-13 16:25:06', '2024-08-13 16:25:06'),
(8827, 1, '2024-08-13 12:30:09', '2024-08-13 12:30:09', 0, NULL, '2024-08-13 16:30:09', '2024-08-13 16:30:09'),
(8828, 2, '2024-08-13 12:30:10', '2024-08-13 12:30:10', 0, NULL, '2024-08-13 16:30:10', '2024-08-13 16:30:10'),
(8829, 3, '2024-08-13 12:30:10', '2024-08-13 12:30:10', 0, NULL, '2024-08-13 16:30:11', '2024-08-13 16:30:11'),
(8830, 5, '2024-08-13 12:30:11', '2024-08-13 12:30:11', 0, NULL, '2024-08-13 16:30:11', '2024-08-13 16:30:11'),
(8831, 1, '2024-08-13 12:40:08', '2024-08-13 12:40:08', 0, NULL, '2024-08-13 16:40:09', '2024-08-13 16:40:09'),
(8832, 2, '2024-08-13 12:40:09', '2024-08-13 12:40:09', 0, NULL, '2024-08-13 16:40:09', '2024-08-13 16:40:09'),
(8833, 3, '2024-08-13 12:40:09', '2024-08-13 12:40:09', 0, NULL, '2024-08-13 16:40:09', '2024-08-13 16:40:09'),
(8834, 5, '2024-08-13 12:40:09', '2024-08-13 12:40:09', 0, NULL, '2024-08-13 16:40:09', '2024-08-13 16:40:09'),
(8835, 1, '2024-08-13 12:50:07', '2024-08-13 12:50:07', 0, NULL, '2024-08-13 16:50:07', '2024-08-13 16:50:07'),
(8836, 2, '2024-08-13 12:50:07', '2024-08-13 12:50:07', 0, NULL, '2024-08-13 16:50:08', '2024-08-13 16:50:08'),
(8837, 3, '2024-08-13 12:50:08', '2024-08-13 12:50:08', 0, NULL, '2024-08-13 16:50:08', '2024-08-13 16:50:08'),
(8838, 5, '2024-08-13 12:50:08', '2024-08-13 12:50:08', 0, NULL, '2024-08-13 16:50:09', '2024-08-13 16:50:09'),
(8839, 1, '2024-08-13 13:00:06', '2024-08-13 13:00:06', 0, NULL, '2024-08-13 17:00:06', '2024-08-13 17:00:06'),
(8840, 2, '2024-08-13 13:00:06', '2024-08-13 13:00:06', 0, NULL, '2024-08-13 17:00:07', '2024-08-13 17:00:07'),
(8841, 3, '2024-08-13 13:00:07', '2024-08-13 13:00:07', 0, NULL, '2024-08-13 17:00:07', '2024-08-13 17:00:07'),
(8842, 5, '2024-08-13 13:00:08', '2024-08-13 13:00:08', 0, NULL, '2024-08-13 17:00:08', '2024-08-13 17:00:08'),
(8843, 1, '2024-08-13 13:10:03', '2024-08-13 13:10:03', 0, NULL, '2024-08-13 17:10:03', '2024-08-13 17:10:03'),
(8844, 2, '2024-08-13 13:10:03', '2024-08-13 13:10:03', 0, NULL, '2024-08-13 17:10:03', '2024-08-13 17:10:03'),
(8845, 3, '2024-08-13 13:10:04', '2024-08-13 13:10:04', 0, NULL, '2024-08-13 17:10:06', '2024-08-13 17:10:06'),
(8846, 5, '2024-08-13 13:10:07', '2024-08-13 13:10:07', 0, NULL, '2024-08-13 17:10:07', '2024-08-13 17:10:07'),
(8847, 1, '2024-08-13 13:15:08', '2024-08-13 13:15:08', 0, NULL, '2024-08-13 17:15:08', '2024-08-13 17:15:08'),
(8848, 2, '2024-08-13 13:15:08', '2024-08-13 13:15:08', 0, NULL, '2024-08-13 17:15:08', '2024-08-13 17:15:08'),
(8849, 3, '2024-08-13 13:15:08', '2024-08-13 13:15:08', 0, NULL, '2024-08-13 17:15:08', '2024-08-13 17:15:08'),
(8850, 5, '2024-08-13 13:20:05', '2024-08-13 13:20:05', 0, NULL, '2024-08-13 17:20:05', '2024-08-13 17:20:05'),
(8851, 1, '2024-08-13 13:25:09', '2024-08-13 13:25:09', 0, NULL, '2024-08-13 17:25:09', '2024-08-13 17:25:09'),
(8852, 2, '2024-08-13 13:25:09', '2024-08-13 13:25:09', 0, NULL, '2024-08-13 17:25:10', '2024-08-13 17:25:10'),
(8853, 3, '2024-08-13 13:25:10', '2024-08-13 13:25:10', 0, NULL, '2024-08-13 17:25:10', '2024-08-13 17:25:10'),
(8854, 5, '2024-08-13 13:25:10', '2024-08-13 13:25:11', 0, NULL, '2024-08-13 17:25:11', '2024-08-13 17:25:11'),
(8855, 1, '2024-08-13 13:35:07', '2024-08-13 13:35:07', 0, NULL, '2024-08-13 17:35:07', '2024-08-13 17:35:07'),
(8856, 2, '2024-08-13 13:35:07', '2024-08-13 13:35:07', 0, NULL, '2024-08-13 17:35:07', '2024-08-13 17:35:07'),
(8857, 3, '2024-08-13 13:35:08', '2024-08-13 13:35:08', 0, NULL, '2024-08-13 17:35:08', '2024-08-13 17:35:08'),
(8858, 5, '2024-08-13 13:35:08', '2024-08-13 13:35:08', 0, NULL, '2024-08-13 17:35:08', '2024-08-13 17:35:08'),
(8859, 1, '2024-08-13 13:45:06', '2024-08-13 13:45:06', 0, NULL, '2024-08-13 17:45:07', '2024-08-13 17:45:07'),
(8860, 2, '2024-08-13 13:45:07', '2024-08-13 13:45:07', 0, NULL, '2024-08-13 17:45:07', '2024-08-13 17:45:07'),
(8861, 3, '2024-08-13 13:45:07', '2024-08-13 13:45:07', 0, NULL, '2024-08-13 17:45:07', '2024-08-13 17:45:07'),
(8862, 5, '2024-08-13 13:45:08', '2024-08-13 13:45:08', 0, NULL, '2024-08-13 17:45:08', '2024-08-13 17:45:08'),
(8863, 1, '2024-08-13 13:50:07', '2024-08-13 13:50:07', 0, NULL, '2024-08-13 17:50:08', '2024-08-13 17:50:08'),
(8864, 2, '2024-08-13 13:55:06', '2024-08-13 13:55:06', 0, NULL, '2024-08-13 17:55:07', '2024-08-13 17:55:07'),
(8865, 3, '2024-08-13 13:55:07', '2024-08-13 13:55:07', 0, NULL, '2024-08-13 17:55:07', '2024-08-13 17:55:07'),
(8866, 5, '2024-08-13 13:55:08', '2024-08-13 13:55:08', 0, NULL, '2024-08-13 17:55:08', '2024-08-13 17:55:08'),
(8867, 1, '2024-08-13 14:00:05', '2024-08-13 14:00:05', 0, NULL, '2024-08-13 18:00:05', '2024-08-13 18:00:05'),
(8868, 2, '2024-08-13 14:05:05', '2024-08-13 14:05:05', 0, NULL, '2024-08-13 18:05:05', '2024-08-13 18:05:05'),
(8869, 3, '2024-08-13 14:05:06', '2024-08-13 14:05:06', 0, NULL, '2024-08-13 18:05:06', '2024-08-13 18:05:06'),
(8870, 5, '2024-08-13 14:05:06', '2024-08-13 14:05:06', 0, NULL, '2024-08-13 18:05:06', '2024-08-13 18:05:06'),
(8871, 1, '2024-08-13 14:10:04', '2024-08-13 14:10:04', 0, NULL, '2024-08-13 18:10:04', '2024-08-13 18:10:04'),
(8872, 1, '2024-08-13 14:15:07', '2024-08-13 14:15:07', 0, NULL, '2024-08-13 18:15:07', '2024-08-13 18:15:07'),
(8873, 2, '2024-08-13 14:15:07', '2024-08-13 14:15:07', 0, NULL, '2024-08-13 18:15:07', '2024-08-13 18:15:07'),
(8874, 3, '2024-08-13 14:15:08', '2024-08-13 14:15:08', 0, NULL, '2024-08-13 18:15:08', '2024-08-13 18:15:08'),
(8875, 5, '2024-08-13 14:15:08', '2024-08-13 14:15:08', 0, NULL, '2024-08-13 18:15:08', '2024-08-13 18:15:08'),
(8876, 1, '2024-08-13 14:25:06', '2024-08-13 14:25:06', 0, NULL, '2024-08-13 18:25:06', '2024-08-13 18:25:06'),
(8877, 2, '2024-08-13 14:25:07', '2024-08-13 14:25:07', 0, NULL, '2024-08-13 18:25:07', '2024-08-13 18:25:07'),
(8878, 3, '2024-08-13 14:25:07', '2024-08-13 14:25:07', 0, NULL, '2024-08-13 18:25:08', '2024-08-13 18:25:08'),
(8879, 5, '2024-08-13 14:25:08', '2024-08-13 14:25:08', 0, NULL, '2024-08-13 18:25:08', '2024-08-13 18:25:08');

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

--
-- Table structure for table `cron_schedules`
--

CREATE TABLE `cron_schedules` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `interval` int(11) NOT NULL DEFAULT '0',
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cron_schedules`
--

INSERT INTO `cron_schedules` (`id`, `name`, `interval`, `status`, `created_at`, `updated_at`) VALUES
(1, '5 Minutes', 300, 1, '2023-06-21 08:14:52', '2023-06-21 08:14:52'),
(2, '10 Minutes', 600, 1, '2023-06-21 23:28:22', '2023-06-21 23:28:22');

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

--
-- Table structure for table `deposits`
--

CREATE TABLE `deposits` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `plan_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `method_code` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `method_currency` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `charge` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `rate` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `final_amo` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `detail` text COLLATE utf8mb4_unicode_ci,
  `btc_amo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `btc_wallet` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trx` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `compound_times` int(11) NOT NULL DEFAULT '0',
  `payment_try` int(11) NOT NULL DEFAULT '0',
  `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1=>success, 2=>pending, 3=>cancel',
  `from_api` tinyint(1) NOT NULL DEFAULT '0',
  `admin_feedback` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `deposits`
--

INSERT INTO `deposits` (`id`, `user_id`, `plan_id`, `method_code`, `amount`, `method_currency`, `charge`, `rate`, `final_amo`, `detail`, `btc_amo`, `btc_wallet`, `trx`, `compound_times`, `payment_try`, `status`, `from_api`, `admin_feedback`, `created_at`, `updated_at`) VALUES
(1, 2, 0, 1000, 1000.00000000, '$', 0.00000000, 1.00000000, 1000.00000000, NULL, '0', '', 'RK7Q4P5O16FN', 0, 0, 0, 0, NULL, '2024-07-31 03:44:37', '2024-07-31 03:44:37'),
(2, 2, 0, 1002, 1000.00000000, '100', 0.00000000, 1.00000000, 1000.00000000, NULL, '0', '', '77HP2AQMZAP1', 0, 0, 0, 0, NULL, '2024-07-31 03:46:07', '2024-07-31 03:46:07');

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

--
-- Table structure for table `device_tokens`
--

CREATE TABLE `device_tokens` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `is_app` tinyint(1) NOT NULL DEFAULT '0',
  `token` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `extensions`
--

CREATE TABLE `extensions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `act` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `script` text COLLATE utf8mb4_unicode_ci,
  `shortcode` text COLLATE utf8mb4_unicode_ci COMMENT 'object',
  `support` text COLLATE utf8mb4_unicode_ci COMMENT 'help section',
  `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1=>enable, 2=>disable',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `extensions`
--

INSERT INTO `extensions` (`id`, `act`, `name`, `description`, `image`, `script`, `shortcode`, `support`, `status`, `created_at`, `updated_at`) VALUES
(1, 'tawk-chat', 'Tawk.to', 'Key location is shown bellow', 'tawky_big.png', '<script>\r\n                        var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();\r\n                        (function(){\r\n                        var s1=document.createElement(\"script\"),s0=document.getElementsByTagName(\"script\")[0];\r\n                        s1.async=true;\r\n                        s1.src=\"https://embed.tawk.to/{{app_key}}\";\r\n                        s1.charset=\"UTF-8\";\r\n                        s1.setAttribute(\"crossorigin\",\"*\");\r\n                        s0.parentNode.insertBefore(s1,s0);\r\n                        })();\r\n                    </script>', '{\"app_key\":{\"title\":\"App Key\",\"value\":\"------\"}}', 'twak.png', 0, '2019-10-18 23:16:05', '2022-09-25 00:58:09'),
(2, 'google-recaptcha2', 'Google Recaptcha 2', 'Key location is shown bellow', 'recaptcha3.png', '\n<script src=\"https://www.google.com/recaptcha/api.js\"></script>\n<div class=\"g-recaptcha\" data-sitekey=\"{{site_key}}\" data-callback=\"verifyCaptcha\"></div>\n<div id=\"g-recaptcha-error\"></div>', '{\"site_key\":{\"title\":\"Site Key\",\"value\":\"6LdPC88fAAAAADQlUf_DV6Hrvgm-pZuLJFSLDOWV\"},\"secret_key\":{\"title\":\"Secret Key\",\"value\":\"6LdPC88fAAAAAG5SVaRYDnV2NpCrptLg2XLYKRKB\"}}', 'recaptcha.png', 0, '2019-10-18 23:16:05', '2022-10-06 03:02:22'),
(3, 'custom-captcha', 'Custom Captcha', 'Just put any random string', 'customcaptcha.png', NULL, '{\"random_key\":{\"title\":\"Random String\",\"value\":\"SecureString\"}}', 'na', 0, '2019-10-18 23:16:05', '2022-10-06 03:02:25'),
(4, 'google-analytics', 'Google Analytics', 'Key location is shown bellow', 'google_analytics.png', '<script async src=\"https://www.googletagmanager.com/gtag/js?id={{app_key}}\"></script>\r\n                <script>\r\n                  window.dataLayer = window.dataLayer || [];\r\n                  function gtag(){dataLayer.push(arguments);}\r\n                  gtag(\"js\", new Date());\r\n                \r\n                  gtag(\"config\", \"{{app_key}}\");\r\n                </script>', '{\"app_key\":{\"title\":\"App Key\",\"value\":\"------\"}}', 'ganalytics.png', 0, NULL, '2021-05-04 10:19:12'),
(5, 'fb-comment', 'Facebook Comment ', 'Key location is shown bellow', 'Facebook.png', '<div id=\"fb-root\"></div><script async defer crossorigin=\"anonymous\" src=\"https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v4.0&appId={{app_key}}&autoLogAppEvents=1\"></script>', '{\"app_key\":{\"title\":\"App Key\",\"value\":\"----\"}}', 'fb_com.PNG', 0, NULL, '2022-09-25 01:22:33');

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

--
-- Table structure for table `forms`
--

CREATE TABLE `forms` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `act` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_data` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `forms`
--

INSERT INTO `forms` (`id`, `act`, `form_data`, `created_at`, `updated_at`) VALUES
(1, 'kyc', '{\"full_name\":{\"name\":\"Full Name\",\"label\":\"full_name\",\"is_required\":\"required\",\"extensions\":null,\"options\":[],\"type\":\"text\"},\"home_address\":{\"name\":\"Home Address\",\"label\":\"home_address\",\"is_required\":\"required\",\"extensions\":null,\"options\":[],\"type\":\"text\"},\"valid_id_card\":{\"name\":\"Valid ID Card\",\"label\":\"valid_id_card\",\"is_required\":\"required\",\"extensions\":\"jpg,jpeg,png,pdf\",\"options\":[],\"type\":\"file\"},\"proof_of_resident\":{\"name\":\"Proof of Resident\",\"label\":\"proof_of_resident\",\"is_required\":\"required\",\"extensions\":\"jpg,jpeg,png,pdf\",\"options\":[],\"type\":\"file\"},\"city\":{\"name\":\"City\",\"label\":\"city\",\"is_required\":\"required\",\"extensions\":null,\"options\":[],\"type\":\"text\"},\"state\":{\"name\":\"State\",\"label\":\"state\",\"is_required\":\"required\",\"extensions\":null,\"options\":[],\"type\":\"text\"},\"country\":{\"name\":\"Country\",\"label\":\"country\",\"is_required\":\"required\",\"extensions\":null,\"options\":[],\"type\":\"text\"},\"type_of_id_card\":{\"name\":\"Type Of ID Card\",\"label\":\"type_of_id_card\",\"is_required\":\"required\",\"extensions\":null,\"options\":[\"Driver\'s License\",\"ID Card\",\"Resident Permit\",\"Passport\"],\"type\":\"select\"}}', '2024-01-30 23:21:31', '2024-02-18 04:19:25'),
(2, 'manual_deposit', '{\"transaction_id\":{\"name\":\"Transaction ID\",\"label\":\"transaction_id\",\"is_required\":\"required\",\"extensions\":null,\"options\":[],\"type\":\"text\"}}', '2024-02-16 17:50:52', '2024-07-31 03:42:23'),
(3, 'withdraw_method', '{\"bitcoin_address\":{\"name\":\"Bitcoin Address\",\"label\":\"bitcoin_address\",\"is_required\":\"required\",\"extensions\":\"\",\"options\":[],\"type\":\"text\"}}', '2024-02-16 19:55:57', '2024-02-16 19:55:57'),
(4, 'manual_deposit', '{\"transaction_id\":{\"name\":\"Transaction ID\",\"label\":\"transaction_id\",\"is_required\":\"required\",\"extensions\":null,\"options\":[],\"type\":\"text\"},\"proof_of_payment\":{\"name\":\"Proof Of Payment\",\"label\":\"proof_of_payment\",\"is_required\":\"required\",\"extensions\":\"jpg,jpeg,png\",\"options\":[],\"type\":\"file\"}}', '2024-04-28 22:24:35', '2024-04-28 22:25:18'),
(5, 'manual_deposit', '{\"txt\":{\"name\":\"TXT\",\"label\":\"txt\",\"is_required\":\"required\",\"extensions\":\"\",\"options\":[],\"type\":\"text\"}}', '2024-07-31 03:43:29', '2024-07-31 03:43:29');

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

--
-- Table structure for table `frontends`
--

CREATE TABLE `frontends` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `data_keys` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `data_values` longtext COLLATE utf8mb4_unicode_ci,
  `template_name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `frontends`
--

INSERT INTO `frontends` (`id`, `data_keys`, `data_values`, `template_name`, `created_at`, `updated_at`) VALUES
(1, 'seo.data', '{\"seo_image\":\"1\",\"keywords\":[\"hyip\",\"bitcoin\",\"investment\",\"hyip business\",\"hyip script\",\"best hyip\",\"buy hyip script\",\"advanced hyip script\",\"hyip software\",\"hight yield investment program\",\"Hyip manager\",\"hyip manager script\",\"cheap hyip script\",\"realable hyip\",\"secure hyip script\",\"php hyip script\",\"new hyip script\",\"hyip program\"],\"description\":\"Scam Refund -  Reclaim Your Losses. Rebuild Your Future. Experts In Scam Recovery.\",\"social_title\":\"Scam Refund -  Reclaim Your Losses. Rebuild Your Future. Experts In Scam Recovery.\",\"social_description\":\"Scam Refund -  Reclaim Your Losses. Rebuild Your Future. Experts In Scam Recovery.\",\"image\":\"66ac0ed23b7751722552018.png\"}', 'global', '2020-07-04 23:42:52', '2024-08-02 08:40:18'),
(41, 'cookie.data', '{\"short_desc\":\"We may use cookies or any other tracking technologies when you visit our website, including any other media form, mobile website, or mobile application related or connected to help customize the Site and improve your experience.\",\"description\":\"<div class=\\\"mb-5\\\">\\r\\n    <h3 class=\\\"mb-3\\\">\\r\\n        What information do we collect?<\\/h3>\\r\\n    <p class=\\\"font-18\\\">We gather data from you\\r\\n        when you register on our site, submit a request, buy any services, react to an overview, or round out a\\r\\n        structure. At the point when requesting any assistance or enrolling on our site, as suitable, you might be\\r\\n        approached to enter your: name, email address, or telephone number. You may, nonetheless, visit our site\\r\\n        anonymously.<\\/p>\\r\\n<\\/div>\\r\\n<div class=\\\"mb-5\\\">\\r\\n    <h3 class=\\\"mb-3\\\">\\r\\n        How do we protect your information?<\\/h3>\\r\\n    <p class=\\\"font-18\\\">All provided\\r\\n        delicate\\/credit data is sent through Stripe.<br>After an exchange, your private data (credit cards, social\\r\\n        security numbers, financials, and so on) won\'t be put away on our workers.<\\/p>\\r\\n<\\/div>\\r\\n<div class=\\\"mb-5\\\">\\r\\n    <h3 class=\\\"mb-3\\\">\\r\\n        Do we disclose any information to outside parties?<\\/h3>\\r\\n    <p class=\\\"font-18\\\">We don\'t sell, exchange,\\r\\n        or in any case move to outside gatherings by and by recognizable data. This does exclude confided in outsiders\\r\\n        who help us in working our site, leading our business, or adjusting you, since those gatherings consent to keep\\r\\n        this data private. We may likewise deliver your data when we accept discharge is suitable to follow the law,\\r\\n        implement our site strategies, or ensure our own or others\' rights, property, or wellbeing.<\\/p>\\r\\n<\\/div>\\r\\n<div class=\\\"mb-5\\\">\\r\\n    <h3 class=\\\"mb-3\\\">\\r\\n        Children\'s Online Privacy Protection Act Compliance<\\/h3>\\r\\n    <p class=\\\"font-18\\\">We are consistent with\\r\\n        the prerequisites of COPPA (Children\'s Online Privacy Protection Act), we don\'t gather any data from anybody\\r\\n        under 13 years old. Our site, items, and administrations are completely coordinated to individuals who are in\\r\\n        any event 13 years of age or more established.<\\/p>\\r\\n<\\/div>\\r\\n<div class=\\\"mb-5\\\">\\r\\n    <h3 class=\\\"mb-3\\\">\\r\\n        Changes to our Privacy Policy<\\/h3>\\r\\n    <p class=\\\"font-18\\\">If we decide to change\\r\\n        our privacy policy, we will post those changes on this page.<\\/p>\\r\\n<\\/div>\\r\\n<div class=\\\"mb-5\\\">\\r\\n    <h3 class=\\\"mb-3\\\">\\r\\n        How long we retain your information?<\\/h3>\\r\\n    <p class=\\\"font-18\\\">At the point when you\\r\\n        register for our site, we cycle and keep your information we have about you however long you don\'t erase the\\r\\n        record or withdraw yourself (subject to laws and guidelines).<\\/p>\\r\\n<\\/div>\\r\\n<div class=\\\"mb-5\\\">\\r\\n    <h3 class=\\\"mb-3\\\">\\r\\n        What we don\\u2019t do with your data<\\/h3>\\r\\n    <p class=\\\"font-18\\\">We don\'t and will never\\r\\n        share, unveil, sell, or in any case give your information to different organizations for the promoting of their\\r\\n        items or administrations.<\\/p>\\r\\n<\\/div>\",\"status\":1}', 'global', '2020-07-04 23:42:52', '2022-09-24 01:10:22'),
(44, 'maintenance.data', '{\"description\":\"<div class=\\\"text-center\\\"><h3 class=\\\"mb-3\\\">What information do we collect?<\\/h3>\\r\\n<p class=\\\"font-18\\\">We gather data from you when you register on our site, submit a request, buy any services, react to an overview, or round out a structure. At the point when requesting any assistance or enrolling on our site, as suitable, you might be approached to enter your: name, email address, or telephone number. You may, nonetheless, visit our site anonymously.<\\/p><\\/div>\"}', 'global', '2020-07-04 23:42:52', '2022-09-20 06:32:48'),
(206, 'about.content', '{\"has_image\":\"1\",\"heading_w\":\"About\",\"heading_c\":\"Us\",\"button_name\":\"More Info\",\"button_link\":\"about\",\"content\":\"We are an international financial company engaged in investment activities, which are related to trading on financial markets and cryptocurrency exchanges performed by qualified professional traders.\\r\\n\\r\\nOur goal is to provide our investors with a reliable source of high income, while minimizing any possible risks and offering a high-quality service, allowing us to automate and simplify the relations between the investors and the trustees. We work towards increasing your profit margin by profitable investment. We look forward to you being part of our community.\",\"image\":\"631d85749f9311662879092.jpg\"}', 'bit_gold', '2022-09-10 12:26:58', '2022-10-06 09:09:33'),
(207, 'banner.content', '{\"has_image\":\"1\",\"heading_w\":\"Invest for Future in Stable Platform\",\"heading_c\":\"and Make Fast Money\",\"sub_heading\":\"Invest in an Industry Leader, Professional, and Reliable Company. We provide you with the most necessary features that will make your experience better. Not only we guarantee the fastest and the most exciting returns on your investments, but we also guarantee the security of your investment.\",\"button_name\":\"Sign Up\",\"button_link\":\"user\\/register\",\"image\":\"631c9810cbce71662818320.jpg\"}', 'bit_gold', '2022-09-10 12:28:40', '2022-09-22 04:48:35'),
(208, 'blog.content', '{\"heading\":\"Our Latest News\",\"sub_heading\":\"you will get each update about our system and the world market in this area. Keep checking our Latest News to be in touch.\"}', 'bit_gold', '2022-09-10 12:28:58', '2022-09-10 12:28:58'),
(210, 'blog.content', '{\"heading\":\"Our Latest News\",\"sub_heading\":\"you will get each update about our system and the world market in this area. Keep checking our Latest News to be in touch.\"}', 'neo_dark', '2022-09-10 12:30:04', '2022-09-10 12:32:20'),
(216, 'about.content', '{\"has_image\":\"1\",\"heading\":\"About Us\",\"content\":\"We are an international financial company engaged in investment activities, which are related to trading on financial markets and cryptocurrency exchanges performed by qualified professional traders.\\r\\n\\r\\nOur goal is to provide our investors with a reliable source of high income, while minimizing any possible risks and offering a high-quality service, allowing us to automate and simplify the relations between the investors and the trustees. We work towards increasing your profit margin by profitable investment. We look forward to you being part of our community.\",\"image\":\"631d8591816a01662879121.png\"}', 'neo_dark', '2022-09-10 12:41:00', '2022-09-11 05:22:01'),
(217, 'banner.content', '{\"has_image\":\"1\",\"heading\":\"Invest for Future in Stable Platform and Make Fast Money\",\"button_name\":\"Sign Up\",\"button_link\":\"user\\/register\",\"button_two_name\":\"Sign In\",\"button_two_link\":\"user\\/login\",\"sub_heading\":\"Invest in an Industry Leader, Professional, and Reliable Company. We provide you with the most necessary features that will make your experience better. Not only we guarantee the fastest and the most exciting returns on your investments, but we also guarantee the security of your investment.\",\"image\":\"631d8664f2ab11662879332.png\"}', 'neo_dark', '2022-09-10 12:52:54', '2022-09-14 09:13:01'),
(218, 'calculation.content', '{\"heading_w\":\"Profit\",\"heading_c\":\"Calculator\",\"sub_heading\":\"You must know the calculation before investing in any plan, so you never make mistakes. Check the calculation and you will get as our calculator says.\"}', 'bit_gold', '2022-09-10 12:54:00', '2022-09-10 12:54:00'),
(219, 'calculation.content', '{\"has_image\":\"1\",\"heading\":\"Profit Calculator\",\"sub_heading\":\"You must know the calculation before investing in any plan, so you never make mistakes. Check the calculation and you will get as our calculator says.\",\"image\":\"633ef22566efe1665069605.png\"}', 'neo_dark', '2022-09-10 12:54:11', '2022-10-06 09:20:05'),
(220, 'contact.content', '{\"has_image\":\"1\",\"heading\":\"Contact With Us\",\"sub_heading\":\"If you have any questions or queries that are not answered on our website, please feel free to contact us. We will try to respond to you as soon as possible. Thank you so much.\",\"image\":\"631c9e4f1666c1662819919.jpg\"}', 'bit_gold', '2022-09-10 12:55:19', '2022-09-10 12:55:19'),
(221, 'contact.element', '{\"icon\":\"<i class=\\\"las la-phone\\\"><\\/i>\",\"title\":\"Phone Number\",\"content\":\"+01234 5678 9000\"}', 'bit_gold', '2022-09-10 12:55:45', '2022-09-10 12:55:46'),
(222, 'contact.element', '{\"icon\":\"<i class=\\\"far fa-envelope-open\\\"><\\/i>\",\"title\":\"Email Address\",\"content\":\"demo@example.com\"}', 'bit_gold', '2022-09-10 12:56:00', '2022-09-10 12:56:01'),
(223, 'contact.element', '{\"icon\":\"<i class=\\\"las la-map-marker\\\"><\\/i>\",\"title\":\"Office Address\",\"content\":\"3015 Suit pagla road, Singapore\"}', 'bit_gold', '2022-09-10 12:56:30', '2022-09-10 12:56:30'),
(224, 'contact.content', '{\"title\":null,\"subtitle\":null}', 'invester', '2022-09-10 12:57:59', '2022-09-10 12:57:59'),
(225, 'contact.element', '{\"icon\":\"<i class=\\\"las la-phone\\\"><\\/i>\",\"title\":\"Phone Number\",\"content\":\"+01234 5678 9000\"}', 'invester', '2022-09-10 12:57:59', '2022-09-10 12:57:59'),
(226, 'contact.element', '{\"icon\":\"<i class=\\\"far fa-envelope-open\\\"><\\/i>\",\"title\":\"Email Address\",\"content\":\"demo@example.com\"}', 'invester', '2022-09-10 12:57:59', '2022-09-10 12:57:59'),
(227, 'contact.element', '{\"icon\":\"<i class=\\\"las la-map-marker\\\"><\\/i>\",\"title\":\"Office Address\",\"content\":\"3015 Suit pagla road, Singapore\"}', 'invester', '2022-09-10 12:57:59', '2022-09-10 12:57:59'),
(228, 'cta.content', '{\"has_image\":\"1\",\"heading\":\"Get Started Today With Us\",\"sub_heading\":\"This is a Revolutionary Money Making Platform! Invest for Future in Stable Platform and Make Fast Money. Not only we guarantee the fastest and the most exciting returns on your investments, but we also guarantee the security of your investment.\",\"button_name\":\"Join Us\",\"button_url\":\"user\\/register\",\"image\":\"631c9f3d446e11662820157.jpg\"}', 'bit_gold', '2022-09-10 12:59:17', '2022-10-05 05:35:38'),
(229, 'faq.content', '{\"heading_w\":\"Frequently Asked\",\"heading_c\":\"Questions\",\"sub_heading\":\"We answer some of your Frequently Asked Questions regarding our platform. If you have a query that is not answered here, Please contact us.\"}', 'bit_gold', '2022-09-10 13:00:01', '2022-09-10 13:00:01'),
(230, 'faq.element', '{\"question\":\"When can I deposit\\/withdraw from my Investment account?\",\"answer\":\"Deposit and withdrawal are available for at any time. Be sure, that your funds are not used in any ongoing trade before the withdrawal. The available amount is shown in your dashboard on the main page of Investing platform.\\r\\n\\r\\n                                Deposit and withdrawal are available for at any time. Be sure, that your funds are not used in any ongoing trade before the withdrawal. The available amount is shown in your dashboard on the main page of Investing platform.\"}', 'bit_gold', '2022-09-10 13:00:23', '2022-09-10 13:00:23'),
(231, 'faq.element', '{\"question\":\"How do I check my account balance?\",\"answer\":\"You can see this anytime on your accounts dashboard. You can see this anytime on your accounts dashboard.\"}', 'bit_gold', '2022-09-10 13:00:39', '2022-09-10 13:00:39'),
(232, 'faq.element', '{\"question\":\"I forgot my password, what should I do?\",\"answer\":\"Visit the password reset page, type in your email address and click the `Reset` button. Visit the password reset page, type in your email address and click the `Reset` button.\"}', 'bit_gold', '2022-09-10 13:00:54', '2022-09-10 13:00:54'),
(233, 'faq.element', '{\"question\":\"How will I know that the withdrawal has been successful?\",\"answer\":\"You will get an automatic notification once we send the funds and you can always check your transactions or account balance. Your chosen payment system dictates how long it will take for the funds to reach you. You will get an automatic notification once we send the funds and you can always check your transactions or account balance. Your chosen payment system dictates how long it will take for the funds to reach you.\"}', 'bit_gold', '2022-09-10 13:01:07', '2022-09-10 13:01:07'),
(234, 'faq.element', '{\"question\":\"How much can I withdraw?\",\"answer\":\"You can withdraw the full amount of your account balance minus the funds that are used currently for supporting opened positions. You can withdraw the full amount of your account balance minus the funds that are used currently for supporting opened positions.\"}', 'bit_gold', '2022-09-10 13:01:21', '2022-09-10 13:01:22'),
(235, 'faq.content', '{\"heading\":\"Frequently Asked Questions\",\"sub_heading\":\"We answer some of your Frequently Asked Questions regarding our platform. If you have a query that is not answered here, Please contact us.\"}', 'neo_dark', '2022-09-10 13:01:37', '2022-09-11 05:33:28'),
(236, 'faq.element', '{\"question\":\"When can I deposit\\/withdraw from my Investment account?\",\"answer\":\"Deposit and withdrawal are available for at any time. Be sure, that your funds are not used in any ongoing trade before the withdrawal. The available amount is shown in your dashboard on the main page of Investing platform.\\r\\n\\r\\n                                Deposit and withdrawal are available for at any time. Be sure, that your funds are not used in any ongoing trade before the withdrawal. The available amount is shown in your dashboard on the main page of Investing platform.\"}', 'neo_dark', '2022-09-10 13:01:37', '2022-09-10 13:01:37'),
(237, 'faq.element', '{\"question\":\"How do I check my account balance?\",\"answer\":\"You can see this anytime on your accounts dashboard. You can see this anytime on your accounts dashboard.\"}', 'neo_dark', '2022-09-10 13:01:37', '2022-09-10 13:01:37'),
(238, 'faq.element', '{\"question\":\"I forgot my password, what should I do?\",\"answer\":\"Visit the password reset page, type in your email address and click the `Reset` button. Visit the password reset page, type in your email address and click the `Reset` button.\"}', 'neo_dark', '2022-09-10 13:01:37', '2022-09-10 13:01:37'),
(239, 'faq.element', '{\"question\":\"How will I know that the withdrawal has been successful?\",\"answer\":\"You will get an automatic notification once we send the funds and you can always check your transactions or account balance. Your chosen payment system dictates how long it will take for the funds to reach you. You will get an automatic notification once we send the funds and you can always check your transactions or account balance. Your chosen payment system dictates how long it will take for the funds to reach you.\"}', 'neo_dark', '2022-09-10 13:01:37', '2022-09-10 13:01:37'),
(240, 'faq.element', '{\"question\":\"How much can I withdraw?\",\"answer\":\"You can withdraw the full amount of your account balance minus the funds that are used currently for supporting opened positions.\"}', 'neo_dark', '2022-09-10 13:01:37', '2022-09-12 06:09:13'),
(241, 'faq.content', '{\"title\":null}', 'invester', '2022-09-10 13:01:55', '2022-09-10 13:01:55'),
(242, 'faq.element', '{\"question\":\"When can I deposit\\/withdraw from my Investment account?\",\"answer\":\"Deposit and withdrawal are available for at any time. Be sure, that your funds are not used in any ongoing trade before the withdrawal. The available amount is shown in your dashboard on the main page of Investing platform.\\r\\n\\r\\n                                Deposit and withdrawal are available for at any time. Be sure, that your funds are not used in any ongoing trade before the withdrawal. The available amount is shown in your dashboard on the main page of Investing platform.\"}', 'invester', '2022-09-10 13:01:55', '2022-09-10 13:01:55'),
(243, 'faq.element', '{\"question\":\"How do I check my account balance?\",\"answer\":\"You can see this anytime on your accounts dashboard. You can see this anytime on your accounts dashboard.\"}', 'invester', '2022-09-10 13:01:55', '2022-09-10 13:01:55'),
(244, 'faq.element', '{\"question\":\"I forgot my password, what should I do?\",\"answer\":\"Visit the password reset page, type in your email address and click the `Reset` button. Visit the password reset page, type in your email address and click the `Reset` button.\"}', 'invester', '2022-09-10 13:01:55', '2022-09-10 13:01:55'),
(245, 'faq.element', '{\"question\":\"How will I know that the withdrawal has been successful?\",\"answer\":\"You will get an automatic notification once we send the funds and you can always check your transactions or account balance. Your chosen payment system dictates how long it will take for the funds to reach you. You will get an automatic notification once we send the funds and you can always check your transactions or account balance. Your chosen payment system dictates how long it will take for the funds to reach you.\"}', 'invester', '2022-09-10 13:01:55', '2022-09-10 13:01:55'),
(246, 'faq.element', '{\"question\":\"How much can I withdraw?\",\"answer\":\"You can withdraw the full amount of your account balance minus the funds that are used currently for supporting opened positions. You can withdraw the full amount of your account balance minus the funds that are used currently for supporting opened positions.\"}', 'invester', '2022-09-10 13:01:55', '2022-09-10 13:01:55'),
(247, 'footer.content', '{\"has_image\":\"1\",\"image\":\"631ca001534431662820353.jpg\"}', 'bit_gold', '2022-09-10 13:02:33', '2022-09-10 13:02:33'),
(248, 'how_work.content', '{\"has_image\":\"1\",\"heading_w_1\":\"How\",\"heading_c\":\"Hyiplab\",\"heading_w_2\":\"Works\",\"sub_heading\":\"Get involved in our tremendous platform and Invest. We will utilize your money and give you profit in your wallet automatically.\",\"image\":\"631ca042137ab1662820418.jpg\"}', 'bit_gold', '2022-09-10 13:03:38', '2022-09-10 13:03:38'),
(249, 'how_work.element', '{\"title\":\"Create Account\",\"icon\":\"<i class=\\\"lar la-user\\\"><\\/i>\"}', 'bit_gold', '2022-09-10 13:03:57', '2022-09-10 13:03:57'),
(250, 'how_work.element', '{\"title\":\"Invest To Plan\",\"icon\":\"<i class=\\\"las la-clipboard-list\\\"><\\/i>\"}', 'bit_gold', '2022-09-10 13:04:20', '2022-09-10 13:04:20'),
(251, 'how_work.element', '{\"title\":\"Get Profit\",\"icon\":\"<i class=\\\"las la-wallet\\\"><\\/i>\"}', 'bit_gold', '2022-09-10 13:04:30', '2022-09-10 13:04:31'),
(252, 'how_work.content', '{\"heading\":\"How it Works\",\"sub_heading\":\"Get involved in our tremendous platform and Invest. We will utilize your money and give you profit in your wallet automatically.\"}', 'neo_dark', '2022-09-10 13:04:48', '2022-09-11 06:28:04'),
(253, 'how_work.element', '{\"icon\":\"<i class=\\\"lar la-user\\\"><\\/i>\",\"title\":\"Create Account\"}', 'neo_dark', '2022-09-10 13:04:48', '2022-09-10 13:04:48'),
(254, 'how_work.element', '{\"icon\":\"<i class=\\\"las la-clipboard-list\\\"><\\/i>\",\"title\":\"Invest To Plan\"}', 'neo_dark', '2022-09-10 13:04:48', '2022-09-10 13:04:48'),
(255, 'how_work.element', '{\"icon\":\"<i class=\\\"las la-wallet\\\"><\\/i>\",\"title\":\"Get Profit\"}', 'neo_dark', '2022-09-10 13:04:48', '2022-09-10 13:04:48'),
(256, 'login.content', '{\"has_image\":\"1\",\"heading_w\":\"Welcome To\",\"heading_c\":\"Hyiplab\",\"sub_heading\":\"Lorem ipsum dolor, sit amet consectetur adipisicing elit. Minus distinctio deserunt impedit similique debitis voluptatum enim.\",\"section_bg\":\"631ca0dc080a31662820572.jpg\",\"card_bg\":\"631ca0dc2ed1a1662820572.jpg\"}', 'bit_gold', '2022-09-10 13:06:11', '2022-09-10 13:06:12'),
(257, 'login.content', '{\"has_image\":\"1\",\"image\":\"631d951c9ede11662883100.png\"}', 'neo_dark', '2022-09-10 13:06:47', '2022-09-11 06:28:20'),
(258, 'plan.content', '{\"heading_w\":\"Investment\",\"heading_c\":\"Plans\",\"sub_heading\":\"To make a solid investment, you have to know where you are investing. Find a plan which is best for you.\"}', 'bit_gold', '2022-09-10 13:07:18', '2022-09-10 13:07:18'),
(259, 'plan.content', '{\"heading\":\"Investment Plans\",\"sub_heading\":\"To make a solid investment, you have to know where you are investing. Find a plan which is best for you.\"}', 'neo_dark', '2022-09-10 13:07:51', '2022-09-11 06:28:53'),
(260, 'policy_pages.element', '{\"title\":\"Privacy Policy\",\"details\":\"<h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p>\"}', 'bit_gold', '2022-09-10 13:08:33', '2022-09-10 13:08:33'),
(261, 'policy_pages.element', '{\"title\":\"Terms and Service\",\"details\":\"<h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><br \\/><\\/font><\\/p><h2 style=\\\"margin-bottom:10px;font-weight:600;line-height:24px;font-size:24px;font-family:DauphinPlain;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;\\\"><font color=\\\"#ffffff\\\">What is Lorem Ipsum?<\\/font><\\/h2><p style=\\\"margin-right:0px;margin-bottom:15px;margin-left:0px;color:rgb(255,255,255);background-color:rgb(16,17,19);padding:0px;text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;font-size:14px;\\\"><font color=\\\"#ffffff\\\"><span style=\\\"font-weight:bolder;margin-top:0px;margin-right:0px;margin-left:0px;padding:0px;\\\">Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/font><\\/p>\"}', 'bit_gold', '2022-09-10 13:08:46', '2022-09-10 13:08:46');
INSERT INTO `frontends` (`id`, `data_keys`, `data_values`, `template_name`, `created_at`, `updated_at`) VALUES
(262, 'policy_pages.element', '{\"title\":\"Privacy Policy\",\"details\":\"<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\"}', 'neo_dark', '2022-09-10 13:08:56', '2022-09-25 00:51:34'),
(263, 'policy_pages.element', '{\"title\":\"Terms and Service\",\"details\":\"<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\"}', 'neo_dark', '2022-09-10 13:08:56', '2022-10-06 02:59:37'),
(266, 'register.content', '{\"has_image\":\"1\",\"heading_w\":\"Welcome To\",\"heading_c\":\"Hyiplab\",\"sub_heading\":\"Lorem ipsum dolor, sit amet consectetur adipisicing elit. Minus distinctio deserunt impedit similique debitis voluptatum enim.\",\"section_bg\":\"631ca1b63bca31662820790.jpg\",\"card_bg\":\"631ca1b664ebf1662820790.jpg\"}', 'bit_gold', '2022-09-10 13:09:50', '2022-09-10 13:09:50'),
(267, 'social_icon.element', '{\"icon\":\"<i class=\\\"lab la-facebook-f\\\"><\\/i>\",\"url\":\"https:\\/\\/facebook.com\"}', 'bit_gold', '2022-09-10 13:10:11', '2022-10-05 05:37:49'),
(268, 'social_icon.element', '{\"icon\":\"<i class=\\\"lab la-twitter\\\"><\\/i>\",\"url\":\"https:\\/\\/twitter.com\"}', 'bit_gold', '2022-09-10 13:10:21', '2022-10-05 05:37:56'),
(269, 'social_icon.element', '{\"icon\":\"<i class=\\\"fab fa-pinterest-p\\\"><\\/i>\",\"url\":\"https:\\/\\/www.pinterest.com\"}', 'bit_gold', '2022-09-10 13:10:44', '2022-10-05 05:38:23'),
(270, 'social_icon.element', '{\"icon\":\"<i class=\\\"lab la-linkedin-in\\\"><\\/i>\",\"url\":\"https:\\/\\/www.linkedin.com\"}', 'bit_gold', '2022-09-10 13:11:07', '2022-10-05 05:38:40'),
(271, 'subscribe.content', '{\"has_image\":\"1\",\"heading\":\"Subscribe Our Newsletter\",\"image\":\"631ca2753add11662820981.jpg\"}', 'bit_gold', '2022-09-10 13:13:01', '2022-09-10 13:13:01'),
(272, 'subscribe.content', '{\"heading\":\"Subscribe Our Newsletter\",\"sub_heading\":\"once you subscribe to our newsletter, we will send our promo offers and news to your email. No worry, we will not send spam.\"}', 'neo_dark', '2022-09-10 13:13:14', '2022-09-11 06:29:18'),
(273, 'team.content', '{\"has_image\":\"1\",\"heading_w\":\"Our Expert\",\"heading_c\":\"Team Members\",\"sub_heading\":\"We have a great team including developers, designers, and Traders. The Team always working hard to give you the maximum profit.\",\"image\":\"631d7cee5a6e31662876910.jpg\"}', 'bit_gold', '2022-09-11 04:45:10', '2022-09-11 04:45:10'),
(274, 'team.element', '{\"has_image\":\"1\",\"name\":\"Callie Mcdowell\",\"designation\":\"CEO\",\"image\":\"657d818d080191702723981.jpg\"}', 'bit_gold', '2022-09-11 04:46:07', '2023-12-16 10:53:01'),
(275, 'team.element', '{\"has_image\":\"1\",\"name\":\"Marcia Weeks\",\"designation\":\"CTO\",\"image\":\"657d819332e691702723987.jpg\"}', 'bit_gold', '2022-09-11 04:46:22', '2023-12-16 10:53:07'),
(276, 'team.element', '{\"has_image\":\"1\",\"name\":\"Sage Bray\",\"designation\":\"Marketing Head\",\"image\":\"657d819a4998e1702723994.jpg\"}', 'bit_gold', '2022-09-11 04:46:37', '2023-12-16 10:53:14'),
(277, 'team.element', '{\"has_image\":\"1\",\"name\":\"Cyrus Briggs\",\"designation\":\"Developer\",\"image\":\"657d81a101e5b1702724001.jpg\"}', 'bit_gold', '2022-09-11 04:46:56', '2023-12-16 10:53:21'),
(278, 'team.element', '{\"has_image\":\"1\",\"name\":\"Colette Mccarty\",\"designation\":\"UX Expert\",\"image\":\"657d81a7c9e6c1702724007.jpg\"}', 'bit_gold', '2022-09-11 04:47:11', '2023-12-16 10:53:27'),
(279, 'team.element', '{\"has_image\":\"1\",\"name\":\"Alden Odom\",\"designation\":\"SEO Expert\",\"image\":\"657d81ae978281702724014.jpg\"}', 'bit_gold', '2022-09-11 04:47:45', '2023-12-16 10:53:34'),
(280, 'team.element', '{\"has_image\":\"1\",\"name\":\"Tanek Gilmore\",\"designation\":\"SEO Expert\",\"image\":\"657d81b5168fc1702724021.jpg\"}', 'bit_gold', '2022-09-11 04:48:10', '2023-12-16 10:53:41'),
(281, 'team.element', '{\"has_image\":\"1\",\"name\":\"Upton Blair\",\"designation\":\"Manager\",\"image\":\"657d81bbc2fb81702724027.jpg\"}', 'bit_gold', '2022-09-11 04:48:31', '2023-12-16 10:53:47'),
(282, 'testimonial.content', '{\"has_image\":\"1\",\"heading_w\":\"What Users Say\",\"heading_c\":\"About Us\",\"sub_heading\":\"We are doing really good at this market and here are the words we loved to get from a few of our users.\",\"image\":\"631d7ddd2fe6c1662877149.jpg\"}', 'bit_gold', '2022-09-11 04:49:09', '2022-09-11 04:49:09'),
(283, 'testimonial.element', '{\"has_image\":\"1\",\"name\":\"Melodie Ferguson\",\"designation\":\"User from India\",\"quote\":\"I have invested with this platform and gotten my money in my account. This is legit and safe. Great doing business with them.\",\"image\":\"657d824b639671702724171.jpg\"}', 'bit_gold', '2022-09-11 04:50:35', '2023-12-16 10:56:11'),
(284, 'testimonial.element', '{\"has_image\":\"1\",\"name\":\"Samantha Levy\",\"designation\":\"User From USA\",\"quote\":\"Legit....and legit. Although the payment was processed manually, I have received my first payment within a very short time., I think nice for invest at this site.\",\"image\":\"657d82528bd081702724178.jpg\"}', 'bit_gold', '2022-09-11 04:51:06', '2023-12-16 10:56:18'),
(285, 'testimonial.element', '{\"has_image\":\"1\",\"name\":\"Geoffrey Crawford\",\"designation\":\"User From Nigeria\",\"quote\":\"I have invested with this platform and gotten my money in my account. This is legit and safe. Great doing business with them.\",\"image\":\"657d8259909b51702724185.jpg\"}', 'bit_gold', '2022-09-11 04:51:35', '2023-12-16 10:56:25'),
(286, 'top_investor.content', '{\"heading_w\":\"Our Top\",\"heading_c\":\"Investors\",\"sub_heading\":\"Here are the investor leaders who have made the maximum investment with our system.\"}', 'bit_gold', '2022-09-11 04:52:12', '2022-09-11 04:52:12'),
(287, 'transaction.content', '{\"heading_w\":\"Our Latest\",\"heading_c\":\"Transaction\",\"sub_heading\":\"Here is the log of the most recent transactions including withdraw and deposit made by our users.\"}', 'bit_gold', '2022-09-11 04:52:30', '2022-09-26 05:24:24'),
(288, 'we_accept.content', '{\"heading_w\":\"Payment We\",\"heading_c\":\"Accept\",\"sub_heading\":\"We accept all major cryptocurrencies and fiat payment methods to make your investment process easier with our platform.\"}', 'bit_gold', '2022-09-11 04:52:48', '2022-09-11 04:52:48'),
(289, 'why_choose.content', '{\"has_image\":\"1\",\"heading_w\":\"Why Choose\",\"heading_c\":\"Hyiplab\",\"sub_heading\":\"Our goal is to provide our investors with a reliable source of high income, while minimizing any possible risks and offering a high-quality service.\",\"image\":\"631d7ee5c26801662877413.jpg\"}', 'bit_gold', '2022-09-11 04:53:20', '2022-09-11 04:53:34'),
(290, 'why_choose.element', '{\"title\":\"Legal Company\",\"icon\":\"<i class=\\\"las la-copy\\\"><\\/i>\",\"content\":\"Our company conducts absolutely legal activities in the legal field. We are certified to operate investment business, we are legal and safe.\"}', 'bit_gold', '2022-09-11 04:53:56', '2022-09-11 04:53:56'),
(291, 'why_choose.element', '{\"title\":\"High reliability\",\"icon\":\"<i class=\\\"las la-lock\\\"><\\/i>\",\"content\":\"We are trusted by a huge number of people. We are working hard constantly to improve the level of our security system and minimize possible risks.\"}', 'bit_gold', '2022-09-11 04:54:12', '2022-09-11 04:54:12'),
(292, 'why_choose.element', '{\"title\":\"Anonymity\",\"icon\":\"<i class=\\\"las la-user-lock\\\"><\\/i>\",\"content\":\"Anonymity and using cryptocurrency as a payment instrument. In the era of electronic money \\u2013 this is one of the most convenient ways of cooperation.\"}', 'bit_gold', '2022-09-11 04:54:29', '2022-09-11 04:54:29'),
(293, 'why_choose.element', '{\"title\":\"Quick Withdrawal\",\"icon\":\"<i class=\\\"las la-shipping-fast\\\"><\\/i>\",\"content\":\"Our all retreats are treated spontaneously once requested. There are high maximum limits. The minimum withdrawal amount is only $10 .\"}', 'bit_gold', '2022-09-11 04:55:10', '2022-09-11 04:55:10'),
(294, 'why_choose.element', '{\"title\":\"Referral Program\",\"icon\":\"<i class=\\\"las la-link\\\"><\\/i>\",\"content\":\"We are offering a certain level of referral income through our referral program. you can increase your income by simply refer a few people.\"}', 'bit_gold', '2022-09-11 04:55:26', '2022-09-11 04:55:26'),
(295, 'why_choose.element', '{\"title\":\"24\\/7 Support\",\"icon\":\"<i class=\\\"las la-headset\\\"><\\/i>\",\"content\":\"We provide 24\\/7 customer support through e-mail and telegram. Our support representatives are periodically available to elucidate any difficulty.\"}', 'bit_gold', '2022-09-11 04:57:21', '2022-09-11 04:57:21'),
(296, 'why_choose.element', '{\"title\":\"Dedicated Server\",\"icon\":\"<i class=\\\"las la-server\\\"><\\/i>\",\"content\":\"We are using a dedicated server for the website which allows us exclusive use of the resources of the entire server.\"}', 'bit_gold', '2022-09-11 04:57:39', '2022-09-11 04:57:39'),
(297, 'why_choose.element', '{\"title\":\"SSL Secured\",\"icon\":\"<i class=\\\"lab la-expeditedssl\\\"><\\/i>\",\"content\":\"Comodo Essential-SSL Security encryption confirms that the presented content is genuine and legitimate.\"}', 'bit_gold', '2022-09-11 04:57:57', '2022-09-11 04:58:20'),
(298, 'why_choose.element', '{\"title\":\"DDOS Protection\",\"icon\":\"<i class=\\\"las la-shield-alt\\\"><\\/i>\",\"content\":\"We are using one of the most experienced, professional, and trusted DDoS Protection and mitigation provider.\"}', 'bit_gold', '2022-09-11 04:58:40', '2022-09-11 04:58:40'),
(299, 'breadcrumb.content', '{\"has_image\":\"1\",\"image\":\"631d82f525a611662878453.jpg\"}', 'bit_gold', '2022-09-11 05:10:53', '2022-09-11 05:10:53'),
(300, 'contact.content', '{\"heading\":\"Contact With Us\",\"sub_heading\":\"If you have any questions or queries that are not answered on our website, please feel free to contact us. We will try to respond to you as soon as possible. Thank you so much.\",\"map_api_key\":\"AIzaSyCo_pcAdFNbTDCAvMwAD19oRTuEmb9M50c\",\"latitude\":\"19.1368977\",\"longitude\":\"72.893736\",\"title\":\"Hello With Us\"}', 'neo_dark', '2022-09-11 05:28:18', '2022-09-15 06:15:05'),
(301, 'contact.element', '{\"icon\":\"<i class=\\\"las la-phone\\\"><\\/i>\",\"title\":\"Phone Number\",\"content\":\"+01234 5678 9000\"}', 'neo_dark', '2022-09-11 05:28:18', '2022-09-11 05:28:18'),
(302, 'contact.element', '{\"icon\":\"<i class=\\\"far fa-envelope-open\\\"><\\/i>\",\"title\":\"Email Address\",\"content\":\"demo@example.com\"}', 'neo_dark', '2022-09-11 05:28:18', '2022-09-11 05:28:18'),
(303, 'contact.element', '{\"icon\":\"<i class=\\\"las la-map-marker\\\"><\\/i>\",\"title\":\"Office Address\",\"content\":\"3015 Suit pagla road, Singapore\"}', 'neo_dark', '2022-09-11 05:28:18', '2022-09-11 05:28:18'),
(304, 'counter.element', '{\"title\":\"Investment\",\"counter_digit\":\"4k+\"}', 'neo_dark', '2022-09-11 05:32:24', '2022-09-11 05:32:24'),
(305, 'counter.element', '{\"title\":\"Withdraw\",\"counter_digit\":\"$160k+\"}', 'neo_dark', '2022-09-11 05:32:38', '2022-09-11 05:32:38'),
(306, 'counter.element', '{\"title\":\"Deposit\",\"counter_digit\":\"$250K+\"}', 'neo_dark', '2022-09-11 05:32:47', '2022-09-11 05:32:47'),
(307, 'counter.element', '{\"title\":\"Users\",\"counter_digit\":\"5K+\"}', 'neo_dark', '2022-09-11 05:32:55', '2022-09-11 05:32:55'),
(308, 'why_choose.content', '{\"heading\":\"Features - Why Choose Us\",\"sub_heading\":\"Our goal is to provide our investors with a reliable source of high income, while minimizing any possible risks and offering a high-quality service.\"}', 'neo_dark', '2022-09-11 05:35:34', '2022-09-11 05:35:41'),
(309, 'why_choose.element', '{\"title\":\"Legal Company\",\"icon\":\"<i class=\\\"las la-copy\\\"><\\/i>\",\"content\":\"Our company conducts absolutely legal activities in the legal field. We are certified to operate investment business, we are legal and safe.\"}', 'neo_dark', '2022-09-11 05:35:34', '2022-09-11 05:35:34'),
(310, 'why_choose.element', '{\"title\":\"High reliability\",\"icon\":\"<i class=\\\"las la-lock\\\"><\\/i>\",\"content\":\"We are trusted by a huge number of people. We are working hard constantly to improve the level of our security system and minimize possible risks.\"}', 'neo_dark', '2022-09-11 05:35:34', '2022-09-11 05:35:34'),
(311, 'why_choose.element', '{\"title\":\"Anonymity\",\"icon\":\"<i class=\\\"las la-user-lock\\\"><\\/i>\",\"content\":\"Anonymity and using cryptocurrency as a payment instrument. In the era of electronic money \\u2013 this is one of the most convenient ways of cooperation.\"}', 'neo_dark', '2022-09-11 05:35:34', '2022-09-11 05:35:34'),
(312, 'why_choose.element', '{\"title\":\"Quick Withdrawal\",\"icon\":\"<i class=\\\"las la-shipping-fast\\\"><\\/i>\",\"content\":\"Our all retreats are treated spontaneously once requested. There are high maximum limits. The minimum withdrawal amount is only $10 .\"}', 'neo_dark', '2022-09-11 05:35:34', '2022-09-11 05:35:34'),
(313, 'why_choose.element', '{\"title\":\"Referral Program\",\"icon\":\"<i class=\\\"las la-link\\\"><\\/i>\",\"content\":\"We are offering a certain level of referral income through our referral program. you can increase your income by simply refer a few people.\"}', 'neo_dark', '2022-09-11 05:35:34', '2022-09-11 05:35:34'),
(314, 'why_choose.element', '{\"title\":\"24\\/7 Support\",\"icon\":\"<i class=\\\"las la-headset\\\"><\\/i>\",\"content\":\"We provide 24\\/7 customer support through e-mail and telegram. Our support representatives are periodically available to elucidate any difficulty.\"}', 'neo_dark', '2022-09-11 05:35:34', '2022-09-11 05:35:34'),
(315, 'why_choose.element', '{\"title\":\"Dedicated Server\",\"icon\":\"<i class=\\\"las la-server\\\"><\\/i>\",\"content\":\"We are using a dedicated server for the website which allows us exclusive use of the resources of the entire server.\"}', 'neo_dark', '2022-09-11 05:35:34', '2022-09-11 05:35:34'),
(316, 'why_choose.element', '{\"title\":\"SSL Secured\",\"icon\":\"<i class=\\\"lab la-expeditedssl\\\"><\\/i>\",\"content\":\"Comodo Essential-SSL Security encryption confirms that the presented content is genuine and legitimate.\"}', 'neo_dark', '2022-09-11 05:35:34', '2022-09-11 05:35:34'),
(317, 'why_choose.element', '{\"title\":\"DDOS Protection\",\"icon\":\"<i class=\\\"las la-shield-alt\\\"><\\/i>\",\"content\":\"We are using one of the most experienced, professional, and trusted DDoS Protection and mitigation provider.\"}', 'neo_dark', '2022-09-11 05:35:34', '2022-09-11 05:35:34'),
(318, 'footer.content', '{\"content\":\"This is a Revolutionary Money Making Platform! Invest for Future in Stable Platform and Make Fast Money. Not only we guarantee the fastest and the most exciting returns on your investments, but we also guarantee the security of your investment.\"}', 'neo_dark', '2022-09-11 06:27:44', '2022-09-11 06:27:44'),
(319, 'register.content', '{\"has_image\":\"1\",\"image\":\"631d95465ec641662883142.png\"}', 'neo_dark', '2022-09-11 06:29:02', '2022-09-11 06:29:02'),
(320, 'team.content', '{\"heading\":\"Our Expert Team\",\"sub_heading\":\"We have a great team including developers, designers, and Traders. The Team always working hard to give you the maximum profit.\"}', 'neo_dark', '2022-09-11 06:29:34', '2022-09-11 06:30:08'),
(321, 'team.element', '{\"has_image\":\"1\",\"name\":\"Callie Mcdowell\",\"designation\":\"CEO\",\"image\":\"631d958f6449f1662883215.jpg\"}', 'neo_dark', '2022-09-11 06:29:34', '2022-09-11 06:30:15'),
(322, 'team.element', '{\"has_image\":\"1\",\"name\":\"Marcia Weeks\",\"designation\":\"CTO\",\"image\":\"631d9596177f91662883222.jpg\"}', 'neo_dark', '2022-09-11 06:29:34', '2022-09-11 06:30:22'),
(323, 'team.element', '{\"has_image\":\"1\",\"name\":\"Sage Bray\",\"designation\":\"Marketing Head\",\"image\":\"631d959daf20c1662883229.jpg\"}', 'neo_dark', '2022-09-11 06:29:35', '2022-09-11 06:30:29'),
(324, 'team.element', '{\"has_image\":\"1\",\"name\":\"Cyrus Briggs\",\"designation\":\"Developer\",\"image\":\"631d95a8c1e0e1662883240.jpg\"}', 'neo_dark', '2022-09-11 06:29:35', '2022-09-11 06:30:40'),
(325, 'team.element', '{\"has_image\":\"1\",\"name\":\"Colette Mccarty\",\"designation\":\"UX Expert\",\"image\":\"631d95b194e561662883249.jpg\"}', 'neo_dark', '2022-09-11 06:29:35', '2022-09-11 06:30:49'),
(326, 'team.element', '{\"has_image\":\"1\",\"name\":\"Alden Odom\",\"designation\":\"SEO Expert\",\"image\":\"631d95ba2bec21662883258.jpg\"}', 'neo_dark', '2022-09-11 06:29:35', '2022-09-11 06:30:58'),
(327, 'team.element', '{\"has_image\":\"1\",\"name\":\"Tanek Gilmore\",\"designation\":\"SEO Expert\",\"image\":\"631d95c577a5f1662883269.jpg\"}', 'neo_dark', '2022-09-11 06:29:35', '2022-09-11 06:31:09'),
(328, 'team.element', '{\"has_image\":\"1\",\"name\":\"Upton Blair\",\"designation\":\"Manager\",\"image\":\"631d95df9760a1662883295.jpg\"}', 'neo_dark', '2022-09-11 06:29:35', '2022-09-11 06:31:35'),
(329, 'testimonial.content', '{\"heading\":\"What Users Say\",\"sub_heading\":\"We are doing really good at this market and here are the words we loved to get from a few of our users.\"}', 'neo_dark', '2022-09-11 06:31:52', '2022-09-11 07:27:07'),
(330, 'testimonial.element', '{\"has_image\":\"1\",\"author\":\"John Doe\",\"designation\":\"User from India\",\"quote\":\"I have invested with this platform and gotten my money in my account. This is legit and safe. Great doing business with them.\",\"image\":\"6331b2d8be93f1664201432.jpg\"}', 'neo_dark', '2022-09-11 06:31:52', '2022-09-26 08:10:32'),
(331, 'testimonial.element', '{\"has_image\":\"1\",\"author\":\"Rodduka Bruch\",\"designation\":\"User From USA\",\"quote\":\"Legit....and legit. Although the payment was processed manually, I have received my first payment within a very short time., I think nice for invest at this site.\",\"image\":\"6331b2eae90971664201450.jpg\"}', 'neo_dark', '2022-09-11 06:31:52', '2022-09-26 08:10:50'),
(332, 'testimonial.element', '{\"has_image\":\"1\",\"author\":\"Putran Datta\",\"designation\":\"User From Nigeria\",\"quote\":\"I have invested with this platform and gotten my money in my account. This is legit and safe. Great doing business with them.\",\"image\":\"6331b301ac8011664201473.jpg\"}', 'neo_dark', '2022-09-11 06:31:52', '2022-09-26 08:11:13'),
(333, 'top_investor.content', '{\"heading\":\"Our Top Investors\",\"sub_heading\":\"Here are the investor leaders who have made the maximum investment with our system.\"}', 'neo_dark', '2022-09-11 07:27:12', '2022-09-11 07:27:33'),
(334, 'transaction.content', '{\"heading\":\"Our Latest Transaction\",\"sub_heading\":\"Here is the log of the most recent transactions including withdraw and deposit made by our users.\"}', 'neo_dark', '2022-09-11 07:27:56', '2022-09-11 07:28:38'),
(335, 'we_accept.content', '{\"heading\":\"Payment We Accept\",\"sub_heading\":\"We accept all major cryptocurrencies and fiat payment methods to make your investment process easier with our platform.\"}', 'neo_dark', '2022-09-11 07:28:45', '2022-09-26 08:17:06'),
(337, 'footer.content', '{\"content\":\"Lorem, ipsum dolor sit amet consectetur adipisicing elit. A ut aspernatur nesciunt dolores dolorem corrupti explicabo voluptate placeat impedit eveniet. Placeat soluta modi, dolor dolores iure eaque blanditiis labore temporibus cum magni rem accusantium eveniet? Quis suscipit\"}', 'invester', '2022-09-18 13:22:57', '2022-09-18 13:41:21'),
(338, 'authentication.content', '{\"register_title\":\"Create an Account\",\"register_subtitle\":\"You can create account using email or username and the registration is fully free\",\"login_title\":\"Login to your account\",\"login_subtitle\":\"You can sign in to your account using email or username\"}', 'invester', '2022-09-19 12:04:09', '2022-09-20 06:54:45'),
(340, 'preloader.content', '{\"has_image\":\"1\",\"image_one\":\"632ebf9b581241664008091.png\",\"image_two\":\"632ebf9b5e2681664008091.png\"}', 'bit_gold', '2022-09-24 01:30:47', '2022-09-24 02:28:11'),
(341, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"63319095f3d411664192661.jpg\"}', 'bit_gold', '2022-09-25 00:18:19', '2022-09-26 05:44:22'),
(343, 'transaction.element', '{\"trx_type\":\"deposit\",\"name\":\"Benjamin Santos\",\"date\":\"2022-09-21\",\"amount\":\"120\",\"gateway\":\"Bank Wire\"}', 'bit_gold', '2022-09-26 05:24:52', '2023-12-16 10:55:16'),
(344, 'transaction.element', '{\"trx_type\":\"withdraw\",\"name\":\"Hilda Baird\",\"date\":\"2022-09-21\",\"amount\":\"365\",\"gateway\":\"Mobile Banking\"}', 'bit_gold', '2022-09-26 05:25:31', '2022-09-26 05:25:31'),
(345, 'transaction.element', '{\"trx_type\":\"deposit\",\"name\":\"Glenna Mcdowell\",\"date\":\"2022-09-21\",\"amount\":\"325\",\"gateway\":\"Coin Transfer\"}', 'bit_gold', '2022-09-26 05:26:10', '2023-12-16 10:55:20'),
(346, 'transaction.element', '{\"trx_type\":\"withdraw\",\"name\":\"Ruth Herman\",\"date\":\"2022-09-21\",\"amount\":\"412\",\"gateway\":\"Bank Transfer\"}', 'bit_gold', '2022-09-26 05:27:05', '2022-09-26 05:27:05'),
(347, 'transaction.element', '{\"trx_type\":\"deposit\",\"name\":\"Eve Hawkins\",\"date\":\"2022-09-21\",\"amount\":\"245\",\"gateway\":\"Mobile Banking\"}', 'bit_gold', '2022-09-26 05:27:47', '2023-12-16 10:55:32'),
(348, 'transaction.element', '{\"trx_type\":\"withdraw\",\"name\":\"Raphael Rush\",\"date\":\"2022-09-21\",\"amount\":\"365\",\"gateway\":\"Bank Wire\"}', 'bit_gold', '2022-09-26 05:28:23', '2022-09-26 05:28:23'),
(349, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331909d64be71664192669.jpg\"}', 'bit_gold', '2022-09-26 05:44:29', '2022-09-26 05:44:29'),
(350, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"633190a588df71664192677.jpg\"}', 'bit_gold', '2022-09-26 05:44:37', '2022-09-26 05:44:37'),
(351, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"633190ad89c261664192685.jpg\"}', 'bit_gold', '2022-09-26 05:44:45', '2022-09-26 05:44:45'),
(352, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"633190b56702e1664192693.jpg\"}', 'bit_gold', '2022-09-26 05:44:53', '2022-09-26 05:44:53'),
(353, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"633190beae8061664192702.jpg\"}', 'bit_gold', '2022-09-26 05:45:02', '2022-09-26 05:45:02'),
(354, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"633190c81d2361664192712.jpg\"}', 'bit_gold', '2022-09-26 05:45:12', '2022-09-26 05:45:12'),
(355, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"633190d1715f71664192721.jpg\"}', 'bit_gold', '2022-09-26 05:45:21', '2022-09-26 05:45:21'),
(356, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"633190dadd0f81664192730.jpg\"}', 'bit_gold', '2022-09-26 05:45:30', '2022-09-26 05:45:30'),
(357, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"633190e5aa7371664192741.jpg\"}', 'bit_gold', '2022-09-26 05:45:41', '2022-09-26 05:45:41'),
(358, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"633190f8ef6061664192760.jpg\"}', 'bit_gold', '2022-09-26 05:46:00', '2022-09-26 05:46:01'),
(359, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"63319103114611664192771.jpg\"}', 'bit_gold', '2022-09-26 05:46:11', '2022-09-26 05:46:11'),
(360, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331910d5ef4e1664192781.jpg\"}', 'bit_gold', '2022-09-26 05:46:21', '2022-09-26 05:46:21'),
(361, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"633191199cfcb1664192793.jpg\"}', 'bit_gold', '2022-09-26 05:46:33', '2022-09-26 05:46:33'),
(362, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"633191261ce231664192806.jpg\"}', 'bit_gold', '2022-09-26 05:46:46', '2022-09-26 05:46:46'),
(363, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331912f34a631664192815.jpg\"}', 'bit_gold', '2022-09-26 05:46:55', '2022-09-26 05:46:55'),
(364, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Voluptatum est expedita officia established  fact\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"657d8132db1a61702723890.jpg\"}', 'bit_gold', '2022-09-26 05:48:34', '2023-12-16 10:51:31'),
(365, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"amet quisquam ut vitae debitis iste.\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"657d81381d3241702723896.jpg\"}', 'bit_gold', '2022-09-26 05:49:18', '2023-12-16 10:51:36'),
(366, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"It is a long established fact that a reade\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"657d813c9c0bc1702723900.jpg\"}', 'bit_gold', '2022-09-26 05:49:45', '2023-12-16 10:51:40'),
(367, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Voluptatum est expedita officia, eos\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"657d8140b2ae11702723904.jpg\"}', 'bit_gold', '2022-09-26 08:06:07', '2023-12-16 10:51:44'),
(368, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Voluptatum est expedita officia, eos\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"657d8144dee1d1702723908.jpg\"}', 'bit_gold', '2022-09-26 08:06:32', '2023-12-16 10:51:49'),
(369, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Voluptatum est expedita officia, eos\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"657d814913f061702723913.jpg\"}', 'bit_gold', '2022-09-26 08:06:50', '2023-12-16 10:51:53'),
(370, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Voluptatum est expedita officia established  fact\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"6331b37472d271664201588.jpg\"}', 'neo_dark', '2022-09-26 08:12:59', '2022-09-26 08:13:08'),
(371, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"amet quisquam ut vitae debitis iste.\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"6331b37c360dc1664201596.jpg\"}', 'neo_dark', '2022-09-26 08:12:59', '2022-09-26 08:13:16'),
(372, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"It is a long established fact that a reade\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"6331b383af2971664201603.jpg\"}', 'neo_dark', '2022-09-26 08:12:59', '2022-09-26 08:13:23');
INSERT INTO `frontends` (`id`, `data_keys`, `data_values`, `template_name`, `created_at`, `updated_at`) VALUES
(373, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Voluptatum est expedita officia, eos\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"6331b38b413b41664201611.jpg\"}', 'neo_dark', '2022-09-26 08:12:59', '2022-09-26 08:13:31'),
(374, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Voluptatum est expedita officia, eos\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"6331b39334ed01664201619.jpg\"}', 'neo_dark', '2022-09-26 08:12:59', '2022-09-26 08:13:39'),
(375, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Voluptatum est expedita officia, eos\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"6331b39b5cdf91664201627.jpg\"}', 'neo_dark', '2022-09-26 08:12:59', '2022-09-26 08:13:47'),
(376, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b469adf241664201833.jpg\"}', 'neo_dark', '2022-09-26 08:16:59', '2022-09-26 08:17:13'),
(377, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b478b064e1664201848.jpg\"}', 'neo_dark', '2022-09-26 08:16:59', '2022-09-26 08:17:28'),
(378, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b48013ebe1664201856.jpg\"}', 'neo_dark', '2022-09-26 08:16:59', '2022-09-26 08:17:36'),
(379, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b48911ad11664201865.jpg\"}', 'neo_dark', '2022-09-26 08:16:59', '2022-09-26 08:17:45'),
(380, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b4911a65a1664201873.jpg\"}', 'neo_dark', '2022-09-26 08:16:59', '2022-09-26 08:17:53'),
(381, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b49a692c51664201882.jpg\"}', 'neo_dark', '2022-09-26 08:16:59', '2022-09-26 08:18:02'),
(382, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b4a689e2d1664201894.jpg\"}', 'neo_dark', '2022-09-26 08:17:00', '2022-09-26 08:18:14'),
(383, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b4b7930091664201911.jpg\"}', 'neo_dark', '2022-09-26 08:17:00', '2022-09-26 08:18:31'),
(384, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b4d1812581664201937.jpg\"}', 'neo_dark', '2022-09-26 08:17:00', '2022-09-26 08:18:57'),
(385, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b4d8316831664201944.jpg\"}', 'neo_dark', '2022-09-26 08:17:00', '2022-09-26 08:19:04'),
(386, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b4e1215b71664201953.jpg\"}', 'neo_dark', '2022-09-26 08:17:00', '2022-09-26 08:19:13'),
(387, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b4e9889851664201961.jpg\"}', 'neo_dark', '2022-09-26 08:17:00', '2022-09-26 08:19:21'),
(388, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b501a44a51664201985.jpg\"}', 'neo_dark', '2022-09-26 08:17:00', '2022-09-26 08:19:45'),
(389, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b50c0cff01664201996.jpg\"}', 'neo_dark', '2022-09-26 08:17:00', '2022-09-26 08:19:56'),
(390, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b51535bce1664202005.jpg\"}', 'neo_dark', '2022-09-26 08:17:00', '2022-09-26 08:20:05'),
(391, 'we_accept.element', '{\"has_image\":\"1\",\"image\":\"6331b5235e83d1664202019.jpg\"}', 'neo_dark', '2022-09-26 08:17:00', '2022-09-26 08:20:19'),
(394, 'policy_pages.element', '{\"title\":\"Privacy Policy\",\"details\":\"<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\"}', 'invester', '2022-09-26 08:22:15', '2022-09-26 08:22:15'),
(395, 'policy_pages.element', '{\"title\":\"Terms and Service\",\"details\":\"<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\\r\\n<p><br \\/>\\r\\n<\\/p>\\r\\n<h2>What is Lorem Ipsum?\\r\\n<\\/h2>\\r\\n<p><span>Lorem Ipsum<\\/span>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the\\r\\n        industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled\\r\\n        it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic\\r\\n        typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset\\r\\n        sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\\r\\n        including versions of Lorem Ipsum.\\r\\n<\\/p>\"}', 'invester', '2022-09-26 08:22:15', '2022-10-06 02:58:09'),
(396, 'how_it_work.content', '{\"title\":\"How HYIPLab Work\",\"subtitle\":\"To start with <span class=\\\"fw-bold\\\"><i>HYIPLab<\\/i><\\/span> you should know that how the system works. Please follow the below process to know that how the system works.\"}', 'invester', '2022-09-27 00:50:50', '2022-09-27 00:50:50'),
(397, 'how_it_work.element', '{\"has_image\":\"1\",\"title\":\"Create Account\",\"content\":\"Create an account providing your valid information\",\"image\":\"63329f02251e21664261890.png\"}', 'invester', '2022-09-27 00:58:10', '2022-09-27 00:58:10'),
(398, 'how_it_work.element', '{\"has_image\":\"1\",\"title\":\"Add Fund\",\"content\":\"Make deposit using our supported payment gateway\",\"image\":\"63329f26c36421664261926.png\"}', 'invester', '2022-09-27 00:58:46', '2022-09-27 00:58:46'),
(399, 'how_it_work.element', '{\"has_image\":\"1\",\"title\":\"Invest to Plan\",\"content\":\"Make investment to get profit from our system\",\"image\":\"63329f4740b7e1664261959.png\"}', 'invester', '2022-09-27 00:59:19', '2022-09-27 00:59:19'),
(400, 'how_it_work.element', '{\"has_image\":\"1\",\"title\":\"Withdraw Profit\",\"content\":\"Withdraw your profit which you\'ve got from the investment\",\"image\":\"63329f7b3bf561664262011.png\"}', 'invester', '2022-09-27 01:00:11', '2022-09-27 01:00:11'),
(401, 'testimonial.element', '{\"has_image\":\"1\",\"name\":\"David Doe\",\"designation\":\"User from England\",\"quote\":\"Legit....and legit. Although the payment was processed manually, I have received my first payment within a very short time., I think nice for invest at this site.\",\"image\":\"657d8260991ca1702724192.jpg\"}', 'bit_gold', '2022-10-06 07:50:53', '2023-12-16 10:56:32'),
(411, 'preloader.content', '{\"has_image\":\"1\",\"image_one\":\"633efa583f0551665071704.png\",\"image_two\":\"633efa584317d1665071704.png\"}', 'neo_dark', '2022-10-06 09:55:04', '2022-10-06 09:55:04'),
(412, 'user_ranking.content', '{\"heading_w\":\"User Ranking\",\"heading_c\":\"Bonus\",\"sub_heading\":\"You can get bonus for investing or Interest.\"}', 'bit_gold', '2023-02-06 07:48:56', '2023-02-06 07:48:56'),
(413, 'user_ranking.content', '{\"heading\":\"User Ranking Bonus\",\"sub_heading\":\"You can get bonus for investing or Interest.\"}', 'neo_dark', '2023-02-06 23:51:09', '2023-02-06 23:51:35'),
(414, 'user_ranking.content', '{\"title\":\"User Ranking Bonus\",\"subtitle\":\"You can get bonus for investing or Interest.\"}', 'invester', '2023-02-07 00:15:49', '2023-02-07 00:15:49'),
(415, 'ranking.content', '{\"heading_w\":\"User\",\"heading_c\":\"Ranking\",\"sub_heading\":\"You can get a bonus to fulfill the requirement.\"}', 'bit_gold', '2023-03-11 01:25:36', '2023-03-11 02:56:24'),
(416, 'ranking.content', '{\"heading\":\"User Ranking\",\"sub_heading\":\"You can get a bonus to fulfill the requirement.\"}', 'invester', '2023-03-11 02:47:58', '2023-03-11 02:52:08'),
(417, 'ranking.content', '{\"heading\":\"User Ranking\",\"sub_heading\":\"You can get a bonus to fulfill the requirement.\"}', 'neo_dark', '2023-03-11 02:55:55', '2023-03-11 02:55:55'),
(418, 'transaction.element', '{\"trx_type\":\"deposit\",\"name\":\"Raphael Rush\",\"date\":\"2022-09-21\",\"amount\":\"365 USD\",\"gateway\":\"Paypal\"}', 'bit_gold', '2023-12-16 10:54:59', '2023-12-16 10:54:59'),
(419, 'footer.content', '{\"has_image\":\"1\",\"content\":\"Metro Hyip is the platform of town of the talk   consectetur adipisicing elit. Perferendis blanditiis eum ipsam excepturi ducimus.\",\"image\":\"643cd91fdd2a71681709343.png\"}', 'metro_hyip', NULL, NULL),
(420, 'policy_pages.element', '{\"title\":\"Privacy Policy\",\"details\":\"<div class=\\\"mb-5\\\" style=\\\"font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">What information do we collect?<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We gather data from you when you register on our site, submit a request, buy any services, react to an overview, or round out a structure. At the point when requesting any assistance or enrolling on our site, as suitable, you might be approached to enter your: name, email address, or telephone number. You may, nonetheless, visit our site anonymously.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">How do we protect your information?<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">All provided delicate\\/credit data is sent through Stripe.<br \\/>After an exchange, your private data (credit cards, social security numbers, financials, and so on) won\'t be put away on our workers.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">Do we disclose any information to outside parties?<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We don\'t sell, exchange, or in any case move to outside gatherings by and by recognizable data. This does exclude confided in outsiders who help us in working our site, leading our business, or adjusting you, since those gatherings consent to keep this data private. We may likewise deliver your data when we accept discharge is suitable to follow the law, implement our site strategies, or ensure our own or others\' rights, property, or wellbeing.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">Children\'s Online Privacy Protection Act Compliance<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We are consistent with the prerequisites of COPPA (Children\'s Online Privacy Protection Act), we don\'t gather any data from anybody under 13 years old. Our site, items, and administrations are completely coordinated to individuals who are in any event 13 years of age or more established.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">Changes to our Privacy Policy<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">If we decide to change our privacy policy, we will post those changes on this page.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">How long we retain your information?<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">At the point when you register for our site, we cycle and keep your information we have about you however long you don\'t erase the record or withdraw yourself (subject to laws and guidelines).<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">What we don\\u2019t do with your data<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We don\'t and will never share, unveil, sell, or in any case give your information to different organizations for the promoting of their items or administrations.<\\/p><\\/div>\"}', 'metro_hyip', NULL, NULL),
(421, 'policy_pages.element', '{\"title\":\"Terms and Service\",\"details\":\"<div class=\\\"mb-5\\\" style=\\\"font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">What information do we collect?<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We gather data from you when you register on our site, submit a request, buy any services, react to an overview, or round out a structure. At the point when requesting any assistance or enrolling on our site, as suitable, you might be approached to enter your: name, email address, or telephone number. You may, nonetheless, visit our site anonymously.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">How do we protect your information?<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">All provided delicate\\/credit data is sent through Stripe.<br \\/>After an exchange, your private data (credit cards, social security numbers, financials, and so on) won\'t be put away on our workers.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">Do we disclose any information to outside parties?<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We don\'t sell, exchange, or in any case move to outside gatherings by and by recognizable data. This does exclude confided in outsiders who help us in working our site, leading our business, or adjusting you, since those gatherings consent to keep this data private. We may likewise deliver your data when we accept discharge is suitable to follow the law, implement our site strategies, or ensure our own or others\' rights, property, or wellbeing.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">Children\'s Online Privacy Protection Act Compliance<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We are consistent with the prerequisites of COPPA (Children\'s Online Privacy Protection Act), we don\'t gather any data from anybody under 13 years old. Our site, items, and administrations are completely coordinated to individuals who are in any event 13 years of age or more established.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">Changes to our Privacy Policy<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">If we decide to change our privacy policy, we will post those changes on this page.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">How long we retain your information?<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">At the point when you register for our site, we cycle and keep your information we have about you however long you don\'t erase the record or withdraw yourself (subject to laws and guidelines).<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;\\\">What we don\\u2019t do with your data<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We don\'t and will never share, unveil, sell, or in any case give your information to different organizations for the promoting of their items or administrations.<\\/p><\\/div>\"}', 'metro_hyip', NULL, NULL),
(422, 'contact.content', '{\"heading\":\"Contact With Us\",\"sub_heading\":\"If you have any questions or queries that are not answered on our website, please feel free to contact us. We will try to respond to you as soon as possible. Thank you so much.\",\"map\":\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d3610.1786539292675!2d55.272182351322364!3d25.197196983817076!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f43348a67e24b%3A0xff45e502e1ceb7e2!2sBurj%20Khalifa!5e0!3m2!1sen!2sbd!4v1664880876062!5m2!1sen!2sbd\"}', 'metro_hyip', NULL, NULL),
(424, 'contact.element', '{\"icon\":\"<i class=\\\"far fa-envelope-open\\\"><\\/i>\",\"title\":\"Email Address\",\"content\":\"support@fastrec.cloud\"}', 'metro_hyip', NULL, '2024-04-26 07:51:07'),
(426, 'banner.content', '{\"heading\":\"Investment For Return More Profit\",\"button_name\":\"Invest Now\",\"button_link\":\"plan\",\"button_two_name\":\"Get In Touch\",\"button_two_link\":\"contact\"}', 'metro_hyip', NULL, NULL),
(427, 'about.content', '{\"has_image\":\"1\",\"heading\":\"Know More About Us\",\"sub_heading\":\"ABOUT\",\"content\":\"High-Yield Investment Programs (HYIP) are unregistered typically run by unlicensed individuals . The hallmark of an HYIP scam is the promise of incredible returns at little or no risk to the investor.\",\"point_one\":\"Most HYIPs are Ponzi schemes where the organizers take money from new investors to pay returns to established investor.\",\"point_two\":\"HYIPs, often known as \\\"prime bank scams,\\\" typically involve the alleged trading or issuance of \\u201cprime\\u201d bank financial instruments\",\"point_three\":\"Warning signs of a HYIP include excessive guaranteed returns, fictitious financial instruments, extreme secrecy.\",\"point_four\":\"Warning signs of a HYIP include excessive guaranteed returns, fictitious financial instruments, extreme secrecy.\",\"image\":\"643d03e1ec2b01681720289.png\"}', 'metro_hyip', NULL, NULL),
(428, 'about.element', '{\"content\":\"Most HYIPs are Ponzi schemes where the organizers take money from new investors to pay returns to established investor.\"}', 'metro_hyip', NULL, NULL),
(429, 'about.element', '{\"content\":\"HYIPs, often known as \\\"prime bank scams,\\\" typically involve the alleged trading or issuance of \\u201cprime\\u201d bank financial instruments\"}', 'metro_hyip', NULL, NULL),
(430, 'about.element', '{\"content\":\"Warning signs of a HYIP include excessive guaranteed returns, fictitious financial instruments, extreme secrecy.\"}', 'metro_hyip', NULL, NULL),
(431, 'plan.content', '{\"heading\":\"Investment Plans\",\"sub_heading\":\"HYIP INVESTMENT PLAN\"}', 'metro_hyip', NULL, NULL),
(432, 'affiliate.content', '{\"has_image\":\"1\",\"heading\":\"Affiliate Program\",\"sub_heading\":\"AFFILIATE\",\"image\":\"643d0ab4e1a2e1681722036.png\"}', 'metro_hyip', NULL, NULL),
(433, 'affiliate.element', '{\"icon\":\"<i class=\\\"fas fa-network-wired\\\"><\\/i>\",\"title\":\"Affiliate Networks\",\"content\":\"Learn content by interacting with an expert and find the problem by with ai.\"}', 'metro_hyip', NULL, NULL),
(434, 'affiliate.element', '{\"icon\":\"<i class=\\\"fas fa-wifi\\\"><\\/i>\",\"title\":\"Amazon Associates\",\"content\":\"Learn content by interacting with an expert and find the problem by with ai.\"}', 'metro_hyip', NULL, NULL),
(435, 'affiliate.element', '{\"icon\":\"<i class=\\\"fas fa-align-justify\\\"><\\/i>\",\"title\":\"Affiliate Management\",\"content\":\"Learn content by interacting with an expert and find the problem by with ai.\"}', 'metro_hyip', NULL, NULL),
(436, 'how_work.content', '{\"heading\":\"5 Simple Steps to Start Investing\",\"sub_heading\":\"WORK PROCESS\"}', 'metro_hyip', NULL, NULL),
(437, 'how_work.element', '{\"has_image\":\"1\",\"title\":\"Registration\",\"image\":\"643d0faed5e4f1681723310.png\"}', 'metro_hyip', NULL, NULL),
(438, 'how_work.element', '{\"has_image\":\"1\",\"title\":\"Diposit\",\"image\":\"643d0fc6bc83f1681723334.png\"}', 'metro_hyip', NULL, NULL),
(439, 'how_work.element', '{\"has_image\":\"1\",\"title\":\"Investing\",\"image\":\"643d0fd93c84c1681723353.png\"}', 'metro_hyip', NULL, NULL),
(440, 'how_work.element', '{\"has_image\":\"1\",\"title\":\"Profit\",\"image\":\"643d0ff349afb1681723379.png\"}', 'metro_hyip', NULL, NULL),
(441, 'how_work.element', '{\"has_image\":\"1\",\"title\":\"Withdraw\",\"image\":\"643d102162c451681723425.png\"}', 'metro_hyip', NULL, NULL),
(442, 'faq.content', '{\"has_image\":\"1\",\"heading\":\"Frequently Asked Questions\",\"sub_heading\":\"FAQ\",\"image\":\"643d164fdf39e1681725007.png\"}', 'metro_hyip', NULL, NULL),
(443, 'faq.element', '{\"question\":\"When can I deposit\\/withdraw from my Investment account?\",\"answer\":\"Deposit and withdrawal are available for at any time. Be sure, that your funds are not used in any ongoing trade before the withdrawal. The available amount is shown in your dashboard on the main page of Investing platform.\\r\\n\\r\\n                                Deposit and withdrawal are available for at any time. Be sure, that your funds are not used in any ongoing trade before the withdrawal. The available amount is shown in your dashboard on the main page of Investing platform.\"}', 'metro_hyip', NULL, NULL),
(444, 'faq.element', '{\"question\":\"How do I check my account balance?\",\"answer\":\"You can see this anytime on your accounts dashboard. You can see this anytime on your accounts dashboard.\"}', 'metro_hyip', NULL, NULL),
(445, 'faq.element', '{\"question\":\"I forgot my password, what should I do?\",\"answer\":\"Visit the password reset page, type in your email address and click the `Reset` button. Visit the password reset page, type in your email address and click the `Reset` button.\"}', 'metro_hyip', NULL, NULL),
(446, 'faq.element', '{\"question\":\"How will I know that the withdrawal has been successful?\",\"answer\":\"You will get an automatic notification once we send the funds and you can always check your transactions or account balance. Your chosen payment system dictates how long it will take for the funds to reach you. You will get an automatic notification once we send the funds and you can always check your transactions or account balance. Your chosen payment system dictates how long it will take for the funds to reach you.\"}', 'metro_hyip', NULL, NULL),
(447, 'faq.element', '{\"question\":\"How much can I withdraw?\",\"answer\":\"You can withdraw the full amount of your account balance minus the funds that are used currently for supporting opened positions. You can withdraw the full amount of your account balance minus the funds that are used currently for supporting opened positions.\"}', 'metro_hyip', NULL, NULL),
(448, 'referral.content', '{\"has_image\":\"1\",\"heading\":\"Best Referral System\",\"sub_heading\":\"Hyiplab give you multiple referral commission for plan investor, withdraw , deposit , or referral register users!\",\"button_name\":\"Invest Now\",\"button_url\":\"plan\",\"image\":\"643d1a76b71bc1681726070.png\"}', 'metro_hyip', NULL, NULL),
(449, 'transaction.content', '{\"heading\":\"Our Latest Transactions\",\"sub_heading\":\"TRANSACTIONS\"}', 'metro_hyip', NULL, NULL),
(450, 'top_investor.content', '{\"heading\":\"Our Top Investor\",\"sub_heading\":\"INVESTOR\"}', 'metro_hyip', NULL, NULL),
(451, 'blog.content', '{\"heading\":\"Our Latest News\",\"sub_heading\":\"BLOG\"}', 'metro_hyip', NULL, NULL),
(452, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Voluptatum est expedita officia established  fact\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"643e2815245221681795093.png\"}', 'metro_hyip', NULL, NULL),
(453, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"amet quisquam ut vitae debitis iste.\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"643e282a8e1461681795114.png\"}', 'metro_hyip', NULL, NULL),
(454, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"It is a long established fact that a reade\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"643e2836137ba1681795126.png\"}', 'metro_hyip', NULL, NULL),
(455, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Voluptatum est expedita officia, eos\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"643e2840c8ada1681795136.png\"}', 'metro_hyip', NULL, NULL),
(456, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Voluptatum est expedita officia, eos\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"643e284bec69f1681795147.png\"}', 'metro_hyip', NULL, NULL),
(457, 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Voluptatum est expedita officia, eos\",\"description\":\"<span>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\\u00a0It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/span><br \\/>\",\"image\":\"643e2858e405d1681795160.png\"}', 'metro_hyip', NULL, NULL),
(458, 'login.content', '{\"has_image\":\"1\",\"image\":\"644d092c886401682770220.png\"}', 'metro_hyip', NULL, NULL),
(459, 'register.content', '{\"has_image\":\"1\",\"image\":\"644d08d2bf0f51682770130.png\"}', 'metro_hyip', NULL, NULL),
(460, 'ranking.content', '{\"heading\":\"User Ranking\",\"sub_heading\":\"RANKING\",\"content\":\"You can get a bonus to fulfill the requirement.\"}', 'metro_hyip', NULL, NULL),
(461, 'calculation.content', '{\"heading\":\"Profit Calculator\"}', 'metro_hyip', NULL, NULL);

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

--
-- Table structure for table `gateways`
--

CREATE TABLE `gateways` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `form_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `code` int(11) DEFAULT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `alias` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'NULL',
  `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1=>enable, 2=>disable',
  `gateway_parameters` text COLLATE utf8mb4_unicode_ci,
  `supported_currencies` text COLLATE utf8mb4_unicode_ci,
  `crypto` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: fiat currency, 1: crypto currency',
  `extra` text COLLATE utf8mb4_unicode_ci,
  `description` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `gateways`
--

INSERT INTO `gateways` (`id`, `form_id`, `code`, `name`, `alias`, `status`, `gateway_parameters`, `supported_currencies`, `crypto`, `extra`, `description`, `created_at`, `updated_at`) VALUES
(1, 0, 101, 'Paypal', 'Paypal', 1, '{\"paypal_email\":{\"title\":\"PayPal Email\",\"global\":true,\"value\":\"sb-owud61543012@business.example.com\"}}', '{\"AUD\":\"AUD\",\"BRL\":\"BRL\",\"CAD\":\"CAD\",\"CZK\":\"CZK\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"HKD\":\"HKD\",\"HUF\":\"HUF\",\"INR\":\"INR\",\"ILS\":\"ILS\",\"JPY\":\"JPY\",\"MYR\":\"MYR\",\"MXN\":\"MXN\",\"TWD\":\"TWD\",\"NZD\":\"NZD\",\"NOK\":\"NOK\",\"PHP\":\"PHP\",\"PLN\":\"PLN\",\"GBP\":\"GBP\",\"RUB\":\"RUB\",\"SGD\":\"SGD\",\"SEK\":\"SEK\",\"CHF\":\"CHF\",\"THB\":\"THB\",\"USD\":\"$\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2021-05-21 00:04:38'),
(2, 0, 102, 'Perfect Money', 'PerfectMoney', 1, '{\"passphrase\":{\"title\":\"ALTERNATE PASSPHRASE\",\"global\":true,\"value\":\"hR26aw02Q1eEeUPSIfuwNypXX\"},\"wallet_id\":{\"title\":\"PM Wallet\",\"global\":false,\"value\":\"\"}}', '{\"USD\":\"$\",\"EUR\":\"\\u20ac\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2021-05-21 01:35:33'),
(3, 0, 103, 'Stripe Hosted', 'Stripe', 1, '{\"secret_key\":{\"title\":\"Secret Key\",\"global\":true,\"value\":\"sk_test_51I6GGiCGv1sRiQlEi5v1or9eR0HVbuzdMd2rW4n3DxC8UKfz66R4X6n4yYkzvI2LeAIuRU9H99ZpY7XCNFC9xMs500vBjZGkKG\"},\"publishable_key\":{\"title\":\"PUBLISHABLE KEY\",\"global\":true,\"value\":\"pk_test_51I6GGiCGv1sRiQlEOisPKrjBqQqqcFsw8mXNaZ2H2baN6R01NulFS7dKFji1NRRxuchoUTEDdB7ujKcyKYSVc0z500eth7otOM\"}}', '{\"USD\":\"USD\",\"AUD\":\"AUD\",\"BRL\":\"BRL\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"HKD\":\"HKD\",\"INR\":\"INR\",\"JPY\":\"JPY\",\"MXN\":\"MXN\",\"MYR\":\"MYR\",\"NOK\":\"NOK\",\"NZD\":\"NZD\",\"PLN\":\"PLN\",\"SEK\":\"SEK\",\"SGD\":\"SGD\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2021-05-21 00:48:36'),
(4, 0, 104, 'Skrill', 'Skrill', 1, '{\"pay_to_email\":{\"title\":\"Skrill Email\",\"global\":true,\"value\":\"merchant@skrill.com\"},\"secret_key\":{\"title\":\"Secret Key\",\"global\":true,\"value\":\"---\"}}', '{\"AED\":\"AED\",\"AUD\":\"AUD\",\"BGN\":\"BGN\",\"BHD\":\"BHD\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"CZK\":\"CZK\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"HKD\":\"HKD\",\"HRK\":\"HRK\",\"HUF\":\"HUF\",\"ILS\":\"ILS\",\"INR\":\"INR\",\"ISK\":\"ISK\",\"JOD\":\"JOD\",\"JPY\":\"JPY\",\"KRW\":\"KRW\",\"KWD\":\"KWD\",\"MAD\":\"MAD\",\"MYR\":\"MYR\",\"NOK\":\"NOK\",\"NZD\":\"NZD\",\"OMR\":\"OMR\",\"PLN\":\"PLN\",\"QAR\":\"QAR\",\"RON\":\"RON\",\"RSD\":\"RSD\",\"SAR\":\"SAR\",\"SEK\":\"SEK\",\"SGD\":\"SGD\",\"THB\":\"THB\",\"TND\":\"TND\",\"TRY\":\"TRY\",\"TWD\":\"TWD\",\"USD\":\"USD\",\"ZAR\":\"ZAR\",\"COP\":\"COP\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2021-05-21 01:30:16'),
(5, 0, 105, 'PayTM', 'Paytm', 1, '{\"MID\":{\"title\":\"Merchant ID\",\"global\":true,\"value\":\"DIY12386817555501617\"},\"merchant_key\":{\"title\":\"Merchant Key\",\"global\":true,\"value\":\"bKMfNxPPf_QdZppa\"},\"WEBSITE\":{\"title\":\"Paytm Website\",\"global\":true,\"value\":\"DIYtestingweb\"},\"INDUSTRY_TYPE_ID\":{\"title\":\"Industry Type\",\"global\":true,\"value\":\"Retail\"},\"CHANNEL_ID\":{\"title\":\"CHANNEL ID\",\"global\":true,\"value\":\"WEB\"},\"transaction_url\":{\"title\":\"Transaction URL\",\"global\":true,\"value\":\"https:\\/\\/pguat.paytm.com\\/oltp-web\\/processTransaction\"},\"transaction_status_url\":{\"title\":\"Transaction STATUS URL\",\"global\":true,\"value\":\"https:\\/\\/pguat.paytm.com\\/paytmchecksum\\/paytmCallback.jsp\"}}', '{\"AUD\":\"AUD\",\"ARS\":\"ARS\",\"BDT\":\"BDT\",\"BRL\":\"BRL\",\"BGN\":\"BGN\",\"CAD\":\"CAD\",\"CLP\":\"CLP\",\"CNY\":\"CNY\",\"COP\":\"COP\",\"HRK\":\"HRK\",\"CZK\":\"CZK\",\"DKK\":\"DKK\",\"EGP\":\"EGP\",\"EUR\":\"EUR\",\"GEL\":\"GEL\",\"GHS\":\"GHS\",\"HKD\":\"HKD\",\"HUF\":\"HUF\",\"INR\":\"INR\",\"IDR\":\"IDR\",\"ILS\":\"ILS\",\"JPY\":\"JPY\",\"KES\":\"KES\",\"MYR\":\"MYR\",\"MXN\":\"MXN\",\"MAD\":\"MAD\",\"NPR\":\"NPR\",\"NZD\":\"NZD\",\"NGN\":\"NGN\",\"NOK\":\"NOK\",\"PKR\":\"PKR\",\"PEN\":\"PEN\",\"PHP\":\"PHP\",\"PLN\":\"PLN\",\"RON\":\"RON\",\"RUB\":\"RUB\",\"SGD\":\"SGD\",\"ZAR\":\"ZAR\",\"KRW\":\"KRW\",\"LKR\":\"LKR\",\"SEK\":\"SEK\",\"CHF\":\"CHF\",\"THB\":\"THB\",\"TRY\":\"TRY\",\"UGX\":\"UGX\",\"UAH\":\"UAH\",\"AED\":\"AED\",\"GBP\":\"GBP\",\"USD\":\"USD\",\"VND\":\"VND\",\"XOF\":\"XOF\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2021-05-21 03:00:44'),
(6, 0, 106, 'Payeer', 'Payeer', 0, '{\"merchant_id\":{\"title\":\"Merchant ID\",\"global\":true,\"value\":\"866989763\"},\"secret_key\":{\"title\":\"Secret key\",\"global\":true,\"value\":\"7575\"}}', '{\"USD\":\"USD\",\"EUR\":\"EUR\",\"RUB\":\"RUB\"}', 0, '{\"status\":{\"title\": \"Status URL\",\"value\":\"ipn.Payeer\"}}', NULL, '2019-09-14 13:14:22', '2020-12-28 01:26:58'),
(7, 0, 107, 'PayStack', 'Paystack', 1, '{\"public_key\":{\"title\":\"Public key\",\"global\":true,\"value\":\"pk_test_cd330608eb47970889bca397ced55c1dd5ad3783\"},\"secret_key\":{\"title\":\"Secret key\",\"global\":true,\"value\":\"sk_test_8a0b1f199362d7acc9c390bff72c4e81f74e2ac3\"}}', '{\"USD\":\"USD\",\"NGN\":\"NGN\"}', 0, '{\"callback\":{\"title\": \"Callback URL\",\"value\":\"ipn.Paystack\"},\"webhook\":{\"title\": \"Webhook URL\",\"value\":\"ipn.Paystack\"}}\r\n', NULL, '2019-09-14 13:14:22', '2021-05-21 01:49:51'),
(8, 0, 108, 'VoguePay', 'Voguepay', 1, '{\"merchant_id\":{\"title\":\"MERCHANT ID\",\"global\":true,\"value\":\"demo\"}}', '{\"USD\":\"USD\",\"GBP\":\"GBP\",\"EUR\":\"EUR\",\"GHS\":\"GHS\",\"NGN\":\"NGN\",\"ZAR\":\"ZAR\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2021-05-21 01:22:38'),
(9, 0, 109, 'Flutterwave', 'Flutterwave', 1, '{\"public_key\":{\"title\":\"Public Key\",\"global\":true,\"value\":\"----------------\"},\"secret_key\":{\"title\":\"Secret Key\",\"global\":true,\"value\":\"-----------------------\"},\"encryption_key\":{\"title\":\"Encryption Key\",\"global\":true,\"value\":\"------------------\"}}', '{\"BIF\":\"BIF\",\"CAD\":\"CAD\",\"CDF\":\"CDF\",\"CVE\":\"CVE\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"GHS\":\"GHS\",\"GMD\":\"GMD\",\"GNF\":\"GNF\",\"KES\":\"KES\",\"LRD\":\"LRD\",\"MWK\":\"MWK\",\"MZN\":\"MZN\",\"NGN\":\"NGN\",\"RWF\":\"RWF\",\"SLL\":\"SLL\",\"STD\":\"STD\",\"TZS\":\"TZS\",\"UGX\":\"UGX\",\"USD\":\"USD\",\"XAF\":\"XAF\",\"XOF\":\"XOF\",\"ZMK\":\"ZMK\",\"ZMW\":\"ZMW\",\"ZWD\":\"ZWD\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2021-06-05 11:37:45'),
(10, 0, 110, 'RazorPay', 'Razorpay', 1, '{\"key_id\":{\"title\":\"Key Id\",\"global\":true,\"value\":\"rzp_test_kiOtejPbRZU90E\"},\"key_secret\":{\"title\":\"Key Secret \",\"global\":true,\"value\":\"osRDebzEqbsE1kbyQJ4y0re7\"}}', '{\"INR\":\"INR\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2021-05-21 02:51:32'),
(11, 0, 111, 'Stripe Storefront', 'StripeJs', 0, '{\"secret_key\":{\"title\":\"Secret Key\",\"global\":true,\"value\":\"sk_test_51I6GGiCGv1sRiQlEi5v1or9eR0HVbuzdMd2rW4n3DxC8UKfz66R4X6n4yYkzvI2LeAIuRU9H99ZpY7XCNFC9xMs500vBjZGkKG\"},\"publishable_key\":{\"title\":\"PUBLISHABLE KEY\",\"global\":true,\"value\":\"pk_test_51I6GGiCGv1sRiQlEOisPKrjBqQqqcFsw8mXNaZ2H2baN6R01NulFS7dKFji1NRRxuchoUTEDdB7ujKcyKYSVc0z500eth7otOM\"}}', '{\"USD\":\"USD\",\"AUD\":\"AUD\",\"BRL\":\"BRL\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"HKD\":\"HKD\",\"INR\":\"INR\",\"JPY\":\"JPY\",\"MXN\":\"MXN\",\"MYR\":\"MYR\",\"NOK\":\"NOK\",\"NZD\":\"NZD\",\"PLN\":\"PLN\",\"SEK\":\"SEK\",\"SGD\":\"SGD\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2024-04-26 08:10:25'),
(12, 0, 112, 'Instamojo', 'Instamojo', 1, '{\"api_key\":{\"title\":\"API KEY\",\"global\":true,\"value\":\"test_2241633c3bc44a3de84a3b33969\"},\"auth_token\":{\"title\":\"Auth Token\",\"global\":true,\"value\":\"test_279f083f7bebefd35217feef22d\"},\"salt\":{\"title\":\"Salt\",\"global\":true,\"value\":\"19d38908eeff4f58b2ddda2c6d86ca25\"}}', '{\"INR\":\"INR\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2021-05-21 02:56:20'),
(13, 0, 501, 'Blockchain', 'Blockchain', 1, '{\"api_key\":{\"title\":\"API Key\",\"global\":true,\"value\":\"55529946-05ca-48ff-8710-f279d86b1cc5\"},\"xpub_code\":{\"title\":\"XPUB CODE\",\"global\":true,\"value\":\"xpub6CKQ3xxWyBoFAF83izZCSFUorptEU9AF8TezhtWeMU5oefjX3sFSBw62Lr9iHXPkXmDQJJiHZeTRtD9Vzt8grAYRhvbz4nEvBu3QKELVzFK\"}}', '{\"BTC\":\"BTC\"}', 1, NULL, NULL, '2019-09-14 13:14:22', '2022-03-21 07:41:56'),
(15, 0, 503, 'CoinPayments', 'Coinpayments', 1, '{\"public_key\":{\"title\":\"Public Key\",\"global\":true,\"value\":\"---------------\"},\"private_key\":{\"title\":\"Private Key\",\"global\":true,\"value\":\"------------\"},\"merchant_id\":{\"title\":\"Merchant ID\",\"global\":true,\"value\":\"93a1e014c4ad60a7980b4a7239673cb4\"}}', '{\"BTC\":\"Bitcoin\",\"BTC.LN\":\"Bitcoin (Lightning Network)\",\"LTC\":\"Litecoin\",\"CPS\":\"CPS Coin\",\"VLX\":\"Velas\",\"APL\":\"Apollo\",\"AYA\":\"Aryacoin\",\"BAD\":\"Badcoin\",\"BCD\":\"Bitcoin Diamond\",\"BCH\":\"Bitcoin Cash\",\"BCN\":\"Bytecoin\",\"BEAM\":\"BEAM\",\"BITB\":\"Bean Cash\",\"BLK\":\"BlackCoin\",\"BSV\":\"Bitcoin SV\",\"BTAD\":\"Bitcoin Adult\",\"BTG\":\"Bitcoin Gold\",\"BTT\":\"BitTorrent\",\"CLOAK\":\"CloakCoin\",\"CLUB\":\"ClubCoin\",\"CRW\":\"Crown\",\"CRYP\":\"CrypticCoin\",\"CRYT\":\"CryTrExCoin\",\"CURE\":\"CureCoin\",\"DASH\":\"DASH\",\"DCR\":\"Decred\",\"DEV\":\"DeviantCoin\",\"DGB\":\"DigiByte\",\"DOGE\":\"Dogecoin\",\"EBST\":\"eBoost\",\"EOS\":\"EOS\",\"ETC\":\"Ether Classic\",\"ETH\":\"Ethereum\",\"ETN\":\"Electroneum\",\"EUNO\":\"EUNO\",\"EXP\":\"EXP\",\"Expanse\":\"Expanse\",\"FLASH\":\"FLASH\",\"GAME\":\"GameCredits\",\"GLC\":\"Goldcoin\",\"GRS\":\"Groestlcoin\",\"KMD\":\"Komodo\",\"LOKI\":\"LOKI\",\"LSK\":\"LSK\",\"MAID\":\"MaidSafeCoin\",\"MUE\":\"MonetaryUnit\",\"NAV\":\"NAV Coin\",\"NEO\":\"NEO\",\"NMC\":\"Namecoin\",\"NVST\":\"NVO Token\",\"NXT\":\"NXT\",\"OMNI\":\"OMNI\",\"PINK\":\"PinkCoin\",\"PIVX\":\"PIVX\",\"POT\":\"PotCoin\",\"PPC\":\"Peercoin\",\"PROC\":\"ProCurrency\",\"PURA\":\"PURA\",\"QTUM\":\"QTUM\",\"RES\":\"Resistance\",\"RVN\":\"Ravencoin\",\"RVR\":\"RevolutionVR\",\"SBD\":\"Steem Dollars\",\"SMART\":\"SmartCash\",\"SOXAX\":\"SOXAX\",\"STEEM\":\"STEEM\",\"STRAT\":\"STRAT\",\"SYS\":\"Syscoin\",\"TPAY\":\"TokenPay\",\"TRIGGERS\":\"Triggers\",\"TRX\":\" TRON\",\"UBQ\":\"Ubiq\",\"UNIT\":\"UniversalCurrency\",\"USDT\":\"Tether USD (Omni Layer)\",\"USDT.BEP20\":\"Tether USD (BSC Chain)\",\"USDT.ERC20\":\"Tether USD (ERC20)\",\"USDT.TRC20\":\"Tether USD (Tron/TRC20)\",\"VTC\":\"Vertcoin\",\"WAVES\":\"Waves\",\"XCP\":\"Counterparty\",\"XEM\":\"NEM\",\"XMR\":\"Monero\",\"XSN\":\"Stakenet\",\"XSR\":\"SucreCoin\",\"XVG\":\"VERGE\",\"XZC\":\"ZCoin\",\"ZEC\":\"ZCash\",\"ZEN\":\"Horizen\"}', 1, NULL, NULL, '2019-09-14 13:14:22', '2021-05-21 02:07:14'),
(16, 0, 504, 'CoinPayments Fiat', 'CoinpaymentsFiat', 1, '{\"merchant_id\":{\"title\":\"Merchant ID\",\"global\":true,\"value\":\"6515561\"}}', '{\"USD\":\"USD\",\"AUD\":\"AUD\",\"BRL\":\"BRL\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"CLP\":\"CLP\",\"CNY\":\"CNY\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"HKD\":\"HKD\",\"INR\":\"INR\",\"ISK\":\"ISK\",\"JPY\":\"JPY\",\"KRW\":\"KRW\",\"NZD\":\"NZD\",\"PLN\":\"PLN\",\"RUB\":\"RUB\",\"SEK\":\"SEK\",\"SGD\":\"SGD\",\"THB\":\"THB\",\"TWD\":\"TWD\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2021-05-21 02:07:44'),
(17, 0, 505, 'Coingate', 'Coingate', 1, '{\"api_key\":{\"title\":\"API Key\",\"global\":true,\"value\":\"6354mwVCEw5kHzRJ6thbGo-N\"}}', '{\"USD\":\"USD\",\"EUR\":\"EUR\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2022-03-30 09:24:57'),
(18, 0, 506, 'Coinbase Commerce', 'CoinbaseCommerce', 1, '{\"api_key\":{\"title\":\"API Key\",\"global\":true,\"value\":\"c47cd7df-d8e8-424b-a20a\"},\"secret\":{\"title\":\"Webhook Shared Secret\",\"global\":true,\"value\":\"55871878-2c32-4f64-ab66\"}}', '{\"USD\":\"USD\",\"EUR\":\"EUR\",\"JPY\":\"JPY\",\"GBP\":\"GBP\",\"AUD\":\"AUD\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"CNY\":\"CNY\",\"SEK\":\"SEK\",\"NZD\":\"NZD\",\"MXN\":\"MXN\",\"SGD\":\"SGD\",\"HKD\":\"HKD\",\"NOK\":\"NOK\",\"KRW\":\"KRW\",\"TRY\":\"TRY\",\"RUB\":\"RUB\",\"INR\":\"INR\",\"BRL\":\"BRL\",\"ZAR\":\"ZAR\",\"AED\":\"AED\",\"AFN\":\"AFN\",\"ALL\":\"ALL\",\"AMD\":\"AMD\",\"ANG\":\"ANG\",\"AOA\":\"AOA\",\"ARS\":\"ARS\",\"AWG\":\"AWG\",\"AZN\":\"AZN\",\"BAM\":\"BAM\",\"BBD\":\"BBD\",\"BDT\":\"BDT\",\"BGN\":\"BGN\",\"BHD\":\"BHD\",\"BIF\":\"BIF\",\"BMD\":\"BMD\",\"BND\":\"BND\",\"BOB\":\"BOB\",\"BSD\":\"BSD\",\"BTN\":\"BTN\",\"BWP\":\"BWP\",\"BYN\":\"BYN\",\"BZD\":\"BZD\",\"CDF\":\"CDF\",\"CLF\":\"CLF\",\"CLP\":\"CLP\",\"COP\":\"COP\",\"CRC\":\"CRC\",\"CUC\":\"CUC\",\"CUP\":\"CUP\",\"CVE\":\"CVE\",\"CZK\":\"CZK\",\"DJF\":\"DJF\",\"DKK\":\"DKK\",\"DOP\":\"DOP\",\"DZD\":\"DZD\",\"EGP\":\"EGP\",\"ERN\":\"ERN\",\"ETB\":\"ETB\",\"FJD\":\"FJD\",\"FKP\":\"FKP\",\"GEL\":\"GEL\",\"GGP\":\"GGP\",\"GHS\":\"GHS\",\"GIP\":\"GIP\",\"GMD\":\"GMD\",\"GNF\":\"GNF\",\"GTQ\":\"GTQ\",\"GYD\":\"GYD\",\"HNL\":\"HNL\",\"HRK\":\"HRK\",\"HTG\":\"HTG\",\"HUF\":\"HUF\",\"IDR\":\"IDR\",\"ILS\":\"ILS\",\"IMP\":\"IMP\",\"IQD\":\"IQD\",\"IRR\":\"IRR\",\"ISK\":\"ISK\",\"JEP\":\"JEP\",\"JMD\":\"JMD\",\"JOD\":\"JOD\",\"KES\":\"KES\",\"KGS\":\"KGS\",\"KHR\":\"KHR\",\"KMF\":\"KMF\",\"KPW\":\"KPW\",\"KWD\":\"KWD\",\"KYD\":\"KYD\",\"KZT\":\"KZT\",\"LAK\":\"LAK\",\"LBP\":\"LBP\",\"LKR\":\"LKR\",\"LRD\":\"LRD\",\"LSL\":\"LSL\",\"LYD\":\"LYD\",\"MAD\":\"MAD\",\"MDL\":\"MDL\",\"MGA\":\"MGA\",\"MKD\":\"MKD\",\"MMK\":\"MMK\",\"MNT\":\"MNT\",\"MOP\":\"MOP\",\"MRO\":\"MRO\",\"MUR\":\"MUR\",\"MVR\":\"MVR\",\"MWK\":\"MWK\",\"MYR\":\"MYR\",\"MZN\":\"MZN\",\"NAD\":\"NAD\",\"NGN\":\"NGN\",\"NIO\":\"NIO\",\"NPR\":\"NPR\",\"OMR\":\"OMR\",\"PAB\":\"PAB\",\"PEN\":\"PEN\",\"PGK\":\"PGK\",\"PHP\":\"PHP\",\"PKR\":\"PKR\",\"PLN\":\"PLN\",\"PYG\":\"PYG\",\"QAR\":\"QAR\",\"RON\":\"RON\",\"RSD\":\"RSD\",\"RWF\":\"RWF\",\"SAR\":\"SAR\",\"SBD\":\"SBD\",\"SCR\":\"SCR\",\"SDG\":\"SDG\",\"SHP\":\"SHP\",\"SLL\":\"SLL\",\"SOS\":\"SOS\",\"SRD\":\"SRD\",\"SSP\":\"SSP\",\"STD\":\"STD\",\"SVC\":\"SVC\",\"SYP\":\"SYP\",\"SZL\":\"SZL\",\"THB\":\"THB\",\"TJS\":\"TJS\",\"TMT\":\"TMT\",\"TND\":\"TND\",\"TOP\":\"TOP\",\"TTD\":\"TTD\",\"TWD\":\"TWD\",\"TZS\":\"TZS\",\"UAH\":\"UAH\",\"UGX\":\"UGX\",\"UYU\":\"UYU\",\"UZS\":\"UZS\",\"VEF\":\"VEF\",\"VND\":\"VND\",\"VUV\":\"VUV\",\"WST\":\"WST\",\"XAF\":\"XAF\",\"XAG\":\"XAG\",\"XAU\":\"XAU\",\"XCD\":\"XCD\",\"XDR\":\"XDR\",\"XOF\":\"XOF\",\"XPD\":\"XPD\",\"XPF\":\"XPF\",\"XPT\":\"XPT\",\"YER\":\"YER\",\"ZMW\":\"ZMW\",\"ZWL\":\"ZWL\"}\r\n\r\n', 0, '{\"endpoint\":{\"title\": \"Webhook Endpoint\",\"value\":\"ipn.CoinbaseCommerce\"}}', NULL, '2019-09-14 13:14:22', '2021-05-21 02:02:47'),
(24, 0, 113, 'Paypal Express', 'PaypalSdk', 1, '{\"clientId\":{\"title\":\"Paypal Client ID\",\"global\":true,\"value\":\"Ae0-tixtSV7DvLwIh3Bmu7JvHrjh5EfGdXr_cEklKAVjjezRZ747BxKILiBdzlKKyp-W8W_T7CKH1Ken\"},\"clientSecret\":{\"title\":\"Client Secret\",\"global\":true,\"value\":\"EOhbvHZgFNO21soQJT1L9Q00M3rK6PIEsdiTgXRBt2gtGtxwRer5JvKnVUGNU5oE63fFnjnYY7hq3HBA\"}}', '{\"AUD\":\"AUD\",\"BRL\":\"BRL\",\"CAD\":\"CAD\",\"CZK\":\"CZK\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"HKD\":\"HKD\",\"HUF\":\"HUF\",\"INR\":\"INR\",\"ILS\":\"ILS\",\"JPY\":\"JPY\",\"MYR\":\"MYR\",\"MXN\":\"MXN\",\"TWD\":\"TWD\",\"NZD\":\"NZD\",\"NOK\":\"NOK\",\"PHP\":\"PHP\",\"PLN\":\"PLN\",\"GBP\":\"GBP\",\"RUB\":\"RUB\",\"SGD\":\"SGD\",\"SEK\":\"SEK\",\"CHF\":\"CHF\",\"THB\":\"THB\",\"USD\":\"$\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2021-05-20 23:01:08'),
(25, 0, 114, 'Stripe Checkout', 'StripeV3', 1, '{\"secret_key\":{\"title\":\"Secret Key\",\"global\":true,\"value\":\"sk_test_51I6GGiCGv1sRiQlEi5v1or9eR0HVbuzdMd2rW4n3DxC8UKfz66R4X6n4yYkzvI2LeAIuRU9H99ZpY7XCNFC9xMs500vBjZGkKG\"},\"publishable_key\":{\"title\":\"PUBLISHABLE KEY\",\"global\":true,\"value\":\"pk_test_51I6GGiCGv1sRiQlEOisPKrjBqQqqcFsw8mXNaZ2H2baN6R01NulFS7dKFji1NRRxuchoUTEDdB7ujKcyKYSVc0z500eth7otOM\"},\"end_point\":{\"title\":\"End Point Secret\",\"global\":true,\"value\":\"whsec_lUmit1gtxwKTveLnSe88xCSDdnPOt8g5\"}}', '{\"USD\":\"USD\",\"AUD\":\"AUD\",\"BRL\":\"BRL\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"HKD\":\"HKD\",\"INR\":\"INR\",\"JPY\":\"JPY\",\"MXN\":\"MXN\",\"MYR\":\"MYR\",\"NOK\":\"NOK\",\"NZD\":\"NZD\",\"PLN\":\"PLN\",\"SEK\":\"SEK\",\"SGD\":\"SGD\"}', 0, '{\"webhook\":{\"title\": \"Webhook Endpoint\",\"value\":\"ipn.StripeV3\"}}', NULL, '2019-09-14 13:14:22', '2021-05-21 00:58:38'),
(27, 0, 115, 'Mollie', 'Mollie', 1, '{\"mollie_email\":{\"title\":\"Mollie Email \",\"global\":true,\"value\":\"vi@gmail.com\"},\"api_key\":{\"title\":\"API KEY\",\"global\":true,\"value\":\"test_cucfwKTWfft9s337qsVfn5CC4vNkrn\"}}', '{\"AED\":\"AED\",\"AUD\":\"AUD\",\"BGN\":\"BGN\",\"BRL\":\"BRL\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"CZK\":\"CZK\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"HKD\":\"HKD\",\"HRK\":\"HRK\",\"HUF\":\"HUF\",\"ILS\":\"ILS\",\"ISK\":\"ISK\",\"JPY\":\"JPY\",\"MXN\":\"MXN\",\"MYR\":\"MYR\",\"NOK\":\"NOK\",\"NZD\":\"NZD\",\"PHP\":\"PHP\",\"PLN\":\"PLN\",\"RON\":\"RON\",\"RUB\":\"RUB\",\"SEK\":\"SEK\",\"SGD\":\"SGD\",\"THB\":\"THB\",\"TWD\":\"TWD\",\"USD\":\"USD\",\"ZAR\":\"ZAR\"}', 0, NULL, NULL, '2019-09-14 13:14:22', '2021-05-21 02:44:45'),
(30, 0, 116, 'Cashmaal', 'Cashmaal', 1, '{\"web_id\":{\"title\":\"Web Id\",\"global\":true,\"value\":\"3748\"},\"ipn_key\":{\"title\":\"IPN Key\",\"global\":true,\"value\":\"546254628759524554647987\"}}', '{\"PKR\":\"PKR\",\"USD\":\"USD\"}', 0, '{\"webhook\":{\"title\": \"IPN URL\",\"value\":\"ipn.Cashmaal\"}}', NULL, NULL, '2021-06-22 08:05:04'),
(36, 0, 119, 'Mercado Pago', 'MercadoPago', 1, '{\"access_token\":{\"title\":\"Access Token\",\"global\":true,\"value\":\"3Vee5S2F\"}}', '{\"USD\":\"USD\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"NOK\":\"NOK\",\"PLN\":\"PLN\",\"SEK\":\"SEK\",\"AUD\":\"AUD\",\"NZD\":\"NZD\"}', 0, NULL, NULL, NULL, '2021-07-17 09:44:29'),
(44, 0, 120, 'Authorize.net', 'Authorize', 1, '{\"login_id\":{\"title\":\"Login ID\",\"global\":true,\"value\":\"3Vee5S2F\"},\"transaction_key\":{\"title\":\"Transaction Key\",\"global\":true,\"value\":\"3Vee5S2F\"}}', '{\"USD\":\"USD\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"NOK\":\"NOK\",\"PLN\":\"PLN\",\"SEK\":\"SEK\",\"AUD\":\"AUD\",\"NZD\":\"NZD\"}', 0, NULL, NULL, NULL, '2022-09-15 09:27:31'),
(46, 0, 121, 'NMI', 'NMI', 1, '{\"api_key\":{\"title\":\"API Key\",\"global\":true,\"value\":\"2F822Rw39fx762MaV7Yy86jXGTC7sCDy\"}}', '{\"AED\":\"AED\",\"ARS\":\"ARS\",\"AUD\":\"AUD\",\"BOB\":\"BOB\",\"BRL\":\"BRL\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"CLP\":\"CLP\",\"CNY\":\"CNY\",\"COP\":\"COP\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"HKD\":\"HKD\",\"IDR\":\"IDR\",\"ILS\":\"ILS\",\"INR\":\"INR\",\"JPY\":\"JPY\",\"KRW\":\"KRW\",\"MXN\":\"MXN\",\"MYR\":\"MYR\",\"NOK\":\"NOK\",\"NZD\":\"NZD\",\"PEN\":\"PEN\",\"PHP\":\"PHP\",\"PLN\":\"PLN\",\"PYG\":\"PYG\",\"RUB\":\"RUB\",\"SEC\":\"SEC\",\"SGD\":\"SGD\",\"THB\":\"THB\",\"TRY\":\"TRY\",\"TWD\":\"TWD\",\"USD\":\"USD\",\"ZAR\":\"ZAR\"}', 0, NULL, NULL, NULL, '2022-09-10 05:30:15'),
(49, 0, 122, 'BTCPay', 'BTCPay', 1, '{\"store_id\":{\"title\":\"Store Id\",\"global\":true,\"value\":\"-------\"},\"api_key\":{\"title\":\"Api Key\",\"global\":true,\"value\":\"------\"},\"server_name\":{\"title\":\"Server Name\",\"global\":true,\"value\":\"https:\\/\\/yourbtcpaserver.lndyn.com\"},\"secret_code\":{\"title\":\"Secret Code\",\"global\":true,\"value\":\"----------\"}}', '{\"BTC\":\"Bitcoin\",\"LTC\":\"Litecoin\"}', 1, '{\"webhook\":{\"title\": \"IPN URL\",\"value\":\"ipn.BTCPay\"}}', NULL, NULL, NULL),
(50, 0, 123, 'Now payments hosted', 'NowPaymentsHosted', 1, '{\"api_key\":{\"title\":\"API Key\",\"global\":true,\"value\":\"-------------------\"},\"secret_key\":{\"title\":\"Secret Key\",\"global\":true,\"value\":\"--------------\"}}', '{\"BTG\":\"BTG\",\"ETH\":\"ETH\",\"XMR\":\"XMR\",\"ZEC\":\"ZEC\",\"XVG\":\"XVG\",\"ADA\":\"ADA\",\"LTC\":\"LTC\",\"BCH\":\"BCH\",\"QTUM\":\"QTUM\",\"DASH\":\"DASH\",\"XLM\":\"XLM\",\"XRP\":\"XRP\",\"XEM\":\"XEM\",\"DGB\":\"DGB\",\"LSK\":\"LSK\",\"DOGE\":\"DOGE\",\"TRX\":\"TRX\",\"KMD\":\"KMD\",\"REP\":\"REP\",\"BAT\":\"BAT\",\"ARK\":\"ARK\",\"WAVES\":\"WAVES\",\"BNB\":\"BNB\",\"XZC\":\"XZC\",\"NANO\":\"NANO\",\"TUSD\":\"TUSD\",\"VET\":\"VET\",\"ZEN\":\"ZEN\",\"GRS\":\"GRS\",\"FUN\":\"FUN\",\"NEO\":\"NEO\",\"GAS\":\"GAS\",\"PAX\":\"PAX\",\"USDC\":\"USDC\",\"ONT\":\"ONT\",\"XTZ\":\"XTZ\",\"LINK\":\"LINK\",\"RVN\":\"RVN\",\"BNBMAINNET\":\"BNBMAINNET\",\"ZIL\":\"ZIL\",\"BCD\":\"BCD\",\"USDT\":\"USDT\",\"USDTERC20\":\"USDTERC20\",\"CRO\":\"CRO\",\"DAI\":\"DAI\",\"HT\":\"HT\",\"WABI\":\"WABI\",\"BUSD\":\"BUSD\",\"ALGO\":\"ALGO\",\"USDTTRC20\":\"USDTTRC20\",\"GT\":\"GT\",\"STPT\":\"STPT\",\"AVA\":\"AVA\",\"SXP\":\"SXP\",\"UNI\":\"UNI\",\"OKB\":\"OKB\",\"BTC\":\"BTC\"}', 1, '', NULL, NULL, '2023-02-14 10:42:09'),
(51, 0, 509, 'Now payments checkout', 'NowPaymentsCheckout', 0, '{\"api_key\":{\"title\":\"API Key\",\"global\":true,\"value\":\"GRYEETF-44W4J2N-M2ZH3HV-2X4CN9W\"},\"secret_key\":{\"title\":\"Secret Key\",\"global\":true,\"value\":\"99d33abd-91a3-4a63-92da-9c87692c0010\"}}', '{\"BTG\":\"BTG\",\"ETH\":\"ETH\",\"XMR\":\"XMR\",\"ZEC\":\"ZEC\",\"XVG\":\"XVG\",\"ADA\":\"ADA\",\"LTC\":\"LTC\",\"BCH\":\"BCH\",\"QTUM\":\"QTUM\",\"DASH\":\"DASH\",\"XLM\":\"XLM\",\"XRP\":\"XRP\",\"XEM\":\"XEM\",\"DGB\":\"DGB\",\"LSK\":\"LSK\",\"DOGE\":\"DOGE\",\"TRX\":\"TRX\",\"KMD\":\"KMD\",\"REP\":\"REP\",\"BAT\":\"BAT\",\"ARK\":\"ARK\",\"WAVES\":\"WAVES\",\"BNB\":\"BNB\",\"XZC\":\"XZC\",\"NANO\":\"NANO\",\"TUSD\":\"TUSD\",\"VET\":\"VET\",\"ZEN\":\"ZEN\",\"GRS\":\"GRS\",\"FUN\":\"FUN\",\"NEO\":\"NEO\",\"GAS\":\"GAS\",\"PAX\":\"PAX\",\"USDC\":\"USDC\",\"ONT\":\"ONT\",\"XTZ\":\"XTZ\",\"LINK\":\"LINK\",\"RVN\":\"RVN\",\"BNBMAINNET\":\"BNBMAINNET\",\"ZIL\":\"ZIL\",\"BCD\":\"BCD\",\"USDT\":\"USDT\",\"USDTERC20\":\"USDTERC20\",\"CRO\":\"CRO\",\"DAI\":\"DAI\",\"HT\":\"HT\",\"WABI\":\"WABI\",\"BUSD\":\"BUSD\",\"ALGO\":\"ALGO\",\"USDTTRC20\":\"USDTTRC20\",\"GT\":\"GT\",\"STPT\":\"STPT\",\"AVA\":\"AVA\",\"SXP\":\"SXP\",\"UNI\":\"UNI\",\"OKB\":\"OKB\",\"BTC\":\"BTC\"}', 1, '', NULL, NULL, '2024-04-28 22:25:27'),
(56, 0, 124, '2Checkout', 'TwoCheckout', 1, '{\"merchant_code\":{\"title\":\"Merchant Code\",\"global\":true,\"value\":\"253248016872\"},\"secret_key\":{\"title\":\"Secret Key\",\"global\":true,\"value\":\"eQM)ID@&vG84u!O*g[p+\"}}', '{\"AFN\": \"AFN\",\"ALL\": \"ALL\",\"DZD\": \"DZD\",\"ARS\": \"ARS\",\"AUD\": \"AUD\",\"AZN\": \"AZN\",\"BSD\": \"BSD\",\"BDT\": \"BDT\",\"BBD\": \"BBD\",\"BZD\": \"BZD\",\"BMD\": \"BMD\",\"BOB\": \"BOB\",\"BWP\": \"BWP\",\"BRL\": \"BRL\",\"GBP\": \"GBP\",\"BND\": \"BND\",\"BGN\": \"BGN\",\"CAD\": \"CAD\",\"CLP\": \"CLP\",\"CNY\": \"CNY\",\"COP\": \"COP\",\"CRC\": \"CRC\",\"HRK\": \"HRK\",\"CZK\": \"CZK\",\"DKK\": \"DKK\",\"DOP\": \"DOP\",\"XCD\": \"XCD\",\"EGP\": \"EGP\",\"EUR\": \"EUR\",\"FJD\": \"FJD\",\"GTQ\": \"GTQ\",\"HKD\": \"HKD\",\"HNL\": \"HNL\",\"HUF\": \"HUF\",\"INR\": \"INR\",\"IDR\": \"IDR\",\"ILS\": \"ILS\",\"JMD\": \"JMD\",\"JPY\": \"JPY\",\"KZT\": \"KZT\",\"KES\": \"KES\",\"LAK\": \"LAK\",\"MMK\": \"MMK\",\"LBP\": \"LBP\",\"LRD\": \"LRD\",\"MOP\": \"MOP\",\"MYR\": \"MYR\",\"MVR\": \"MVR\",\"MRO\": \"MRO\",\"MUR\": \"MUR\",\"MXN\": \"MXN\",\"MAD\": \"MAD\",\"NPR\": \"NPR\",\"TWD\": \"TWD\",\"NZD\": \"NZD\",\"NIO\": \"NIO\",\"NOK\": \"NOK\",\"PKR\": \"PKR\",\"PGK\": \"PGK\",\"PEN\": \"PEN\",\"PHP\": \"PHP\",\"PLN\": \"PLN\",\"QAR\": \"QAR\",\"RON\": \"RON\",\"RUB\": \"RUB\",\"WST\": \"WST\",\"SAR\": \"SAR\",\"SCR\": \"SCR\",\"SGD\": \"SGD\",\"SBD\": \"SBD\",\"ZAR\": \"ZAR\",\"KRW\": \"KRW\",\"LKR\": \"LKR\",\"SEK\": \"SEK\",\"CHF\": \"CHF\",\"SYP\": \"SYP\",\"THB\": \"THB\",\"TOP\": \"TOP\",\"TTD\": \"TTD\",\"TRY\": \"TRY\",\"UAH\": \"UAH\",\"AED\": \"AED\",\"USD\": \"USD\",\"VUV\": \"VUV\",\"VND\": \"VND\",\"XOF\": \"XOF\",\"YER\": \"YER\"}', 1, '{\"approved_url\":{\"title\": \"Approved URL\",\"value\":\"ipn.TwoCheckout\"}}', NULL, NULL, '2023-04-29 03:21:58'),
(57, 0, 125, 'Checkout', 'Checkout', 1, '{\"secret_key\":{\"title\":\"Secret Key\",\"global\":true,\"value\":\"------\"},\"public_key\":{\"title\":\"PUBLIC KEY\",\"global\":true,\"value\":\"------\"},\"processing_channel_id\":{\"title\":\"PROCESSING CHANNEL\",\"global\":true,\"value\":\"------\"}}', '{\"USD\":\"USD\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"HKD\":\"HKD\",\"AUD\":\"AUD\",\"CAN\":\"CAN\",\"CHF\":\"CHF\",\"SGD\":\"SGD\",\"JPY\":\"JPY\",\"NZD\":\"NZD\"}', 0, NULL, NULL, NULL, '2023-05-06 01:43:01'),
(59, 2, 1000, 'Bitcoin', 'bitcoin', 1, '[]', '[]', 0, NULL, 'bc1qhld0a77j4sxy00ljdypsn0vkfgshghdvjesm7c', '2024-02-16 17:50:52', '2024-07-31 03:42:32'),
(60, 4, 1001, 'USDT TRC20', 'usdt_trc20', 1, '[]', '[]', 0, NULL, 'TTxMMtLSHtjm6J4bG6vGdKerdKZBvqCiFA', '2024-04-28 22:24:35', '2024-07-31 03:41:58'),
(61, 5, 1002, 'USDC', 'usdc', 1, '[]', '[]', 0, NULL, 'TTxMMtLSHtjm6J4bG6vGdKerdKZBvqCiFA', '2024-07-31 03:43:29', '2024-07-31 03:45:49');

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

--
-- Table structure for table `gateway_currencies`
--

CREATE TABLE `gateway_currencies` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `currency` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `symbol` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `method_code` int(11) DEFAULT NULL,
  `gateway_alias` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `min_amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `max_amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `percent_charge` decimal(5,2) NOT NULL DEFAULT '0.00',
  `fixed_charge` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `rate` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gateway_parameter` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `gateway_currencies`
--

INSERT INTO `gateway_currencies` (`id`, `name`, `currency`, `symbol`, `method_code`, `gateway_alias`, `min_amount`, `max_amount`, `percent_charge`, `fixed_charge`, `rate`, `image`, `gateway_parameter`, `created_at`, `updated_at`) VALUES
(1, 'Stripe USD', 'USD', '$', 111, 'StripeJs', 100.00000000, 10000.00000000, 0.00, 0.00000000, 1.00000000, NULL, '{\"secret_key\":\"sk_test_51I6GGiCGv1sRiQlEi5v1or9eR0HVbuzdMd2rW4n3DxC8UKfz66R4X6n4yYkzvI2LeAIuRU9H99ZpY7XCNFC9xMs500vBjZGkKG\",\"publishable_key\":\"pk_test_51I6GGiCGv1sRiQlEOisPKrjBqQqqcFsw8mXNaZ2H2baN6R01NulFS7dKFji1NRRxuchoUTEDdB7ujKcyKYSVc0z500eth7otOM\"}', '2024-01-30 23:18:13', '2024-01-30 23:18:13'),
(2, 'Bitcoin', '$', '', 1000, 'bitcoin', 100.00000000, 1000000000.00000000, 0.00, 0.00000000, 1.00000000, NULL, NULL, '2024-02-16 17:50:52', '2024-07-31 03:42:23'),
(4, 'USDT', 'USDT', '$', 509, 'NowPaymentsCheckout', 50.00000000, 1000000.00000000, 2.00, 0.00000000, 1.00000000, NULL, '{\"api_key\":\"GRYEETF-44W4J2N-M2ZH3HV-2X4CN9W\",\"secret_key\":\"99d33abd-91a3-4a63-92da-9c87692c0010\"}', '2024-04-26 07:38:51', '2024-04-26 07:38:51'),
(5, 'Bitcoin', 'BTC', '$', 509, 'NowPaymentsCheckout', 50.00000000, 1000000.00000000, 2.00, 0.00000000, 1.00000000, NULL, '{\"api_key\":\"GRYEETF-44W4J2N-M2ZH3HV-2X4CN9W\",\"secret_key\":\"99d33abd-91a3-4a63-92da-9c87692c0010\"}', '2024-04-26 07:38:51', '2024-04-26 07:38:51'),
(6, 'USDT TRC20', '$', '', 1001, 'usdt_trc20', 100.00000000, 1000000.00000000, 3.00, 0.00000000, 1.00000000, NULL, NULL, '2024-04-28 22:24:35', '2024-07-31 03:41:58'),
(7, 'USDC', '100', '', 1002, 'usdc', 100.00000000, 1000000.00000000, 0.00, 0.00000000, 1.00000000, NULL, NULL, '2024-07-31 03:43:29', '2024-07-31 03:43:29');

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

--
-- Table structure for table `general_settings`
--

CREATE TABLE `general_settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `site_name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lawyerfee` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '1000',
  `investigationfee` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '1000',
  `livechat` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'livechat',
  `cur_text` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'currency text',
  `cur_sym` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'currency symbol',
  `email_from` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_template` text COLLATE utf8mb4_unicode_ci,
  `sms_body` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sms_from` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `base_color` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `secondary_color` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mail_config` text COLLATE utf8mb4_unicode_ci COMMENT 'email configuration',
  `sms_config` text COLLATE utf8mb4_unicode_ci,
  `global_shortcodes` text COLLATE utf8mb4_unicode_ci,
  `kv` tinyint(1) NOT NULL DEFAULT '0',
  `ev` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'email verification, 0 - dont check, 1 - check',
  `en` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'email notification, 0 - dont send, 1 - send',
  `sv` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'mobile verication, 0 - dont check, 1 - check',
  `sn` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'sms notification, 0 - dont send, 1 - send',
  `force_ssl` tinyint(1) NOT NULL DEFAULT '0',
  `maintenance_mode` tinyint(1) NOT NULL DEFAULT '0',
  `secure_password` tinyint(1) NOT NULL DEFAULT '0',
  `agree` tinyint(1) NOT NULL DEFAULT '0',
  `registration` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: Off	, 1: On',
  `active_template` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `system_info` text COLLATE utf8mb4_unicode_ci,
  `system_customized` tinyint(1) NOT NULL DEFAULT '0',
  `deposit_commission` tinyint(1) NOT NULL DEFAULT '1',
  `invest_commission` tinyint(1) NOT NULL DEFAULT '1',
  `invest_return_commission` tinyint(1) NOT NULL DEFAULT '1',
  `signup_bonus_amount` decimal(11,2) DEFAULT '0.00',
  `signup_bonus_control` tinyint(1) NOT NULL DEFAULT '0',
  `promotional_tool` tinyint(1) NOT NULL DEFAULT '0',
  `firebase_config` text COLLATE utf8mb4_unicode_ci,
  `firebase_template` text COLLATE utf8mb4_unicode_ci,
  `push_notify` tinyint(1) NOT NULL DEFAULT '0',
  `off_day` text COLLATE utf8mb4_unicode_ci,
  `last_cron` datetime DEFAULT NULL,
  `b_transfer` int(11) NOT NULL DEFAULT '0' COMMENT 'Balance Transfer Status',
  `f_charge` decimal(28,8) NOT NULL DEFAULT '0.00000000' COMMENT 'Fixed Charge',
  `p_charge` decimal(5,2) NOT NULL DEFAULT '0.00' COMMENT 'Percent Charge',
  `user_ranking` tinyint(1) NOT NULL DEFAULT '0',
  `schedule_invest` tinyint(1) NOT NULL DEFAULT '0',
  `holiday_withdraw` tinyint(1) NOT NULL DEFAULT '0',
  `staking_option` tinyint(1) NOT NULL DEFAULT '0',
  `staking_min_amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `staking_max_amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `pool_option` tinyint(1) NOT NULL DEFAULT '0',
  `allow_invest_pending` int(11) NOT NULL DEFAULT '0',
  `language_switch` tinyint(3) UNSIGNED NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `general_settings`
--

INSERT INTO `general_settings` (`id`, `site_name`, `lawyerfee`, `investigationfee`, `livechat`, `cur_text`, `cur_sym`, `email_from`, `email_template`, `sms_body`, `sms_from`, `base_color`, `secondary_color`, `mail_config`, `sms_config`, `global_shortcodes`, `kv`, `ev`, `en`, `sv`, `sn`, `force_ssl`, `maintenance_mode`, `secure_password`, `agree`, `registration`, `active_template`, `system_info`, `system_customized`, `deposit_commission`, `invest_commission`, `invest_return_commission`, `signup_bonus_amount`, `signup_bonus_control`, `promotional_tool`, `firebase_config`, `firebase_template`, `push_notify`, `off_day`, `last_cron`, `b_transfer`, `f_charge`, `p_charge`, `user_ranking`, `schedule_invest`, `holiday_withdraw`, `staking_option`, `staking_min_amount`, `staking_max_amount`, `pool_option`, `allow_invest_pending`, `language_switch`, `created_at`, `updated_at`) VALUES
(1, 'Scam Refund', '2500.34', '1050.54', 'livechat', 'USD', '$', 'support@scamrefundgov.com', '<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n  <!--[if !mso]><!-->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n  <!--<![endif]-->\r\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n  <title></title>\r\n  <style type=\"text/css\">\r\n.ReadMsgBody { width: 100%; background-color: #ffffff; }\r\n.ExternalClass { width: 100%; background-color: #ffffff; }\r\n.ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div { line-height: 100%; }\r\nhtml { width: 100%; }\r\nbody { -webkit-text-size-adjust: none; -ms-text-size-adjust: none; margin: 0; padding: 0; }\r\ntable { border-spacing: 0; table-layout: fixed; margin: 0 auto;border-collapse: collapse; }\r\ntable table table { table-layout: auto; }\r\n.yshortcuts a { border-bottom: none !important; }\r\nimg:hover { opacity: 0.9 !important; }\r\na { color: #0087ff; text-decoration: none; }\r\n.textbutton a { font-family: \'open sans\', arial, sans-serif !important;}\r\n.btn-link a { color:#FFFFFF !important;}\r\n\r\n@media only screen and (max-width: 480px) {\r\nbody { width: auto !important; }\r\n*[class=\"table-inner\"] { width: 90% !important; text-align: center !important; }\r\n*[class=\"table-full\"] { width: 100% !important; text-align: center !important; }\r\n/* image */\r\nimg[class=\"img1\"] { width: 100% !important; height: auto !important; }\r\n}\r\n</style>\r\n\r\n\r\n\r\n  <table bgcolor=\"#414a51\" width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n    <tbody><tr>\r\n      <td height=\"50\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td align=\"center\" style=\"text-align:center;vertical-align:top;font-size:0;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n          <tbody><tr>\r\n            <td align=\"center\" width=\"600\">\r\n               \r\n              <table class=\"table-inner\" width=\"95%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n                <tbody><tr>\r\n                  <td bgcolor=\"#FFFFFF\" align=\"center\" style=\"text-align:center;vertical-align:top;font-size:0;\">\r\n                    <table align=\"center\" width=\"90%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n                      <tbody><tr>\r\n                        <td height=\"35\"></td>\r\n                      </tr>\r\n                      <!--logo-->\r\n                      <tr>\r\n                        <td align=\"center\" style=\"vertical-align:top;font-size:0;\">\r\n                          <a href=\"#\">\r\n                            <br>\r\n                          </a>\r\n                        </td>\r\n                      </tr>\r\n                      <!--end logo-->\r\n                      <tr>\r\n                        <td height=\"40\"></td>\r\n                      </tr>\r\n                      <!--headline-->\r\n                      <tr>\r\n                        <td align=\"center\" style=\"font-family: \'Open Sans\', Arial, sans-serif; font-size: 22px;color:#414a51;font-weight: bold;\">Hello {{fullname}} ({{username}})</td>\r\n                      </tr>\r\n                      <!--end headline-->\r\n                      <tr>\r\n                        <td align=\"center\" style=\"text-align:center;vertical-align:top;font-size:0;\">\r\n                          <table width=\"40\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n                            <tbody><tr>\r\n                              <td height=\"20\" style=\" border-bottom:3px solid #0087ff;\"></td>\r\n                            </tr>\r\n                          </tbody></table>\r\n                        </td>\r\n                      </tr>\r\n                      <tr>\r\n                        <td height=\"20\"></td>\r\n                      </tr>\r\n                      <!--content-->\r\n                      <tr>\r\n                        <td align=\"left\" style=\"font-family: \'Open sans\', Arial, sans-serif; color:#7f8c8d; font-size:16px; line-height: 28px;\">{{message}}</td>\r\n                      </tr>\r\n                      <!--end content-->\r\n                      <tr>\r\n                        <td height=\"40\"></td>\r\n                      </tr>\r\n              \r\n                    </tbody></table>\r\n                  </td>\r\n                </tr>\r\n                <tr>\r\n                  <td height=\"45\" align=\"center\" bgcolor=\"#f4f4f4\" style=\"border-bottom-left-radius:6px;border-bottom-right-radius:6px;\">\r\n                    <table align=\"center\" width=\"90%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n                      <tbody><tr>\r\n                        <td height=\"10\"></td>\r\n                      </tr>\r\n                      <!--preference-->\r\n                      <tr>\r\n                        <td class=\"preference-link\" align=\"center\" style=\"font-family: \'Open sans\', Arial, sans-serif; color:#95a5a6; font-size:14px;\">\r\n                          © 2021 <a href=\"#\">{{site_name}}</a>&nbsp;. All Rights Reserved. \r\n                        </td>\r\n                      </tr>\r\n                      <!--end preference-->\r\n                      <tr>\r\n                        <td height=\"10\"></td>\r\n                      </tr>\r\n                    </tbody></table>\r\n                  </td>\r\n                </tr>\r\n              </tbody></table>\r\n            </td>\r\n          </tr>\r\n        </tbody></table>\r\n      </td>\r\n    </tr>\r\n    <tr>\r\n      <td height=\"60\"></td>\r\n    </tr>\r\n  </tbody></table>', 'hi {{fullname}} ({{username}}), {{message}}', 'ViserAdmin', 'cba352', '', '{\"name\":\"php\"}', '{\"name\":\"nexmo\",\"clickatell\":{\"api_key\":\"----------------\"},\"infobip\":{\"username\":\"------------8888888\",\"password\":\"-----------------\"},\"message_bird\":{\"api_key\":\"-------------------\"},\"nexmo\":{\"api_key\":\"----------------------\",\"api_secret\":\"----------------------\"},\"sms_broadcast\":{\"username\":\"----------------------\",\"password\":\"-----------------------------\"},\"twilio\":{\"account_sid\":\"-----------------------\",\"auth_token\":\"---------------------------\",\"from\":\"----------------------\"},\"text_magic\":{\"username\":\"-----------------------\",\"apiv2_key\":\"-------------------------------\"},\"custom\":{\"method\":\"get\",\"url\":\"https:\\/\\/hostname\\/demo-api-v1\",\"headers\":{\"name\":[\"api_key\"],\"value\":[\"test_api 555\"]},\"body\":{\"name\":[\"from_number\"],\"value\":[\"5657545757\"]}}}', '{\n    \"site_name\":\"Name of your site\",\n    \"site_currency\":\"Currency of your site\",\n    \"currency_symbol\":\"Symbol of currency\"\n}', 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 'metro_hyip', '{\"version\":\"5.0\",\"details\":\"\"}', 0, 1, 0, 0, 5.00, 0, 0, NULL, 'Notification', 0, NULL, '2024-08-13 14:30:06', 0, 5.00000000, 1.00, 0, 0, 0, 0, 5.00000000, 10.00000000, 0, 0, 1, NULL, '2024-08-13 18:30:06');

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

--
-- Table structure for table `holidays`
--

CREATE TABLE `holidays` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date` date DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `invests`
--

CREATE TABLE `invests` (
  `id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT '0',
  `plan_id` int(10) UNSIGNED DEFAULT '0',
  `amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `initial_amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `interest` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `initial_interest` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `net_interest` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `should_pay` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `paid` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `period` int(11) DEFAULT '0',
  `hours` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  `time_name` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  `return_rec_time` int(11) NOT NULL DEFAULT '0',
  `next_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `last_time` timestamp NULL DEFAULT NULL,
  `compound_times` int(11) NOT NULL DEFAULT '0',
  `rem_compound_times` int(11) NOT NULL DEFAULT '0',
  `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0: Closed\r\n1: Running\r\n2: Canceled\r\n3: Pending\r\n4: Awaiting Payment',
  `capital_status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 = YES & 0 = NO',
  `capital_back` tinyint(1) NOT NULL DEFAULT '0',
  `hold_capital` tinyint(1) NOT NULL DEFAULT '0',
  `trx` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `wallet_type` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `languages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `code` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: not default language, 1: default language',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `languages` (`id`, `name`, `code`, `is_default`, `created_at`, `updated_at`) VALUES
(1, 'English', 'en', 1, '2020-07-06 03:47:55', '2022-04-09 03:47:04');

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

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

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

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

--
-- Table structure for table `notification_logs`
--

CREATE TABLE `notification_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `sender` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sent_from` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sent_to` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message` text COLLATE utf8mb4_unicode_ci,
  `notification_type` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `notification_templates`
--

CREATE TABLE `notification_templates` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `act` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subj` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_body` text COLLATE utf8mb4_unicode_ci,
  `sms_body` text COLLATE utf8mb4_unicode_ci,
  `shortcodes` text COLLATE utf8mb4_unicode_ci,
  `email_status` tinyint(1) NOT NULL DEFAULT '1',
  `sms_status` tinyint(1) NOT NULL DEFAULT '1',
  `firebase_status` tinyint(1) NOT NULL DEFAULT '0',
  `firebase_body` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `notification_templates`
--

INSERT INTO `notification_templates` (`id`, `act`, `name`, `subj`, `email_body`, `sms_body`, `shortcodes`, `email_status`, `sms_status`, `firebase_status`, `firebase_body`, `created_at`, `updated_at`) VALUES
(1, 'BAL_ADD', 'Balance - Added', 'Your Account has been Credited', '<div><div style=\"font-family: Montserrat, sans-serif;\">{{amount}} {{site_currency}} has been added to your account .</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><span style=\"color: rgb(33, 37, 41); font-family: Montserrat, sans-serif;\">Your Current Balance is :&nbsp;</span><font style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">{{post_balance}}&nbsp; {{site_currency}}&nbsp;</span></font><br></div><div><font style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></font></div><div>Admin note:&nbsp;<span style=\"color: rgb(33, 37, 41); font-size: 12px; font-weight: 600; white-space: nowrap; text-align: var(--bs-body-text-align);\">{{remark}}</span></div>', '{{amount}} {{site_currency}} credited in your account. Your Current Balance {{post_balance}} {{site_currency}} . Transaction: #{{trx}}. Admin note is \"{{remark}}\"', '{\"trx\":\"Transaction number for the action\",\"amount\":\"Amount inserted by the admin\",\"remark\":\"Remark inserted by the admin\",\"post_balance\":\"Balance of the user after this transaction\"}', 1, 0, 0, NULL, '2021-11-03 12:00:00', '2022-04-03 02:18:28'),
(2, 'BAL_SUB', 'Balance - Subtracted', 'Your Account has been Debited', '<div style=\"font-family: Montserrat, sans-serif;\">{{amount}} {{site_currency}} has been subtracted from your account .</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><span style=\"color: rgb(33, 37, 41); font-family: Montserrat, sans-serif;\">Your Current Balance is :&nbsp;</span><font style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">{{post_balance}}&nbsp; {{site_currency}}</span></font><br><div><font style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></font></div><div>Admin Note: {{remark}}</div>', '{{amount}} {{site_currency}} debited from your account. Your Current Balance {{post_balance}} {{site_currency}} . Transaction: #{{trx}}. Admin Note is {{remark}}', '{\"trx\":\"Transaction number for the action\",\"amount\":\"Amount inserted by the admin\",\"remark\":\"Remark inserted by the admin\",\"post_balance\":\"Balance of the user after this transaction\"}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-04-03 02:24:11'),
(3, 'DEPOSIT_COMPLETE', 'Deposit - Automated - Successful', 'Deposit Completed Successfully', '<div>Your deposit of&nbsp;<span style=\"font-weight: bolder;\">{{amount}} {{site_currency}}</span>&nbsp;is via&nbsp;&nbsp;<span style=\"font-weight: bolder;\">{{method_name}}&nbsp;</span>has been completed Successfully.<span style=\"font-weight: bolder;\"><br></span></div><div><span style=\"font-weight: bolder;\"><br></span></div><div><span style=\"font-weight: bolder;\">Details of your Deposit :<br></span></div><div><br></div><div>Amount : {{amount}} {{site_currency}}</div><div>Charge:&nbsp;<font color=\"#000000\">{{charge}} {{site_currency}}</font></div><div><br></div><div>Conversion Rate : 1 {{site_currency}} = {{rate}} {{method_currency}}</div><div>Received : {{method_amount}} {{method_currency}}<br></div><div>Paid via :&nbsp; {{method_name}}</div><div><br></div><div>Transaction Number : {{trx}}</div><div><font size=\"5\"><span style=\"font-weight: bolder;\"><br></span></font></div><div><font size=\"5\">Your current Balance is&nbsp;<span style=\"font-weight: bolder;\">{{post_balance}} {{site_currency}}</span></font></div><div><br style=\"font-family: Montserrat, sans-serif;\"></div>', '{{amount}} {{site_currency}} Deposit successfully by {{method_name}}', '{\"trx\":\"Transaction number for the deposit\",\"amount\":\"Amount inserted by the user\",\"charge\":\"Gateway charge set by the admin\",\"rate\":\"Conversion rate between base currency and method currency\",\"method_name\":\"Name of the deposit method\",\"method_currency\":\"Currency of the deposit method\",\"method_amount\":\"Amount after conversion between base currency and method currency\",\"post_balance\":\"Balance of the user after this transaction\"}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-04-03 02:25:43'),
(4, 'DEPOSIT_APPROVE', 'Deposit - Manual - Approved', 'Your Deposit is Approved', '<div style=\"font-family: Montserrat, sans-serif;\">Your deposit request of&nbsp;<span style=\"font-weight: bolder;\">{{amount}} {{site_currency}}</span>&nbsp;is via&nbsp;&nbsp;<span style=\"font-weight: bolder;\">{{method_name}}&nbsp;</span>is Approved .<span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">Details of your Deposit :<br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Amount : {{amount}} {{site_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">Charge:&nbsp;<font color=\"#FF0000\">{{charge}} {{site_currency}}</font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Conversion Rate : 1 {{site_currency}} = {{rate}} {{method_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">Received : {{method_amount}} {{method_currency}}<br></div><div style=\"font-family: Montserrat, sans-serif;\">Paid via :&nbsp; {{method_name}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\"><span style=\"font-weight: bolder;\"><br></span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\">Your current Balance is&nbsp;<span style=\"font-weight: bolder;\">{{post_balance}} {{site_currency}}</span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div>', 'Admin Approve Your {{amount}} {{site_currency}} payment request by {{method_name}} transaction : {{trx}}', '{\"trx\":\"Transaction number for the deposit\",\"amount\":\"Amount inserted by the user\",\"charge\":\"Gateway charge set by the admin\",\"rate\":\"Conversion rate between base currency and method currency\",\"method_name\":\"Name of the deposit method\",\"method_currency\":\"Currency of the deposit method\",\"method_amount\":\"Amount after conversion between base currency and method currency\",\"post_balance\":\"Balance of the user after this transaction\"}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-04-03 02:26:07'),
(5, 'DEPOSIT_REJECT', 'Deposit - Manual - Rejected', 'Your Deposit Request is Rejected', '<div style=\"font-family: Montserrat, sans-serif;\">Your deposit request of&nbsp;<span style=\"font-weight: bolder;\">{{amount}} {{site_currency}}</span>&nbsp;is via&nbsp;&nbsp;<span style=\"font-weight: bolder;\">{{method_name}} has been rejected</span>.<span style=\"font-weight: bolder;\"><br></span></div><div><br></div><div><br></div><div style=\"font-family: Montserrat, sans-serif;\">Conversion Rate : 1 {{site_currency}} = {{rate}} {{method_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">Received : {{method_amount}} {{method_currency}}<br></div><div style=\"font-family: Montserrat, sans-serif;\">Paid via :&nbsp; {{method_name}}</div><div style=\"font-family: Montserrat, sans-serif;\">Charge: {{charge}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number was : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">if you have any queries, feel free to contact us.<br></div><br style=\"font-family: Montserrat, sans-serif;\"><div style=\"font-family: Montserrat, sans-serif;\"><br><br></div><span style=\"color: rgb(33, 37, 41); font-family: Montserrat, sans-serif;\">{{rejection_message}}</span><br>', 'Admin Rejected Your {{amount}} {{site_currency}} payment request by {{method_name}}\r\n\r\n{{rejection_message}}', '{\"trx\":\"Transaction number for the deposit\",\"amount\":\"Amount inserted by the user\",\"charge\":\"Gateway charge set by the admin\",\"rate\":\"Conversion rate between base currency and method currency\",\"method_name\":\"Name of the deposit method\",\"method_currency\":\"Currency of the deposit method\",\"method_amount\":\"Amount after conversion between base currency and method currency\",\"rejection_message\":\"Rejection message by the admin\"}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-04-05 03:45:27'),
(6, 'DEPOSIT_REQUEST', 'Deposit - Manual - Requested', 'Deposit Request Submitted Successfully', '<div>Your deposit request of&nbsp;<span style=\"font-weight: bolder;\">{{amount}} {{site_currency}}</span>&nbsp;is via&nbsp;&nbsp;<span style=\"font-weight: bolder;\">{{method_name}}&nbsp;</span>submitted successfully<span style=\"font-weight: bolder;\">&nbsp;.<br></span></div><div><span style=\"font-weight: bolder;\"><br></span></div><div><span style=\"font-weight: bolder;\">Details of your Deposit :<br></span></div><div><br></div><div>Amount : {{amount}} {{site_currency}}</div><div>Charge:&nbsp;<font color=\"#FF0000\">{{charge}} {{site_currency}}</font></div><div><br></div><div>Conversion Rate : 1 {{site_currency}} = {{rate}} {{method_currency}}</div><div>Payable : {{method_amount}} {{method_currency}}<br></div><div>Pay via :&nbsp; {{method_name}}</div><div><br></div><div>Transaction Number : {{trx}}</div><div><br></div><div><br style=\"font-family: Montserrat, sans-serif;\"></div>', '{{amount}} {{site_currency}} Deposit requested by {{method_name}}. Charge: {{charge}} . Trx: {{trx}}', '{\"trx\":\"Transaction number for the deposit\",\"amount\":\"Amount inserted by the user\",\"charge\":\"Gateway charge set by the admin\",\"rate\":\"Conversion rate between base currency and method currency\",\"method_name\":\"Name of the deposit method\",\"method_currency\":\"Currency of the deposit method\",\"method_amount\":\"Amount after conversion between base currency and method currency\"}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-04-03 02:29:19'),
(7, 'PASS_RESET_CODE', 'Password - Reset - Code', 'Password Reset', '<div style=\"font-family: Montserrat, sans-serif;\">We have received a request to reset the password for your account on&nbsp;<span style=\"font-weight: bolder;\">{{time}} .<br></span></div><div style=\"font-family: Montserrat, sans-serif;\">Requested From IP:&nbsp;<span style=\"font-weight: bolder;\">{{ip}}</span>&nbsp;using&nbsp;<span style=\"font-weight: bolder;\">{{browser}}</span>&nbsp;on&nbsp;<span style=\"font-weight: bolder;\">{{operating_system}}&nbsp;</span>.</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><br style=\"font-family: Montserrat, sans-serif;\"><div style=\"font-family: Montserrat, sans-serif;\"><div>Your account recovery code is:&nbsp;&nbsp;&nbsp;<font size=\"6\"><span style=\"font-weight: bolder;\">{{code}}</span></font></div><div><br></div></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"4\" color=\"#CC0000\">If you do not wish to reset your password, please disregard this message.&nbsp;</font><br></div><div><font size=\"4\" color=\"#CC0000\"><br></font></div>', 'Your account recovery code is: {{code}}', '{\"code\":\"Verification code for password reset\",\"ip\":\"IP address of the user\",\"browser\":\"Browser of the user\",\"operating_system\":\"Operating system of the user\",\"time\":\"Time of the request\"}', 1, 0, 0, NULL, '2021-11-03 12:00:00', '2022-03-20 20:47:05'),
(8, 'PASS_RESET_DONE', 'Password - Reset - Confirmation', 'You have reset your password', '<p style=\"font-family: Montserrat, sans-serif;\">You have successfully reset your password.</p><p style=\"font-family: Montserrat, sans-serif;\">You changed from&nbsp; IP:&nbsp;<span style=\"font-weight: bolder;\">{{ip}}</span>&nbsp;using&nbsp;<span style=\"font-weight: bolder;\">{{browser}}</span>&nbsp;on&nbsp;<span style=\"font-weight: bolder;\">{{operating_system}}&nbsp;</span>&nbsp;on&nbsp;<span style=\"font-weight: bolder;\">{{time}}</span></p><p style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></p><p style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><font color=\"#ff0000\">If you did not change that, please contact us as soon as possible.</font></span></p>', 'Your password has been changed successfully', '{\"ip\":\"IP address of the user\",\"browser\":\"Browser of the user\",\"operating_system\":\"Operating system of the user\",\"time\":\"Time of the request\"}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-04-05 03:46:35'),
(9, 'ADMIN_SUPPORT_REPLY', 'Support - Reply', 'Reply Support Ticket', '<div><p><span data-mce-style=\"font-size: 11pt;\" style=\"font-size: 11pt;\"><span style=\"font-weight: bolder;\">A member from our support team has replied to the following ticket:</span></span></p><p><span style=\"font-weight: bolder;\"><span data-mce-style=\"font-size: 11pt;\" style=\"font-size: 11pt;\"><span style=\"font-weight: bolder;\"><br></span></span></span></p><p><span style=\"font-weight: bolder;\">[Ticket#{{ticket_id}}] {{ticket_subject}}<br><br>Click here to reply:&nbsp; {{link}}</span></p><p>----------------------------------------------</p><p>Here is the reply :<br></p><p>{{reply}}<br></p></div><div><br style=\"font-family: Montserrat, sans-serif;\"></div>', 'Your Ticket#{{ticket_id}} :  {{ticket_subject}} has been replied.', '{\"ticket_id\":\"ID of the support ticket\",\"ticket_subject\":\"Subject  of the support ticket\",\"reply\":\"Reply made by the admin\",\"link\":\"URL to view the support ticket\"}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-03-20 20:47:51'),
(10, 'EVER_CODE', 'Verification - Email', 'Please verify your email address', '<br><div><div style=\"font-family: Montserrat, sans-serif;\">Thanks For joining us.<br></div><div style=\"font-family: Montserrat, sans-serif;\">Please use the below code to verify your email address.<br></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Your email verification code is:<font size=\"6\"><span style=\"font-weight: bolder;\">&nbsp;{{code}}</span></font></div></div>', '---', '{\"code\":\"Email verification code\"}', 1, 0, 0, NULL, '2021-11-03 12:00:00', '2022-04-03 02:32:07'),
(11, 'SVER_CODE', 'Verification - SMS', 'Verify Your Mobile Number', '---', 'Your phone verification code is: {{code}}', '{\"code\":\"SMS Verification Code\"}', 0, 1, 0, NULL, '2021-11-03 12:00:00', '2022-03-20 19:24:37'),
(12, 'WITHDRAW_APPROVE', 'Withdraw - Approved', 'Withdraw Request has been Processed and your money is sent', '<div style=\"font-family: Montserrat, sans-serif;\">Your withdraw request of&nbsp;<span style=\"font-weight: bolder;\">{{amount}} {{site_currency}}</span>&nbsp; via&nbsp;&nbsp;<span style=\"font-weight: bolder;\">{{method_name}}&nbsp;</span>has been Processed Successfully.<span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">Details of your withdraw:<br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Amount : {{amount}} {{site_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">Charge:&nbsp;<font color=\"#FF0000\">{{charge}} {{site_currency}}</font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Conversion Rate : 1 {{site_currency}} = {{rate}} {{method_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">You will get: {{method_amount}} {{method_currency}}<br></div><div style=\"font-family: Montserrat, sans-serif;\">Via :&nbsp; {{method_name}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">-----</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"4\">Details of Processed Payment :</font></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"4\"><span style=\"font-weight: bolder;\">{{admin_details}}</span></font></div>', 'Admin Approve Your {{amount}} {{site_currency}} withdraw request by {{method_name}}. Transaction {{trx}}', '{\"trx\":\"Transaction number for the withdraw\",\"amount\":\"Amount requested by the user\",\"charge\":\"Gateway charge set by the admin\",\"rate\":\"Conversion rate between base currency and method currency\",\"method_name\":\"Name of the withdraw method\",\"method_currency\":\"Currency of the withdraw method\",\"method_amount\":\"Amount after conversion between base currency and method currency\",\"admin_details\":\"Details provided by the admin\"}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-03-20 20:50:16'),
(13, 'WITHDRAW_REJECT', 'Withdraw - Rejected', 'Withdraw Request has been Rejected and your money is refunded to your account', '<div style=\"font-family: Montserrat, sans-serif;\">Your withdraw request of&nbsp;<span style=\"font-weight: bolder;\">{{amount}} {{site_currency}}</span>&nbsp; via&nbsp;&nbsp;<span style=\"font-weight: bolder;\">{{method_name}}&nbsp;</span>has been Rejected.<span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">Details of your withdraw:<br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Amount : {{amount}} {{site_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">Charge:&nbsp;<font color=\"#FF0000\">{{charge}} {{site_currency}}</font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Conversion Rate : 1 {{site_currency}} = {{rate}} {{method_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">You should get: {{method_amount}} {{method_currency}}<br></div><div style=\"font-family: Montserrat, sans-serif;\">Via :&nbsp; {{method_name}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">----</div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"3\"><br></font></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"3\">{{amount}} {{currency}} has been&nbsp;<span style=\"font-weight: bolder;\">refunded&nbsp;</span>to your account and your current Balance is&nbsp;<span style=\"font-weight: bolder;\">{{post_balance}}</span><span style=\"font-weight: bolder;\">&nbsp;{{site_currency}}</span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">-----</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"4\">Details of Rejection :</font></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"4\"><span style=\"font-weight: bolder;\">{{admin_details}}</span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><br><br><br><br><br></div><div></div><div></div>', 'Admin Rejected Your {{amount}} {{site_currency}} withdraw request. Your Main Balance {{post_balance}}  {{method_name}} , Transaction {{trx}}', '{\"trx\":\"Transaction number for the withdraw\",\"amount\":\"Amount requested by the user\",\"charge\":\"Gateway charge set by the admin\",\"rate\":\"Conversion rate between base currency and method currency\",\"method_name\":\"Name of the withdraw method\",\"method_currency\":\"Currency of the withdraw method\",\"method_amount\":\"Amount after conversion between base currency and method currency\",\"post_balance\":\"Balance of the user after fter this action\",\"admin_details\":\"Rejection message by the admin\"}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-03-20 20:57:46'),
(14, 'WITHDRAW_REQUEST', 'Withdraw - Requested', 'Withdraw Request Submitted Successfully', '<div style=\"font-family: Montserrat, sans-serif;\">Your withdraw request of&nbsp;<span style=\"font-weight: bolder;\">{{amount}} {{site_currency}}</span>&nbsp; via&nbsp;&nbsp;<span style=\"font-weight: bolder;\">{{method_name}}&nbsp;</span>has been submitted Successfully.<span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">Details of your withdraw:<br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Amount : {{amount}} {{site_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">Charge:&nbsp;<font color=\"#FF0000\">{{charge}} {{site_currency}}</font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Conversion Rate : 1 {{site_currency}} = {{rate}} {{method_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">You will get: {{method_amount}} {{method_currency}}<br></div><div style=\"font-family: Montserrat, sans-serif;\">Via :&nbsp; {{method_name}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\">Your current Balance is&nbsp;<span style=\"font-weight: bolder;\">{{post_balance}} {{site_currency}}</span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><br><br><br></div>', '{{amount}} {{site_currency}} withdraw requested by {{method_name}}. You will get {{method_amount}} {{method_currency}} Trx: {{trx}}', '{\"trx\":\"Transaction number for the withdraw\",\"amount\":\"Amount requested by the user\",\"charge\":\"Gateway charge set by the admin\",\"rate\":\"Conversion rate between base currency and method currency\",\"method_name\":\"Name of the withdraw method\",\"method_currency\":\"Currency of the withdraw method\",\"method_amount\":\"Amount after conversion between base currency and method currency\",\"post_balance\":\"Balance of the user after fter this transaction\"}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-03-21 04:39:03'),
(15, 'DEFAULT', 'Default Template', '{{subject}}', '{{message}}', '{{message}}', '{\"subject\":\"Subject\",\"message\":\"Message\"}', 1, 1, 0, NULL, '2019-09-14 13:14:22', '2021-11-04 09:38:55'),
(16, 'KYC_APPROVE', 'KYC Approved', 'KYC has been approved', NULL, NULL, '[]', 1, 1, 0, NULL, NULL, NULL),
(17, 'KYC_REJECT', 'KYC Rejected Successfully', 'KYC has been rejected', NULL, NULL, '[]', 1, 1, 0, NULL, NULL, NULL),
(18, 'INTEREST', 'Interest', 'Interest added to your balance', '<div style=\"font-family: Montserrat, sans-serif;\">You got&nbsp;<span style=\"font-size: 1rem; text-align: var(--bs-body-text-align); font-weight: bolder;\">{{amount}} {{site_currency}}</span><span style=\"color: rgb(33, 37, 41); font-size: 1rem; text-align: var(--bs-body-text-align);\">&nbsp;interest.</span></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">Details of your Interest:</span></div><div style=\"font-family: Montserrat, sans-serif;\">Amount : {{amount}} {{site_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">Plan Name: {{plan_name}}</div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\"><span style=\"font-weight: bolder;\"><br></span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\">Your current Balance is&nbsp;<span style=\"font-weight: bolder;\">{{post_balance}} {{site_currency}}</span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div>', 'You got {{amount}} {{site_currency}} interest. Plan: {{plan_name}}. Trx: {{trx}}', '{\r\n    \"trx\": \"Transaction number for the interest\",\r\n    \"amount\": \"Amount inserted by the user\",\r\n    \"plan_name\": \"Plan name\",\r\n    \"post_balance\": \"Balance of the user after this transaction\"\r\n}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-09-22 06:43:09'),
(19, 'INVESTMENT', 'Investment', 'Investment successfully completed', '<div style=\"font-family: Montserrat, sans-serif;\">Your&nbsp;<span style=\"font-weight: bolder;\">{{amount}} {{site_currency}}</span>&nbsp;investment successfully completed.<span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">Details of your Investment:</span></div><div style=\"font-family: Montserrat, sans-serif;\">Amount : {{amount}} {{site_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"color: rgb(33, 37, 41);\">Wallet type: {{wallet_type}}</span><br></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"color: rgb(33, 37, 41);\">Plan name: {{plan_name}}</span><br></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"color: rgb(33, 37, 41);\">Interest: {{interest_amount}} {{site_currency}}</span></div><div style=\"font-family: Montserrat, sans-serif;\">Duration: {{time}}</div><div style=\"font-family: Montserrat, sans-serif;\">Every {{time_name}}</div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\"><span style=\"font-weight: bolder;\"><br></span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\">Your current Balance is&nbsp;<span style=\"font-weight: bolder;\">{{post_balance}} {{site_currency}}</span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div>', 'Your {{amount}} {{site_currency}} investment successfully completed. Plan name: {{plan_name}}. Trx: {{trx}}', '{\r\n    \"trx\": \"Transaction number for the interest\",\r\n    \"amount\": \"Amount inserted by the user\",\r\n    \"plan_name\": \"Plan name\",\r\n    \"interest_amount\": \"Interest amount\",\r\n    \"time\": \"Plan duration\",\r\n    \"time_name\": \"Interest duration\",\r\n    \"wallet_type\": \"Invest wallet\",\r\n    \"post_balance\": \"Balance of the user after this transaction\"\r\n}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-09-22 06:26:23'),
(20, 'REFERRAL_COMMISSION', 'Referral Commission', 'Referral Commission', '<div style=\"font-family: Montserrat, sans-serif;\">You got&nbsp;<span style=\"font-weight: bolder;\">{{amount}} {{site_currency}}</span>&nbsp;referral commission.</div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">Details of your referral commission:</span></div><div style=\"font-family: Montserrat, sans-serif;\">Amount : {{amount}} {{site_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">{{type}} referral commission</div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"color: rgb(33, 37, 41);\">Transaction Number : {{trx}}</span><br></div><div style=\"font-family: Montserrat, sans-serif;\">{{level}} level referral commission.</div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\"><span style=\"font-weight: bolder;\"><br></span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\">Your current Balance is&nbsp;<span style=\"font-weight: bolder;\">{{post_balance}} {{site_currency}}</span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div>', 'Your got {{amount}} {{site_currency}} referral commission from {{ref_username}}.', '{\r\n    \"trx\": \"Transaction number for the interest\",\r\n    \"amount\": \"Amount inserted by the user\",\r\n    \"plan_name\": \"Plan name\",\r\n    \"level\": \"Which level referral commission\",\r\n    \"post_balance\": \"Balance of the user after this transaction\"\r\n}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-09-22 03:43:49'),
(21, 'REFERRAL_JOIN', 'Referral Join', 'Referral Join', '<div style=\"font-family: Montserrat, sans-serif;\">@{{ref_username}} has been joined by your referral link.</div>', '{{ref_user_name}} ({{ref_username}}) has been joined by your referral link.', '{\r\n    \"ref_user_name\": \"Referral user full name\",\r\n    \"ref_username\": \"Referral user username\"\r\n}', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-09-22 05:05:46'),
(22, 'BALANCE_TRANSFER', 'Balance Transfer', 'Balance Transfer', '<div style=\"font-family: Montserrat, sans-serif;\">Your&nbsp;<span style=\"font-weight: bolder;\">{{amount}} {{site_currency}}</span>&nbsp;transferred successfully.<span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">Details of your Transfer:</span></div><div style=\"font-family: Montserrat, sans-serif;\">Amount : {{amount}} {{site_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">Charge:&nbsp;<font color=\"#FF0000\">{{charge}} {{site_currency}}</font></div><div style=\"\"><font face=\"Montserrat, sans-serif\">Wallet type: {{wallet_type}}</font></div><div style=\"\"><font face=\"Montserrat, sans-serif\">Transfer to: {{user_fullname}} (</font><span style=\"color: rgb(33, 37, 41); font-family: Montserrat, sans-serif; font-size: 1rem; text-align: var(--bs-body-text-align);\">{{username}})</span></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\"><span style=\"font-weight: bolder;\"><br></span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\">Your current Balance is&nbsp;<span style=\"font-weight: bolder;\">{{post_balance}} {{site_currency}}</span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div>', 'Your {{amount}} {{site_currency}} transferred successfully. Transfer to: {{user_fullname}} ({{username}})', '{\r\n{\r\n    \"trx\": \"Transaction number for the interest\",\r\n    \"amount\": \"Amount inserted by the user\",\r\n    \"wallet_type\": \"Wallet type\",\r\n    \"charge\": \"Charge amount\",\r\n    \"user_fullname\": \"Transfer user full name\",\r\n    \"username\": \"Transfer user username\",\r\n    \"post_balance\": \"Balance of the user after this transaction\"\r\n}\r\n    \"amount\": \"Amount inserted by the user\",\r\n    \"charge\": \"Charge amount\",\r\n    \"user_fullname\": \"Transfer user full name\",\r\n    \"username\": \"Transfer user username\",\r\n    \"post_balance\": \"Balance of the user after this transaction\"\r\n}\r\n', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-09-22 05:09:03'),
(23, 'BALANCE_RECEIVE', 'Balance Receive', 'Balance Receive', '<div style=\"font-family: Montserrat, sans-serif;\">You received&nbsp;<span style=\"font-weight: bolder;\">{{amount}} {{site_currency}}</span>&nbsp;from {{sender}}.<span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></div><div style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">Details of your Received Money:</span></div><div style=\"font-family: Montserrat, sans-serif;\">Amount : {{amount}} {{site_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">Wallet_type: {{wallet_type}}</div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\"><span style=\"font-weight: bolder;\"><br></span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"5\">Your current Balance is&nbsp;<span style=\"font-weight: bolder;\">{{post_balance}} {{site_currency}}</span></font></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div>', 'Your {{amount}} {{site_currency}} transferred successfully. Transfer to: {{user_fullname}} ({{username}})', '{\r\n    \"trx\": \"Transaction number for the interest\",\r\n    \"amount\": \"Amount inserted by the user\",\r\n    \"sender\": \"Sender username\",\r\n    \"wallet_type\": \"Wallet type\",\r\n    \"post_balance\": \"Balance of the user after this transaction\"\r\n}\r\n', 1, 1, 0, NULL, '2021-11-03 12:00:00', '2022-09-20 09:03:25'),
(24, 'INSUFFICIENT_BALANCE', 'Schedule Investment Failed', 'Schedule Investment Failed', '<div style=\"font-family: Montserrat, sans-serif;\">Your scheduled investment failed due to insufficient balance.</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Details of your scheduled investment.</div><div style=\"font-family: Montserrat, sans-serif;\">Invest Amount: {{invest_amount}} {{site_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">Wallet: {{wallet}}</div><div style=\"font-family: Montserrat, sans-serif;\">Plan Name: {{plan_name}}</div><div style=\"font-family: Montserrat, sans-serif;\">Your Balance: {{balance}} {{site_currency}}</div><div style=\"font-family: Montserrat, sans-serif;\">Next Schedule: {{next_schedule}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Please keep your balance for the next scheduled date.</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div>', 'Your scheduled investment failed due to insufficient balance.', '{\r\n    \"invest_amount\": \"Invest amount\",\r\n    \"wallet\": \"Wallet type\",\r\n    \"plan_name\": \"Plan name\",\r\n    \"balance\": \"User balance\",\r\n    \"next_schedule\": \"Next invest schedule\"\r\n}', 1, 0, 0, 'Your scheduled investment failed due to insufficient balance.', '2021-11-03 12:00:00', '2023-06-21 03:13:36');

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

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

CREATE TABLE `pages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tempname` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'template name',
  `secs` text COLLATE utf8mb4_unicode_ci,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `pages` (`id`, `name`, `slug`, `tempname`, `secs`, `is_default`, `created_at`, `updated_at`) VALUES
(1, 'HOME', '/', 'templates.bit_gold.', '[\"about\",\"plan\",\"why_choose\",\"calculation\",\"how_work\",\"faq\",\"testimonial\",\"team\",\"transaction\",\"top_investor\",\"cta\",\"we_accept\",\"ranking\",\"blog\",\"subscribe\"]', 1, '2020-07-11 06:23:58', '2023-06-21 06:27:07'),
(4, 'Blog', 'blogs', 'templates.bit_gold.', NULL, 1, '2020-10-22 01:14:43', '2022-09-10 04:36:20'),
(5, 'Contact', 'contact', 'templates.bit_gold.', NULL, 1, '2020-10-22 01:14:53', '2020-10-22 01:14:53'),
(19, 'Plans', 'plans', 'templates.bit_gold.', NULL, 1, '2022-05-18 09:37:02', '2022-05-18 09:38:21'),
(20, 'Home', '/', 'templates.neo_dark.', '[\"about\",\"faq\",\"why_choose\",\"plan\",\"subscribe\",\"testimonial\",\"top_investor\",\"transaction\",\"calculation\",\"ranking\",\"how_work\",\"blog\"]', 1, '2022-06-06 08:34:19', '2023-06-21 06:22:47'),
(21, 'Plan', 'plans', 'templates.neo_dark.', NULL, 1, '2022-06-11 08:26:40', '2022-06-11 08:27:13'),
(22, 'About', 'about', 'templates.neo_dark.', '[\"how_work\",\"about\",\"counter\",\"team\",\"we_accept\"]', 0, '2022-06-11 08:55:56', '2022-06-11 09:06:05'),
(23, 'Blogs', 'blogs', 'templates.neo_dark.', NULL, 1, '2022-06-11 09:34:38', '2022-06-11 09:34:38'),
(24, 'About', 'about', 'templates.bit_gold.', '[\"how_work\",\"about\",\"faq\",\"cta\"]', 0, '2022-08-25 04:50:42', '2022-08-25 04:52:26'),
(25, 'Home', '/', 'templates.invester.', NULL, 1, '2022-09-20 07:12:38', '2022-09-20 07:13:53'),
(29, 'HOME', '/', 'templates.metro_hyip.', '[\"calculation\",\"about\",\"plan\",\"affiliate\",\"how_work\",\"faq\",\"transaction\",\"top_investor\",\"ranking\",\"blog\"]', 1, NULL, NULL),
(30, 'Blog', 'blogs', 'templates.metro_hyip.', NULL, 1, NULL, NULL),
(31, 'Contact', 'contact', 'templates.metro_hyip.', NULL, 1, NULL, NULL),
(32, 'Plans', 'plans', 'templates.metro_hyip.', NULL, 1, NULL, NULL);

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

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

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

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

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

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

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

--
-- Table structure for table `plans`
--

CREATE TABLE `plans` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `time_setting_id` int(11) NOT NULL DEFAULT '0',
  `name` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  `minimum` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `maximum` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `fixed_amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `interest` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `interest_type` tinyint(1) DEFAULT '0' COMMENT '1 = ''%'' / 0 =''currency''',
  `repeat_time` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lifetime` tinyint(1) DEFAULT '0',
  `capital_back` tinyint(1) DEFAULT '0',
  `compound_interest` tinyint(1) NOT NULL DEFAULT '0',
  `hold_capital` tinyint(1) NOT NULL DEFAULT '0',
  `featured` tinyint(1) NOT NULL DEFAULT '0',
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `plans`
--

INSERT INTO `plans` (`id`, `time_setting_id`, `name`, `minimum`, `maximum`, `fixed_amount`, `interest`, `interest_type`, `repeat_time`, `lifetime`, `capital_back`, `compound_interest`, `hold_capital`, `featured`, `status`, `created_at`, `updated_at`) VALUES
(1, 1, 'Basic Plan', 100.00000000, 999.00000000, 0.00000000, 10.00000000, 1, '1', 0, 1, 1, 1, 1, 1, '2024-01-30 23:16:50', '2024-01-30 23:16:50'),
(2, 1, 'Starter Plan', 1000.00000000, 4999.00000000, 0.00000000, 15.00000000, 1, '2', 0, 1, 1, 1, 1, 1, '2024-01-30 23:17:20', '2024-01-30 23:17:20'),
(3, 1, 'Plan2', 500.00000000, 99999.00000000, 0.00000000, 35.00000000, 1, '14', 0, 1, 1, 0, 1, 1, '2024-02-16 22:04:32', '2024-02-16 22:05:14');

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

--
-- Table structure for table `pools`
--

CREATE TABLE `pools` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `invested_amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `start_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `interest_range` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `share_interest` tinyint(4) NOT NULL DEFAULT '0',
  `interest` decimal(5,2) NOT NULL DEFAULT '0.00',
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `pool_invests`
--

CREATE TABLE `pool_invests` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `pool_id` int(10) UNSIGNED NOT NULL,
  `invest_amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1: Running\r\n2: Completed\r\n',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `promotion_tools`
--

CREATE TABLE `promotion_tools` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `banner` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `referrals`
--

CREATE TABLE `referrals` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `commission_type` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT '0',
  `percent` decimal(5,2) NOT NULL DEFAULT '0.00',
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `schedule_invests`
--

CREATE TABLE `schedule_invests` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `plan_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `wallet` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `schedule_times` int(11) NOT NULL DEFAULT '0',
  `rem_schedule_times` int(11) NOT NULL DEFAULT '0',
  `interval_hours` int(11) NOT NULL DEFAULT '0',
  `compound_times` int(11) NOT NULL DEFAULT '0',
  `next_invest` datetime DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `stakings`
--

CREATE TABLE `stakings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `days` int(11) NOT NULL,
  `interest_percent` decimal(5,2) NOT NULL DEFAULT '0.00',
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `staking_invests`
--

CREATE TABLE `staking_invests` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `staking_id` int(11) NOT NULL DEFAULT '0',
  `invest_amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `interest` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `end_at` datetime DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1: Running\r\n2: Completed',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

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

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

--
-- Table structure for table `support_attachments`
--

CREATE TABLE `support_attachments` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `support_message_id` int(10) UNSIGNED DEFAULT NULL,
  `attachment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `support_messages`
--

CREATE TABLE `support_messages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `support_ticket_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `admin_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `message` longtext COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `support_tickets`
--

CREATE TABLE `support_tickets` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT '0',
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ticket` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: Open, 1: Answered, 2: Replied, 3: Closed',
  `priority` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 = Low, 2 = medium, 3 = heigh',
  `last_reply` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `time_settings`
--

CREATE TABLE `time_settings` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0: Disable\r\n1: Enable',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `transactions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `invest_id` int(11) NOT NULL DEFAULT '0',
  `firstname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lastname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `username` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `age` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gender` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `charge` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `post_balance` decimal(28,8) DEFAULT '0.00000000',
  `trx_type` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trx` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `details` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remark` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `wallet_type` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT '1',
  `val_1` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `val_2` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trackid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `scam_date` date DEFAULT NULL,
  `scam_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `contact_method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `impersonation` tinyint(1) NOT NULL DEFAULT '0',
  `entity_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `abn_acn` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `scammer_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `scammer_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `scammer_website` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `scammer_phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `scammer_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `items_taken` text COLLATE utf8mb4_unicode_ci,
  `lawyer_case` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reportingFor` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `transactions`
--

INSERT INTO `transactions` (`id`, `user_id`, `invest_id`, `firstname`, `lastname`, `email`, `username`, `age`, `gender`, `amount`, `charge`, `post_balance`, `trx_type`, `trx`, `details`, `remark`, `wallet_type`, `status`, `val_1`, `val_2`, `trackid`, `created_at`, `updated_at`, `scam_date`, `scam_type`, `contact_method`, `description`, `impersonation`, `entity_name`, `abn_acn`, `scammer_name`, `scammer_email`, `scammer_website`, `scammer_phone`, `scammer_address`, `items_taken`, `lawyer_case`, `reportingFor`) VALUES
(10, 3, 0, 'Doris', 'Vasrani', 'streamingwealth60@gmail.com', 'determined', '64', 'Female', 0.00000000, 0.00000000, NULL, '-', 'TR7E4WW9MYHG', 'I, was a member of the Ocean Global Club since 03/09/24. I invested in 7 day return plans interest plus capital. From 03/09/24 to 07/01/2024 were all complete transactions with no delays. As of 06/17/24 they upgraded and began receiving emails daily on in', 'payment_link', 'deposit_wallet', 0, NULL, NULL, 'track', '2024-08-11 08:28:50', '2024-08-11 08:28:50', '2024-07-01', 'Investment scam', 'Social media', 'I, was a member of the Ocean Global Club since 03/09/24. I invested in 7 day return plans interest plus capital. From 03/09/24 to 07/01/2024 were all complete transactions with no delays. As of 06/17/24 they upgraded and began receiving emails daily on interest earned. Prior to that you had to login to your dashboard for you earnings totals. \r\nOn 07/01/24 I received an email stating I had a 1st Level commission in the amount of $30,528.00 plus my invested plan maturity of $8565.96.  I first contacted my upline for instruction and she told me to go to chat online and they will instruct me. I spoke with chat and was told I had to deposit the total of $39,093.96 in order to receive a token through EMAIL once I deposited and it would release my balance and the matched amount and this would be a one time activation because commission exceeded my account balance. I contacted my upline and asked if this was correct, she said yes. I gathered funds and wired. AFTER the deposit, they said I did not follow rules, because a email from ADMIN was sent first with a code, Ive shown proof and they just keep giving me the runaround. I asked to be sent the email again if they sent it. Their only recourse is that I deposit $39.093.96 again for token reactivation even though my history shows equal amounts in Deposit wallet and Account Balance. My account is frozen and the 3 people I had as a downline are frozen. I have screenshots and correspondence with them to no avail except deposit again.', 0, 'Ocean Global Club', NULL, NULL, 'support@oceanglobal.club', 'oceanglobal.club', NULL, 'Yes', 'Money,Personal information', 'No', 'Myself');

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

--
-- Table structure for table `update_logs`
--

CREATE TABLE `update_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `version` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `update_log` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `users` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `firstname` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lastname` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `username` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  `wallet` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_code` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mobile` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ref_by` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `deposit_wallet` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `interest_wallet` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `total_invests` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `team_invests` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `user_ranking_id` int(11) NOT NULL DEFAULT '0',
  `address` text COLLATE utf8mb4_unicode_ci COMMENT 'contains full address',
  `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0: banned, 1: active',
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `kyc_data` text COLLATE utf8mb4_unicode_ci,
  `kv` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: KYC Unverified, 2: KYC pending, 1: KYC verified',
  `ev` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: email unverified, 1: email verified',
  `sv` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: mobile unverified, 1: mobile verified',
  `profile_complete` tinyint(1) NOT NULL DEFAULT '0',
  `ver_code` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'stores verification code',
  `ver_code_send_at` datetime DEFAULT NULL COMMENT 'verification send time',
  `ts` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: 2fa off, 1: 2fa on',
  `tv` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0: 2fa unverified, 1: 2fa verified',
  `tsc` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ban_reason` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remember_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_rank_update` datetime DEFAULT NULL,
  `depo_ref_earn` int(11) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `lawyer_status` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `users` (`id`, `firstname`, `lastname`, `username`, `email`, `wallet`, `message`, `country_code`, `mobile`, `ref_by`, `deposit_wallet`, `interest_wallet`, `password`, `total_invests`, `team_invests`, `user_ranking_id`, `address`, `status`, `is_deleted`, `kyc_data`, `kv`, `ev`, `sv`, `profile_complete`, `ver_code`, `ver_code_send_at`, `ts`, `tv`, `tsc`, `ban_reason`, `remember_token`, `last_rank_update`, `depo_ref_earn`, `created_at`, `updated_at`, `lawyer_status`) VALUES
(3, 'Doris', 'Vasrani', 'determined', 'streamingwealth60@gmail.com', NULL, NULL, 'US', '14046412591', 0, 0.00000000, 0.00000000, '$2y$10$j3wwiYAUgX/dLf5B3C0dDeNsSB13XPPBPKKGFnMEesHwhC.uuJ3ym', 0.00000000, 0.00000000, 0, '{\"address\":\"\",\"state\":\"\",\"zip\":\"\",\"country\":\"United States\",\"city\":\"\"}', 1, 0, NULL, 1, 1, 1, 1, NULL, NULL, 0, 1, NULL, NULL, NULL, NULL, 0, '2024-08-11 08:28:50', '2024-08-11 08:28:50', 0);

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

--
-- Table structure for table `user_logins`
--

CREATE TABLE `user_logins` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `user_ip` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_code` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `longitude` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `latitude` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `browser` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `os` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `user_logins`
--

INSERT INTO `user_logins` (`id`, `user_id`, `user_ip`, `city`, `country`, `country_code`, `longitude`, `latitude`, `browser`, `os`, `created_at`, `updated_at`) VALUES
(1, 1, '105.113.107.47', 'Lagos', 'Nigeria', 'NG', '3.3903', '6.4474', 'Handheld Browser', 'Android', '2024-07-31 02:50:24', '2024-07-31 02:50:24'),
(2, 1, '105.113.107.47', 'Lagos', 'Nigeria', 'NG', '3.3903', '6.4474', 'Chrome', 'Windows 10', '2024-07-31 05:55:35', '2024-07-31 05:55:35'),
(3, 2, '149.18.24.229', 'Washington', 'United States', 'US', '-77.0365', '38.894', 'Chrome', 'Mac OS X', '2024-07-31 08:53:00', '2024-07-31 08:53:00'),
(4, 2, '149.18.24.229', 'Washington', 'United States', 'US', '-77.0365', '38.894', 'Firefox', 'Mac OS X', '2024-07-31 08:54:01', '2024-07-31 08:54:01');

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

--
-- Table structure for table `user_rankings`
--

CREATE TABLE `user_rankings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `level` int(11) DEFAULT '0',
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `minimum_invest` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `min_referral_invest` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `min_referral` int(11) NOT NULL DEFAULT '0',
  `bonus` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `status` tinyint(4) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `withdrawals`
--

CREATE TABLE `withdrawals` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `method_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `currency` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `rate` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `charge` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `trx` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `final_amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `after_charge` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `withdraw_information` text COLLATE utf8mb4_unicode_ci,
  `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1=>success, 2=>pending, 3=>cancel,  ',
  `admin_feedback` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `withdraw_methods`
--

CREATE TABLE `withdraw_methods` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `form_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `min_limit` decimal(28,8) DEFAULT '0.00000000',
  `max_limit` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `fixed_charge` decimal(28,8) DEFAULT '0.00000000',
  `rate` decimal(28,8) DEFAULT '0.00000000',
  `percent_charge` decimal(5,2) DEFAULT '0.00',
  `currency` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `withdraw_methods`
--

INSERT INTO `withdraw_methods` (`id`, `form_id`, `name`, `min_limit`, `max_limit`, `fixed_charge`, `rate`, `percent_charge`, `currency`, `description`, `status`, `created_at`, `updated_at`) VALUES
(1, 3, 'Bitcoin', 100.00000000, 1000000000.00000000, 0.00000000, 1.00000000, 0.00, '$', 'Provide Address', 1, '2024-02-16 19:55:57', '2024-02-16 19:55:57');

--
-- Indexes for dumped tables
--

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- AUTO_INCREMENT for dumped tables
--

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- AUTO_INCREMENT for table `invests`
--
ALTER TABLE `invests`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- AUTO_INCREMENT for table `time_settings`
--
ALTER TABLE `time_settings`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

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

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

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

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

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

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

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

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