sql stringlengths 6 1.05M |
|---|
<reponame>piovezan/SOpt
INSERT INTO contatos (cod, nome)
SELECT (SELECT MAX(cod) FROM contatos) + cod, nome FROM fornecedores;
--https://pt.stackoverflow.com/q/257055/101
|
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 08-12-2017 a las 11:17:01
-- Versión del servidor: 10.1.26-MariaDB
-- Versión de PHP: 7.1.9
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
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 */;
--
-- Base de datos: `homestead`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `activations`
--
CREATE TABLE `activations` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`completed` tinyint(1) NOT NULL DEFAULT '0',
`completed_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `activations`
--
INSERT INTO `activations` (`id`, `user_id`, `code`, `completed`, `completed_at`, `created_at`, `updated_at`) VALUES
(1, 1, '1S4u7lJzehk62xDm3DgYgXXYWtbHE6gSP', 1, NULL, NULL, NULL),
(2, 2, 'fyK8rndQfs59RiYn8wXIHwOSyqn2CTNo', 1, '2017-11-16 19:39:48', '2017-11-16 19:39:48', '2017-11-16 19:39:48'),
(3, 3, '2avmsRYkIAnyvqQhozVdq37lzNibQrsd', 1, '2017-11-25 21:38:48', '2017-11-25 21:38:48', '2017-11-25 21:38:48'),
(4, 4, 'aiX4HGbEGiQY4K6w8DSUQQDQmsLUjZhp', 1, '2017-11-30 21:17:15', '2017-11-30 21:17:14', '2017-11-30 21:17:15');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `cajas`
--
CREATE TABLE `cajas` (
`idcaja` int(11) NOT NULL,
`nombre` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`idsedefk` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `cajas`
--
INSERT INTO `cajas` (`idcaja`, `nombre`, `idsedefk`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Caja Uno', 1, '2017-11-12 12:33:02', '2017-11-17 02:16:35', NULL),
(2, 'Caja Dos', 1, '2017-11-12 13:27:29', '2017-11-17 04:56:21', NULL),
(3, 'Caja Tres', 1, '2017-11-12 13:27:48', '2017-11-17 04:56:25', NULL),
(4, 'Caja Uno', 2, '2017-11-12 13:28:34', '2017-11-17 04:57:05', NULL),
(5, 'Caja Dos', 2, '2017-11-12 13:28:51', '2017-11-17 04:57:17', NULL),
(6, 'Caja Tres', 2, '2017-11-12 13:29:11', '2017-11-17 04:57:28', NULL),
(7, 'Caja Uno', 3, '2017-11-12 13:29:33', '2017-11-17 04:57:40', NULL),
(8, 'Caja Dos', 3, '2017-11-17 02:30:52', '2017-11-17 04:57:50', NULL),
(9, 'Caja Tres', 3, '2017-11-17 02:32:02', '2017-11-17 04:58:01', NULL),
(10, 'Caja Cuatro', 1, '2017-11-17 02:32:19', '2017-11-17 04:58:44', NULL),
(11, 'Caja Once', 2, '2017-11-17 02:32:35', '2017-11-17 02:32:35', NULL);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `categorias`
--
CREATE TABLE `categorias` (
`idcategoria` int(10) UNSIGNED NOT NULL,
`nombre` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`descripcion` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `estados`
--
CREATE TABLE `estados` (
`idestado` int(10) UNSIGNED NOT NULL,
`nombre` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(21, '2014_07_02_230147_migration_cartalyst_sentinel', 1),
(22, '2017_05_05_084634_PasswordReset', 1),
(23, '2017_11_08_201921_create_sedes_table', 1),
(24, '2017_11_10_014610_create_estados_table', 1),
(25, '2017_11_10_195840_create_categorias_table', 1),
(26, '2017_11_11_211505_create_notificaciones_table', 2),
(27, '2017_11_11_235616_create_promociones_table', 2),
(28, '2017_11_12_003707_create_tipos_table', 3),
(29, '2017_11_12_022123_create_cajas_table', 4),
(30, '2017_11_16_191309_create_personas_table', 4),
(31, '2017_11_11_211506_create_notificaciones_table', 5);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `notificaciones`
--
CREATE TABLE `notificaciones` (
`idnotificacion` int(10) UNSIGNED NOT NULL,
`descripcion` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`idpersonafk` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `notificaciones`
--
INSERT INTO `notificaciones` (`idnotificacion`, `descripcion`, `idpersonafk`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Prueba una', 1, '2017-11-18 01:03:29', '2017-11-18 04:42:45', NULL),
(2, 'Prueba dos', 2, '2017-11-18 04:40:04', '2017-11-18 04:57:38', NULL),
(3, 'Saludo de bienvenida', 1, '2017-11-18 04:40:22', '2017-11-18 04:45:39', NULL),
(4, 'Prueba Cuatro', 1, '2017-11-18 04:59:01', '2017-11-18 04:59:01', NULL),
(5, 'Esta es una prueba para permitir que los usuarios puedan ver las notificaciones se sea su rol dentro del sistema', 1, '2017-11-18 23:30:45', '2017-11-18 23:30:45', NULL),
(6, 'Prueba seis de las notificaciones', 2, '2017-11-19 00:19:09', '2017-11-19 00:19:09', NULL);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `password_resets`
--
INSERT INTO `password_resets` (`email`, `token`, `created_at`) VALUES
('<EMAIL>', <PASSWORD>', '2017-11-19 02:17:07'),
('<EMAIL>', <PASSWORD>', '2017-11-26 22:41:21');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `persistences`
--
CREATE TABLE `persistences` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`code` varchar(191) 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;
--
-- Volcado de datos para la tabla `persistences`
--
INSERT INTO `persistences` (`id`, `user_id`, `code`, `created_at`, `updated_at`) VALUES
(1, 1, 'LM3MQisBUxAVeW0WDXHqpCXdE9xd9knQ', '2017-11-12 05:11:57', '2017-11-12 05:11:57'),
(2, 1, 'yi4baxMtCCdjosSJDDFG0ZDNTsELkF2m', '2017-11-16 02:48:12', '2017-11-16 02:48:12'),
(5, 1, '6DrQQ4sAJEVWq3oEewKDl81N55EfGhLB', '2017-11-16 23:08:41', '2017-11-16 23:08:41'),
(6, 1, 'u4VXdsNNOBWFLNdJVGtNdwbRbZtdE3jg', '2017-11-17 20:22:20', '2017-11-17 20:22:20'),
(7, 1, 'nnczB5JHuWlVoig9vtZmxEdwP36Z1n7t', '2017-11-18 04:08:54', '2017-11-18 04:08:54'),
(8, 1, '6Cy5X98SKLs6CBXs31kLjmQKTPNL1T3c', '2017-11-20 06:53:57', '2017-11-20 06:53:57'),
(9, 1, 'hqZ9L436LfO1EgBYgCjgfxlHEP7i7MDE', '2017-11-25 01:31:01', '2017-11-25 01:31:01'),
(18, 1, 'UGWyin7BBGVZxE6KpD2h5fLUP1FtVxxC', '2017-11-25 23:50:11', '2017-11-25 23:50:11'),
(19, 1, '360EUlnDWL7dMFd5E6jcOaw86CW7OHcR', '2017-11-26 22:41:58', '2017-11-26 22:41:58'),
(20, 1, 'Q52kjqVokPryMO8CuCNkuuyOLg7ampVm', '2017-11-27 04:50:18', '2017-11-27 04:50:18'),
(21, 1, 'wHZFXqFJDWYljWAUfIGN6MzsjNJ3GV4F', '2017-11-27 21:15:39', '2017-11-27 21:15:39'),
(22, 4, 'CCAcyqcazwljRbNRKqYK5CBd3OgtWqO0', '2017-11-30 21:17:25', '2017-11-30 21:17:25'),
(23, 1, 'CmzRAM2dima3C7phgLU0s6Y7zPy5xKYD', '2017-12-07 19:24:47', '2017-12-07 19:24:47'),
(24, 1, 'n9FJW4zcfbmD1j8hTKO6LMSWPOxv0Vjx', '2017-12-07 19:24:47', '2017-12-07 19:24:47'),
(26, 1, 'fe94qwUktRl7tyoQvt7fHx8Jpbpnt3aV', '2017-12-08 15:50:55', '2017-12-08 15:50:55'),
(30, 1, 'XTc1nLfW1SHYlpjJ9z7PBkUmePQNwfoG', '2017-12-08 16:01:12', '2017-12-08 16:01:12');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `personas`
--
CREATE TABLE `personas` (
`idpersona` int(11) NOT NULL,
`nombre` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`apellido` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`telefono` int(11) NOT NULL,
`correo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`fechaNacimiento` date NOT NULL,
`direccion` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`idtipofk` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `personas`
--
INSERT INTO `personas` (`idpersona`, `nombre`, `apellido`, `telefono`, `correo`, `fechaNacimiento`, `direccion`, `idtipofk`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Wilmer', 'Mosquera', 4535535, '<EMAIL>', '1993-08-09', 'calle 45', 1, '2017-11-17 01:10:37', '2017-11-17 21:49:04', NULL),
(2, 'prueba', 'prueba', 2342424, '<EMAIL>', '2017-11-08', 'calle 56', 2, '2017-11-17 21:49:48', '2017-11-17 21:49:48', NULL),
(3, 'tercera', 'prueba', 2442332, '<EMAIL>', '2017-11-15', 'calle 65 - 99', 3, '2017-11-27 00:02:38', '2017-11-27 00:02:38', NULL);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `promociones`
--
CREATE TABLE `promociones` (
`idpromocion` int(11) NOT NULL,
`descripcion` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`procentaje` int(11) NOT NULL,
`fechainicio` date NOT NULL,
`fechafin` date NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `promociones`
--
INSERT INTO `promociones` (`idpromocion`, `descripcion`, `procentaje`, `fechainicio`, `fechafin`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, '16% de descuento', 16, '2017-11-11', '2017-11-30', '2017-11-12 05:16:49', '2017-11-12 05:17:02', NULL),
(2, '30 % de descuento', 30, '2017-11-08', '2017-11-16', '2017-11-17 03:03:52', '2017-11-17 03:03:52', NULL);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `reminders`
--
CREATE TABLE `reminders` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`completed` tinyint(1) NOT NULL DEFAULT '0',
`completed_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `roles`
--
CREATE TABLE `roles` (
`id` int(10) UNSIGNED NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`permissions` 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;
--
-- Volcado de datos para la tabla `roles`
--
INSERT INTO `roles` (`id`, `slug`, `name`, `permissions`, `created_at`, `updated_at`) VALUES
(1, 'admin', 'Administrador', '{\"password.request\":true,\"password.email\":true,\"password.reset\":true,\"home.dashboard\":true,\"user.index\":true,\"user.create\":true,\"user.store\":true,\"user.show\":true,\"user.edit\":true,\"user.update\":true,\"user.destroy\":true,\"user.permissions\":true,\"user.save\":true,\"user.activate\":true,\"user.deactivate\":true,\"role.index\":true,\"role.create\":true,\"role.store\":true,\"role.show\":true,\"role.edit\":true,\"role.update\":true,\"role.destroy\":true,\"role.permissions\":true,\"role.save\":true,\"facturacion.index\":true,\"facturacion.create\":true,\"facturacion.store\":true,\"facturacion.show\":true,\"facturacion.edit\":true,\"facturacion.update\":true,\"facturacion.destroy\":true,\"ventas.index\":true,\"ventas.create\":true,\"ventas.store\":true,\"ventas.show\":true,\"ventas.edit\":true,\"ventas.update\":true,\"ventas.destroy\":true,\"compras.index\":true,\"compras.create\":true,\"compras.store\":true,\"compras.show\":true,\"compras.edit\":true,\"compras.update\":true,\"compras.destroy\":true,\"inventario.index\":true,\"inventario.create\":true,\"inventario.store\":true,\"inventario.show\":true,\"inventario.edit\":true,\"inventario.update\":true,\"inventario.destroy\":true,\"sedes.index\":true,\"sedes.create\":true,\"sedes.store\":true,\"sedes.show\":true,\"sedes.edit\":true,\"sedes.update\":true,\"sedes.destroy\":true,\"estados.index\":true,\"estados.create\":true,\"estados.store\":true,\"estados.show\":true,\"estados.edit\":true,\"estados.update\":true,\"estados.destroy\":true,\"configuracion.index\":true,\"configuracion.create\":true,\"configuracion.store\":true,\"configuracion.show\":true,\"configuracion.edit\":true,\"configuracion.update\":true,\"configuracion.destroy\":true,\"categorias.index\":true,\"categorias.create\":true,\"categorias.store\":true,\"categorias.show\":true,\"categorias.edit\":true,\"categorias.update\":true,\"categorias.destroy\":true,\"tipos.index\":true,\"tipos.create\":true,\"tipos.store\":true,\"tipos.show\":true,\"tipos.edit\":true,\"tipos.update\":true,\"tipos.destroy\":true,\"cajas.index\":true,\"cajas.create\":true,\"cajas.store\":true,\"cajas.show\":true,\"cajas.edit\":true,\"cajas.update\":true,\"cajas.destroy\":true,\"personas.index\":true,\"personas.create\":true,\"personas.store\":true,\"personas.show\":true,\"personas.edit\":true,\"personas.update\":true,\"personas.destroy\":true,\"personal.permissions\":true}', NULL, '2017-11-27 21:53:44'),
(2, 'client', 'Cliente', '{\"home.dashboard\":true}', NULL, '2017-11-16 23:24:59'),
(3, 'proveedor', 'Proveedor', NULL, '2017-11-16 23:24:34', '2017-11-16 23:24:34'),
(4, 'empleado', 'Empleado', NULL, '2017-11-16 23:25:31', '2017-11-16 23:25:31'),
(5, 'ejecutivo', 'Ejecutivo', NULL, '2017-11-16 23:25:56', '2017-11-16 23:25:56');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `role_users`
--
CREATE TABLE `role_users` (
`user_id` int(10) UNSIGNED NOT NULL,
`role_id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `role_users`
--
INSERT INTO `role_users` (`user_id`, `role_id`, `created_at`, `updated_at`) VALUES
(1, 1, NULL, NULL),
(2, 2, '2017-11-25 23:40:49', '2017-11-25 23:40:49'),
(3, 4, '2017-11-25 21:38:48', '2017-11-25 21:38:48'),
(4, 2, '2017-11-30 21:17:15', '2017-11-30 21:17:15');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `sedes`
--
CREATE TABLE `sedes` (
`idsede` int(11) NOT NULL,
`descripcion` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`direccion` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `sedes`
--
INSERT INTO `sedes` (`idsede`, `descripcion`, `direccion`, `created_at`, `updated_at`, `deleted_at`) VALUES
(0, 'Select', '', NULL, NULL, NULL),
(1, 'Norte', 'calle 45-66', '2017-11-12 07:53:45', '2017-11-26 00:40:01', NULL),
(2, 'Sur', 'calle 84-90', '2017-11-12 07:54:00', '2017-11-17 23:37:29', NULL),
(3, 'Oriente', 'calle 63-34', '2017-11-12 07:54:18', '2017-11-12 07:54:18', NULL),
(4, 'Centro', 'Calle 34 -78', '2017-11-26 01:56:33', '2017-11-26 01:56:33', NULL);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `throttle`
--
CREATE TABLE `throttle` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED DEFAULT NULL,
`type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ip` varchar(191) 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;
--
-- Volcado de datos para la tabla `throttle`
--
INSERT INTO `throttle` (`id`, `user_id`, `type`, `ip`, `created_at`, `updated_at`) VALUES
(1, NULL, 'global', NULL, '2017-11-12 05:08:23', '2017-11-12 05:08:23'),
(2, NULL, 'ip', '::1', '2017-11-12 05:08:23', '2017-11-12 05:08:23'),
(3, NULL, 'global', NULL, '2017-11-12 05:11:47', '2017-11-12 05:11:47'),
(4, NULL, 'ip', '::1', '2017-11-12 05:11:47', '2017-11-12 05:11:47'),
(5, 1, 'user', NULL, '2017-11-12 05:11:47', '2017-11-12 05:11:47'),
(6, NULL, 'global', NULL, '2017-11-16 23:08:29', '2017-11-16 23:08:29'),
(7, NULL, 'ip', '::1', '2017-11-16 23:08:30', '2017-11-16 23:08:30'),
(8, 1, 'user', NULL, '2017-11-16 23:08:30', '2017-11-16 23:08:30'),
(9, NULL, 'global', NULL, '2017-11-19 00:43:23', '2017-11-19 00:43:23'),
(10, NULL, 'ip', '::1', '2017-11-19 00:43:23', '2017-11-19 00:43:23'),
(11, 1, 'user', NULL, '2017-11-19 00:43:23', '2017-11-19 00:43:23'),
(12, NULL, 'global', NULL, '2017-11-25 01:30:54', '2017-11-25 01:30:54'),
(13, NULL, 'ip', '::1', '2017-11-25 01:30:54', '2017-11-25 01:30:54'),
(14, 1, 'user', NULL, '2017-11-25 01:30:54', '2017-11-25 01:30:54'),
(15, NULL, 'global', NULL, '2017-11-25 23:37:25', '2017-11-25 23:37:25'),
(16, NULL, 'ip', '::1', '2017-11-25 23:37:25', '2017-11-25 23:37:25'),
(17, NULL, 'global', NULL, '2017-11-25 23:37:35', '2017-11-25 23:37:35'),
(18, NULL, 'ip', '::1', '2017-11-25 23:37:35', '2017-11-25 23:37:35'),
(19, NULL, 'global', NULL, '2017-11-25 23:37:50', '2017-11-25 23:37:50'),
(20, NULL, 'ip', '::1', '2017-11-25 23:37:50', '2017-11-25 23:37:50'),
(21, NULL, 'global', NULL, '2017-12-08 15:50:48', '2017-12-08 15:50:48'),
(22, NULL, 'ip', '::1', '2017-12-08 15:50:48', '2017-12-08 15:50:48');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `tipos`
--
CREATE TABLE `tipos` (
`idtipo` int(11) NOT NULL,
`nombre` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `tipos`
--
INSERT INTO `tipos` (`idtipo`, `nombre`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Administrador', '2017-11-12 05:43:37', '2017-11-12 05:43:37', NULL),
(2, 'Cliente', '2017-11-12 05:43:45', '2017-11-12 05:43:45', NULL),
(3, 'Proveedor', '2017-11-12 05:43:56', '2017-11-12 05:43:56', NULL),
(4, 'Empleado', '2017-11-12 05:44:16', '2017-11-12 05:46:10', NULL);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `users`
--
CREATE TABLE `users` (
`id` int(10) UNSIGNED NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`avatar` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`permissions` text COLLATE utf8mb4_unicode_ci,
`last_login` timestamp NULL DEFAULT NULL,
`first_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deleted_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;
--
-- Volcado de datos para la tabla `users`
--
INSERT INTO `users` (`id`, `email`, `avatar`, `password`, `permissions`, `last_login`, `first_name`, `last_name`, `remember_token`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '<EMAIL>', '1512683925.jpg', '$2y$10$Yx7K6q3iLKUYMgnW2bsCqOHwc6rsMXKjSwJoKJr0WpnIVWmTwwLR6', '{\"home.dashboard\":true}', '2017-12-08 16:01:12', 'Wilmer', 'Mosquera', NULL, NULL, NULL, '2017-12-08 16:01:12'),
(2, '<EMAIL>', '1512748336.jpg', '$2y$10$Dkr6bpv1L6mj42BpgCDxAeTQhK.Z8bMTF5Vus06vIWCZ2MZqWa8Zu', '', '2017-12-08 15:54:21', 'Prueba', 'Primera', NULL, NULL, '2017-11-16 19:39:48', '2017-12-08 15:54:21'),
(3, '<EMAIL>', 'default.jpg', '$2y$10$MVJgd7SplBmwXQssbz5O.OnFPdYa.iT3kAUHeDF2dXdk8vm4nQYrK', NULL, NULL, 'tres', 'prueba', NULL, NULL, '2017-11-25 21:38:48', '2017-11-25 21:38:48'),
(4, '<EMAIL>', 'default.jpg', '$2y$10$PIXcijeloQLFBu.5N1fMuO.WkdHmLfA7MhPPpBmBEuhPlQCPNYYOK', NULL, '2017-11-30 21:17:26', 'qwer', 'qwer', NULL, NULL, '2017-11-30 21:17:14', '2017-11-30 21:17:26');
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `activations`
--
ALTER TABLE `activations`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `cajas`
--
ALTER TABLE `cajas`
ADD PRIMARY KEY (`idcaja`),
ADD KEY `cajas_idsedefk_foreign` (`idsedefk`);
--
-- Indices de la tabla `categorias`
--
ALTER TABLE `categorias`
ADD PRIMARY KEY (`idcategoria`);
--
-- Indices de la tabla `estados`
--
ALTER TABLE `estados`
ADD PRIMARY KEY (`idestado`);
--
-- Indices de la tabla `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `notificaciones`
--
ALTER TABLE `notificaciones`
ADD PRIMARY KEY (`idnotificacion`),
ADD KEY `notificaciones_idpersonafk_foreign` (`idpersonafk`);
--
-- Indices de la tabla `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`),
ADD KEY `password_resets_token_index` (`token`);
--
-- Indices de la tabla `persistences`
--
ALTER TABLE `persistences`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `persistences_code_unique` (`code`);
--
-- Indices de la tabla `personas`
--
ALTER TABLE `personas`
ADD PRIMARY KEY (`idpersona`),
ADD KEY `personas_idtipofk_foreign` (`idtipofk`);
--
-- Indices de la tabla `promociones`
--
ALTER TABLE `promociones`
ADD PRIMARY KEY (`idpromocion`);
--
-- Indices de la tabla `reminders`
--
ALTER TABLE `reminders`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `roles`
--
ALTER TABLE `roles`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `roles_slug_unique` (`slug`);
--
-- Indices de la tabla `role_users`
--
ALTER TABLE `role_users`
ADD PRIMARY KEY (`user_id`,`role_id`);
--
-- Indices de la tabla `sedes`
--
ALTER TABLE `sedes`
ADD PRIMARY KEY (`idsede`);
--
-- Indices de la tabla `throttle`
--
ALTER TABLE `throttle`
ADD PRIMARY KEY (`id`),
ADD KEY `throttle_user_id_index` (`user_id`);
--
-- Indices de la tabla `tipos`
--
ALTER TABLE `tipos`
ADD PRIMARY KEY (`idtipo`);
--
-- Indices de la tabla `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `activations`
--
ALTER TABLE `activations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT de la tabla `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;
--
-- AUTO_INCREMENT de la tabla `persistences`
--
ALTER TABLE `persistences`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;
--
-- AUTO_INCREMENT de la tabla `reminders`
--
ALTER TABLE `reminders`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `roles`
--
ALTER TABLE `roles`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT de la tabla `throttle`
--
ALTER TABLE `throttle`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;
--
-- AUTO_INCREMENT de la tabla `users`
--
ALTER TABLE `users`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- Restricciones para tablas volcadas
--
--
-- Filtros para la tabla `cajas`
--
ALTER TABLE `cajas`
ADD CONSTRAINT `cajas_idsedefk_foreign` FOREIGN KEY (`idsedefk`) REFERENCES `sedes` (`idsede`);
--
-- Filtros para la tabla `notificaciones`
--
ALTER TABLE `notificaciones`
ADD CONSTRAINT `notificaciones_idpersonafk_foreign` FOREIGN KEY (`idpersonafk`) REFERENCES `personas` (`idpersona`);
--
-- Filtros para la tabla `personas`
--
ALTER TABLE `personas`
ADD CONSTRAINT `personas_idtipofk_foreign` FOREIGN KEY (`idtipofk`) REFERENCES `tipos` (`idtipo`);
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 */;
|
INSERT INTO [Notification].[NotificationAssessment]
(
[Id],
[NotificationApplicationId],
[Status]
)
SELECT
(select CAST(CAST(NEWID() AS BINARY(10)) + CAST(GETDATE() AS BINARY(6)) AS UNIQUEIDENTIFIER)) as [Id],
[Id] as [NotificationApplicationId],
1 as [Status]
FROM
[Notification].[Notification]
WHERE
Id NOT IN (SELECT NotificationApplicationId FROM [Notification].[NotificationAssessment]) |
ALTER TABLE `employees`
ADD COLUMN `phone_number` VARCHAR(20) NULL AFTER `title_id`; |
select
l.id, m.name, m.id
from
language as l, languoid as ll, languoidmacroarea as lm, macroarea as m
where
l.pk = ll.pk and ll.pk = lm.languoid_pk and lm.macroarea_pk = m.pk and l.active and ll.level = 'language'
order by
l.id
|
<reponame>noelclm/mvc
/**
* Copyright 2017 <NAME>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
CREATE DATABASE IF NOT EXISTS mvc CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'mvc'@'localhost' IDENTIFIED VIA mysql_native_password USING 'password';
GRANT USAGE ON *.* TO 'mvc'@'localhost' REQUIRE NONE WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0;
GRANT ALL PRIVILEGES ON `mvc`.* TO 'mvc'@'localhost' WITH GRANT OPTION;
# -------------------------------------------
# Estructura de `user`
# -------------------------------------------
CREATE TABLE IF NOT EXISTS `user` (
`user_id` INT(11) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(75) NOT NULL,
`user` VARCHAR(75) NOT NULL,
`password` VARCHAR(255) NOT NULL,
`email` VARCHAR(255) NOT NULL,
PRIMARY KEY (`user_id`)
)ENGINE = MyISAM CHARACTER SET = utf8 COLLATE = utf8_general_ci AUTO_INCREMENT = 1;
INSERT INTO `user` (`name`, `user`, `password`, `email`) VALUES
('User', 'user', '', '<EMAIL>');
# -------------------------------------------
# Estructura de `session`
# -------------------------------------------
CREATE TABLE IF NOT EXISTS `session` (
`session_id` INT(11) NOT NULL AUTO_INCREMENT,
`user_id` INT(11) NOT NULL,
`key` VARCHAR(32) NOT NULL,
`last_active` INT(11) NOT NULL,
`ip` VARCHAR(15) NOT NULL,
PRIMARY KEY (`session_id`)
)ENGINE = MyISAM CHARACTER SET = utf8 COLLATE = utf8_general_ci AUTO_INCREMENT = 1;
ALTER TABLE `session` ADD CONSTRAINT `tsession_tuser`
FOREIGN KEY (`user_id`) REFERENCES `mvc`.`user` (`user_id`)
ON DELETE NO ACTION ON UPDATE NO ACTION;
# -------------------------------------------
# Estructura de `routes`
# -------------------------------------------
CREATE TABLE IF NOT EXISTS `routes` (
`routes_id` INT(11) NOT NULL AUTO_INCREMENT,
`page` VARCHAR(75) NOT NULL,
`controller` VARCHAR(75) NOT NULL,
`function` VARCHAR(75) NOT NULL,
`funcionality` VARCHAR(75),
PRIMARY KEY (`routes_id`)
)ENGINE = MyISAM CHARACTER SET = utf8 COLLATE = utf8_general_ci AUTO_INCREMENT = 1;
INSERT INTO routes (`page`,`controller`,`function`,`funcionality`) VALUES
('/503','errorController','unavailable',null),
('/404','errorController','pageNotFound',null),
('/403','errorController','forbidden',null),
('/signin','homeController','sign_in','home'),
('/logout','loginController','logout',null),
('/login','loginController','login',null),
('/home','homeController','home','home');
# -------------------------------------------
# Estructura de `funcionality`
# -------------------------------------------
CREATE TABLE IF NOT EXISTS `funcionality` (
`funcionality_id` INT(11) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(75) NOT NULL,
`description` VARCHAR(255) NOT NULL,
PRIMARY KEY (`funcionality_id`)
)ENGINE = MyISAM CHARACTER SET = utf8 COLLATE = utf8_general_ci AUTO_INCREMENT = 1;
INSERT INTO `funcionality` (`name`,`description`) VALUES
('home','Acceso a la página principal');
# -------------------------------------------
# Estructura de `funcionality`
# -------------------------------------------
CREATE TABLE IF NOT EXISTS `role` (
`role_id` INT(11) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(75) NOT NULL,
`description` VARCHAR(255) NOT NULL,
PRIMARY KEY (`role_id`)
)ENGINE = MyISAM CHARACTER SET = utf8 COLLATE = utf8_general_ci AUTO_INCREMENT = 1;
INSERT INTO `role` (`name`,`description`) VALUES
('admin','Control total sobre la aplicación');
# -------------------------------------------
# Estructura de `funcionality_vs_role`
# -------------------------------------------
CREATE TABLE IF NOT EXISTS `funcionality_vs_role` (
`funcionality_vs_role_id` INT(11) NOT NULL AUTO_INCREMENT,
`funcionality_id` INT(11) NOT NULL,
`role_id` INT(11) NOT NULL,
PRIMARY KEY (`funcionality_vs_role_id`)
)ENGINE = MyISAM CHARACTER SET = utf8 COLLATE = utf8_general_ci AUTO_INCREMENT = 1;
ALTER TABLE `funcionality_vs_role` ADD CONSTRAINT `tfuncionality_vs_role_tfuncionality`
FOREIGN KEY (`role_id`) REFERENCES `mvc`.`funcionality` (`funcionality_id`)
ON DELETE NO ACTION ON UPDATE NO ACTION;
ALTER TABLE `funcionality_vs_role` ADD CONSTRAINT `tfuncionality_vs_role_trole`
FOREIGN KEY (`role_id`) REFERENCES `mvc`.`role` (`role_id`)
ON DELETE NO ACTION ON UPDATE NO ACTION;
INSERT INTO `funcionality_vs_role` (`funcionality_id`,`role_id`) VALUES
((SELECT funcionality_id FROM funcionality WHERE `name` = 'home'),(SELECT role_id FROM `role` WHERE `name` = 'admin'));
# -------------------------------------------
# Estructura de `user_vs_role`
# -------------------------------------------
CREATE TABLE IF NOT EXISTS `user_vs_role` (
`user_vs_role_id` INT(11) NOT NULL AUTO_INCREMENT,
`user_id` INT(11) NOT NULL,
`role_id` INT(11) NOT NULL,
PRIMARY KEY (`user_vs_role_id`)
)ENGINE = MyISAM CHARACTER SET = utf8 COLLATE = utf8_general_ci AUTO_INCREMENT = 1;
ALTER TABLE `user_vs_role` ADD CONSTRAINT `tuser_vs_role_tuser`
FOREIGN KEY (`role_id`) REFERENCES `mvc`.`user` (`funcionality_id`)
ON DELETE NO ACTION ON UPDATE NO ACTION;
ALTER TABLE `user_vs_role` ADD CONSTRAINT `tuser_vs_role_trole`
FOREIGN KEY (`role_id`) REFERENCES `mvc`.`role` (`role_id`)
ON DELETE NO ACTION ON UPDATE NO ACTION;
INSERT INTO `user_vs_role` (`user_id`,`role_id`) VALUES
((SELECT user_id FROM `user` WHERE `user` = 'user'),(SELECT role_id FROM `role` WHERE `name` = 'admin'));
|
--------------------------------------------------------------------------------
-- IDERA DB Change Manager Synchronization Script
-- FILE : Sync.192.168.229.128 Feb 7, 2021, 11_16_20 PM.sql
-- DATE : Feb 7, 2021, 11:16:20 PM
--
-- SOURCE DATA SOURCE : localhost
-- TARGET DATA SOURCE : 192.168.229.128
--------------------------------------------------------------------------------
SET XACT_ABORT ON
BEGIN TRANSACTION
USE School
go
ALTER TABLE dbo.Course
DROP CONSTRAINT FK_Course_Department
go
ALTER TABLE dbo.CourseInstructor
DROP CONSTRAINT FK_CourseInstructor_Course
go
ALTER TABLE dbo.CourseInstructor
DROP CONSTRAINT FK_CourseInstructor_Person
go
ALTER TABLE dbo.OfficeAssignment
DROP CONSTRAINT FK_OfficeAssignment_Person
go
ALTER TABLE dbo.OnlineCourse
DROP CONSTRAINT FK_OnlineCourse_Course
go
ALTER TABLE dbo.OnsiteCourse
DROP CONSTRAINT FK_OnsiteCourse_Course
go
ALTER TABLE dbo.StudentGrade
DROP CONSTRAINT FK_StudentGrade_Course
go
ALTER TABLE dbo.StudentGrade
DROP CONSTRAINT FK_StudentGrade_Student
go
INSERT INTO dbo.Course ( CourseID, Title, Credits, DepartmentID ) VALUES( 1045, 'Calculus', 4, 7 )
go
INSERT INTO dbo.Course ( CourseID, Title, Credits, DepartmentID ) VALUES( 1050, 'Chemistry', 4, 1 )
go
INSERT INTO dbo.Course ( CourseID, Title, Credits, DepartmentID ) VALUES( 1061, 'Physics', 4, 1 )
go
INSERT INTO dbo.Course ( CourseID, Title, Credits, DepartmentID ) VALUES( 2021, 'Composition', 3, 2 )
go
INSERT INTO dbo.Course ( CourseID, Title, Credits, DepartmentID ) VALUES( 2030, 'Poetry', 2, 2 )
go
INSERT INTO dbo.Course ( CourseID, Title, Credits, DepartmentID ) VALUES( 2042, 'Literature', 4, 2 )
go
INSERT INTO dbo.Course ( CourseID, Title, Credits, DepartmentID ) VALUES( 3141, 'Trigonometry', 4, 7 )
go
INSERT INTO dbo.Course ( CourseID, Title, Credits, DepartmentID ) VALUES( 4022, 'Microeconomics', 3, 4 )
go
INSERT INTO dbo.Course ( CourseID, Title, Credits, DepartmentID ) VALUES( 4041, 'Macroeconomics', 3, 4 )
go
INSERT INTO dbo.Course ( CourseID, Title, Credits, DepartmentID ) VALUES( 4061, 'Quantitative', 2, 4 )
go
INSERT INTO dbo.CourseInstructor ( CourseID, PersonID ) VALUES( 1045, 5 )
go
INSERT INTO dbo.CourseInstructor ( CourseID, PersonID ) VALUES( 1050, 1 )
go
INSERT INTO dbo.CourseInstructor ( CourseID, PersonID ) VALUES( 1061, 31 )
go
INSERT INTO dbo.CourseInstructor ( CourseID, PersonID ) VALUES( 2021, 27 )
go
INSERT INTO dbo.CourseInstructor ( CourseID, PersonID ) VALUES( 2030, 4 )
go
INSERT INTO dbo.CourseInstructor ( CourseID, PersonID ) VALUES( 2042, 25 )
go
INSERT INTO dbo.CourseInstructor ( CourseID, PersonID ) VALUES( 4022, 18 )
go
INSERT INTO dbo.CourseInstructor ( CourseID, PersonID ) VALUES( 4041, 32 )
go
INSERT INTO dbo.CourseInstructor ( CourseID, PersonID ) VALUES( 4061, 34 )
go
INSERT INTO dbo.Department ( DepartmentID, Name, Budget, StartDate, Administrator ) VALUES( 1, 'Engineering', 350000.0000, '2007-09-01 00:00:00.0', 2 )
go
INSERT INTO dbo.Department ( DepartmentID, Name, Budget, StartDate, Administrator ) VALUES( 2, 'English', 120000.0000, '2007-09-01 00:00:00.0', 6 )
go
INSERT INTO dbo.Department ( DepartmentID, Name, Budget, StartDate, Administrator ) VALUES( 4, 'Economics', 200000.0000, '2007-09-01 00:00:00.0', 4 )
go
INSERT INTO dbo.Department ( DepartmentID, Name, Budget, StartDate, Administrator ) VALUES( 7, 'Mathematics', 250000.0000, '2007-09-01 00:00:00.0', 3 )
go
--The following columns were excluded due to unsupported datatypes: [Timestamp]
INSERT INTO dbo.OfficeAssignment ( InstructorID, Location ) VALUES( 1, '17 Smith' )
go
--The following columns were excluded due to unsupported datatypes: [Timestamp]
INSERT INTO dbo.OfficeAssignment ( InstructorID, Location ) VALUES( 4, '<NAME>' )
go
--The following columns were excluded due to unsupported datatypes: [Timestamp]
INSERT INTO dbo.OfficeAssignment ( InstructorID, Location ) VALUES( 5, '<NAME>' )
go
--The following columns were excluded due to unsupported datatypes: [Timestamp]
INSERT INTO dbo.OfficeAssignment ( InstructorID, Location ) VALUES( 18, '143 Smith' )
go
--The following columns were excluded due to unsupported datatypes: [Timestamp]
INSERT INTO dbo.OfficeAssignment ( InstructorID, Location ) VALUES( 25, '<NAME>' )
go
--The following columns were excluded due to unsupported datatypes: [Timestamp]
INSERT INTO dbo.OfficeAssignment ( InstructorID, Location ) VALUES( 27, '<NAME>' )
go
--The following columns were excluded due to unsupported datatypes: [Timestamp]
INSERT INTO dbo.OfficeAssignment ( InstructorID, Location ) VALUES( 31, '131 Smith' )
go
--The following columns were excluded due to unsupported datatypes: [Timestamp]
INSERT INTO dbo.OfficeAssignment ( InstructorID, Location ) VALUES( 32, '203 Williams' )
go
--The following columns were excluded due to unsupported datatypes: [Timestamp]
INSERT INTO dbo.OfficeAssignment ( InstructorID, Location ) VALUES( 34, '213 Smith' )
go
INSERT INTO dbo.OnlineCourse ( CourseID, URL ) VALUES( 2021, 'http://www.fineartschool.net/Composition' )
go
INSERT INTO dbo.OnlineCourse ( CourseID, URL ) VALUES( 2030, 'http://www.fineartschool.net/Poetry' )
go
INSERT INTO dbo.OnlineCourse ( CourseID, URL ) VALUES( 3141, 'http://www.fineartschool.net/Trigonometry' )
go
INSERT INTO dbo.OnlineCourse ( CourseID, URL ) VALUES( 4041, 'http://www.fineartschool.net/Macroeconomics' )
go
INSERT INTO dbo.OnsiteCourse ( CourseID, Location, Days, [Time] ) VALUES( 1045, '121 Smith', 'MWHF', '1900-01-01 15:30:00.0' )
go
INSERT INTO dbo.OnsiteCourse ( CourseID, Location, Days, [Time] ) VALUES( 1050, '123 Smith', 'MTWH', '1900-01-01 11:30:00.0' )
go
INSERT INTO dbo.OnsiteCourse ( CourseID, Location, Days, [Time] ) VALUES( 1061, '234 Smith', 'TWHF', '1900-01-01 13:15:00.0' )
go
INSERT INTO dbo.OnsiteCourse ( CourseID, Location, Days, [Time] ) VALUES( 2042, '<NAME>', 'MTWH', '1900-01-01 11:00:00.0' )
go
INSERT INTO dbo.OnsiteCourse ( CourseID, Location, Days, [Time] ) VALUES( 4022, '23 Williams', 'MWF', '1900-01-01 09:00:00.0' )
go
INSERT INTO dbo.OnsiteCourse ( CourseID, Location, Days, [Time] ) VALUES( 4061, '22 Williams', 'TH', '1900-01-01 11:15:00.0' )
go
SET IDENTITY_INSERT dbo.Person ON
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 1, 'Abercrombie', 'Kim', '1995-03-11 00:00:00.0', NULL, 'Instructor' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 2, 'Barzdukas', 'Gytis', NULL, '2005-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 3, 'Justice', 'Peggy', NULL, '2001-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 4, 'Fakhouri', 'Fadi', '2002-08-06 00:00:00.0', NULL, 'Instructor' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 5, 'Harui', 'Roger', '1998-07-01 00:00:00.0', NULL, 'Instructor' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 6, 'Li', 'Yan', NULL, '2002-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 7, 'Norman', 'Laura', NULL, '2003-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 8, 'Olivotto', 'Nino', NULL, '2005-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 9, 'Tang', 'Wayne', NULL, '2005-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 10, 'Alonso', 'Meredith', NULL, '2002-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 11, 'Lopez', 'Sophia', NULL, '2004-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 12, 'Browning', 'Meredith', NULL, '2000-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 13, 'Anand', 'Arturo', NULL, '2003-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 14, 'Walker', 'Alexandra', NULL, '2000-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 15, 'Powell', 'Carson', NULL, '2004-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 16, 'Jai', 'Damien', NULL, '2001-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 17, 'Carlson', 'Robyn', NULL, '2005-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 18, 'Zheng', 'Roger', '2004-02-12 00:00:00.0', NULL, 'Instructor' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 19, 'Bryant', 'Carson', NULL, '2001-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 20, 'Suarez', 'Robyn', NULL, '2004-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 21, 'Holt', 'Roger', NULL, '2004-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 22, 'Alexander', 'Carson', NULL, '2005-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 23, 'Morgan', 'Isaiah', NULL, '2001-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 24, 'Martin', 'Randall', NULL, '2005-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 25, 'Kapoor', 'Candace', '2001-01-15 00:00:00.0', NULL, 'Instructor' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 26, 'Rogers', 'Cody', NULL, '2002-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 27, 'Serrano', 'Stacy', '1999-06-01 00:00:00.0', NULL, 'Instructor' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 28, 'White', 'Anthony', NULL, '2001-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 29, 'Griffin', 'Rachel', NULL, '2004-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 30, 'Shan', 'Alicia', NULL, '2003-09-01 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 31, 'Stewart', 'Jasmine', '1997-10-12 00:00:00.0', NULL, 'Instructor' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 32, 'Xu', 'Kristen', '2001-07-23 00:00:00.0', NULL, 'Instructor' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 33, 'Gao', 'Erica', NULL, '2003-01-30 00:00:00.0', 'Student' )
go
INSERT INTO dbo.Person ( PersonID, LastName, FirstName, HireDate, EnrollmentDate, Discriminator ) VALUES( 34, '<NAME>', 'Roger', '2000-12-07 00:00:00.0', NULL, 'Instructor' )
go
SET IDENTITY_INSERT dbo.Person OFF
go
SET IDENTITY_INSERT dbo.StudentGrade ON
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 1, 2021, 2, 4.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 2, 2030, 2, 3.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 3, 2021, 3, 3.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 4, 2030, 3, 4.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 5, 2021, 6, 2.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 6, 2042, 6, 3.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 7, 2021, 7, 3.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 8, 2042, 7, 4.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 9, 2021, 8, 3.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 10, 2042, 8, 3.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 11, 4041, 9, 3.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 12, 4041, 10, NULL )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 13, 4041, 11, 2.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 14, 4041, 12, NULL )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 15, 4061, 12, NULL )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 16, 4022, 14, 3.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 17, 4022, 13, 4.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 18, 4061, 13, 4.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 19, 4041, 14, 3.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 20, 4022, 15, 2.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 21, 4022, 16, 2.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 22, 4022, 17, NULL )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 23, 4022, 19, 3.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 24, 4061, 20, 4.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 25, 4061, 21, 2.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 26, 4022, 22, 3.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 27, 4041, 22, 3.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 28, 4061, 22, 2.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 29, 4022, 23, 3.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 30, 1045, 23, 1.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 31, 1061, 24, 4.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 32, 1061, 25, 3.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 33, 1050, 26, 3.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 34, 1061, 26, 3.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 35, 1061, 27, 3.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 36, 1045, 28, 2.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 37, 1050, 28, 3.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 38, 1061, 29, 4.00 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 39, 1050, 30, 3.50 )
go
INSERT INTO dbo.StudentGrade ( EnrollmentID, CourseID, StudentID, Grade ) VALUES( 40, 1061, 30, 4.00 )
go
SET IDENTITY_INSERT dbo.StudentGrade OFF
go
ALTER TABLE dbo.Course
ADD CONSTRAINT FK_Course_Department
FOREIGN KEY (DepartmentID)
REFERENCES dbo.Department (DepartmentID)
go
ALTER TABLE dbo.CourseInstructor
ADD CONSTRAINT FK_CourseInstructor_Course
FOREIGN KEY (CourseID)
REFERENCES dbo.Course (CourseID)
go
ALTER TABLE dbo.CourseInstructor
ADD CONSTRAINT FK_CourseInstructor_Person
FOREIGN KEY (PersonID)
REFERENCES dbo.Person (PersonID)
go
ALTER TABLE dbo.OfficeAssignment
ADD CONSTRAINT FK_OfficeAssignment_Person
FOREIGN KEY (InstructorID)
REFERENCES dbo.Person (PersonID)
go
ALTER TABLE dbo.OnlineCourse
ADD CONSTRAINT FK_OnlineCourse_Course
FOREIGN KEY (CourseID)
REFERENCES dbo.Course (CourseID)
go
ALTER TABLE dbo.OnsiteCourse
ADD CONSTRAINT FK_OnsiteCourse_Course
FOREIGN KEY (CourseID)
REFERENCES dbo.Course (CourseID)
go
ALTER TABLE dbo.StudentGrade
ADD CONSTRAINT FK_StudentGrade_Course
FOREIGN KEY (CourseID)
REFERENCES dbo.Course (CourseID)
go
ALTER TABLE dbo.StudentGrade
ADD CONSTRAINT FK_StudentGrade_Student
FOREIGN KEY (StudentID)
REFERENCES dbo.Person (PersonID)
go
IF @@TRANCOUNT > 0
COMMIT TRANSACTION
ELSE
print'Transaction was rolled back due to an error'
|
<reponame>skatova/cuba-petclinic-data-model-entity-inheritance
alter table PETCLINIC_PET add column DTYPE varchar(31) ;
|
CREATE UNIQUE INDEX "SYS_IL0001434416C00010$$" ON "GIS_SHAPES" (
|
<filename>6-tietokannat/scripts/initdb.sql
CREATE DATABASE pydb;
CREATE USER pydb WITH PASSWORD '<PASSWORD>';
GRANT ALL PRIVILEGES ON DATABASE pydb to pydb;
|
<reponame>dunarel/dunphd-thesis<filename>Chapter4/Supplementary/proc_hom/sessions/hgt_par_75.sql<gh_stars>0
checkpoint defrag
backup database to '/root/devel/backup/db_srv/' blocking
select gn.NAME,
hcif.GENE_ID,
hcif.ID,
max(hcit.id),
max(hctt_beast.AGE_HPD5_WG),
max(hctt_beast.AGE_MD_WG) as beast_med,
max(hctt_treepl.AGE_MD_WG) as treepl_med,
max(hctt_beast.AGE_HPD95_WG)
from genes gn
join HGT_COM_INT_FRAGMS hcif on hcif.GENE_ID = gn.id
join HGT_COM_INT_TRANSFERS hcit on hcit.HGT_COM_INT_FRAGM_ID = hcif.id
join HGT_COM_TRSF_TIMINGS hctt_beast on hctt_beast.HGT_COM_INT_TRANSFER_ID = hcit.ID and
hctt_beast.TIMING_CRITER_ID = 0
join HGT_COM_TRSF_TIMINGS hctt_treepl on hctt_treepl.HGT_COM_INT_TRANSFER_ID = hcit.ID and
hctt_treepl.TIMING_CRITER_ID = 1
where gn.name = 'map' and
hctt_beast.AGE_MD_WG < 10
group by gn.NAME,
hcif.GENE_ID,
hcif.ID
order by gene_id
select *
from HGT_COM_INT_FRAGMS hcif
where hcif.id in (358882,358883)
from HGT_COM_TRSF_TIMINGS hctt
select gn.name,
gn.id,
count(*)
from genes gn
join GENE_BLO_SEQS gbs on gbs.GENE_ID = gn.id
group by gn.name,
gn.id
order by count(*)
select *
from taxons
|
<filename>modules/recurringinvoices/install/menu.sql<gh_stars>1-10
INSERT INTO `menu` (`uuid`, `name`, `link`, `parentid`, `displayorder`, `createdby`, `modifiedby`, `creationdate`, `modifieddate`, `roleid`) VALUES ('menu:1f7541a0-7bbe-6b9f-e7c5-2db926557e53', 'Recurring Invoices', 'search.php?id=tbld%3A3434bf2d-1337-5cab-0a7a-25e04f1c6d8f', 'menu:8cf7d073-72b9-93db-6d07-14578e2a694f', '17', 1, 1, NOW(), NOW(), 'role:259ead9f-100b-55b5-508a-27e33a6216bf');
|
<filename>tests/database/postgresql/create_database.sql
CREATE DATABASE agatereports;
\connect agatereports;
|
CREATE SEQUENCE dbo.cs_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
ALTER SEQUENCE dbo.cs_groups_id_seq OWNER TO gcheb;
ALTER SEQUENCE dbo.cs_groups_id_seq
OWNED BY dbo.cs_groups.id;
|
-- phpMyAdmin SQL Dump
-- version 4.5.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Oct 22, 2016 at 02:27
-- Server version: 10.1.16-MariaDB
-- PHP Version: 7.0.9
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `latihan`
--
-- --------------------------------------------------------
--
-- Table structure for table `bukutamu`
--
CREATE TABLE `bukutamu` (
`id` int(11) NOT NULL,
`nama` varchar(40) NOT NULL,
`alamat` text NOT NULL,
`no_telpon` varchar(13) NOT NULL,
`jenis_kelamin` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `bukutamu`
--
ALTER TABLE `bukutamu`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `bukutamu`
--
ALTER TABLE `bukutamu`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
/*!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 */;
|
-- create database test;
use test;
-- Create table
create table USER_ACCOUNT
(
USER_NAME VARCHAR(30) not null,
GENDER VARCHAR(1) not null,
PASSWORD VARCHAR(30) not null,
primary key (USER_NAME),
ROLE VARCHAR(15) not null DEFAULT 'USER',
isblocked BOOL not null DEFAULT false
);
-- Create table
create table PRODUCT
(
CODE VARCHAR(20) not null,
NAME VARCHAR(128) not null,
PRICE FLOAT not null,
primary key (CODE)
) ;
-- Insert data: ---------------------------------------------------------------
insert into user_account (USER_NAME, GENDER, PASSWORD)
values ('tom', 'M', '<PASSWORD>');
insert into user_account (USER_NAME, GENDER, PASSWORD)
values ('jerry', 'M', '<PASSWORD>');
insert into user_account (USER_NAME, GENDER, PASSWORD, ROLE)
values ('admin', 'W', 'admin', 'ADMIN');
insert into product (CODE, NAME, PRICE)
values ('P001', 'Java Core', 100);
insert into product (CODE, NAME, PRICE)
values ('P002', 'C# Core', 90);
commit; |
-- phpMyAdmin SQL Dump
-- version 4.6.6deb5
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Dec 09, 2019 at 06:02 PM
-- Server version: 5.7.28-0ubuntu0.18.04.4
-- PHP Version: 7.2.24-0ubuntu0.18.04.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `sim`
--
-- --------------------------------------------------------
--
-- Table structure for table `app_setting`
--
CREATE TABLE `app_setting` (
`id` int(11) NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`maintenance_status` int(11) NOT NULL DEFAULT '0' COMMENT '1=>on,2=>off',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `app_setting`
--
INSERT INTO `app_setting` (`id`, `user_id`, `maintenance_status`, `created_at`, `updated_at`) VALUES
(1, 1, 1, '2019-12-06 12:02:23', '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `block_users`
--
CREATE TABLE `block_users` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`friend_id` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `block_users`
--
INSERT INTO `block_users` (`id`, `user_id`, `friend_id`, `created_at`, `updated_at`) VALUES
(2, 43, 44, '2019-10-30 19:16:44', '2019-10-30 13:46:44'),
(8, 2, 3, '2019-11-05 09:29:59', '2019-11-05 09:29:59');
-- --------------------------------------------------------
--
-- Table structure for table `bought_tickets`
--
CREATE TABLE `bought_tickets` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`sub_event_id` int(11) NOT NULL,
`ticket_id` int(100) NOT NULL,
`quantity` double NOT NULL,
`amount` double NOT NULL,
`qr_image` varchar(255) NOT NULL DEFAULT '',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`qr_code_id` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `bought_tickets`
--
INSERT INTO `bought_tickets` (`id`, `user_id`, `event_id`, `sub_event_id`, `ticket_id`, `quantity`, `amount`, `qr_image`, `created_at`, `updated_at`, `qr_code_id`) VALUES
(1, 5, 2, 2, 1, 1, 100, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1568015872.png', '2019-09-09 07:57:52', '2019-09-09 07:57:52', NULL),
(2, 12, 17, 273, 7, 4, 50, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1568092330.png', '2019-09-10 05:12:10', '2019-09-10 05:12:10', NULL),
(3, 13, 17, 273, 659086, 1, 0, 'http://192.168.3.76/sim_new/public/qr_image/1568092385.png', '2019-09-10 05:13:05', '2019-09-10 05:13:05', NULL),
(4, 14, 20, 277, 8, 3, 12, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1568099026.png', '2019-09-10 07:03:46', '2019-09-10 07:03:46', NULL),
(5, 5, 9, 209, 6, 1, 100, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1568729733.png', '2019-09-17 14:15:33', '2019-09-17 14:15:33', NULL),
(6, 5, 17, 273, 7, 1, 50, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1568965267.png', '2019-09-20 07:41:07', '2019-09-20 07:41:07', NULL),
(7, 47, 35, 456, 14, 4, 200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1572445542.png', '2019-10-30 14:25:42', '2019-10-30 14:25:42', NULL),
(8, 66, 55, 910, 24, 25, 10, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1573467582.png', '2019-11-11 10:19:42', '2019-11-11 10:19:42', NULL),
(9, 70, 42, 604, 17, 3, 600, 'http://1172.16.17.326/sim_new/storage/app/public/qr_image/1573623660.png', '2019-11-13 05:41:00', '2019-11-13 05:41:00', NULL),
(10, 70, 56, 960, 25, 6, 100, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1573623707.png', '2019-11-13 05:41:47', '2019-11-13 05:41:47', NULL),
(11, 5, 63, 1046, 29, 1, 12, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575033173.png', '2019-11-29 13:12:53', '2019-11-29 13:12:53', NULL),
(12, 5, 37, 509, 16, 1, 200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575034341.png', '2019-11-29 13:32:21', '2019-11-29 13:32:21', NULL),
(13, 4, 2, 2, 662385, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575262997.png', '2019-12-02 05:03:17', '2019-12-02 05:03:17', NULL),
(14, 4, 2, 2, 465314, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575263007.png', '2019-12-02 05:03:26', '2019-12-02 05:03:26', NULL),
(15, 4, 2, 2, 606301, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575263106.png', '2019-12-02 05:05:06', '2019-12-02 05:05:06', NULL),
(16, 5, 63, 1046, 29, 3, 12, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575286755.png', '2019-12-02 11:39:15', '2019-12-02 11:39:15', NULL),
(17, 5, 63, 1046, 29, 5, 12, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575287020.png', '2019-12-02 11:43:40', '2019-12-02 11:43:40', NULL),
(18, 5, 63, 1046, 29, 1, 12, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575287270.png', '2019-12-02 11:47:50', '2019-12-02 11:47:50', NULL),
(19, 4, 52, 806, 23, 3, 10, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575287574.png', '2019-12-02 11:52:54', '2019-12-02 11:52:54', NULL),
(20, 5, 52, 806, 23, 3, 10, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575287650.png', '2019-12-02 11:54:10', '2019-12-02 11:54:10', NULL),
(21, 4, 52, 806, 23, 3, 10, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575293561.png', '2019-12-02 13:32:41', '2019-12-02 13:32:41', NULL),
(22, 5, 59, 984, 27, 3, 10, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575363137.png', '2019-12-03 08:52:17', '2019-12-03 08:52:17', NULL),
(23, 5, 59, 984, 27, 3, 10, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575363187.png', '2019-12-03 08:53:07', '2019-12-03 08:53:07', NULL),
(24, 5, 59, 984, 27, 3, 10, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575363221.png', '2019-12-03 08:53:41', '2019-12-03 08:53:41', NULL),
(25, 5, 59, 984, 27, 3, 10, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575366283.png', '2019-12-03 09:44:43', '2019-12-03 09:44:43', NULL),
(26, 5, 59, 984, 27, 3, 10, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575366607.png', '2019-12-03 09:50:07', '2019-12-03 09:50:07', NULL),
(27, 5, 59, 984, 27, 3, 10, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575366755.png', '2019-12-03 09:52:35', '2019-12-03 09:52:35', NULL),
(28, 5, 59, 984, 27, 3, 10, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575366786.png', '2019-12-03 09:53:06', '2019-12-03 09:53:06', NULL),
(29, 5, 59, 984, 27, 3, 10, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575366797.png', '2019-12-03 09:53:17', '2019-12-03 09:53:17', NULL),
(30, 5, 64, 1049, 30, 1, 21, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575531118.png', '2019-12-05 07:31:58', '2019-12-05 07:31:58', NULL),
(31, 5, 64, 1049, 30, 1, 21, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575531697.png', '2019-12-05 07:41:37', '2019-12-05 07:41:37', NULL),
(32, 5, 64, 1049, 30, 1, 21, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575531829.png', '2019-12-05 07:43:49', '2019-12-05 07:43:49', NULL),
(33, 4, 64, 1049, 651888, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575541728.png', '2019-12-05 10:28:47', '2019-12-05 10:28:47', NULL),
(34, 3, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575613748.png', '2019-12-06 06:29:08', '2019-12-06 06:29:08', NULL),
(35, 3, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575613778.png', '2019-12-06 06:29:37', '2019-12-06 06:29:37', NULL),
(36, 3, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575613807.png', '2019-12-06 06:30:07', '2019-12-06 06:30:07', NULL),
(37, 3, 64, 1049, 30, 1, 21, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575613975.png', '2019-12-06 06:32:55', '2019-12-06 06:32:55', NULL),
(38, 3, 66, 1051, 31, 3, 750, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575614002.png', '2019-12-06 06:33:22', '2019-12-06 06:33:22', NULL),
(39, 3, 66, 1051, 31, 3, 750, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575614051.png', '2019-12-06 06:34:11', '2019-12-06 06:34:11', NULL),
(40, 41, 66, 1051, 699187, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575614881.png', '2019-12-06 06:48:01', '2019-12-06 06:48:01', NULL),
(41, 41, 66, 1051, 867230, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575614888.png', '2019-12-06 06:48:08', '2019-12-06 06:48:08', NULL),
(42, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575617030.png', '2019-12-06 07:23:50', '2019-12-06 07:23:50', NULL),
(43, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575617090.png', '2019-12-06 07:24:50', '2019-12-06 07:24:50', NULL),
(44, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575617105.png', '2019-12-06 07:25:05', '2019-12-06 07:25:05', NULL),
(45, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575617201.png', '2019-12-06 07:26:41', '2019-12-06 07:26:41', NULL),
(46, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 07:28:24', '2019-12-06 07:28:24', NULL),
(47, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575617331.png', '2019-12-06 07:28:50', '2019-12-06 07:28:50', NULL),
(48, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575617350.png', '2019-12-06 07:29:10', '2019-12-06 07:29:10', NULL),
(49, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575617536.png', '2019-12-06 07:32:16', '2019-12-06 07:32:16', NULL),
(50, 76, 66, 1051, 31, 4, 1000, 'http://1172.16.17.326/sim_new/storage/app/public/qr_image/1575617591.png', '2019-12-06 07:33:11', '2019-12-06 07:33:11', NULL),
(51, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575617603.png', '2019-12-06 07:33:23', '2019-12-06 07:33:23', NULL),
(52, 76, 66, 1051, 32, 4, 1200, 'http://1172.16.17.326/sim_new/storage/app/public/qr_image/1575617603.png', '2019-12-06 07:33:23', '2019-12-06 07:33:23', NULL),
(53, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575618382.png', '2019-12-06 07:46:22', '2019-12-06 07:46:22', NULL),
(54, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619105.png', '2019-12-06 07:58:25', '2019-12-06 07:58:25', NULL),
(55, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619163.png', '2019-12-06 07:59:23', '2019-12-06 07:59:23', NULL),
(56, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619218.png', '2019-12-06 08:00:18', '2019-12-06 08:00:18', NULL),
(57, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619219.png', '2019-12-06 08:00:19', '2019-12-06 08:00:19', NULL),
(58, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619344.png', '2019-12-06 08:02:24', '2019-12-06 08:02:24', NULL),
(59, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619354.png', '2019-12-06 08:02:34', '2019-12-06 08:02:34', NULL),
(60, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619354.png', '2019-12-06 08:02:34', '2019-12-06 08:02:34', NULL),
(61, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619400.png', '2019-12-06 08:03:20', '2019-12-06 08:03:20', NULL),
(62, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619401.png', '2019-12-06 08:03:21', '2019-12-06 08:03:21', NULL),
(63, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619464.png', '2019-12-06 08:04:24', '2019-12-06 08:04:24', NULL),
(64, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619464.png', '2019-12-06 08:04:24', '2019-12-06 08:04:24', NULL),
(65, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619506.png', '2019-12-06 08:05:05', '2019-12-06 08:05:05', NULL),
(66, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619516.png', '2019-12-06 08:05:16', '2019-12-06 08:05:16', NULL),
(67, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619532.png', '2019-12-06 08:05:32', '2019-12-06 08:05:32', NULL),
(68, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619532.png', '2019-12-06 08:05:32', '2019-12-06 08:05:32', NULL),
(69, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619657.png', '2019-12-06 08:07:37', '2019-12-06 08:07:37', NULL),
(70, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575619699.png', '2019-12-06 08:08:19', '2019-12-06 08:08:19', NULL),
(71, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575623070.png', '2019-12-06 09:04:30', '2019-12-06 09:04:30', NULL),
(72, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575623263.png', '2019-12-06 09:07:43', '2019-12-06 09:07:43', NULL),
(73, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575623263.png', '2019-12-06 09:07:43', '2019-12-06 09:07:43', NULL),
(74, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575624054.png', '2019-12-06 09:20:54', '2019-12-06 09:20:54', NULL),
(75, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575624054.png', '2019-12-06 09:20:54', '2019-12-06 09:20:54', NULL),
(76, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575624296.png', '2019-12-06 09:24:56', '2019-12-06 09:24:56', NULL),
(77, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575624296.png', '2019-12-06 09:24:56', '2019-12-06 09:24:56', NULL),
(78, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 09:52:46', '2019-12-06 09:52:46', NULL),
(79, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 09:52:46', '2019-12-06 09:52:46', NULL),
(80, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 09:55:30', '2019-12-06 09:55:30', NULL),
(81, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 09:55:30', '2019-12-06 09:55:30', NULL),
(82, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 09:55:47', '2019-12-06 09:55:47', NULL),
(83, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 09:55:47', '2019-12-06 09:55:47', NULL),
(84, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 09:56:15', '2019-12-06 09:56:15', NULL),
(85, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 09:56:15', '2019-12-06 09:56:15', NULL),
(86, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 09:56:24', '2019-12-06 09:56:24', NULL),
(87, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 09:56:24', '2019-12-06 09:56:24', NULL),
(88, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 09:56:33', '2019-12-06 09:56:33', NULL),
(89, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 09:56:33', '2019-12-06 09:56:33', NULL),
(90, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 09:56:43', '2019-12-06 09:56:43', NULL),
(91, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 09:56:43', '2019-12-06 09:56:43', NULL),
(92, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 09:56:52', '2019-12-06 09:56:52', NULL),
(93, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 09:56:52', '2019-12-06 09:56:52', NULL),
(94, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:06:13', '2019-12-06 10:06:13', NULL),
(95, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:06:14', '2019-12-06 10:06:14', NULL),
(96, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:06:31', '2019-12-06 10:06:31', NULL),
(97, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:06:31', '2019-12-06 10:06:31', NULL),
(98, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:06:52', '2019-12-06 10:06:52', NULL),
(99, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:06:52', '2019-12-06 10:06:52', NULL),
(100, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:08:56', '2019-12-06 10:08:56', NULL),
(101, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:08:56', '2019-12-06 10:08:56', NULL),
(102, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:43:19', '2019-12-06 10:43:19', '6186444222600739'),
(103, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:43:19', '2019-12-06 10:43:19', '6186444222600739'),
(104, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:45:15', '2019-12-06 10:45:15', '9849750788642603'),
(105, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:45:15', '2019-12-06 10:45:15', '9849750788642603'),
(106, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:45:29', '2019-12-06 10:45:29', '6799334769705560'),
(107, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:45:29', '2019-12-06 10:45:29', '6799334769705560'),
(108, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:46:28', '2019-12-06 10:46:28', '4389998452328803'),
(109, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:46:29', '2019-12-06 10:46:29', '4389998452328803'),
(110, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:48:37', '2019-12-06 10:48:37', '3009700230579093'),
(111, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:48:37', '2019-12-06 10:48:37', '3009700230579093'),
(112, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:48:52', '2019-12-06 10:48:52', '5933610270005520'),
(113, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:48:52', '2019-12-06 10:48:52', '5933610270005520'),
(114, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:50:57', '2019-12-06 10:50:57', '2324267815447467'),
(115, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:50:57', '2019-12-06 10:50:57', '2324267815447467'),
(116, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:52:04', '2019-12-06 10:52:04', '1918076034854625'),
(117, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:52:04', '2019-12-06 10:52:04', '1918076034854625'),
(118, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:52:36', '2019-12-06 10:52:36', '5991470812671468'),
(119, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:52:36', '2019-12-06 10:52:36', '5991470812671468'),
(120, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:52:56', '2019-12-06 10:52:56', '3387891003958241'),
(121, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:52:56', '2019-12-06 10:52:56', '3387891003958241'),
(122, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:53:08', '2019-12-06 10:53:08', '5217181007288925'),
(123, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:53:08', '2019-12-06 10:53:08', '5217181007288925'),
(124, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:53:24', '2019-12-06 10:53:24', '9783196215841097'),
(125, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:53:24', '2019-12-06 10:53:24', '9783196215841097'),
(126, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:53:36', '2019-12-06 10:53:36', '3721252468018526'),
(127, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:53:36', '2019-12-06 10:53:36', '3721252468018526'),
(128, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:53:48', '2019-12-06 10:53:48', '2107028672827044'),
(129, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:53:49', '2019-12-06 10:53:49', '2107028672827044'),
(130, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:54:08', '2019-12-06 10:54:08', '9660976548311840'),
(131, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:54:08', '2019-12-06 10:54:08', '9660976548311840'),
(132, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:54:19', '2019-12-06 10:54:19', '3393901090954344'),
(133, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:54:19', '2019-12-06 10:54:19', '3393901090954344'),
(134, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:55:07', '2019-12-06 10:55:07', '3682856278928105'),
(135, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:55:07', '2019-12-06 10:55:07', '3682856278928105'),
(136, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:55:20', '2019-12-06 10:55:20', '5965472585039819'),
(137, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:55:20', '2019-12-06 10:55:20', '5965472585039819'),
(138, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:55:32', '2019-12-06 10:55:32', '7611808523655903'),
(139, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:55:32', '2019-12-06 10:55:32', '7611808523655903'),
(140, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:55:41', '2019-12-06 10:55:41', '5171218865666722'),
(141, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:55:41', '2019-12-06 10:55:41', '5171218865666722'),
(142, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:55:54', '2019-12-06 10:55:54', '7130811037477018'),
(143, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:55:54', '2019-12-06 10:55:54', '7130811037477018'),
(144, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:56:05', '2019-12-06 10:56:05', '1362357789715461'),
(145, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:56:05', '2019-12-06 10:56:05', '1362357789715461'),
(146, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:58:58', '2019-12-06 10:58:58', '1225455279197369'),
(147, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:58:58', '2019-12-06 10:58:58', '1225455279197369'),
(148, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 10:59:08', '2019-12-06 10:59:08', '7461161181942128'),
(149, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 10:59:08', '2019-12-06 10:59:08', '7461161181942128'),
(150, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:02:37', '2019-12-06 11:02:37', '1243652639313204'),
(151, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:02:37', '2019-12-06 11:02:37', '1243652639313204'),
(152, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:03:09', '2019-12-06 11:03:09', '1956458170751883'),
(153, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:03:09', '2019-12-06 11:03:09', '1956458170751883'),
(154, 3, 37, 510, 16, 3, 600, '', '2019-12-06 11:09:17', '2019-12-06 11:09:17', '3313826260979193'),
(155, 3, 37, 510, 16, 3, 600, '', '2019-12-06 11:09:58', '2019-12-06 11:09:58', '7865671700891206'),
(156, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:12:45', '2019-12-06 11:12:45', '4484577629826546'),
(157, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:12:45', '2019-12-06 11:12:45', '4484577629826546'),
(158, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:13:16', '2019-12-06 11:13:16', '1740145136101267'),
(159, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:13:17', '2019-12-06 11:13:17', '1740145136101267'),
(160, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:18:03', '2019-12-06 11:18:03', '8796971758990371'),
(161, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:18:03', '2019-12-06 11:18:03', '8796971758990371'),
(162, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:18:24', '2019-12-06 11:18:24', '3609818853209109'),
(163, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:18:24', '2019-12-06 11:18:24', '3609818853209109'),
(164, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:18:50', '2019-12-06 11:18:50', '1699393193521127'),
(165, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:18:50', '2019-12-06 11:18:50', '1699393193521127'),
(166, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:19:56', '2019-12-06 11:19:56', '1625156293694200'),
(167, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:19:56', '2019-12-06 11:19:56', '1625156293694200'),
(168, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:20:51', '2019-12-06 11:20:51', '4024991013696383'),
(169, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:20:51', '2019-12-06 11:20:51', '4024991013696383'),
(170, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:21:01', '2019-12-06 11:21:01', '4877334013913668'),
(171, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:21:01', '2019-12-06 11:21:01', '4877334013913668'),
(172, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:21:10', '2019-12-06 11:21:10', '8665227049179947'),
(173, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:21:10', '2019-12-06 11:21:10', '8665227049179947'),
(174, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:21:30', '2019-12-06 11:21:30', '7598969380649237'),
(175, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:21:30', '2019-12-06 11:21:30', '7598969380649237'),
(176, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:21:38', '2019-12-06 11:21:38', '7150341469649722'),
(177, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:21:38', '2019-12-06 11:21:38', '7150341469649722'),
(178, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:23:02', '2019-12-06 11:23:02', '3724104010738008'),
(179, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:23:02', '2019-12-06 11:23:02', '3724104010738008'),
(180, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:23:59', '2019-12-06 11:23:59', '4869698859168811'),
(181, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:23:59', '2019-12-06 11:23:59', '4869698859168811'),
(182, 76, 66, 1051, 31, 4, 1000, '', '2019-12-06 11:24:21', '2019-12-06 11:24:21', '5460235315695804'),
(183, 76, 66, 1051, 32, 4, 1200, '', '2019-12-06 11:24:21', '2019-12-06 11:24:21', '5460235315695804'),
(184, 76, 66, 1051, 31, 4, 1000, 'http://1172.16.17.326/sim_new/storage/app/public/qr_image/1575631810.png', '2019-12-06 11:30:10', '2019-12-06 11:30:10', '1207427516023929'),
(185, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575631810.png', '2019-12-06 11:30:10', '2019-12-06 11:30:10', '1207427516023929'),
(186, 3, 64, 1049, 30, 1, 21, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575631878.png', '2019-12-06 11:31:18', '2019-12-06 11:31:18', '1208681028130807'),
(187, 3, 37, 510, 16, 2, 400, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575631937.png', '2019-12-06 11:32:17', '2019-12-06 11:32:17', '3170162946425978'),
(188, 78, 67, 1052, 33, 3, 75, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575636398.png', '2019-12-06 12:46:37', '2019-12-06 12:46:37', '9640350060774287'),
(189, 78, 67, 1052, 33, 3, 75, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575636436.png', '2019-12-06 12:47:16', '2019-12-06 12:47:16', '4010205121374854'),
(190, 78, 67, 1052, 33, 3, 75, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575636467.png', '2019-12-06 12:47:47', '2019-12-06 12:47:47', '8325323461397448'),
(191, 78, 67, 1052, 33, 3, 75, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575636505.png', '2019-12-06 12:48:25', '2019-12-06 12:48:25', '6408314618901450'),
(192, 78, 67, 1052, 33, 3, 75, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575636546.png', '2019-12-06 12:49:06', '2019-12-06 12:49:06', '7846878667537887'),
(193, 78, 68, 1053, 34, 1, 25, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575636874.png', '2019-12-06 12:54:34', '2019-12-06 12:54:34', '7188987721502745'),
(194, 78, 68, 1053, 34, 1, 25, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575638349.png', '2019-12-06 13:19:09', '2019-12-06 13:19:09', '1726918245429864'),
(195, 78, 68, 1053, 34, 1, 25, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575638439.png', '2019-12-06 13:20:39', '2019-12-06 13:20:39', '7612695992342004'),
(196, 77, 68, 1053, 548470, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575638696.png', '2019-12-06 13:24:56', '2019-12-06 13:24:56', NULL),
(197, 77, 68, 1053, 401382, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575638802.png', '2019-12-06 13:26:41', '2019-12-06 13:26:41', NULL),
(198, 3, 73, 1081, 36, 5, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575641253.png', '2019-12-06 14:07:32', '2019-12-06 14:07:32', '2644041794509883'),
(199, 3, 73, 1081, 37, 5, 500, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575641253.png', '2019-12-06 14:07:32', '2019-12-06 14:07:32', '2644041794509883'),
(200, 41, 73, 1081, 822359, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575641810.png', '2019-12-06 14:16:50', '2019-12-06 14:16:50', NULL),
(201, 41, 73, 1081, 396133, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575641881.png', '2019-12-06 14:18:01', '2019-12-06 14:18:01', NULL),
(202, 41, 73, 1081, 439553, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575641937.png', '2019-12-06 14:18:57', '2019-12-06 14:18:57', NULL),
(203, 13, 17, 273, 145531, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575642826.png', '2019-12-06 14:33:46', '2019-12-06 14:33:46', NULL),
(204, 13, 17, 273, 611411, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575643478.png', '2019-12-06 14:44:38', '2019-12-06 14:44:38', '6113354123190071'),
(205, 13, 17, 273, 708418, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575643478.png', '2019-12-06 14:44:38', '2019-12-06 14:44:38', '6113354123190071'),
(206, 41, 73, 1081, 646796, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575643534.png', '2019-12-06 14:45:34', '2019-12-06 14:45:34', '7992033305975406'),
(207, 41, 73, 1081, 320257, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575643534.png', '2019-12-06 14:45:34', '2019-12-06 14:45:34', '7992033305975406'),
(208, 80, 74, 1082, 38, 2, 50, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575645552.png', '2019-12-06 15:19:11', '2019-12-06 15:19:11', '8245978289267842'),
(209, 81, 74, 1082, 592627, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575646106.png', '2019-12-06 15:28:26', '2019-12-06 15:28:26', '4192580880368158'),
(210, 81, 74, 1082, 482370, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575646106.png', '2019-12-06 15:28:26', '2019-12-06 15:28:26', '4192580880368158'),
(211, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575646206.png', '2019-12-06 15:30:06', '2019-12-06 15:30:06', '1285663657034457'),
(212, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575646206.png', '2019-12-06 15:30:06', '2019-12-06 15:30:06', '1285663657034457'),
(213, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575646262.png', '2019-12-06 15:31:02', '2019-12-06 15:31:02', '4473693399294602'),
(214, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575646262.png', '2019-12-06 15:31:02', '2019-12-06 15:31:02', '4473693399294602'),
(215, 80, 75, 1083, 39, 2, 50, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575646454.png', '2019-12-06 15:34:14', '2019-12-06 15:34:14', '3663837137284873'),
(216, 80, 77, 1085, 40, 1, 50, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575647352.png', '2019-12-06 15:49:12', '2019-12-06 15:49:12', '9680817925522902'),
(217, 87, 82, 1090, 42, 2, 40, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575718256.png', '2019-12-07 11:30:56', '2019-12-07 11:30:56', '1339589646910195'),
(218, 87, 35, 461, 14, 1, 50, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575718547.png', '2019-12-07 11:35:47', '2019-12-07 11:35:47', '5093355570826026'),
(219, 90, 84, 1092, 43, 15, 100, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575882354.png', '2019-12-09 09:05:54', '2019-12-09 09:05:54', '7577172132999655'),
(220, 89, 84, 1092, 782290, 1, 0, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575883022.png', '2019-12-09 09:17:02', '2019-12-09 09:17:02', '6385728545847278'),
(221, 90, 84, 1092, 43, 5, 100, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575884523.png', '2019-12-09 09:42:03', '2019-12-09 09:42:03', '6979869116581700'),
(222, 5, 37, 510, 16, 2, 200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575890326.png', '2019-12-09 11:18:46', '2019-12-09 11:18:46', '6117304724654391'),
(223, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575891800.png', '2019-12-09 11:43:20', '2019-12-09 11:43:20', '5932159471027434'),
(224, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575891800.png', '2019-12-09 11:43:20', '2019-12-09 11:43:20', '5932159471027434'),
(225, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575891846.png', '2019-12-09 11:44:06', '2019-12-09 11:44:06', '9500239425691916'),
(226, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575891846.png', '2019-12-09 11:44:06', '2019-12-09 11:44:06', '9500239425691916'),
(227, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575891901.png', '2019-12-09 11:45:01', '2019-12-09 11:45:01', '5827000293561764'),
(228, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575891901.png', '2019-12-09 11:45:01', '2019-12-09 11:45:01', '5827000293561764'),
(229, 76, 66, 1051, 31, 4, 1000, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575891919.png', '2019-12-09 11:45:19', '2019-12-09 11:45:19', '6027694538978147'),
(230, 76, 66, 1051, 32, 4, 1200, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575891919.png', '2019-12-09 11:45:19', '2019-12-09 11:45:19', '6027694538978147'),
(231, 3, 86, 1188, 44, 2, 400, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575894553.png', '2019-12-09 12:29:13', '2019-12-09 12:29:13', '1051434947793661');
-- --------------------------------------------------------
--
-- Table structure for table `chat_list`
--
CREATE TABLE `chat_list` (
`id` bigint(20) NOT NULL,
`user_id` int(11) NOT NULL,
`friend_id` int(11) NOT NULL,
`deleted_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `chat_list`
--
INSERT INTO `chat_list` (`id`, `user_id`, `friend_id`, `deleted_by`, `created_at`, `updated_at`) VALUES
(1, 5, 2, 0, '2019-09-09 13:00:05', '2019-09-09 07:30:05'),
(2, 5, 3, 0, '2019-09-09 13:24:14', '2019-09-09 07:54:14'),
(3, 12, 9, 0, '2019-09-10 10:42:56', '2019-09-10 05:12:56'),
(4, 5, 8, 0, '2019-09-20 13:05:57', '2019-09-20 07:35:57'),
(5, 43, 44, 0, '2019-10-30 19:15:50', '2019-10-30 13:45:50'),
(6, 43, 47, 0, '2019-10-30 19:58:56', '2019-10-30 14:28:56'),
(7, 5, 10, 0, '2019-11-07 12:06:01', '2019-11-07 06:36:01'),
(8, 66, 67, 0, '2019-11-11 15:08:38', '2019-11-11 09:38:38'),
(9, 62, 70, 0, '2019-11-13 10:44:00', '2019-11-13 05:14:00'),
(10, 70, 3, 0, '2019-11-13 10:49:46', '2019-11-13 05:19:46'),
(11, 62, 5, 0, '2019-11-13 10:50:10', '2019-11-13 05:20:10'),
(12, 5, 7, 0, '2019-11-13 11:54:09', '2019-11-13 06:24:09'),
(13, 5, 9, 0, '2019-11-13 11:54:19', '2019-11-13 06:24:19'),
(14, 5, 23, 0, '2019-11-13 11:54:26', '2019-11-13 06:24:26'),
(15, 5, 51, 0, '2019-11-13 11:54:37', '2019-11-13 06:24:37'),
(16, 72, 2, 0, '2019-11-13 18:06:30', '2019-11-13 12:36:30'),
(17, 72, 8, 0, '2019-11-13 18:07:11', '2019-11-13 12:37:11'),
(18, 72, 3, 0, '2019-11-13 18:07:22', '2019-11-13 12:37:22'),
(19, 72, 11, 0, '2019-11-13 18:07:36', '2019-11-13 12:37:36'),
(20, 72, 10, 0, '2019-11-13 18:07:48', '2019-11-13 12:37:48'),
(21, 72, 5, 0, '2019-11-13 18:07:55', '2019-11-13 12:37:55'),
(22, 72, 63, 0, '2019-11-13 18:08:53', '2019-11-13 12:38:53'),
(23, 70, 72, 0, '2019-11-13 18:22:18', '2019-11-13 12:52:18'),
(24, 70, 5, 0, '2019-11-14 15:04:12', '2019-11-14 09:34:12'),
(25, 74, 75, 0, '2019-11-14 15:51:15', '2019-11-14 10:21:15'),
(26, 5, 74, 0, '2019-11-14 16:00:58', '2019-11-14 10:30:58'),
(27, 78, 79, 0, '2019-12-06 19:25:12', '2019-12-06 13:55:12'),
(28, 82, 80, 0, '2019-12-06 21:33:38', '2019-12-06 16:03:38'),
(29, 86, 78, 0, '2019-12-07 16:17:32', '2019-12-07 10:47:32'),
(30, 87, 78, 0, '2019-12-07 17:04:20', '2019-12-07 11:34:20'),
(31, 12, 90, 0, '2019-12-09 15:17:56', '2019-12-09 09:47:56');
-- --------------------------------------------------------
--
-- Table structure for table `check_in_tickets`
--
CREATE TABLE `check_in_tickets` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`ticket_id` int(11) NOT NULL,
`qr_id` varchar(255) NOT NULL DEFAULT '0',
`event_id` int(11) NOT NULL,
`sub_event_id` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `check_in_tickets`
--
INSERT INTO `check_in_tickets` (`id`, `user_id`, `ticket_id`, `qr_id`, `event_id`, `sub_event_id`, `created_at`, `updated_at`) VALUES
(1, 68, 24, '8', 55, 910, '2019-11-11 15:50:00', '2019-11-11 10:20:26'),
(2, 69, 25, '10', 56, 960, '2019-11-13 11:16:00', '2019-11-13 05:46:02'),
(3, 76, 31, '6027694538978147', 66, 1051, '2019-12-09 17:47:00', '2019-12-09 12:17:35'),
(4, 76, 32, '6027694538978147', 66, 1051, '2019-12-09 17:47:00', '2019-12-09 12:17:35'),
(5, 41, 44, '1051434947793661', 86, 1188, '2019-12-09 17:59:00', '2019-12-09 12:29:41');
-- --------------------------------------------------------
--
-- Table structure for table `comments`
--
CREATE TABLE `comments` (
`id` int(11) NOT NULL,
`post_id` int(11) NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`comment` longtext COLLATE utf8_unicode_ci NOT NULL,
`timestamp` double NOT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `comments`
--
INSERT INTO `comments` (`id`, `post_id`, `user_id`, `comment`, `timestamp`, `updated_at`, `created_at`) VALUES
(1, 5, 4, 'Test', 1568019589919, '2019-09-09 08:59:49', '2019-09-09 08:59:49'),
(2, 10, 8, 'fsdf', 1568038518371, '2019-09-09 14:15:18', '2019-09-09 14:15:18'),
(3, 10, 8, 'dsf', 1568038522750, '2019-09-09 14:15:22', '2019-09-09 14:15:22'),
(4, 11, 9, 'now comment testing', 1568090737095, '2019-09-10 04:45:37', '2019-09-10 04:45:37'),
(5, 11, 9, 'now comment testing', 1568090745042, '2019-09-10 04:45:45', '2019-09-10 04:45:45'),
(6, 11, 9, 'I have posted same comment twice', 1568090755828, '2019-09-10 04:45:55', '2019-09-10 04:45:55'),
(7, 11, 10, 'sghdshdsdfsdgsfdgsdfsdfsdsdsdss', 1568090852662, '2019-09-10 04:47:32', '2019-09-10 04:47:32'),
(8, 12, 12, 'Vjbx', 1568092538062, '2019-09-10 05:15:38', '2019-09-10 05:15:38'),
(9, 12, 13, 'ccvcvcvcvccv', 1568092549079, '2019-09-10 05:15:49', '2019-09-10 05:15:49'),
(10, 1, 4, 'dqwdqw dqwdqw', 1568092696158, '2019-09-10 05:18:16', '2019-09-10 05:18:16'),
(11, 13, 14, 'asa', 1568097744591, '2019-09-10 06:42:24', '2019-09-10 06:42:24'),
(12, 12, 5, 'Hshdjd', 1568965238659, '2019-09-20 07:40:38', '2019-09-20 07:40:38'),
(13, 14, 5, 'Dgdhdh', 1568965406683, '2019-09-20 07:43:26', '2019-09-20 07:43:26'),
(14, 14, 5, 'Fhdhdh', 1568965411889, '2019-09-20 07:43:31', '2019-09-20 07:43:31'),
(15, 15, 21, 'idi', 1570189180977, '2019-10-04 11:39:40', '2019-10-04 11:39:40'),
(16, 15, 25, 'ddfd', 1570189210272, '2019-10-04 11:40:10', '2019-10-04 11:40:10'),
(17, 16, 31, 'sds', 1570199060246, '2019-10-04 14:24:20', '2019-10-04 14:24:20'),
(18, 16, 34, 'sdeeeeeeeeeeeeeeeeef', 1570199211222, '2019-10-04 14:26:51', '2019-10-04 14:26:51'),
(19, 17, 42, 'My post', 1572443056227, '2019-10-30 13:44:16', '2019-10-30 13:44:16'),
(20, 17, 43, 'Fix ugh get', 1572443102265, '2019-10-30 13:45:02', '2019-10-30 13:45:02'),
(21, 18, 50, 'dfdfdf', 1572847093485, '2019-11-04 05:58:13', '2019-11-04 05:58:13'),
(22, 19, 50, 'fgfgf', 1572847810809, '2019-11-04 06:10:10', '2019-11-04 06:10:10'),
(23, 20, 51, 'comm', 1572848255183, '2019-11-04 06:17:35', '2019-11-04 06:17:35'),
(24, 31, 61, 'sdsdsd', 1572940399780, '2019-11-05 07:53:19', '2019-11-05 07:53:19'),
(25, 30, 59, 'hhgjkhdgkjhdfkghdkjghkjdfgdfg', 1572940483279, '2019-11-05 07:54:43', '2019-11-05 07:54:43'),
(26, 30, 59, 'hjkhkhjk', 1572940486941, '2019-11-05 07:54:46', '2019-11-05 07:54:46'),
(27, 34, 58, 'fdfdf', 1572945970529, '2019-11-05 09:26:10', '2019-11-05 09:26:10'),
(28, 34, 58, 'wewewewe', 1572945974092, '2019-11-05 09:26:14', '2019-11-05 09:26:14'),
(29, 34, 58, 'wewewewewew', 1572945978148, '2019-11-05 09:26:18', '2019-11-05 09:26:18'),
(30, 34, 63, 'fhdghfghf', 1572945983816, '2019-11-05 09:26:23', '2019-11-05 09:26:23'),
(31, 34, 63, 'dgdgf', 1572945986909, '2019-11-05 09:26:26', '2019-11-05 09:26:26'),
(32, 34, 63, '5 Comments\r\n2 Likes\r\n\r\ndfdfdfd gffgfgcfdgdgdgdgtdetretetethhgjhgj gggdgrderhfhfhfhgfgf4wsr hggghgh trtetrerewezsf bhgghfhdtdtrfd fgfhf 5 Comments\r\n2 Likes\r\n\r\ndfdfdfd gffgfgcfdgdgdgdgtdetretetethhgjhgj gggdgrderhfhfhfhgfgf4wsr hggghgh trtetrerewezsf bhgghfhdtdtrfd fgfhf 5 Comments\r\n2 Likes\r\n\r\ndfdfdfd gffgfgc', 1572946004511, '2019-11-05 09:26:44', '2019-11-05 09:26:44'),
(33, 35, 64, 'test user', 1572946321667, '2019-11-05 09:32:01', '2019-11-05 09:32:01'),
(34, 35, 64, 'ggfg', 1572946386740, '2019-11-05 09:33:06', '2019-11-05 09:33:06'),
(35, 35, 63, '<KEY>', 1572946387278, '2019-11-05 09:33:07', '2019-11-05 09:33:07'),
(36, 37, 64, 'zZZ', 1572947254865, '2019-11-05 09:47:34', '2019-11-05 09:47:34'),
(37, 40, 66, 'Test', 1573466345993, '2019-11-11 09:59:05', '2019-11-11 09:59:05'),
(38, 40, 67, 'Chchghgh', 1573466365473, '2019-11-11 09:59:25', '2019-11-11 09:59:25'),
(39, 42, 5, 'First comment', 1575544364505, '2019-12-05 11:12:44', '2019-12-05 11:12:44'),
(40, 43, 77, 'Dbiribibhri hrb inribrib o', 1575635659036, '2019-12-06 12:34:19', '2019-12-06 12:34:19'),
(41, 43, 77, 'Ihrvhi rhih roubvribkr', 1575635663898, '2019-12-06 12:34:23', '2019-12-06 12:34:23'),
(42, 43, 77, 'Hbm ruibrbibrihvrivhrvihihv', 1575635677478, '2019-12-06 12:34:37', '2019-12-06 12:34:37'),
(43, 43, 77, 'Kh xbxbxb', 1575635873011, '2019-12-06 12:37:53', '2019-12-06 12:37:53'),
(44, 46, 81, 'Jcjchcjc vigne b', 1575645428365, '2019-12-06 15:17:08', '2019-12-06 15:17:08'),
(45, 48, 90, 'Nfnfn', 1575885384112, '2019-12-09 09:56:24', '2019-12-09 09:56:24'),
(46, 48, 90, 'Nfnfnn', 1575885387640, '2019-12-09 09:56:27', '2019-12-09 09:56:27');
-- --------------------------------------------------------
--
-- Table structure for table `contact_us`
--
CREATE TABLE `contact_us` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`updated_at` datetime NOT NULL,
`created_at` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `contact_us`
--
INSERT INTO `contact_us` (`id`, `user_id`, `text`, `updated_at`, `created_at`) VALUES
(1, 6, 'This is a testing bol organiser.', '2019-09-09 10:45:42', '2019-09-09'),
(2, 9, 'test', '2019-09-10 04:49:15', '2019-09-10'),
(3, 9, 'Vjjvz', '2019-09-10 10:33:31', '2019-09-10'),
(4, 14, 'test', '2019-09-10 06:39:05', '2019-09-10'),
(5, 21, 'test', '2019-10-04 11:18:04', '2019-10-04'),
(6, 31, 'jshdjshksdkfsd', '2019-10-04 14:20:18', '2019-10-04'),
(7, 31, 'test', '2019-10-04 14:21:36', '2019-10-04'),
(8, 42, 'Ucufcuhcxg', '2019-10-30 19:16:46', '2019-10-30'),
(9, 2, 'efw fwfwq fw', '2019-11-01 09:22:54', '2019-11-01'),
(10, 48, 'rwerwererwrwr', '2019-11-04 05:21:11', '2019-11-04'),
(11, 48, 'yuyyuyuyu', '2019-11-04 05:22:26', '2019-11-04'),
(12, 49, 'fdgvddfgvdc', '2019-11-04 05:48:28', '2019-11-04'),
(13, 50, 'This is a testing email.', '2019-11-04 05:56:36', '2019-11-04'),
(14, 52, 'fghgf', '2019-11-04 06:41:21', '2019-11-04'),
(15, 54, '333', '2019-11-05 05:26:43', '2019-11-05'),
(16, 63, '34', '2019-11-05 09:25:17', '2019-11-05'),
(17, 64, 'testing', '2019-11-05 09:33:50', '2019-11-05'),
(18, 70, 'Suhshjs', '2019-11-13 11:03:18', '2019-11-13'),
(19, 75, 'Jkvjc', '2019-11-14 15:53:52', '2019-11-14'),
(20, 77, 'Chc khbivvkhvihchi ih vj j', '2019-12-06 17:49:04', '2019-12-06'),
(21, 80, 'Buibinin', '2019-12-06 21:29:35', '2019-12-06'),
(22, 82, 'Hcgj', '2019-12-06 21:31:31', '2019-12-06'),
(23, 78, 'Nxbxbndhjcjdnnff', '2019-12-07 16:18:44', '2019-12-07'),
(24, 87, 'Icykcgckhc lchcho', '2019-12-07 17:09:23', '2019-12-07'),
(25, 90, 'Vxbhdjrj', '2019-12-09 15:19:03', '2019-12-09'),
(26, 12, 'Cgkfjfh', '2019-12-09 15:21:24', '2019-12-09');
-- --------------------------------------------------------
--
-- Table structure for table `dress_codes`
--
CREATE TABLE `dress_codes` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `dress_codes`
--
INSERT INTO `dress_codes` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'casual', '2018-03-23 06:00:15', '0000-00-00 00:00:00'),
(2, 'formal', '2018-03-23 06:00:26', '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `event_list`
--
CREATE TABLE `event_list` (
`id` int(11) NOT NULL,
`submit_by` int(11) NOT NULL COMMENT '1=>admin, 2=> user, 3 => Organizer',
`user_id` int(10) UNSIGNED NOT NULL,
`sub_admin_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`post_type` varchar(255) CHARACTER SET latin1 DEFAULT '' COMMENT '1 => public, 2 => private',
`main` int(11) NOT NULL DEFAULT '1' COMMENT '1=> image, 2=> video',
`event_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`event_lat` double NOT NULL DEFAULT '0',
`event_long` double NOT NULL DEFAULT '0',
`event_location` text COLLATE utf8mb4_unicode_ci NOT NULL,
`event_media_type` int(11) NOT NULL DEFAULT '1' COMMENT '1 => Image, 2 => video, 3 => none',
`event_video_url` varchar(255) CHARACTER SET latin1 NOT NULL DEFAULT '',
`event_video_url2` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`event_image_url` varchar(255) CHARACTER SET latin1 NOT NULL DEFAULT '',
`event_image_url2` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`primary_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`event_theme_url` varchar(255) CHARACTER SET latin1 NOT NULL DEFAULT '',
`description` longtext CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`event_date` date NOT NULL,
`event_date2` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`event_time` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`end_time` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '',
`repeat_interval` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'one_day,weekly,2_weekly,monthly',
`day_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '',
`ticket_amount` float DEFAULT '0',
`age_restrictions` int(11) DEFAULT '0',
`dress_code` varchar(255) CHARACTER SET latin1 NOT NULL DEFAULT '',
`url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '',
`music_int_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT ' ',
`public_int_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT '',
`id_Required` varchar(100) CHARACTER SET latin1 NOT NULL,
`website` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`contact_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '1=> pending, 2 => active, 3 => reject',
`enable_ticket` int(11) NOT NULL DEFAULT '2' COMMENT '1=> enable, 2=> disable',
`enable_guest` int(11) NOT NULL DEFAULT '1' COMMENT '1=> enable, 2=> disable',
`guest_ticket_price` float NOT NULL DEFAULT '0',
`updated_at` datetime NOT NULL,
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `event_list`
--
INSERT INTO `event_list` (`id`, `submit_by`, `user_id`, `sub_admin_id`, `post_type`, `main`, `event_name`, `event_lat`, `event_long`, `event_location`, `event_media_type`, `event_video_url`, `event_video_url2`, `event_image_url`, `event_image_url2`, `primary_image`, `event_theme_url`, `description`, `event_date`, `event_date2`, `event_time`, `end_time`, `repeat_interval`, `day_name`, `ticket_amount`, `age_restrictions`, `dress_code`, `url`, `music_int_id`, `public_int_id`, `id_Required`, `website`, `contact_number`, `status`, `enable_ticket`, `enable_guest`, `guest_ticket_price`, `updated_at`, `created_at`) VALUES
(1, 2, 2, NULL, '2', 1, 'First', 38.89590159999999, 8.81481980000001, 'Località Tuerredda, Teulada, Province of Cagliari, Italy', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/9KyH79hZrIi0DjuOw6wB.png', '', '', '', 'Dummy Text', '2019-09-09', 'Mon 9 Sep', '12:39:00', '12:39:00', 'one_day', 'Mon', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-09-09 12:30:12', '2019-09-09 12:30:12'),
(2, 3, 4, NULL, '1', 1, 'My Event', 43.091463, -0.045726000000058775, 'Lourdes, France', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/FJlfAwrvhscqDCdCzNaB.png', '', '', '', 'qwdqwdqw', '2019-09-09', 'Mon 9 Sep', '12:54:00', '12:54:00', 'weekly', 'Mon', 0, 0, 'formal', '', NULL, NULL, '1', '', NULL, 2, 1, 2, 0, '2019-09-09 12:45:30', '2019-09-09 12:45:30'),
(3, 2, 3, NULL, '2', 2, 'Pubg', 47.56924599999999, 18.404817999999977, '<NAME>', 2, '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/K33kQ9bmfMgDp6DtvNhm.mp4', 'http://192.168.3.76/sim_new/storage/app/public/event_media/MUfQ9jlO5FxkGtzKG8Y1.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/8eM2c8dJkdg00C9fFZrh.png', '', '', 'wdq dqwd', '2019-09-09', 'Mon 9 Sep', '13:02:00', '13:02:00', 'monthly', 'Mon', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-09-09 12:53:20', '2019-09-09 12:53:20'),
(4, 3, 4, NULL, '1', 1, 'Music Event', 42.9849233, -81.2452768, 'London, ON, Canada', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/O30fxLsoQreMMrTSbjFJ.png', '', '', '', 'qwerty', '2019-09-09', 'Mon 9 Sep', '13:06:00', '13:06:00', 'weekly', 'Mon', 0, 0, 'formal', '', NULL, NULL, '1', '', NULL, 2, 1, 2, 0, '2019-09-09 12:57:35', '2019-09-09 12:57:35'),
(5, 3, 4, NULL, '1', 1, 'public event', 30.7046486, 76.71787259999996, 'Mohali, Punjab, India', 1, '', '', 'http://1172.16.31.10/sim_new/storage/app/public/event_media/wKDWZrnN4AXitxjKuugj.png', '', '', '', 'wdwqd qwd qwd', '2019-09-09', 'Mon 9 Sep', '13:10:00', '13:10:00', '2_weekly', 'Mon', 0, 0, 'casual', '', NULL, NULL, '1', '', NULL, 2, 1, 2, 0, '2019-09-09 13:01:20', '2019-09-09 13:01:20'),
(6, 3, 4, NULL, '1', 1, 'Videp', 12.2958104, 76.63938050000002, 'Mysore, Karnataka, India', 2, 'http://1172.16.31.10/sim_new/storage/app/public/event_media/Bh8OAI0hDvSd2tgMaNUW.mp4', '', '', '', '', '', 'wdqw qwd qwdqwd qw', '2019-09-09', 'Mon 9 Sep', '13:12:00', '22:12:00', 'monthly', 'Mon', 0, 0, 'casual', '', NULL, NULL, '1', '', NULL, 2, 1, 2, 0, '2019-09-09 13:03:35', '2019-09-09 13:03:35'),
(7, 2, 3, NULL, '2', 1, 'Crash', 43.091463, -0.045726000000058775, 'Lourdes, France', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/0vXH1YU1OTsDkenZfmQq.png', '', '', '', 'dwq wq q', '2019-09-09', 'Mon 9 Sep', '13:28:00', '22:28:00', 'weekly', 'Mon', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-09-09 13:19:55', '2019-09-09 13:19:55'),
(8, 2, 5, NULL, '2', 1, 'Android', 30.6996627, 76.6908635, '8A, Industrial Area, Sector 75, <NAME>, Punjab 160055, India', 1, '', '', 'http://1172.16.31.10/sim_new/storage/app/public/event_media/BlHdq0s2jz8cY91iGTcx.png', '', '', '', 'Xhhxhd', '2019-09-10', 'Tue 10 Sep', '13:22:00', '13:22:00', 'monthly', 'Thu', 0, 0, '', '', NULL, '1,2', '', 'Www.Tjis.com', NULL, 2, 1, 1, 0, '2019-09-09 13:22:29', '2019-09-09 13:22:29'),
(9, 3, 4, NULL, '1', 1, 'John Event', 30.69954154777311, 76.69090709651469, 'Mohali, Punjab', 1, '', '', 'http://1172.16.31.10/sim_new/storage/app/public/event_media/OjZ9IHnFMgI4AzHXhhqP.png', '', '', '', 'Qwerrrr', '2019-09-09', 'Mon 9 Sep', '14:36:14', '14:36:14', 'weekly', 'Thu', 0, 21, 'Casual', '', '1,2', '1,2', 'Yes', NULL, NULL, 2, 1, 2, 0, '2019-09-09 14:27:04', '2019-09-09 14:27:04'),
(10, 2, 2, NULL, '2', 1, 'Testing', 38.25266469999999, -85.75845570000001, 'Louisville, KY, USA', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/AP4NGTUsgLvNZ1GgSHmi.png', '', '', '', 'dwq wqdqwd', '2019-09-09', 'Mon 9 Sep', '14:40:00', '14:40:00', 'monthly', 'Mon', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-09-09 14:31:24', '2019-09-09 14:31:24'),
(11, 2, 7, NULL, '2', 1, 'Activate', 25.7616798, -80.19179020000001, 'Miami, FL, USA', 1, '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/w1NtmAawNCUYU6zWNiCI.mp4', 'http://192.168.3.76/sim_new/storage/app/public/event_media/KaPU08F8gS3govtLOgXS.png', 'http://1172.16.31.10/sim_new/storage/app/public/event_media/XQ09NeDHQjY4mZor4g9e.png', '', '', 'sxwdqadeadwdwde', '2019-09-09', 'Mon 9 Sep', '16:25:00', '16:19:00', 'one_day', 'Mon', 0, 0, '', '', NULL, NULL, '', 'https://www.google.com', '+447894561236', 2, 1, 2, 0, '2019-09-09 16:16:31', '2019-09-09 16:16:31'),
(12, 2, 7, NULL, '2', 1, 'kahani', 40.3772059, -105.5216651, 'Estes Park, CO, USA', 1, '', 'http://1172.16.31.10/sim_new/storage/app/public/event_media/FQC3vFK2EEX1yTEObpVg.mp4', 'http://192.168.3.76/sim_new/storage/app/public/event_media/NP3sHRz4PxiU5nhtpYhz.png', '', '', '', 'uhrtkjtghkrdjrgd', '2019-09-10', 'Tue 10 Sep', '19:43:00', '19:43:00', 'one_day', 'Tue', 0, 0, '', '', NULL, NULL, '', 'https://www.google.com', '+447894561236', 2, 1, 2, 0, '2019-09-09 19:35:03', '2019-09-09 19:35:03'),
(13, 2, 8, NULL, '2', 1, 'chapter', 30.7046486, 76.71787259999996, 'Mohali, Punjab, India', 1, '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/oDMZxuznYXvBw0nF24sG.mp4', 'http://192.168.3.76/sim_new/storage/app/public/event_media/INMkUeHO0llMt5zbJHuw.png', '', '', '', 'sdsdsda', '2019-09-10', 'Tue 10 Sep', '19:53:00', '19:53:00', 'one_day', 'Tue', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-09-09 19:44:48', '2019-09-09 19:44:48'),
(14, 2, 9, NULL, '2', 1, 'Later', 28.68627380000001, 77.22178310000004, 'Delhi, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/ylvREZ4Yk9YdRvmcZrfq.png', '', '', '', 'later event', '2019-09-11', 'Wed 11 Sep', '10:23:00', '10:23:00', 'one_day', 'Wed', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-09-10 10:13:58', '2019-09-10 10:13:58'),
(15, 2, 10, NULL, '2', 1, 'Now', 35.2270869, -80.84312669999997, 'Charlotte, NC, USA', 1, '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/KgjTrP95RAXgxC8TnS3X.mp4', 'http://192.168.3.76/sim_new/storage/app/public/event_media/kAqPDg7jXjTbgeexvAbu.png', '', '', '', 'ggwfgafgawscwa cgscgsdgsa adfadsfasd', '2019-09-10', 'Tue 10 Sep', '10:23:00', '10:23:00', 'one_day', 'Tue', 0, 0, '', '', NULL, NULL, '', 'http://www.google.com', '+44123654789', 2, 1, 2, 0, '2019-09-10 10:14:17', '2019-09-10 10:14:17'),
(16, 2, 10, NULL, '2', 1, 'Edit', 30.39353369999999, -86.49578329999997, 'Destin, FL, USA', 1, '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/UYTDLXSzL2u1RSGZ9YAI.mp4', 'http://192.168.3.76/sim_new/storage/app/public/event_media/hp31N6z7LwdhRTXUlJlc.png', '', '', '', 'hasgasfhagsas', '2019-09-17', 'Tue 17 Sep', '10:25:00', '10:25:00', 'one_day', 'Tue', 0, 0, '', '', NULL, NULL, '', 'http://www.google.com', '+441236547895', 2, 1, 2, 0, '2019-09-10 10:16:34', '2019-09-10 10:16:34'),
(17, 3, 13, NULL, '1', 1, 'Orgevent', 36.721261, -4.4212655, 'Málaga, Spain', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/68HloLgjidpZ6BrxdC8D.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/mXzxkHBs6GxlkokPdJ42.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/RJkifAlMPsKX3mJAjf8z.png', '', 'wyeeeeeeyd cccccccccnx bxxxxcnbcb cbbbbbbbb hdg sh', '2019-09-10', 'Tue 10 Sep', '10:47:00', '10:47:00', 'one_day', 'Tue', 0, 30, 'formal', '', NULL, NULL, '1', 'http://www.google.com', '+441236547896', 2, 1, 1, 0, '2019-09-10 10:40:38', '2019-09-10 10:40:38'),
(18, 2, 2, NULL, '2', 1, 'nowevent', 43.5322015, -5.661119500000041, 'Gijón, Spain', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/bdh3j0CbGpuVz5Ss9hf2.png', '', '', '', 'qwdqwdqw', '2019-09-10', 'Tue 10 Sep', '11:50:00', '11:50:00', 'one_day', 'Tue', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-09-10 11:40:47', '2019-09-10 11:40:47'),
(19, 2, 15, NULL, '2', 1, 'Savan', 43.46230569999999, -3.8099803000000065, 'Santander, Spain', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/Gg6pEkGsWumG9ostHlyF.png', '', '', '', 'dfdfdd', '2019-09-10', 'Tue 10 Sep', '12:19:00', '12:19:00', 'one_day', 'Tue', 0, 0, '', '', NULL, NULL, '', 'http://www.google.com', '8956235689', 2, 1, 2, 0, '2019-09-10 12:09:55', '2019-09-10 12:09:55'),
(20, 3, 16, NULL, '1', 1, 'Image', 30.4277547, -9.5981072, '<NAME>', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/wmxwko2IixnoLs3cilmg.png', '', '', '', 'dssfsfsf', '2019-09-10', 'Tue 10 Sep', '12:31:00', '12:31:00', 'one_day', 'Tue', 0, 25, 'formal', '', NULL, NULL, '1', 'http://www.google.com', '+4412365478963', 2, 1, 1, 0, '2019-09-10 12:27:58', '2019-09-10 12:27:58'),
(21, 2, 5, NULL, '2', 1, 'Bcnbdhd', 30.699647, 76.6909024, '8A, Industrial Area, Sector 75, <NAME>, Punjab 160055, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/wLn1tspaQAqjjMb5DJFJ.png', '', '', '', 'Bdhhdudud', '2019-09-21', 'Sat 21 Sep', '13:12:00', '13:12:00', '2_weekly', 'Thu', 0, 0, '', '', NULL, ',2,1,2', '', 'Www.this.com', NULL, 2, 1, 1, 0, '2019-09-20 13:12:40', '2019-09-20 13:12:40'),
(22, 3, 4, NULL, '1', 1, 'my event edit', 30.7046, 76.7179, 'mohali', 1, '', '', 'http://192.168.3.76/Motiv/storage/app/public/event_media/7Bjguki0yJWn5v8Zx6UI.png', '', '', '', 'fggdgsdg', '2019-02-27', 'Wed 27 Feb', '21:00:00', '22:00:00', 'one_day', 'Thu', 0, 21, 'lkj', '', '1,2', '1,2', '122', NULL, '98989898', 2, 1, 2, 0, '2019-12-03 13:30:12', '2019-12-03 13:30:12'),
(23, 3, 4, NULL, '1', 1, 'New Event', 30.7046486, 76.71787259999996, 'Mohali, Punjab, India', 1, '', '', 'http://192.168.3.76/Motiv/storage/app/public/event_media/sewLviZ4EkJyrC93QyC2.png', '', '', '', 'dw dwqd qwdqw d', '2019-10-04', 'Fri 4 Oct', '12:35:00', '12:35:00', 'one_day', 'Fri', 0, 0, 'formal', '', NULL, NULL, '1', '', NULL, 1, 1, 2, 0, '2019-10-04 12:26:12', '2019-10-04 12:26:12'),
(24, 2, 2, NULL, '2', 1, 'Yooo', 34.2103894, -77.88681170000001, 'Wilmington, NC, USA', 1, '', '', 'http://192.168.3.76/Motiv/storage/app/public/event_media/6FTR2fU7Gc1ZLd4cmjFR.png', '', '', '', 'qwd wd qwd', '2019-10-04', 'Fri 4 Oct', '13:21:00', '13:21:00', 'one_day', 'Fri', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-10-04 13:12:24', '2019-10-04 13:12:24'),
(25, 2, 18, NULL, '2', 1, 'Test', 42.4627195, -2.444985200000019, 'Logroño, Spain', 1, '', '', 'http://192.168.3.76/Motiv/storage/app/public/event_media/tAYoCNNzOY0xT2QDD9zu.png', '', '', '', 'qwd qwdqwd', '2019-10-04', 'Fri 4 Oct', '13:30:00', '13:30:00', 'one_day', 'Fri', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-10-04 13:21:07', '2019-10-04 13:21:07'),
(26, 3, 20, NULL, '1', 1, 'qwerty', 30.7046486, 76.71787259999996, 'Mohali, Punjab, India', 1, '', '', 'http://192.168.3.76/Motiv/storage/app/public/event_media/LXy1086fZuGRIja1Zgxo.png', '', '', '', 'qwdqwd qwd', '2019-10-04', 'Fri 4 Oct', '15:05:00', '15:05:00', 'weekly', 'Fri', 0, 0, 'formal', '', NULL, NULL, '2', '', NULL, 1, 1, 2, 0, '2019-10-04 14:56:35', '2019-10-04 14:56:35'),
(27, 2, 21, NULL, '2', 1, 'grass', 28.68627380000001, 77.22178310000004, 'Delhi, India', 1, '', '', 'http://192.168.3.76/Motiv/storage/app/public/event_media/xjFmt5FWxNY7FYZmAgH6.png', '', '', '', 'grass grass grass grass grass grass grass grass grass grass grass grass grass grass grass grass grass grass grass grass', '2019-10-04', 'Fri 4 Oct', '17:09:00', '18:09:00', 'one_day', 'Fri', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-10-04 17:00:07', '2019-10-04 17:00:07'),
(28, 3, 25, NULL, '1', 1, 'JohnEvent', 30.6949406, 76.72605039999996, 'Mohali Railway Station Road, Sector 62, Sahibzada Ajit Singh Nagar, Punjab, India', 2, 'http://192.168.3.76/Motiv/storage/app/public/event_media/S8suObznfuINOOk85DRr.mp4', '', '', 'http://192.168.3.76/Motiv/storage/app/public/event_media/oOFcBLrOPHnWDFI6WlLp.png', 'http://192.168.3.76/Motiv/storage/app/public/event_media/uDTtRIgNsMV08szgOMfH.png', '', 'fdfdf', '2019-10-05', 'Sat 5 Oct', '17:13:00', '17:13:00', 'one_day', 'Sat', 0, 20, 'formal', '', NULL, NULL, '2', 'https://www.google.com', '08956235689', 2, 1, 2, 0, '2019-10-04 17:05:22', '2019-10-04 17:05:22'),
(29, 3, 25, NULL, '1', 1, 'FishA', 30.39353369999999, -86.49578329999997, 'Destin, FL, USA', 1, '', '', 'http://1172.16.31.10/Motiv/storage/app/public/event_media/AcLwlpN1ff9hZOQuIH7M.png', '', '', '', 'etetetet', '2019-10-05', 'Sat 5 Oct', '17:21:00', '17:21:00', 'one_day', 'Sat', 0, 30, 'formal', '', NULL, NULL, '1', '', NULL, 2, 1, 2, 0, '2019-10-04 17:12:59', '2019-10-04 17:12:59'),
(30, 2, 31, NULL, '2', 1, 'crash', 28.68627380000001, 77.22178310000004, 'Delhi, India', 1, '', '', 'http://192.168.3.76/Motiv/storage/app/public/event_media/UnPrTWYv4JaqaHg7PHRB.png', '', '', '', 'test', '2019-10-04', 'Fri 4 Oct', '20:02:00', '21:02:00', 'one_day', 'Fri', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-10-04 19:53:28', '2019-10-04 19:53:28'),
(31, 3, 35, NULL, '1', 1, 'qq1', 43.5322015, -5.661119500000041, '<NAME>', 1, '', '', 'http://192.168.3.76/Motiv/storage/app/public/event_media/Jg7sL9cEuwX6qGZeYjU7.png', '', '', '', 'gfgfgf', '2019-10-05', 'Sat 5 Oct', '20:11:00', '20:11:00', 'one_day', 'Sat', 0, 0, 'formal', '', NULL, NULL, '1', '', NULL, 2, 1, 2, 0, '2019-10-04 20:02:08', '2019-10-04 20:02:08'),
(32, 3, 42, NULL, '1', 1, 'Delta Event', 30.69950993714287, 76.69085956019025, 'Mohali, Punjab', 1, 'http://192.168.3.76/sim_new/storage/app/public/event_media/WlTswv8QOmf24opLLN76.mov', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/djSF77DhVordeDENV2Zw.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/ySAHEaJpM1BD4uD7SEpz.png', '', 'http://192.168.3.76/sim_new/storage/app/public/event_theme/tWZIAtKzBPkmN6vTQOd1.png', 'Tyggggigfihfuffidhkgjclgjckv', '2019-10-30', 'Wed 30 Oct', '19:03:25', '19:03:25', 'weekly', 'Thu', 0, 20, 'Casual', '', '1,2,3', '1,2,3', 'Yes', NULL, '8554587555866', 2, 2, 1, 20, '2019-10-30 19:07:00', '2019-10-30 19:07:00'),
(33, 2, 47, NULL, '2', 1, 'Login', 30.69951390009522, 76.69087694915731, 'Mohali, Punjab', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/ju3L6AyBppsUlnyNUhEx.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/hGKjQ0lqa7gXmxzSIeeC.png', '', '', 'Ghfg', '2019-10-31', 'Thu 31 Oct', '19:52:00', '19:52:00', 'one_day', 'Thu', 0, 0, '', '', NULL, '1', '', NULL, NULL, 2, 1, 1, 0, '2019-10-30 19:52:55', '2019-10-30 19:52:55'),
(34, 3, 46, NULL, '1', 1, 'Myocteven', 30.699506672263755, 76.6908530574099, 'Mohali, Punjab', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/D22IPTvmQa9lcl9MyCt5.png', '', '', '', 'Djjf', '2019-10-30', 'Wed 30 Oct', '19:52:12', '19:52:12', 'one_day', 'Thu', 0, 30, 'Casual', '', '2', '2', 'No', NULL, NULL, 2, 2, 1, 25, '2019-10-30 19:53:26', '2019-10-30 19:53:26'),
(35, 3, 46, NULL, '1', 1, 'Myoc', 30.69947922126954, 76.69087047883227, 'Mohali, Punjab', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/eaHOHN3WjIsxloJfg9jt.png', '', '', '', 'Fu ctig cit', '2019-11-02', 'Sat 2 Nov', '19:54:00', '19:54:00', 'weekly', 'Thu', 0, 30, 'Casual', '', '5', '2,5', 'Yes', NULL, NULL, 2, 1, 2, 0, '2019-10-30 19:54:43', '2019-10-30 19:54:43'),
(36, 3, 49, NULL, '1', 2, 'John_Event', 19.7059504, -101.19498249999998, '<NAME>, Mexico', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/3i9yykZ83F7JkjbgrOrQ.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/VBBnKdZVDgTMEJhxSZL9.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/EMD7RQaVvDbFKVbNpU79.png', '', 'absvabsvgf fgfabdannnnb jdhd gfrtrtrt', '2019-11-04', 'Mon 4 Nov', '11:25:00', '11:25:00', 'one_day', 'Mon', 0, 25, 'formal', '', NULL, NULL, '1', 'https://www.google.com', '+4164646115212121', 2, 1, 2, 0, '2019-11-04 11:17:18', '2019-11-04 11:17:18'),
(37, 3, 50, NULL, '1', 1, 'Four November', 31.6339793, 74.87226420000002, 'Amritsar, Punjab, India', 2, 'http://192.168.3.76/sim_new/storage/app/public/event_media/h9OWrvGe6MANf0MV0DZp.mp4', '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/EE8uTwn4sKZmMkcejE0j.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/yqfrgCHbR5wXKRIK3GIE.png', '', 'This is a new event, you can buy this and have a gtreat day.', '2019-11-04', 'Mon 4 Nov', '11:39:00', '11:39:00', 'weekly', 'Mon', 0, 18, 'formal', '', NULL, NULL, '1', 'http://www.google.com', '5656552212121', 2, 1, 2, 0, '2019-11-04 11:31:00', '2019-11-04 11:31:00'),
(38, 2, 47, NULL, '2', 2, 'Peter Event', 0, 0, 'Mohali', 2, '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/51eVEkbgLyF0ZJ0x9Kpj.mp4', 'http://192.168.3.76/sim_new/storage/app/public/event_media/7U2z0tx7jg3ZdyS9lKmz.png', '', '', '', 'This is a invite user.', '2019-11-04', 'Mon 4 Nov', '11:54:00', '11:54:00', 'weekly', 'Mon', 0, 0, '', '', NULL, NULL, '', 'http://www.google.com', '8982121212121', 2, 1, 2, 0, '2019-11-04 11:46:04', '2019-11-04 11:46:04'),
(39, 2, 54, NULL, '2', 1, 'tech fest', 28.68627380000001, 77.22178310000004, 'Delhi, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/644AiGXNTzy0Irs92gEu.png', '', '', '', 'test', '2019-11-05', 'Tue 5 Nov', '12:00:00', '11:01:00', 'one_day', 'Tue', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-11-05 10:51:44', '2019-11-05 10:51:44'),
(40, 2, 54, NULL, '2', 1, 'tech fest', 28.68627380000001, 77.22178310000004, 'Delhi, India', 1, '', '', 'http://1172.16.17.326/sim_new/storage/app/public/event_media/o41vlUcGelPldkkMOv8w.png', '', '', '', 'test', '2019-11-05', 'Tue 5 Nov', '12:00:00', '11:01:00', 'one_day', 'Tue', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-11-05 10:51:44', '2019-11-05 10:51:44'),
(41, 2, 54, NULL, '2', 1, 'crash', 28.68627380000001, 77.22178310000004, 'Delhi, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/aq6jdlUSb6CLDrp1qiev.png', '', '', '', 'sdcsds', '2019-11-06', 'Wed 6 Nov', '11:04:00', '11:04:00', 'one_day', 'Wed', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-11-05 10:55:17', '2019-11-05 10:55:17'),
(42, 3, 57, NULL, '1', 2, 'Quillflash', 42.9849233, -81.2452768, 'London, ON, Canada', 1, 'http://192.168.3.76/sim_new/storage/app/public/event_media/eCCpkapD0iYKXYQF9bmn.mp4', '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/z1GJcYTHvuO9zB4nHScV.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/NhYLlCPX6a9c3zjQxPxr.png', '', 'DFDFDF dfdfd ggggerrwrere', '2019-11-06', 'Wed 6 Nov', '11:06:00', '11:06:00', 'one_day', 'Wed', 0, 23, 'formal', '', NULL, NULL, '2', 'https://www.google.com', '946735353534', 2, 1, 2, 0, '2019-11-05 10:58:17', '2019-11-05 10:58:17'),
(43, 2, 59, NULL, '2', 2, 'list', 30.7046486, 76.71787259999996, 'Mohali, Punjab, India', 2, '', 'http://1172.16.17.326/sim_new/storage/app/public/event_media/tax5eAg02KByhwI8wSpk.mp4', 'http://192.168.3.76/sim_new/storage/app/public/event_media/jjjH5PgRsDPRH56FlRy9.png', '', '', '', 'svvd', '2019-11-05', 'Tue 5 Nov', '16:20:00', '21:20:00', 'one_day', 'Tue', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-11-05 13:09:10', '2019-11-05 13:09:10'),
(44, 2, 59, NULL, '2', 2, 'roast', 30.7046486, 76.71787259999996, 'Mohali, Punjab, India', 2, '', 'http://1172.16.17.326/sim_new/storage/app/public/event_media/Ysk0WsAPJLGrOH3jL9PC.mp4', 'http://192.168.3.76/sim_new/storage/app/public/event_media/zniB3F1HSUnFhAEbtpdm.png', '', '', '', 'gffbfgb', '2019-11-06', 'Wed 6 Nov', '13:21:00', '13:21:00', 'one_day', 'Wed', 0, 0, '', '', NULL, NULL, '', '', NULL, 2, 1, 2, 0, '2019-11-05 13:11:37', '2019-11-05 13:11:37'),
(45, 2, 58, NULL, '2', 2, 'dewsedws', 0, 0, 'deewewewe', 1, '', '', 'http://192.168.3.76/sim_newstorage/app/public/event_media/45_I1kdAbQILSGvdK3FfgVg.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/hV8tomeMtGBR9szzxQKt.png', '', '', 'hythfhf', '2019-11-05', 'Tue 5 Nov', '13:35:00', '18:00:00', 'weekly', 'Tue', 0, 23, '', '', NULL, NULL, '', 'https://www.google.com', '7676766766575757', 2, 1, 2, 0, '2019-11-05 13:26:35', '2019-11-05 13:26:35'),
(46, 2, 58, NULL, '2', 1, 'Event1', 28.68627380000001, 77.22178310000004, 'Delhi, India', 1, '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/IcIKBAiH3DO9lSOAc5ms.mp4', 'http://192.168.3.76/sim_new/storage/app/public/event_media/8mbzoLWYGOw0JnGxWujR.png', '', '', '', 'fghsgefvhsf hfghvfh nhfdv hndvfdn fdnhghg fggfgfg', '2019-11-12', 'Tue 12 Nov', '15:07:00', '15:07:00', 'one_day', 'Tue', 0, 0, '', '', NULL, NULL, '', 'http://www.google.com', '99589458745', 2, 1, 2, 0, '2019-11-05 14:58:33', '2019-11-05 14:58:33'),
(47, 3, 4, NULL, '1', 1, 'my event edit', 30.7046, 76.7179, 'mohali', 1, '', '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/eWimzgVpZjajOgbJ8TbY.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/ocBLWhHiRkZpG1hPjuNO.png', '', 'fggdgsdg', '2019-02-27', 'Wed 27 Feb', '21:00:00', '22:00:00', 'one_day', 'Thu', 0, 21, 'lkj', '', '1,2', '1,2', '122', NULL, '98989898', 2, 1, 2, 0, '2019-12-03 13:31:24', '2019-12-03 13:31:24'),
(48, 3, 64, NULL, '1', 1, 'Ticket Event', 40.7127753, -74.0059728, 'New York, NY, USA', 2, 'http://192.168.3.76/sim_new/storage/app/public/event_media/3m3WdTomgHZS9CSJfM6H.mp4', '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/0m94sr77ALYTAxYuIrqH.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/eoqUDUN1aiJn8thbSMzo.png', '', 'qweweewewewewfdf', '2019-11-05', 'Tue 5 Nov', '15:24:00', '15:24:00', 'weekly', 'Tue', 0, 18, 'formal', '', NULL, NULL, '1', 'https://www.google.com', '465564540222', 2, 1, 2, 0, '2019-11-05 15:16:11', '2019-11-05 15:16:11'),
(49, 3, 64, NULL, '1', 2, 'Circle Tickets', 43.0895577, -79.08494359999997, 'Niagara Falls, ON, Canada', 1, 'http://1172.16.17.326/sim_new/storage/app/public/event_media/RDMsHvlnBozwEM3pVHw7.mp4', '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/8C2hmggMihU3u3hCnzd4.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/HkVTkG4bDYx87dvTk4A7.png', '', 'dsdsdsds', '2019-11-05', 'Tue 5 Nov', '15:28:00', '15:28:00', 'weekly', 'Tue', 0, 12, 'formal', '', NULL, NULL, '1', 'https://www.google.com', '45454465656565', 2, 1, 2, 0, '2019-11-05 15:19:45', '2019-11-05 15:19:45'),
(50, 3, 4, NULL, '1', 1, 'wwww', -38.0054771, -57.54261059999999, 'Mar del Plata, Buenos Aires Province, Argentina', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/Ha5xNPceVjpoLyxA76Tj.png', '', '', '', 'wefefwe', '2019-11-05', 'Tue 5 Nov', '18:23:00', '18:23:00', 'one_day', 'Tue', 0, 0, 'formal', '', NULL, NULL, '1', '', NULL, 2, 1, 2, 0, '2019-11-05 18:14:18', '2019-11-05 18:14:18'),
(51, 2, 5, NULL, '2', 1, 'Weekly Evenent', 30.6996659, 76.6909136, '8A, Industrial Area, Sector 75, <NAME>, Punjab 160055, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/A9KvjL9kIZTAYeL6FlXh.png', '', '', '', 'Hi this is a weekly event\nHdhdh\nDbd\nDbd', '2019-11-07', 'Thu 7 Nov', '13:10:00', '13:00:00', 'weekly', 'Thu', 0, 0, '', '', NULL, '2,1,2,1,2', '', 'Www.Weeklyevent.Com', '1234567890', 2, 1, 1, 0, '2019-11-07 13:01:23', '2019-11-07 13:01:23'),
(52, 3, 4, NULL, '1', 1, 'Weekly Event By Organiseler ..', 30.6996656, 76.6909119, '8A, Industrial Area, Sector 75, <NAME>, Punjab 160055, India', 1, '', '', 'http://1172.16.17.326/sim_new/storage/app/public/event_media/nBja2s4e5qVjlPxmpRrw.png', '', '', '', 'This is a weekly event', '2019-11-07', 'Thu 7 Nov', '13:10:00', '13:03:00', 'weekly', 'Thu', 0, 21, 'FORMAL', '', '1,2,3,4,5,6,7,8,9,10,11,13,14', ',2,3,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23', 'yes', NULL, '1234567890', 2, 1, 1, 12, '2019-11-07 13:05:05', '2019-11-07 13:05:05'),
(53, 2, 66, NULL, '2', 1, 'Android Event', 18.74709654234088, 117.61244896799327, 'Lancang, Pu\'er, Yunnan, China', 1, 'http://192.168.3.76/sim_new/storage/app/public/event_media/zgjTziYrR3SW2nBbL4Lo.mp4', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/RQ4IqaqMJOaKasv9HlyV.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/2B4Ox99WMVkfaS12GWc5.png', '', '', 'This is user event', '2019-11-11', 'Mon 11 Nov', '15:32:00', '17:25:00', 'monthly', 'Thu', 0, 0, '', '', NULL, '1,2,3', '', NULL, NULL, 2, 1, 1, 0, '2019-11-11 15:27:32', '2019-11-11 15:27:32'),
(54, 2, 66, NULL, '2', 1, 'Iphone', 30.6996887, 76.6908851, '8A, Industrial Area, Sector 75, <NAME>, Punjab 160055, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/pUM0J3J5eiFawhY4IEGs.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/C2BwTFSsL62a1U77KYTD.png', '', '', 'This is great.', '2019-11-11', 'Mon 11 Nov', '15:40:00', '15:50:00', 'weekly', 'Thu', 0, 0, '', '', NULL, ',12,1,17,18', '', 'Www.insta.com', '786988888889', 2, 1, 1, 0, '2019-11-11 15:33:43', '2019-11-11 15:33:43'),
(55, 3, 68, NULL, '1', 1, 'Nio', 30.6996979, 76.690868, '8A, Industrial Area, Sector 75, <NAME>, Punjab 160055, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/4pOdZZPRNTDFfwt1mO5W.png', '', '', '', 'Guuggugh', '2019-11-11', 'Mon 11 Nov', '18:00:00', '19:00:00', 'weekly', 'Thu', 0, 52, 'FORMAL', '', '1,2,3,4,5,6,7,8,9,10,11,13,14', '1,2,6', 'yes', NULL, NULL, 2, 1, 1, 5, '2019-11-11 15:38:22', '2019-11-11 15:38:22'),
(56, 3, 69, NULL, '1', 1, 'Diwali', -4.13851127434859, 13.428591080009937, 'Nkayi, Republic of the Congo', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/r70E58V8qc1xaG3pWOFM.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/xgHZE4UnoLmOYmEZA0e3.png', '', '', 'Yfychchc', '2019-11-14', 'Thu 14 Nov', '10:32:00', '10:32:00', 'monthly', 'Thu', 0, 53, 'FORMAL', '', '1,2', '1,2', 'no', NULL, NULL, 2, 1, 2, 0, '2019-11-13 10:57:13', '2019-11-13 10:57:13'),
(57, 2, 70, NULL, '2', 1, 'User18 Event', 30.6996762, 76.6908897, '8A, Industrial Area, Sector 75, Sahibzada A<NAME>, Punjab 160055, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/cOGqrejkPfcepeOuvVXl.png', '', '', '', 'Gufoccochkou oyfocitxy oycohc', '2019-11-14', 'Thu 14 Nov', '10:47:00', '10:47:00', 'one_day', 'Thu', 0, 0, '', '', NULL, '1,2,15', '', NULL, NULL, 2, 1, 1, 0, '2019-11-13 10:47:58', '2019-11-13 10:47:58'),
(58, 3, 69, NULL, '1', 1, 'Holi Event', 30.6996737, 76.6908988, '8A, Industrial Area, Sector 75, Sahib<NAME>, Punjab 160055, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/8hNI5Ilu4vZapWvzDLRR.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/PW43xwH4Gslnn98SHzdH.png', '', 'http://192.168.3.76/sim_new/storage/app/public/event_theme/pBrBDwxBpF00a5AivBkb.png', 'Yfyd', '2019-11-14', 'Thu 14 Nov', '11:03:00', '12:03:00', 'monthly', 'Thu', 0, 35, 'FORMAL', '', NULL, '4,5', 'no', NULL, NULL, 2, 1, 1, 0, '2019-11-13 11:04:00', '2019-11-13 11:04:00'),
(59, 3, 71, NULL, '1', 1, 'Lohri', 30.846590418314612, 75.19473128020763, '<NAME> Rd, Dosanjh, Moga, Punjab 142001, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/zvo0dRx50qDanI9bfSEn.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/PbhVQzX6tf5uHcgJwURa.png', '', 'http://192.168.3.76/sim_new/storage/app/public/event_theme/jKjzTLyCxOyHAOFKz6NN.png', 'Cycjcihciyciyc', '2019-11-14', 'Thu 14 Nov', '16:35:00', '16:35:00', 'monthly', 'Thu', 0, 89, 'FORMAL', '', NULL, '8,9', 'yes', NULL, NULL, 2, 1, 1, 100, '2019-11-13 16:36:14', '2019-11-13 16:36:14'),
(60, 2, 70, NULL, '2', 1, 'Login', 30.6996854, 76.6908997, '8A, Industrial Area, Sector 75, <NAME>, Punjab 160055, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/KnH7Hp1lmRTosDC7vN9N.png', '', '', '', 'Xfhzhffxu', '2019-11-14', 'Thu 14 Nov', '18:24:00', '18:24:00', 'one_day', 'Thu', 0, 0, '', '', NULL, '1,2', '', NULL, NULL, 2, 1, 1, 0, '2019-11-13 18:25:01', '2019-11-13 18:25:01'),
(61, 3, 4, NULL, '1', 1, 'Cghi', 30.6997344, 76.6909404, '8A, Industrial Area, Sector 75, Sahib<NAME>, Punjab 160055, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/T9u9XiS0hOMFcnUAx6sy.png', '', '', '', 'Bbfgj', '2019-11-15', 'Fri 15 Nov', '13:20:00', '13:20:00', 'one_day', 'Thu', 0, 12, 'FORMAL', '', '3,4,5,6', '3,4,5,6', 'yes', NULL, NULL, 2, 1, 1, 12, '2019-11-14 13:21:19', '2019-11-14 13:21:19'),
(62, 2, 74, NULL, '2', 1, 'Refer Event', 30.6997071, 76.6908769, '8A, Industrial Area, Sector 75, <NAME>, Punjab 160055, India', 1, 'http://192.168.3.76/sim_new/storage/app/public/event_media/8SRh3G28QGiYnLvW8Egp.mp4', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/FOrPjeU5sESGPT2myfBn.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/PQLNDjXH0E6W4J8P3pzn.png', '', '', 'This is refer event', '2019-11-14', 'Thu 14 Nov', '16:03:00', '06:55:00', 'weekly', 'Thu', 0, 0, '', '', NULL, '1,2', '', NULL, NULL, 2, 1, 1, 0, '2019-11-14 15:55:55', '2019-11-14 15:55:55'),
(63, 3, 4, NULL, '1', 1, 'tester', 30.996209080814847, 16.396381929516792, 'Sirte District, Libya', 1, '', '', 'http://1172.16.17.326/sim_new/storage/app/public/event_media/MgXOITqiwj8SHWthQif5.png', '', '', '', 'gffghfghfghgf', '2019-11-30', 'Sat 30 Nov', '05:39:00', '17:39:00', 'one_day', 'Thu', 0, 12, 'FORMAL', '', '4', '5', 'no', NULL, NULL, 2, 1, 1, 0, '2019-11-29 18:40:42', '2019-11-29 18:40:42'),
(64, 3, 4, NULL, '1', 1, 'Gdhdh', 30.3164945, 78.03219179999999, 'main bazar hatal, Jhanda Bazar, Jhanda Mohalla, Dehradun, Uttarakhand 248001, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/v0yfLPzulmQ8NJuRgEyC.png', '', '', '', 'Dhhdh', '2019-12-08', 'Sun 8 Dec', '12:49:00', '12:49:00', 'one_day', 'Thu', 0, 21, 'FORMAL', '', '1,2,4,5', '1,2,4,5', 'yes', NULL, NULL, 2, 1, 1, 12, '2019-12-06 18:19:38', '2019-12-06 18:19:38'),
(65, 3, 4, NULL, '1', 1, 'Hello Event', 30.6997299, 76.6909466, '8A, Industrial Area, Sector 75, Sahibzada A<NAME> Nagar, Punjab 160055, India', 1, 'http://192.168.3.76/sim_new/storage/app/public/event_media/MyrkXdQQHph6cyBg99x4.mp4', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/yKg8HCQB5xah3H4B0ogu.png', '', '', '', 'Hdhdjsjd', '2019-12-06', 'Fri 6 Dec', '16:37:00', '16:37:00', 'one_day', 'Thu', 0, 21, 'FORMAL', '', '1,2,3,4,5,6', '1,2,3,4,5,6', 'yes', NULL, NULL, 2, 2, 1, 12, '2019-12-05 16:38:52', '2019-12-05 16:38:52'),
(66, 3, 41, NULL, '1', 1, 'TEst Event Inder', 25.76350474208887, 77.6283561519723, 'Shivpuri, Madhya Pradesh', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/hz9Ofz1PSFX1svFyWPkH.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/5H4XhXKgufwwunmURN1w.png', '', '', 'Ggdffhfgh', '2019-12-07', 'Sat 7 Dec', '11:43:00', '11:43:00', 'one_day', 'Thu', 0, 25, 'Casual', '', '2,5', '1,2', 'Yes', NULL, NULL, 2, 1, 2, 0, '2019-12-06 11:44:27', '2019-12-06 11:44:27'),
(67, 3, 77, NULL, '1', 1, 'Notification Test', 30.699522142694903, 76.6909028327554, 'M<NAME>', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/BksC4OLKt0UnWjtKkKCY.png', '', '', 'http://1172.16.31.10/sim_new/storage/app/public/event_theme/Md2GHlvUhzkVm3iQmE50.png', 'Gab', '2019-12-06', 'Fri 6 Dec', '18:30:00', '19:30:00', 'one_day', 'Thu', 0, 25, 'Casual', '', '1', '1', 'Yes', NULL, '997645461183', 2, 1, 1, 25, '2019-12-06 17:33:52', '2019-12-06 17:33:52'),
(68, 3, 77, NULL, '1', 1, 'Bro', -16.256713529936285, 21.75110902084429, '<NAME>', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/iRlVHibX6MX1d0MjK6ys.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/wOgKlVgOpgEAOCb5nUSW.png', '', 'http://192.168.3.76/sim_new/storage/app/public/event_theme/t3WxVwZZ7LKVyTXPl8yy.png', 'Bdbd', '2019-12-06', 'Fri 6 Dec', '17:41:44', '17:41:44', '2_weekly', 'Thu', 0, 88, 'Casual', '', '1', '1', 'Yes', NULL, '997849464', 2, 1, 1, 25, '2019-12-06 17:43:17', '2019-12-06 17:43:17'),
(69, 2, 78, NULL, '2', 1, 'Where', 49.263364370605466, 65.13199984999022, 'Turgay', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/G1qaCmy4Ou45mq8H9ltn.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/uaZg14FmPeVXjQSglBnw.png', '', '', 'Xbxbx', '2019-12-06', 'Fri 6 Dec', '18:44:21', '18:44:21', 'one_day', 'Thu', 0, 0, '', '', NULL, '1,2,3', '', NULL, NULL, 2, 1, 1, 0, '2019-12-06 18:45:08', '2019-12-06 18:45:08'),
(70, 3, 77, NULL, '1', 1, 'Looll', 30.699539308041093, 76.69090874762433, 'Mohali, Punjab', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/jqTciBiBe62eQ8sBeTbl.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/Syo8E0UP2v5aKLtQBxGX.png', '', 'http://192.168.3.76/sim_new/storage/app/public/event_theme/kVwKKtdtgJyvA0NoG35U.png', 'Bdbd', '2019-12-06', 'Fri 6 Dec', '18:44:15', '19:44:15', 'one_day', 'Thu', 0, 25, 'Casual', '', '1,2,3,4,5,6', '1,2,3,4,5,6', 'Yes', NULL, NULL, 2, 1, 1, 25, '2019-12-06 18:45:47', '2019-12-06 18:45:47'),
(71, 2, 78, NULL, '2', 1, 'Logic', 30.69953670217245, 76.69090691161914, 'Mohali, Punjab', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/HP9ROh1OsB9T7oVL6cpg.png', '', '', '', 'DnD', '2019-12-06', 'Fri 6 Dec', '19:04:49', '19:04:49', 'one_day', 'Thu', 0, 0, '', '', NULL, '1,2', '', NULL, NULL, 2, 1, 1, 0, '2019-12-06 19:05:40', '2019-12-06 19:05:40'),
(72, 2, 78, NULL, '2', 1, 'Location', 31.551953327102602, 76.0761450523988, 'Hoshiarpur, Punjab', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/XQuyWG2FoD5aSRvTxOvP.png', '', '', '', 'GH', '2019-12-06', 'Fri 6 Dec', '19:06:09', '19:06:09', 'one_day', 'Thu', 0, 0, '', '', NULL, '1,2', '', NULL, NULL, 2, 1, 1, 0, '2019-12-06 19:06:50', '2019-12-06 19:06:50'),
(73, 3, 41, NULL, '1', 1, 'My Event Inder SIngh', 30.7046486, 76.71787259999999, '<NAME>, Punjab, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/cTw13yz6MIbcFXU3yCr3.png', '', '', '', 'Sdfsfsff', '2019-12-07', 'Sat 7 Dec', '19:33:27', '19:33:27', 'one_day', 'Thu', 0, 20, 'Casual', '', '2,3', '2,3,5', 'Yes', NULL, NULL, 2, 1, 1, 20, '2019-12-06 19:34:55', '2019-12-06 19:34:55'),
(74, 3, 81, NULL, '1', 1, 'Yellow Event', 4.321544900428805, 24.04416975795061, 'Orientale', 1, '', '', 'http://1172.16.17.326/sim_new/storage/app/public/event_media/YSseMppt8saNrrqvyOEG.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/wyYamFeUzX6eOnGPEFoO.png', '', 'http://192.168.3.76/sim_new/storage/app/public/event_theme/kxMwzo8luEGMkGH79Ddp.png', 'N xj jg jg. Bk', '2019-12-06', 'Fri 6 Dec', '21:00:00', '22:00:00', 'one_day', 'Thu', 0, 25, 'Casual', '', '1,2', '1,2', 'Yes', NULL, NULL, 2, 1, 1, 25, '2019-12-06 20:43:29', '2019-12-06 20:43:29'),
(75, 3, 81, NULL, '1', 1, 'Best', 30.699545367148133, 76.69091690954173, 'Mohali, Punjab', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/S8HeqBYUnwp38jJqm6V0.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/uDYczYcDfbB2k1Ybs3LN.png', '', 'http://192.168.3.76/sim_new/storage/app/public/event_theme/NZrnx07PgwINzM3ExyOw.png', 'Bdhdhd has', '2019-12-06', 'Fri 6 Dec', '21:30:00', '22:30:00', 'one_day', 'Thu', 0, 58, 'Casual', '', '1,2,3', '1,2,4,6', 'Yes', NULL, NULL, 2, 1, 1, 1, '2019-12-06 21:03:17', '2019-12-06 21:03:17'),
(76, 2, 80, NULL, '2', 1, 'Ert', 30.699533058807393, 76.69092488924385, 'Mohali, Punjab', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/yZ7XbEHf7dNM46hqnst0.png', '', '', '', 'Jcgcjhjh', '2019-12-06', 'Fri 6 Dec', '21:10:00', '23:10:00', 'one_day', 'Thu', 0, 0, '', '', NULL, '1,2', '', NULL, NULL, 2, 1, 1, 0, '2019-12-06 21:10:13', '2019-12-06 21:10:13'),
(77, 3, 81, NULL, '1', 1, 'Deftsoft Eve', 17.8844095705545, 22.73617863989881, 'Borkou', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/ctaUhrQsBx0dRJBxxsl6.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/dQ39fgwwG63xlX0iWimB.png', '', 'http://192.168.3.76/sim_new/storage/app/public/event_theme/YGoTaOADz3ZcdKzxxynA.png', 'Vdbdb', '2019-12-06', 'Fri 6 Dec', '22:16:00', '22:16:00', 'one_day', 'Thu', 0, 25, 'Casual', '', '1,2,3,4,5', '1,2,3,4', 'Yes', NULL, NULL, 2, 1, 1, 10, '2019-12-06 21:17:06', '2019-12-06 21:17:06'),
(78, 2, 80, NULL, '2', 1, 'Favour', 30.69953732271985, 76.69091245688301, 'Mohali, Punjab', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/1zmZ1MzAWCcPqdW4eWU8.png', '', '', '', 'Oh hi hhh o oh h. Oh h o hih. Hi oh hooh ohh ho hihi o h', '2019-12-06', 'Fri 6 Dec', '21:31:28', '22:31:28', 'one_day', 'Thu', 0, 0, '', '', NULL, '1,2', '', NULL, NULL, 2, 1, 1, 0, '2019-12-06 21:32:07', '2019-12-06 21:32:07'),
(79, 2, 86, NULL, '2', 1, 'Location', 28.6139391, 77.2090212, 'New Delhi, Delhi, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/IGX3a9HzMK9rT3WkNJOY.png', '', '', '', 'Coicohoh', '2019-12-07', 'Sat 7 Dec', '16:10:16', '16:10:16', 'one_day', 'Thu', 0, 0, '', '', NULL, '1,2', '', NULL, NULL, 2, 1, 1, 0, '2019-12-07 16:11:31', '2019-12-07 16:11:31'),
(80, 3, 85, NULL, '1', 1, '7th Dec', 52.01157689999999, 4.3570677, 'Delft, Netherlands', 1, 'http://192.168.3.76/sim_new/storage/app/public/event_media/o2ldR3RaoX9UMhtWt0q4.mov', '', 'http://1172.16.17.326/sim_new/storage/app/public/event_media/pQtob10IH1US464ooSEd.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/eDDAQFwdIwicGUgugVjp.png', '', 'http://192.168.3.76/sim_new/storage/app/public/event_theme/wEMucOjyvBbB4Zyr8z1b.png', 'Bdbddhhxhdjdjdudhdhhdhhddhhdhdhdhdududhdhdhdhdhdhduuddhhdhdhdydydhdhdhdudbdhxx', '2019-12-07', 'Sat 7 Dec', '17:20:00', '18:20:00', 'one_day', 'Thu', 0, 23, 'Casual', '', '2', '4', 'Yes', NULL, NULL, 2, 1, 1, 100, '2019-12-07 16:14:15', '2019-12-07 16:14:15'),
(81, 2, 86, NULL, '2', 1, '8 Dev', 31.905131940394714, 75.54560748430738, 'Gurdaspur, Punjab', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/D65RUToYTmeiONMD3hpV.png', '', '', '', 'Jsjdjdjdjdjdjdjdjddj djdjdj jdjd dbdbd', '2019-12-09', 'Mon 9 Dec', '16:20:00', '16:20:00', 'one_day', 'Thu', 0, 0, '', '', NULL, '1,2', '', NULL, NULL, 2, 1, 1, 0, '2019-12-07 16:21:17', '2019-12-07 16:21:17'),
(82, 3, 88, NULL, '1', 1, '<NAME>', 40.7127753, -74.0059728, 'New York, NY, USA', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/DJrpOXJRDVbkcdXEWTqm.png', '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_theme/FbqMjdbF5nKfwK2QsiG9.png', 'Hochcikcouhc', '2019-12-07', 'Sat 7 Dec', '16:57:20', '18:57:20', 'one_day', 'Thu', 0, 36, 'Casual', '', '1,2', '1,2,3', 'Yes', NULL, NULL, 2, 1, 1, 25, '2019-12-07 16:58:49', '2019-12-07 16:58:49'),
(83, 2, 87, NULL, '2', 1, 'Jenni', 82.96189827912991, -27.45313523424788, 'Nordgronland', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/uKeqTI3zirzXcy5izh36.png', '', '', '', 'Oh jc oh hcovo oh ho', '2019-12-07', 'Sat 7 Dec', '19:06:00', '19:06:00', 'one_day', 'Thu', 0, 0, '', '', NULL, '1,2', '', NULL, NULL, 2, 1, 1, 0, '2019-12-07 17:07:15', '2019-12-07 17:07:15'),
(84, 3, 89, NULL, '1', 1, 'Walk Er', 30.7046486, 76.71787259999999, '<NAME>, Punjab, India', 1, 'http://192.168.3.76/sim_new/storage/app/public/event_media/OhVjWiQ5yAAsPs47aA3h.mp4', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/DPtBWTzSLqTDrRqajWmB.png', 'http://192.168.3.76/sim_new/storage/app/public/event_media/SIUlQ9tiAXsQvc17Gm5T.png', '', 'http://192.168.3.76/sim_new/storage/app/public/event_theme/JNAwwWrvBOIj49D91CjG.png', 'This is a great day', '2019-12-12', 'Thu 12 Dec', '13:37:00', '14:20:00', 'weekly', 'Thu', 0, 20, 'FORMAL', '', '1,2,3', '1,2,3', 'yes', NULL, NULL, 2, 1, 1, 25, '2019-12-09 13:37:27', '2019-12-09 13:37:27'),
(85, 2, 90, NULL, '2', 1, 'Refer Event', 30.6996466, 76.6909169, '8A, Industrial Area, Sector 75, <NAME>, Punjab 160055, India', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/d560KC1OV5mRo2QIx1yj.png', '', '', '', 'This is a great user.', '2019-12-09', 'Mon 9 Dec', '15:29:00', '18:25:00', 'weekly', 'Thu', 0, 0, '', '', NULL, '1,2,3,5,4', '', NULL, NULL, 2, 1, 1, 0, '2019-12-09 15:22:38', '2019-12-09 15:22:38'),
(86, 3, 41, NULL, '1', 1, 'Fly Event', 30.699503577892486, 76.69090116248648, 'Mohali, Punjab', 1, '', '', 'http://192.168.3.76/sim_new/storage/app/public/event_media/X73BFIfR1ICo3EZQ9kfV.png', '', '', '', 'Hdia sue did due did sks', '2019-12-10', 'Tue 10 Dec', '17:57:00', '17:57:00', 'one_day', 'Thu', 0, 20, 'Casual', '', '2,3,4,5', '4,5,6,9', 'Yes', NULL, NULL, 2, 1, 1, 20, '2019-12-09 17:57:57', '2019-12-09 17:57:57');
-- --------------------------------------------------------
--
-- Table structure for table `event_media`
--
CREATE TABLE `event_media` (
`id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`event_media_type` varchar(10) NOT NULL COMMENT '1=>Image,2=>video',
`media_url` varchar(255) NOT NULL,
`thumbnail` varchar(255) NOT NULL,
`is_primary` int(11) NOT NULL DEFAULT '2' COMMENT '1=yes,2=>no',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `event_music_interest_list`
--
CREATE TABLE `event_music_interest_list` (
`id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`music_interest_id` int(11) NOT NULL,
`updated_at` datetime NOT NULL,
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `event_music_interest_list`
--
INSERT INTO `event_music_interest_list` (`id`, `event_id`, `music_interest_id`, `updated_at`, `created_at`) VALUES
(1, 2, 2, '2019-09-09 12:45:31', '2019-09-09 12:45:31'),
(2, 2, 3, '2019-09-09 12:45:31', '2019-09-09 12:45:31'),
(3, 3, 1, '2019-09-09 12:53:20', '2019-09-09 12:53:20'),
(4, 3, 2, '2019-09-09 12:53:20', '2019-09-09 12:53:20'),
(5, 4, 1, '2019-09-09 12:57:35', '2019-09-09 12:57:35'),
(6, 4, 2, '2019-09-09 12:57:35', '2019-09-09 12:57:35'),
(7, 9, 1, '2019-09-09 14:27:05', '2019-09-09 14:27:05'),
(8, 9, 2, '2019-09-09 14:27:05', '2019-09-09 14:27:05'),
(9, 14, 1, '2019-09-10 10:13:58', '2019-09-10 10:13:58'),
(10, 15, 1, '2019-09-10 10:14:18', '2019-09-10 10:14:18'),
(11, 26, 2, '2019-10-04 14:56:35', '2019-10-04 14:56:35'),
(12, 26, 3, '2019-10-04 14:56:35', '2019-10-04 14:56:35'),
(13, 32, 1, '2019-10-30 19:07:01', '2019-10-30 19:07:01'),
(14, 32, 2, '2019-10-30 19:07:01', '2019-10-30 19:07:01'),
(15, 32, 3, '2019-10-30 19:07:01', '2019-10-30 19:07:01'),
(16, 34, 2, '2019-10-30 19:53:27', '2019-10-30 19:53:27'),
(17, 35, 5, '2019-10-30 19:54:43', '2019-10-30 19:54:43'),
(18, 37, 1, '2019-11-04 11:31:01', '2019-11-04 11:31:01'),
(19, 37, 2, '2019-11-04 11:31:01', '2019-11-04 11:31:01'),
(20, 37, 3, '2019-11-04 11:31:01', '2019-11-04 11:31:01'),
(21, 38, 1, '2019-11-04 11:46:05', '2019-11-04 11:46:05'),
(22, 38, 2, '2019-11-04 11:46:05', '2019-11-04 11:46:05'),
(23, 38, 3, '2019-11-04 11:46:05', '2019-11-04 11:46:05'),
(27, 52, 1, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(28, 52, 2, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(29, 52, 3, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(30, 52, 4, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(31, 52, 5, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(32, 52, 6, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(33, 52, 7, '2019-11-07 13:05:08', '2019-11-07 13:05:08'),
(34, 52, 8, '2019-11-07 13:05:08', '2019-11-07 13:05:08'),
(35, 52, 9, '2019-11-07 13:05:08', '2019-11-07 13:05:08'),
(36, 52, 10, '2019-11-07 13:05:08', '2019-11-07 13:05:08'),
(37, 52, 11, '2019-11-07 13:05:08', '2019-11-07 13:05:08'),
(38, 52, 13, '2019-11-07 13:05:08', '2019-11-07 13:05:08'),
(39, 52, 14, '2019-11-07 13:05:08', '2019-11-07 13:05:08'),
(40, 55, 1, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(41, 55, 2, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(42, 55, 3, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(43, 55, 4, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(44, 55, 5, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(45, 55, 6, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(46, 55, 7, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(47, 55, 8, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(48, 55, 9, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(49, 55, 10, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(50, 55, 11, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(51, 55, 13, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(52, 55, 14, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(54, 56, 1, '2019-11-13 10:57:14', '2019-11-13 10:57:14'),
(55, 56, 2, '2019-11-13 10:57:14', '2019-11-13 10:57:14'),
(56, 61, 3, '2019-11-14 13:21:20', '2019-11-14 13:21:20'),
(57, 61, 4, '2019-11-14 13:21:20', '2019-11-14 13:21:20'),
(58, 61, 5, '2019-11-14 13:21:20', '2019-11-14 13:21:20'),
(59, 61, 6, '2019-11-14 13:21:20', '2019-11-14 13:21:20'),
(60, 63, 4, '2019-11-29 18:40:42', '2019-11-29 18:40:42'),
(61, 22, 1, '2019-12-03 13:30:12', '2019-12-03 13:30:12'),
(62, 22, 2, '2019-12-03 13:30:12', '2019-12-03 13:30:12'),
(63, 47, 1, '2019-12-03 13:31:25', '2019-12-03 13:31:25'),
(64, 47, 2, '2019-12-03 13:31:25', '2019-12-03 13:31:25'),
(83, 65, 1, '2019-12-05 16:38:52', '2019-12-05 16:38:52'),
(84, 65, 2, '2019-12-05 16:38:52', '2019-12-05 16:38:52'),
(85, 65, 3, '2019-12-05 16:38:53', '2019-12-05 16:38:53'),
(86, 65, 4, '2019-12-05 16:38:53', '2019-12-05 16:38:53'),
(87, 65, 5, '2019-12-05 16:38:53', '2019-12-05 16:38:53'),
(88, 65, 6, '2019-12-05 16:38:53', '2019-12-05 16:38:53'),
(89, 66, 2, '2019-12-06 11:44:27', '2019-12-06 11:44:27'),
(90, 66, 5, '2019-12-06 11:44:27', '2019-12-06 11:44:27'),
(91, 67, 1, '2019-12-06 17:33:52', '2019-12-06 17:33:52'),
(92, 68, 1, '2019-12-06 17:43:18', '2019-12-06 17:43:18'),
(93, 64, 1, '2019-12-06 18:19:39', '2019-12-06 18:19:39'),
(94, 64, 2, '2019-12-06 18:19:39', '2019-12-06 18:19:39'),
(95, 64, 4, '2019-12-06 18:19:39', '2019-12-06 18:19:39'),
(96, 64, 5, '2019-12-06 18:19:39', '2019-12-06 18:19:39'),
(97, 70, 1, '2019-12-06 18:45:48', '2019-12-06 18:45:48'),
(98, 70, 2, '2019-12-06 18:45:48', '2019-12-06 18:45:48'),
(99, 70, 3, '2019-12-06 18:45:48', '2019-12-06 18:45:48'),
(100, 70, 4, '2019-12-06 18:45:48', '2019-12-06 18:45:48'),
(101, 70, 5, '2019-12-06 18:45:48', '2019-12-06 18:45:48'),
(102, 70, 6, '2019-12-06 18:45:48', '2019-12-06 18:45:48'),
(103, 73, 2, '2019-12-06 19:34:55', '2019-12-06 19:34:55'),
(104, 73, 3, '2019-12-06 19:34:56', '2019-12-06 19:34:56'),
(105, 74, 1, '2019-12-06 20:43:29', '2019-12-06 20:43:29'),
(106, 74, 2, '2019-12-06 20:43:29', '2019-12-06 20:43:29'),
(107, 75, 1, '2019-12-06 21:03:18', '2019-12-06 21:03:18'),
(108, 75, 2, '2019-12-06 21:03:18', '2019-12-06 21:03:18'),
(109, 75, 3, '2019-12-06 21:03:18', '2019-12-06 21:03:18'),
(110, 77, 1, '2019-12-06 21:17:06', '2019-12-06 21:17:06'),
(111, 77, 2, '2019-12-06 21:17:06', '2019-12-06 21:17:06'),
(112, 77, 3, '2019-12-06 21:17:07', '2019-12-06 21:17:07'),
(113, 77, 4, '2019-12-06 21:17:07', '2019-12-06 21:17:07'),
(114, 77, 5, '2019-12-06 21:17:07', '2019-12-06 21:17:07'),
(115, 80, 2, '2019-12-07 16:14:16', '2019-12-07 16:14:16'),
(116, 82, 1, '2019-12-07 16:58:49', '2019-12-07 16:58:49'),
(117, 82, 2, '2019-12-07 16:58:49', '2019-12-07 16:58:49'),
(118, 84, 1, '2019-12-09 13:37:27', '2019-12-09 13:37:27'),
(119, 84, 2, '2019-12-09 13:37:27', '2019-12-09 13:37:27'),
(120, 84, 3, '2019-12-09 13:37:27', '2019-12-09 13:37:27'),
(121, 86, 2, '2019-12-09 17:57:57', '2019-12-09 17:57:57'),
(122, 86, 3, '2019-12-09 17:57:58', '2019-12-09 17:57:58'),
(123, 86, 4, '2019-12-09 17:57:58', '2019-12-09 17:57:58'),
(124, 86, 5, '2019-12-09 17:57:58', '2019-12-09 17:57:58');
-- --------------------------------------------------------
--
-- Table structure for table `event_public_interest_list`
--
CREATE TABLE `event_public_interest_list` (
`id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`public_interest_id` int(11) NOT NULL,
`updated_at` datetime NOT NULL,
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `event_public_interest_list`
--
INSERT INTO `event_public_interest_list` (`id`, `event_id`, `public_interest_id`, `updated_at`, `created_at`) VALUES
(1, 1, 1, '2019-09-09 12:30:12', '2019-09-09 12:30:12'),
(2, 1, 2, '2019-09-09 12:30:12', '2019-09-09 12:30:12'),
(3, 1, 3, '2019-09-09 12:30:12', '2019-09-09 12:30:12'),
(4, 2, 1, '2019-09-09 12:45:30', '2019-09-09 12:45:30'),
(5, 2, 2, '2019-09-09 12:45:31', '2019-09-09 12:45:31'),
(6, 2, 3, '2019-09-09 12:45:31', '2019-09-09 12:45:31'),
(7, 3, 1, '2019-09-09 12:53:20', '2019-09-09 12:53:20'),
(8, 3, 2, '2019-09-09 12:53:20', '2019-09-09 12:53:20'),
(9, 5, 1, '2019-09-09 13:01:20', '2019-09-09 13:01:20'),
(10, 5, 2, '2019-09-09 13:01:20', '2019-09-09 13:01:20'),
(11, 7, 1, '2019-09-09 13:19:55', '2019-09-09 13:19:55'),
(12, 7, 2, '2019-09-09 13:19:55', '2019-09-09 13:19:55'),
(13, 8, 1, '2019-09-09 13:22:29', '2019-09-09 13:22:29'),
(14, 8, 2, '2019-09-09 13:22:30', '2019-09-09 13:22:30'),
(15, 9, 1, '2019-09-09 14:27:04', '2019-09-09 14:27:04'),
(16, 9, 2, '2019-09-09 14:27:04', '2019-09-09 14:27:04'),
(17, 10, 1, '2019-09-09 14:31:24', '2019-09-09 14:31:24'),
(18, 10, 2, '2019-09-09 14:31:24', '2019-09-09 14:31:24'),
(19, 11, 1, '2019-09-09 16:16:31', '2019-09-09 16:16:31'),
(20, 11, 2, '2019-09-09 16:16:31', '2019-09-09 16:16:31'),
(21, 11, 3, '2019-09-09 16:16:31', '2019-09-09 16:16:31'),
(22, 11, 4, '2019-09-09 16:16:31', '2019-09-09 16:16:31'),
(23, 11, 5, '2019-09-09 16:16:31', '2019-09-09 16:16:31'),
(24, 12, 1, '2019-09-09 19:35:03', '2019-09-09 19:35:03'),
(25, 12, 2, '2019-09-09 19:35:03', '2019-09-09 19:35:03'),
(26, 12, 4, '2019-09-09 19:35:04', '2019-09-09 19:35:04'),
(27, 12, 5, '2019-09-09 19:35:04', '2019-09-09 19:35:04'),
(28, 13, 2, '2019-09-09 19:44:48', '2019-09-09 19:44:48'),
(29, 15, 1, '2019-09-10 10:14:17', '2019-09-10 10:14:17'),
(30, 16, 1, '2019-09-10 10:16:35', '2019-09-10 10:16:35'),
(33, 17, 1, '2019-09-10 10:40:38', '2019-09-10 10:40:38'),
(34, 17, 2, '2019-09-10 10:40:38', '2019-09-10 10:40:38'),
(35, 18, 1, '2019-09-10 11:40:47', '2019-09-10 11:40:47'),
(36, 18, 2, '2019-09-10 11:40:48', '2019-09-10 11:40:48'),
(37, 19, 1, '2019-09-10 12:09:55', '2019-09-10 12:09:55'),
(39, 20, 1, '2019-09-10 12:27:58', '2019-09-10 12:27:58'),
(40, 20, 2, '2019-09-10 12:27:58', '2019-09-10 12:27:58'),
(41, 20, 3, '2019-09-10 12:27:59', '2019-09-10 12:27:59'),
(42, 20, 4, '2019-09-10 12:27:59', '2019-09-10 12:27:59'),
(43, 21, 2, '2019-09-20 13:12:41', '2019-09-20 13:12:41'),
(44, 21, 1, '2019-09-20 13:12:41', '2019-09-20 13:12:41'),
(45, 21, 2, '2019-09-20 13:12:41', '2019-09-20 13:12:41'),
(48, 23, 1, '2019-10-04 12:26:12', '2019-10-04 12:26:12'),
(49, 23, 2, '2019-10-04 12:26:13', '2019-10-04 12:26:13'),
(50, 24, 1, '2019-10-04 13:12:24', '2019-10-04 13:12:24'),
(51, 24, 2, '2019-10-04 13:12:24', '2019-10-04 13:12:24'),
(52, 25, 1, '2019-10-04 13:21:07', '2019-10-04 13:21:07'),
(53, 25, 2, '2019-10-04 13:21:07', '2019-10-04 13:21:07'),
(54, 26, 1, '2019-10-04 14:56:35', '2019-10-04 14:56:35'),
(55, 26, 2, '2019-10-04 14:56:35', '2019-10-04 14:56:35'),
(56, 27, 1, '2019-10-04 17:00:07', '2019-10-04 17:00:07'),
(57, 28, 1, '2019-10-04 17:05:22', '2019-10-04 17:05:22'),
(58, 28, 4, '2019-10-04 17:05:22', '2019-10-04 17:05:22'),
(59, 29, 1, '2019-10-04 17:12:59', '2019-10-04 17:12:59'),
(60, 29, 3, '2019-10-04 17:12:59', '2019-10-04 17:12:59'),
(61, 29, 4, '2019-10-04 17:12:59', '2019-10-04 17:12:59'),
(62, 30, 1, '2019-10-04 19:53:29', '2019-10-04 19:53:29'),
(63, 31, 1, '2019-10-04 20:02:08', '2019-10-04 20:02:08'),
(64, 31, 4, '2019-10-04 20:02:08', '2019-10-04 20:02:08'),
(65, 32, 1, '2019-10-30 19:07:00', '2019-10-30 19:07:00'),
(66, 32, 2, '2019-10-30 19:07:01', '2019-10-30 19:07:01'),
(67, 32, 3, '2019-10-30 19:07:01', '2019-10-30 19:07:01'),
(68, 33, 1, '2019-10-30 19:52:55', '2019-10-30 19:52:55'),
(69, 34, 2, '2019-10-30 19:53:27', '2019-10-30 19:53:27'),
(70, 35, 2, '2019-10-30 19:54:43', '2019-10-30 19:54:43'),
(71, 35, 5, '2019-10-30 19:54:43', '2019-10-30 19:54:43'),
(72, 36, 1, '2019-11-04 11:17:18', '2019-11-04 11:17:18'),
(73, 36, 2, '2019-11-04 11:17:18', '2019-11-04 11:17:18'),
(74, 36, 4, '2019-11-04 11:17:18', '2019-11-04 11:17:18'),
(75, 37, 1, '2019-11-04 11:31:00', '2019-11-04 11:31:00'),
(76, 37, 2, '2019-11-04 11:31:00', '2019-11-04 11:31:00'),
(77, 37, 3, '2019-11-04 11:31:00', '2019-11-04 11:31:00'),
(78, 38, 1, '2019-11-04 11:46:05', '2019-11-04 11:46:05'),
(79, 38, 2, '2019-11-04 11:46:05', '2019-11-04 11:46:05'),
(80, 38, 3, '2019-11-04 11:46:05', '2019-11-04 11:46:05'),
(81, 42, 1, '2019-11-05 10:58:17', '2019-11-05 10:58:17'),
(82, 42, 2, '2019-11-05 10:58:17', '2019-11-05 10:58:17'),
(83, 42, 4, '2019-11-05 10:58:17', '2019-11-05 10:58:17'),
(84, 44, 3, '2019-11-05 13:11:37', '2019-11-05 13:11:37'),
(85, 45, 1, '2019-11-05 13:26:35', '2019-11-05 13:26:35'),
(86, 45, 1, '2019-11-05 13:26:35', '2019-11-05 13:26:35'),
(87, 46, 1, '2019-11-05 14:58:33', '2019-11-05 14:58:33'),
(88, 46, 2, '2019-11-05 14:58:34', '2019-11-05 14:58:34'),
(92, 48, 1, '2019-11-05 15:16:11', '2019-11-05 15:16:11'),
(93, 49, 1, '2019-11-05 15:19:45', '2019-11-05 15:19:45'),
(94, 51, 2, '2019-11-07 13:01:23', '2019-11-07 13:01:23'),
(95, 51, 1, '2019-11-07 13:01:23', '2019-11-07 13:01:23'),
(96, 51, 2, '2019-11-07 13:01:23', '2019-11-07 13:01:23'),
(97, 51, 1, '2019-11-07 13:01:23', '2019-11-07 13:01:23'),
(98, 51, 2, '2019-11-07 13:01:23', '2019-11-07 13:01:23'),
(99, 52, 2, '2019-11-07 13:05:05', '2019-11-07 13:05:05'),
(100, 52, 3, '2019-11-07 13:05:05', '2019-11-07 13:05:05'),
(101, 52, 1, '2019-11-07 13:05:05', '2019-11-07 13:05:05'),
(102, 52, 2, '2019-11-07 13:05:05', '2019-11-07 13:05:05'),
(103, 52, 3, '2019-11-07 13:05:05', '2019-11-07 13:05:05'),
(104, 52, 4, '2019-11-07 13:05:05', '2019-11-07 13:05:05'),
(105, 52, 5, '2019-11-07 13:05:06', '2019-11-07 13:05:06'),
(106, 52, 6, '2019-11-07 13:05:06', '2019-11-07 13:05:06'),
(107, 52, 8, '2019-11-07 13:05:06', '2019-11-07 13:05:06'),
(108, 52, 9, '2019-11-07 13:05:06', '2019-11-07 13:05:06'),
(109, 52, 10, '2019-11-07 13:05:06', '2019-11-07 13:05:06'),
(110, 52, 11, '2019-11-07 13:05:06', '2019-11-07 13:05:06'),
(111, 52, 12, '2019-11-07 13:05:06', '2019-11-07 13:05:06'),
(112, 52, 13, '2019-11-07 13:05:06', '2019-11-07 13:05:06'),
(113, 52, 14, '2019-11-07 13:05:06', '2019-11-07 13:05:06'),
(114, 52, 15, '2019-11-07 13:05:06', '2019-11-07 13:05:06'),
(115, 52, 16, '2019-11-07 13:05:06', '2019-11-07 13:05:06'),
(116, 52, 17, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(117, 52, 18, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(118, 52, 19, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(119, 52, 20, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(120, 52, 21, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(121, 52, 22, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(122, 52, 23, '2019-11-07 13:05:07', '2019-11-07 13:05:07'),
(123, 53, 1, '2019-11-11 15:27:32', '2019-11-11 15:27:32'),
(124, 53, 2, '2019-11-11 15:27:32', '2019-11-11 15:27:32'),
(125, 53, 3, '2019-11-11 15:27:32', '2019-11-11 15:27:32'),
(126, 54, 12, '2019-11-11 15:33:43', '2019-11-11 15:33:43'),
(127, 54, 1, '2019-11-11 15:33:43', '2019-11-11 15:33:43'),
(128, 54, 17, '2019-11-11 15:33:43', '2019-11-11 15:33:43'),
(129, 54, 18, '2019-11-11 15:33:43', '2019-11-11 15:33:43'),
(130, 55, 1, '2019-11-11 15:38:22', '2019-11-11 15:38:22'),
(131, 55, 2, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(132, 55, 6, '2019-11-11 15:38:23', '2019-11-11 15:38:23'),
(135, 57, 1, '2019-11-13 10:47:59', '2019-11-13 10:47:59'),
(136, 57, 2, '2019-11-13 10:47:59', '2019-11-13 10:47:59'),
(137, 57, 15, '2019-11-13 10:47:59', '2019-11-13 10:47:59'),
(138, 56, 1, '2019-11-13 10:57:13', '2019-11-13 10:57:13'),
(139, 56, 2, '2019-11-13 10:57:14', '2019-11-13 10:57:14'),
(140, 58, 4, '2019-11-13 11:04:00', '2019-11-13 11:04:00'),
(141, 58, 5, '2019-11-13 11:04:00', '2019-11-13 11:04:00'),
(142, 59, 8, '2019-11-13 16:36:14', '2019-11-13 16:36:14'),
(143, 59, 9, '2019-11-13 16:36:14', '2019-11-13 16:36:14'),
(144, 60, 1, '2019-11-13 18:25:01', '2019-11-13 18:25:01'),
(145, 60, 2, '2019-11-13 18:25:01', '2019-11-13 18:25:01'),
(146, 61, 3, '2019-11-14 13:21:20', '2019-11-14 13:21:20'),
(147, 61, 4, '2019-11-14 13:21:20', '2019-11-14 13:21:20'),
(148, 61, 5, '2019-11-14 13:21:20', '2019-11-14 13:21:20'),
(149, 61, 6, '2019-11-14 13:21:20', '2019-11-14 13:21:20'),
(150, 62, 1, '2019-11-14 15:55:55', '2019-11-14 15:55:55'),
(151, 62, 2, '2019-11-14 15:55:55', '2019-11-14 15:55:55'),
(152, 63, 5, '2019-11-29 18:40:42', '2019-11-29 18:40:42'),
(153, 22, 1, '2019-12-03 13:30:12', '2019-12-03 13:30:12'),
(154, 22, 2, '2019-12-03 13:30:12', '2019-12-03 13:30:12'),
(155, 47, 1, '2019-12-03 13:31:24', '2019-12-03 13:31:24'),
(156, 47, 2, '2019-12-03 13:31:25', '2019-12-03 13:31:25'),
(169, 65, 1, '2019-12-05 16:38:52', '2019-12-05 16:38:52'),
(170, 65, 2, '2019-12-05 16:38:52', '2019-12-05 16:38:52'),
(171, 65, 3, '2019-12-05 16:38:52', '2019-12-05 16:38:52'),
(172, 65, 4, '2019-12-05 16:38:52', '2019-12-05 16:38:52'),
(173, 65, 5, '2019-12-05 16:38:52', '2019-12-05 16:38:52'),
(174, 65, 6, '2019-12-05 16:38:52', '2019-12-05 16:38:52'),
(175, 66, 1, '2019-12-06 11:44:27', '2019-12-06 11:44:27'),
(176, 66, 2, '2019-12-06 11:44:27', '2019-12-06 11:44:27'),
(177, 67, 1, '2019-12-06 17:33:52', '2019-12-06 17:33:52'),
(178, 68, 1, '2019-12-06 17:43:17', '2019-12-06 17:43:17'),
(179, 64, 1, '2019-12-06 18:19:39', '2019-12-06 18:19:39'),
(180, 64, 2, '2019-12-06 18:19:39', '2019-12-06 18:19:39'),
(181, 64, 4, '2019-12-06 18:19:39', '2019-12-06 18:19:39'),
(182, 64, 5, '2019-12-06 18:19:39', '2019-12-06 18:19:39'),
(183, 69, 1, '2019-12-06 18:45:08', '2019-12-06 18:45:08'),
(184, 69, 2, '2019-12-06 18:45:09', '2019-12-06 18:45:09'),
(185, 69, 3, '2019-12-06 18:45:09', '2019-12-06 18:45:09'),
(186, 70, 1, '2019-12-06 18:45:48', '2019-12-06 18:45:48'),
(187, 70, 2, '2019-12-06 18:45:48', '2019-12-06 18:45:48'),
(188, 70, 3, '2019-12-06 18:45:48', '2019-12-06 18:45:48'),
(189, 70, 4, '2019-12-06 18:45:48', '2019-12-06 18:45:48'),
(190, 70, 5, '2019-12-06 18:45:48', '2019-12-06 18:45:48'),
(191, 70, 6, '2019-12-06 18:45:48', '2019-12-06 18:45:48'),
(192, 71, 1, '2019-12-06 19:05:41', '2019-12-06 19:05:41'),
(193, 71, 2, '2019-12-06 19:05:41', '2019-12-06 19:05:41'),
(194, 72, 1, '2019-12-06 19:06:50', '2019-12-06 19:06:50'),
(195, 72, 2, '2019-12-06 19:06:50', '2019-12-06 19:06:50'),
(196, 73, 2, '2019-12-06 19:34:55', '2019-12-06 19:34:55'),
(197, 73, 3, '2019-12-06 19:34:55', '2019-12-06 19:34:55'),
(198, 73, 5, '2019-12-06 19:34:55', '2019-12-06 19:34:55'),
(199, 74, 1, '2019-12-06 20:43:29', '2019-12-06 20:43:29'),
(200, 74, 2, '2019-12-06 20:43:29', '2019-12-06 20:43:29'),
(201, 75, 1, '2019-12-06 21:03:17', '2019-12-06 21:03:17'),
(202, 75, 2, '2019-12-06 21:03:18', '2019-12-06 21:03:18'),
(203, 75, 4, '2019-12-06 21:03:18', '2019-12-06 21:03:18'),
(204, 75, 6, '2019-12-06 21:03:18', '2019-12-06 21:03:18'),
(205, 76, 1, '2019-12-06 21:10:13', '2019-12-06 21:10:13'),
(206, 76, 2, '2019-12-06 21:10:14', '2019-12-06 21:10:14'),
(207, 77, 1, '2019-12-06 21:17:06', '2019-12-06 21:17:06'),
(208, 77, 2, '2019-12-06 21:17:06', '2019-12-06 21:17:06'),
(209, 77, 3, '2019-12-06 21:17:06', '2019-12-06 21:17:06'),
(210, 77, 4, '2019-12-06 21:17:06', '2019-12-06 21:17:06'),
(211, 78, 1, '2019-12-06 21:32:07', '2019-12-06 21:32:07'),
(212, 78, 2, '2019-12-06 21:32:07', '2019-12-06 21:32:07'),
(213, 79, 1, '2019-12-07 16:11:31', '2019-12-07 16:11:31'),
(214, 79, 2, '2019-12-07 16:11:31', '2019-12-07 16:11:31'),
(215, 80, 4, '2019-12-07 16:14:16', '2019-12-07 16:14:16'),
(216, 81, 1, '2019-12-07 16:21:17', '2019-12-07 16:21:17'),
(217, 81, 2, '2019-12-07 16:21:17', '2019-12-07 16:21:17'),
(218, 82, 1, '2019-12-07 16:58:49', '2019-12-07 16:58:49'),
(219, 82, 2, '2019-12-07 16:58:49', '2019-12-07 16:58:49'),
(220, 82, 3, '2019-12-07 16:58:49', '2019-12-07 16:58:49'),
(221, 83, 1, '2019-12-07 17:07:15', '2019-12-07 17:07:15'),
(222, 83, 2, '2019-12-07 17:07:15', '2019-12-07 17:07:15'),
(223, 84, 1, '2019-12-09 13:37:27', '2019-12-09 13:37:27'),
(224, 84, 2, '2019-12-09 13:37:27', '2019-12-09 13:37:27'),
(225, 84, 3, '2019-12-09 13:37:27', '2019-12-09 13:37:27'),
(226, 85, 1, '2019-12-09 15:22:39', '2019-12-09 15:22:39'),
(227, 85, 2, '2019-12-09 15:22:39', '2019-12-09 15:22:39'),
(228, 85, 3, '2019-12-09 15:22:39', '2019-12-09 15:22:39'),
(229, 85, 5, '2019-12-09 15:22:39', '2019-12-09 15:22:39'),
(230, 85, 4, '2019-12-09 15:22:39', '2019-12-09 15:22:39'),
(231, 86, 4, '2019-12-09 17:57:57', '2019-12-09 17:57:57'),
(232, 86, 5, '2019-12-09 17:57:57', '2019-12-09 17:57:57'),
(233, 86, 6, '2019-12-09 17:57:57', '2019-12-09 17:57:57'),
(234, 86, 9, '2019-12-09 17:57:57', '2019-12-09 17:57:57');
-- --------------------------------------------------------
--
-- Table structure for table `event_reports`
--
CREATE TABLE `event_reports` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`sub_event_id` int(11) NOT NULL,
`message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`report_status` int(11) NOT NULL DEFAULT '3' COMMENT '1=>approved,2=>declined,3=>pending',
`created_at` datetime NOT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `event_reports`
--
INSERT INTO `event_reports` (`id`, `user_id`, `event_id`, `sub_event_id`, `message`, `report_status`, `created_at`, `updated_at`) VALUES
(1, 25, 2, 58, 'Success', 3, '2019-03-25 18:21:26', '2019-03-25 12:51:27');
-- --------------------------------------------------------
--
-- Table structure for table `event_schedule`
--
CREATE TABLE `event_schedule` (
`id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`event_date` date NOT NULL,
`event_date2` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`event_time` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`end_time` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`event_start_date_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`event_end_date_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`created_at` datetime NOT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `event_schedule`
--
INSERT INTO `event_schedule` (`id`, `event_id`, `user_id`, `event_date`, `event_date2`, `event_time`, `end_time`, `event_start_date_time`, `event_end_date_time`, `created_at`, `updated_at`) VALUES
(1, 1, 2, '2019-09-09', 'Mon 9 Sep', '12:39:00', '12:39:00', '2019-09-09 12:39:00', '2019-09-10 12:39:00', '2019-09-09 12:30:12', '2019-09-09 07:00:12'),
(2, 2, 4, '2019-09-09', 'Mon 9 Sep', '12:54:00', '12:54:00', '2019-09-09 12:54:00', '2019-09-10 12:54:00', '2019-09-09 12:45:31', '2019-09-09 07:15:31'),
(3, 2, 4, '2019-09-16', 'Mon 16 Sep', '12:54:00', '12:54:00', '2019-09-16 12:54:00', '2019-09-17 12:54:00', '2019-09-09 12:45:31', '2019-09-09 07:15:31'),
(4, 2, 4, '2019-09-23', 'Mon 23 Sep', '12:54:00', '12:54:00', '2019-09-23 12:54:00', '2019-09-24 12:54:00', '2019-09-09 12:45:31', '2019-09-09 07:15:31'),
(5, 2, 4, '2019-09-30', 'Mon 30 Sep', '12:54:00', '12:54:00', '2019-09-30 12:54:00', '2019-10-01 12:54:00', '2019-09-09 12:45:31', '2019-09-09 07:15:31'),
(6, 2, 4, '2019-10-07', 'Mon 7 Oct', '12:54:00', '12:54:00', '2019-10-07 12:54:00', '2019-10-08 12:54:00', '2019-09-09 12:45:31', '2019-09-09 07:15:31'),
(7, 2, 4, '2019-10-14', 'Mon 14 Oct', '12:54:00', '12:54:00', '2019-10-14 12:54:00', '2019-10-15 12:54:00', '2019-09-09 12:45:31', '2019-09-09 07:15:31'),
(8, 2, 4, '2019-10-21', 'Mon 21 Oct', '12:54:00', '12:54:00', '2019-10-21 12:54:00', '2019-10-22 12:54:00', '2019-09-09 12:45:32', '2019-09-09 07:15:32'),
(9, 2, 4, '2019-10-28', 'Mon 28 Oct', '12:54:00', '12:54:00', '2019-10-28 12:54:00', '2019-10-29 12:54:00', '2019-09-09 12:45:32', '2019-09-09 07:15:32'),
(10, 2, 4, '2019-11-04', 'Mon 4 Nov', '12:54:00', '12:54:00', '2019-11-04 12:54:00', '2019-11-05 12:54:00', '2019-09-09 12:45:32', '2019-09-09 07:15:32'),
(11, 2, 4, '2019-11-11', 'Mon 11 Nov', '12:54:00', '12:54:00', '2019-11-11 12:54:00', '2019-11-12 12:54:00', '2019-09-09 12:45:32', '2019-09-09 07:15:32'),
(12, 2, 4, '2019-11-18', 'Mon 18 Nov', '12:54:00', '12:54:00', '2019-11-18 12:54:00', '2019-11-19 12:54:00', '2019-09-09 12:45:32', '2019-09-09 07:15:32'),
(13, 2, 4, '2019-11-25', 'Mon 25 Nov', '12:54:00', '12:54:00', '2019-11-25 12:54:00', '2019-11-26 12:54:00', '2019-09-09 12:45:32', '2019-09-09 07:15:32'),
(14, 2, 4, '2019-12-02', 'Mon 2 Dec', '12:54:00', '12:54:00', '2019-12-02 12:54:00', '2019-12-03 12:54:00', '2019-09-09 12:45:32', '2019-09-09 07:15:32'),
(15, 2, 4, '2019-12-09', 'Mon 9 Dec', '12:54:00', '12:54:00', '2019-12-09 12:54:00', '2019-12-10 12:54:00', '2019-09-09 12:45:32', '2019-09-09 07:15:32'),
(16, 2, 4, '2019-12-16', 'Mon 16 Dec', '12:54:00', '12:54:00', '2019-12-16 12:54:00', '2019-12-17 12:54:00', '2019-09-09 12:45:32', '2019-09-09 07:15:32'),
(18, 2, 4, '2019-12-30', 'Mon 30 Dec', '12:54:00', '12:54:00', '2019-12-30 12:54:00', '2019-12-31 12:54:00', '2019-09-09 12:45:32', '2019-09-09 07:15:32'),
(19, 2, 4, '2020-01-06', 'Mon 6 Jan', '12:54:00', '12:54:00', '2020-01-06 12:54:00', '2020-01-07 12:54:00', '2019-09-09 12:45:32', '2019-09-09 07:15:32'),
(21, 2, 4, '2020-01-20', 'Mon 20 Jan', '12:54:00', '12:54:00', '2020-01-20 12:54:00', '2020-01-21 12:54:00', '2019-09-09 12:45:32', '2019-09-09 07:15:32'),
(22, 2, 4, '2020-01-27', 'Mon 27 Jan', '12:54:00', '12:54:00', '2020-01-27 12:54:00', '2020-01-28 12:54:00', '2019-09-09 12:45:33', '2019-09-09 07:15:33'),
(23, 2, 4, '2020-02-03', 'Mon 3 Feb', '12:54:00', '12:54:00', '2020-02-03 12:54:00', '2020-02-04 12:54:00', '2019-09-09 12:45:33', '2019-09-09 07:15:33'),
(24, 2, 4, '2020-02-10', 'Mon 10 Feb', '12:54:00', '12:54:00', '2020-02-10 12:54:00', '2020-02-11 12:54:00', '2019-09-09 12:45:33', '2019-09-09 07:15:33'),
(25, 2, 4, '2020-02-17', 'Mon 17 Feb', '12:54:00', '12:54:00', '2020-02-17 12:54:00', '2020-02-18 12:54:00', '2019-09-09 12:45:33', '2019-09-09 07:15:33'),
(26, 2, 4, '2020-02-24', 'Mon 24 Feb', '12:54:00', '12:54:00', '2020-02-24 12:54:00', '2020-02-25 12:54:00', '2019-09-09 12:45:33', '2019-09-09 07:15:33'),
(27, 2, 4, '2020-03-02', 'Mon 2 Mar', '12:54:00', '12:54:00', '2020-03-02 12:54:00', '2020-03-03 12:54:00', '2019-09-09 12:45:33', '2019-09-09 07:15:33'),
(28, 2, 4, '2020-03-09', 'Mon 9 Mar', '12:54:00', '12:54:00', '2020-03-09 12:54:00', '2020-03-10 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(29, 2, 4, '2020-03-16', 'Mon 16 Mar', '12:54:00', '12:54:00', '2020-03-16 12:54:00', '2020-03-17 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(30, 2, 4, '2020-03-23', 'Mon 23 Mar', '12:54:00', '12:54:00', '2020-03-23 12:54:00', '2020-03-24 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(31, 2, 4, '2020-03-30', 'Mon 30 Mar', '12:54:00', '12:54:00', '2020-03-30 12:54:00', '2020-03-31 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(32, 2, 4, '2020-04-06', 'Mon 6 Apr', '12:54:00', '12:54:00', '2020-04-06 12:54:00', '2020-04-07 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(33, 2, 4, '2020-04-13', 'Mon 13 Apr', '12:54:00', '12:54:00', '2020-04-13 12:54:00', '2020-04-14 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(34, 2, 4, '2020-04-20', 'Mon 20 Apr', '12:54:00', '12:54:00', '2020-04-20 12:54:00', '2020-04-21 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(35, 2, 4, '2020-04-27', 'Mon 27 Apr', '12:54:00', '12:54:00', '2020-04-27 12:54:00', '2020-04-28 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(36, 2, 4, '2020-05-04', 'Mon 4 May', '12:54:00', '12:54:00', '2020-05-04 12:54:00', '2020-05-05 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(37, 2, 4, '2020-05-11', 'Mon 11 May', '12:54:00', '12:54:00', '2020-05-11 12:54:00', '2020-05-12 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(38, 2, 4, '2020-05-18', 'Mon 18 May', '12:54:00', '12:54:00', '2020-05-18 12:54:00', '2020-05-19 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(39, 2, 4, '2020-05-25', 'Mon 25 May', '12:54:00', '12:54:00', '2020-05-25 12:54:00', '2020-05-26 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(40, 2, 4, '2020-06-01', 'Mon 1 Jun', '12:54:00', '12:54:00', '2020-06-01 12:54:00', '2020-06-02 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(41, 2, 4, '2020-06-08', 'Mon 8 Jun', '12:54:00', '12:54:00', '2020-06-08 12:54:00', '2020-06-09 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(42, 2, 4, '2020-06-15', 'Mon 15 Jun', '12:54:00', '12:54:00', '2020-06-15 12:54:00', '2020-06-16 12:54:00', '2019-09-09 12:45:34', '2019-09-09 07:15:34'),
(43, 2, 4, '2020-06-22', 'Mon 22 Jun', '12:54:00', '12:54:00', '2020-06-22 12:54:00', '2020-06-23 12:54:00', '2019-09-09 12:45:35', '2019-09-09 07:15:35'),
(44, 2, 4, '2020-06-29', 'Mon 29 Jun', '12:54:00', '12:54:00', '2020-06-29 12:54:00', '2020-06-30 12:54:00', '2019-09-09 12:45:35', '2019-09-09 07:15:35'),
(45, 2, 4, '2020-07-06', 'Mon 6 Jul', '12:54:00', '12:54:00', '2020-07-06 12:54:00', '2020-07-07 12:54:00', '2019-09-09 12:45:35', '2019-09-09 07:15:35'),
(46, 2, 4, '2020-07-13', 'Mon 13 Jul', '12:54:00', '12:54:00', '2020-07-13 12:54:00', '2020-07-14 12:54:00', '2019-09-09 12:45:35', '2019-09-09 07:15:35'),
(47, 2, 4, '2020-07-20', 'Mon 20 Jul', '12:54:00', '12:54:00', '2020-07-20 12:54:00', '2020-07-21 12:54:00', '2019-09-09 12:45:35', '2019-09-09 07:15:35'),
(48, 2, 4, '2020-07-27', 'Mon 27 Jul', '12:54:00', '12:54:00', '2020-07-27 12:54:00', '2020-07-28 12:54:00', '2019-09-09 12:45:35', '2019-09-09 07:15:35'),
(49, 2, 4, '2020-08-03', 'Mon 3 Aug', '12:54:00', '12:54:00', '2020-08-03 12:54:00', '2020-08-04 12:54:00', '2019-09-09 12:45:35', '2019-09-09 07:15:35'),
(50, 3, 3, '2019-09-09', 'Mon 9 Sep', '13:02:00', '13:02:00', '2019-09-09 13:02:00', '2019-09-10 13:02:00', '2019-09-09 12:53:20', '2019-09-09 07:23:20'),
(51, 3, 3, '2019-10-09', 'Wed 9 Oct', '13:02:00', '13:02:00', '2019-10-09 13:02:00', '2019-10-10 13:02:00', '2019-09-09 12:53:20', '2019-09-09 07:23:20'),
(52, 3, 3, '2019-11-09', 'Sat 9 Nov', '13:02:00', '13:02:00', '2019-11-09 13:02:00', '2019-11-10 13:02:00', '2019-09-09 12:53:20', '2019-09-09 07:23:20'),
(53, 3, 3, '2019-12-09', 'Mon 9 Dec', '13:02:00', '13:02:00', '2019-12-09 13:02:00', '2019-12-10 13:02:00', '2019-09-09 12:53:20', '2019-09-09 07:23:20'),
(54, 3, 3, '2020-01-09', 'Thu 9 Jan', '13:02:00', '13:02:00', '2020-01-09 13:02:00', '2020-01-10 13:02:00', '2019-09-09 12:53:20', '2019-09-09 07:23:20'),
(55, 3, 3, '2020-02-09', 'Sun 9 Feb', '13:02:00', '13:02:00', '2020-02-09 13:02:00', '2020-02-10 13:02:00', '2019-09-09 12:53:20', '2019-09-09 07:23:20'),
(56, 3, 3, '2020-03-09', 'Mon 9 Mar', '13:02:00', '13:02:00', '2020-03-09 13:02:00', '2020-03-10 13:02:00', '2019-09-09 12:53:20', '2019-09-09 07:23:20'),
(57, 3, 3, '2020-04-09', 'Thu 9 Apr', '13:02:00', '13:02:00', '2020-04-09 13:02:00', '2020-04-10 13:02:00', '2019-09-09 12:53:21', '2019-09-09 07:23:21'),
(58, 3, 3, '2020-05-09', 'Sat 9 May', '13:02:00', '13:02:00', '2020-05-09 13:02:00', '2020-05-10 13:02:00', '2019-09-09 12:53:21', '2019-09-09 07:23:21'),
(59, 3, 3, '2020-06-09', 'Tue 9 Jun', '13:02:00', '13:02:00', '2020-06-09 13:02:00', '2020-06-10 13:02:00', '2019-09-09 12:53:21', '2019-09-09 07:23:21'),
(60, 3, 3, '2020-07-09', 'Thu 9 Jul', '13:02:00', '13:02:00', '2020-07-09 13:02:00', '2020-07-10 13:02:00', '2019-09-09 12:53:21', '2019-09-09 07:23:21'),
(61, 3, 3, '2020-08-09', 'Sun 9 Aug', '13:02:00', '13:02:00', '2020-08-09 13:02:00', '2020-08-10 13:02:00', '2019-09-09 12:53:21', '2019-09-09 07:23:21'),
(62, 4, 4, '2019-09-09', 'Mon 9 Sep', '13:06:00', '13:06:00', '2019-09-09 13:06:00', '2019-09-11 13:06:00', '2019-09-09 12:57:35', '2019-09-09 07:27:35'),
(63, 4, 4, '2019-09-16', 'Mon 16 Sep', '13:06:00', '13:06:00', '2019-09-16 13:06:00', '2019-09-18 13:06:00', '2019-09-09 12:57:35', '2019-09-09 07:27:35'),
(64, 4, 4, '2019-09-23', 'Mon 23 Sep', '13:06:00', '13:06:00', '2019-09-23 13:06:00', '2019-09-25 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(65, 4, 4, '2019-09-30', 'Mon 30 Sep', '13:06:00', '13:06:00', '2019-09-30 13:06:00', '2019-10-02 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(66, 4, 4, '2019-10-07', 'Mon 7 Oct', '13:06:00', '13:06:00', '2019-10-07 13:06:00', '2019-10-09 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(67, 4, 4, '2019-10-14', 'Mon 14 Oct', '13:06:00', '13:06:00', '2019-10-14 13:06:00', '2019-10-16 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(68, 4, 4, '2019-10-21', 'Mon 21 Oct', '13:06:00', '13:06:00', '2019-10-21 13:06:00', '2019-10-23 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(69, 4, 4, '2019-10-28', 'Mon 28 Oct', '13:06:00', '13:06:00', '2019-10-28 13:06:00', '2019-10-30 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(70, 4, 4, '2019-11-04', 'Mon 4 Nov', '13:06:00', '13:06:00', '2019-11-04 13:06:00', '2019-11-06 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(71, 4, 4, '2019-11-11', 'Mon 11 Nov', '13:06:00', '13:06:00', '2019-11-11 13:06:00', '2019-11-13 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(72, 4, 4, '2019-11-18', 'Mon 18 Nov', '13:06:00', '13:06:00', '2019-11-18 13:06:00', '2019-11-20 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(73, 4, 4, '2019-11-25', 'Mon 25 Nov', '13:06:00', '13:06:00', '2019-11-25 13:06:00', '2019-11-27 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(74, 4, 4, '2019-12-02', 'Mon 2 Dec', '13:06:00', '13:06:00', '2019-12-02 13:06:00', '2019-12-04 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(75, 4, 4, '2019-12-09', 'Mon 9 Dec', '13:06:00', '13:06:00', '2019-12-09 13:06:00', '2019-12-11 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(76, 4, 4, '2019-12-16', 'Mon 16 Dec', '13:06:00', '13:06:00', '2019-12-16 13:06:00', '2019-12-18 13:06:00', '2019-09-09 12:57:36', '2019-09-09 07:27:36'),
(77, 4, 4, '2019-12-23', 'Mon 23 Dec', '13:06:00', '13:06:00', '2019-12-23 13:06:00', '2019-12-25 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(78, 4, 4, '2019-12-30', 'Mon 30 Dec', '13:06:00', '13:06:00', '2019-12-30 13:06:00', '2020-01-01 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(79, 4, 4, '2020-01-06', 'Mon 6 Jan', '13:06:00', '13:06:00', '2020-01-06 13:06:00', '2020-01-08 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(80, 4, 4, '2020-01-13', 'Mon 13 Jan', '13:06:00', '13:06:00', '2020-01-13 13:06:00', '2020-01-15 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(81, 4, 4, '2020-01-20', 'Mon 20 Jan', '13:06:00', '13:06:00', '2020-01-20 13:06:00', '2020-01-22 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(82, 4, 4, '2020-01-27', 'Mon 27 Jan', '13:06:00', '13:06:00', '2020-01-27 13:06:00', '2020-01-29 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(83, 4, 4, '2020-02-03', 'Mon 3 Feb', '13:06:00', '13:06:00', '2020-02-03 13:06:00', '2020-02-05 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(84, 4, 4, '2020-02-10', 'Mon 10 Feb', '13:06:00', '13:06:00', '2020-02-10 13:06:00', '2020-02-12 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(85, 4, 4, '2020-02-17', 'Mon 17 Feb', '13:06:00', '13:06:00', '2020-02-17 13:06:00', '2020-02-19 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(86, 4, 4, '2020-02-24', 'Mon 24 Feb', '13:06:00', '13:06:00', '2020-02-24 13:06:00', '2020-02-26 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(87, 4, 4, '2020-03-02', 'Mon 2 Mar', '13:06:00', '13:06:00', '2020-03-02 13:06:00', '2020-03-04 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(88, 4, 4, '2020-03-09', 'Mon 9 Mar', '13:06:00', '13:06:00', '2020-03-09 13:06:00', '2020-03-11 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(89, 4, 4, '2020-03-16', 'Mon 16 Mar', '13:06:00', '13:06:00', '2020-03-16 13:06:00', '2020-03-18 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(90, 4, 4, '2020-03-23', 'Mon 23 Mar', '13:06:00', '13:06:00', '2020-03-23 13:06:00', '2020-03-25 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(91, 4, 4, '2020-03-30', 'Mon 30 Mar', '13:06:00', '13:06:00', '2020-03-30 13:06:00', '2020-04-01 13:06:00', '2019-09-09 12:57:37', '2019-09-09 07:27:37'),
(92, 4, 4, '2020-04-06', 'Mon 6 Apr', '13:06:00', '13:06:00', '2020-04-06 13:06:00', '2020-04-08 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(93, 4, 4, '2020-04-13', 'Mon 13 Apr', '13:06:00', '13:06:00', '2020-04-13 13:06:00', '2020-04-15 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(94, 4, 4, '2020-04-20', 'Mon 20 Apr', '13:06:00', '13:06:00', '2020-04-20 13:06:00', '2020-04-22 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(95, 4, 4, '2020-04-27', 'Mon 27 Apr', '13:06:00', '13:06:00', '2020-04-27 13:06:00', '2020-04-29 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(96, 4, 4, '2020-05-04', 'Mon 4 May', '13:06:00', '13:06:00', '2020-05-04 13:06:00', '2020-05-06 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(97, 4, 4, '2020-05-11', 'Mon 11 May', '13:06:00', '13:06:00', '2020-05-11 13:06:00', '2020-05-13 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(98, 4, 4, '2020-05-18', 'Mon 18 May', '13:06:00', '13:06:00', '2020-05-18 13:06:00', '2020-05-20 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(99, 4, 4, '2020-05-25', 'Mon 25 May', '13:06:00', '13:06:00', '2020-05-25 13:06:00', '2020-05-27 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(100, 4, 4, '2020-06-01', 'Mon 1 Jun', '13:06:00', '13:06:00', '2020-06-01 13:06:00', '2020-06-03 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(101, 4, 4, '2020-06-08', 'Mon 8 Jun', '13:06:00', '13:06:00', '2020-06-08 13:06:00', '2020-06-10 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(102, 4, 4, '2020-06-15', 'Mon 15 Jun', '13:06:00', '13:06:00', '2020-06-15 13:06:00', '2020-06-17 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(103, 4, 4, '2020-06-22', 'Mon 22 Jun', '13:06:00', '13:06:00', '2020-06-22 13:06:00', '2020-06-24 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(104, 4, 4, '2020-06-29', 'Mon 29 Jun', '13:06:00', '13:06:00', '2020-06-29 13:06:00', '2020-07-01 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(105, 4, 4, '2020-07-06', 'Mon 6 Jul', '13:06:00', '13:06:00', '2020-07-06 13:06:00', '2020-07-08 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(106, 4, 4, '2020-07-13', 'Mon 13 Jul', '13:06:00', '13:06:00', '2020-07-13 13:06:00', '2020-07-15 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(107, 4, 4, '2020-07-20', 'Mon 20 Jul', '13:06:00', '13:06:00', '2020-07-20 13:06:00', '2020-07-22 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(108, 4, 4, '2020-07-27', 'Mon 27 Jul', '13:06:00', '13:06:00', '2020-07-27 13:06:00', '2020-07-29 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(109, 4, 4, '2020-08-03', 'Mon 3 Aug', '13:06:00', '13:06:00', '2020-08-03 13:06:00', '2020-08-05 13:06:00', '2019-09-09 12:57:38', '2019-09-09 07:27:38'),
(110, 5, 4, '2019-09-09', 'Mon 9 Sep', '13:10:00', '13:10:00', '2019-09-09 13:10:00', '2019-09-10 13:10:00', '2019-09-09 13:01:20', '2019-09-09 07:31:20'),
(111, 5, 4, '2019-09-23', 'Mon 23 Sep', '13:10:00', '13:10:00', '2019-09-23 13:10:00', '2019-09-24 13:10:00', '2019-09-09 13:01:20', '2019-09-09 07:31:20'),
(112, 5, 4, '2019-10-07', 'Mon 7 Oct', '13:10:00', '13:10:00', '2019-10-07 13:10:00', '2019-10-08 13:10:00', '2019-09-09 13:01:20', '2019-09-09 07:31:20'),
(113, 5, 4, '2019-10-21', 'Mon 21 Oct', '13:10:00', '13:10:00', '2019-10-21 13:10:00', '2019-10-22 13:10:00', '2019-09-09 13:01:20', '2019-09-09 07:31:20'),
(114, 5, 4, '2019-11-04', 'Mon 4 Nov', '13:10:00', '13:10:00', '2019-11-04 13:10:00', '2019-11-05 13:10:00', '2019-09-09 13:01:20', '2019-09-09 07:31:20'),
(115, 5, 4, '2019-11-18', 'Mon 18 Nov', '13:10:00', '13:10:00', '2019-11-18 13:10:00', '2019-11-19 13:10:00', '2019-09-09 13:01:20', '2019-09-09 07:31:20'),
(116, 5, 4, '2019-12-02', 'Mon 2 Dec', '13:10:00', '13:10:00', '2019-12-02 13:10:00', '2019-12-03 13:10:00', '2019-09-09 13:01:20', '2019-09-09 07:31:20'),
(117, 5, 4, '2019-12-16', 'Mon 16 Dec', '13:10:00', '13:10:00', '2019-12-16 13:10:00', '2019-12-17 13:10:00', '2019-09-09 13:01:20', '2019-09-09 07:31:20'),
(118, 5, 4, '2019-12-30', 'Mon 30 Dec', '13:10:00', '13:10:00', '2019-12-30 13:10:00', '2019-12-31 13:10:00', '2019-09-09 13:01:20', '2019-09-09 07:31:20'),
(119, 5, 4, '2020-01-13', 'Mon 13 Jan', '13:10:00', '13:10:00', '2020-01-13 13:10:00', '2020-01-14 13:10:00', '2019-09-09 13:01:20', '2019-09-09 07:31:20'),
(120, 5, 4, '2020-01-27', 'Mon 27 Jan', '13:10:00', '13:10:00', '2020-01-27 13:10:00', '2020-01-28 13:10:00', '2019-09-09 13:01:20', '2019-09-09 07:31:20'),
(121, 5, 4, '2020-02-10', 'Mon 10 Feb', '13:10:00', '13:10:00', '2020-02-10 13:10:00', '2020-02-11 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(122, 5, 4, '2020-02-24', 'Mon 24 Feb', '13:10:00', '13:10:00', '2020-02-24 13:10:00', '2020-02-25 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(123, 5, 4, '2020-03-09', 'Mon 9 Mar', '13:10:00', '13:10:00', '2020-03-09 13:10:00', '2020-03-10 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(124, 5, 4, '2020-03-23', 'Mon 23 Mar', '13:10:00', '13:10:00', '2020-03-23 13:10:00', '2020-03-24 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(125, 5, 4, '2020-04-06', 'Mon 6 Apr', '13:10:00', '13:10:00', '2020-04-06 13:10:00', '2020-04-07 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(126, 5, 4, '2020-04-20', 'Mon 20 Apr', '13:10:00', '13:10:00', '2020-04-20 13:10:00', '2020-04-21 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(127, 5, 4, '2020-05-04', 'Mon 4 May', '13:10:00', '13:10:00', '2020-05-04 13:10:00', '2020-05-05 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(128, 5, 4, '2020-05-18', 'Mon 18 May', '13:10:00', '13:10:00', '2020-05-18 13:10:00', '2020-05-19 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(129, 5, 4, '2020-06-01', 'Mon 1 Jun', '13:10:00', '13:10:00', '2020-06-01 13:10:00', '2020-06-02 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(130, 5, 4, '2020-06-15', 'Mon 15 Jun', '13:10:00', '13:10:00', '2020-06-15 13:10:00', '2020-06-16 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(131, 5, 4, '2020-06-29', 'Mon 29 Jun', '13:10:00', '13:10:00', '2020-06-29 13:10:00', '2020-06-30 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(132, 5, 4, '2020-07-13', 'Mon 13 Jul', '13:10:00', '13:10:00', '2020-07-13 13:10:00', '2020-07-14 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(133, 5, 4, '2020-07-27', 'Mon 27 Jul', '13:10:00', '13:10:00', '2020-07-27 13:10:00', '2020-07-28 13:10:00', '2019-09-09 13:01:21', '2019-09-09 07:31:21'),
(134, 6, 4, '2019-09-09', 'Mon 9 Sep', '13:12:00', '22:12:00', '2019-09-09 13:12:00', '2019-09-09 22:12:00', '2019-09-09 13:03:36', '2019-09-09 07:33:36'),
(135, 6, 4, '2019-10-09', 'Wed 9 Oct', '13:12:00', '22:12:00', '2019-10-09 13:12:00', '2019-10-09 22:12:00', '2019-09-09 13:03:36', '2019-09-09 07:33:36'),
(136, 6, 4, '2019-11-09', 'Sat 9 Nov', '13:12:00', '22:12:00', '2019-11-09 13:12:00', '2019-11-09 22:12:00', '2019-09-09 13:03:36', '2019-09-09 07:33:36'),
(137, 6, 4, '2019-12-09', 'Mon 9 Dec', '13:12:00', '22:12:00', '2019-12-09 13:12:00', '2019-12-09 22:12:00', '2019-09-09 13:03:36', '2019-09-09 07:33:36'),
(138, 6, 4, '2020-01-09', 'Thu 9 Jan', '13:12:00', '22:12:00', '2020-01-09 13:12:00', '2020-01-09 22:12:00', '2019-09-09 13:03:36', '2019-09-09 07:33:36'),
(139, 6, 4, '2020-02-09', 'Sun 9 Feb', '13:12:00', '22:12:00', '2020-02-09 13:12:00', '2020-02-09 22:12:00', '2019-09-09 13:03:36', '2019-09-09 07:33:36'),
(140, 6, 4, '2020-03-09', 'Mon 9 Mar', '13:12:00', '22:12:00', '2020-03-09 13:12:00', '2020-03-09 22:12:00', '2019-09-09 13:03:36', '2019-09-09 07:33:36'),
(141, 6, 4, '2020-04-09', 'Thu 9 Apr', '13:12:00', '22:12:00', '2020-04-09 13:12:00', '2020-04-09 22:12:00', '2019-09-09 13:03:36', '2019-09-09 07:33:36'),
(142, 6, 4, '2020-05-09', 'Sat 9 May', '13:12:00', '22:12:00', '2020-05-09 13:12:00', '2020-05-09 22:12:00', '2019-09-09 13:03:37', '2019-09-09 07:33:37'),
(143, 6, 4, '2020-06-09', 'Tue 9 Jun', '13:12:00', '22:12:00', '2020-06-09 13:12:00', '2020-06-09 22:12:00', '2019-09-09 13:03:37', '2019-09-09 07:33:37'),
(144, 6, 4, '2020-07-09', 'Thu 9 Jul', '13:12:00', '22:12:00', '2020-07-09 13:12:00', '2020-07-09 22:12:00', '2019-09-09 13:03:37', '2019-09-09 07:33:37'),
(145, 6, 4, '2020-08-09', 'Sun 9 Aug', '13:12:00', '22:12:00', '2020-08-09 13:12:00', '2020-08-09 22:12:00', '2019-09-09 13:03:37', '2019-09-09 07:33:37'),
(146, 7, 3, '2019-09-09', 'Mon 9 Sep', '13:28:00', '22:28:00', '2019-09-09 13:28:00', '2019-09-09 22:28:00', '2019-09-09 13:19:55', '2019-09-09 07:49:55'),
(147, 7, 3, '2019-09-16', 'Mon 16 Sep', '13:28:00', '22:28:00', '2019-09-16 13:28:00', '2019-09-16 22:28:00', '2019-09-09 13:19:55', '2019-09-09 07:49:55'),
(148, 7, 3, '2019-09-23', 'Mon 23 Sep', '13:28:00', '22:28:00', '2019-09-23 13:28:00', '2019-09-23 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(149, 7, 3, '2019-09-30', 'Mon 30 Sep', '13:28:00', '22:28:00', '2019-09-30 13:28:00', '2019-09-30 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(150, 7, 3, '2019-10-07', 'Mon 7 Oct', '13:28:00', '22:28:00', '2019-10-07 13:28:00', '2019-10-07 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(151, 7, 3, '2019-10-14', 'Mon 14 Oct', '13:28:00', '22:28:00', '2019-10-14 13:28:00', '2019-10-14 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(152, 7, 3, '2019-10-21', 'Mon 21 Oct', '13:28:00', '22:28:00', '2019-10-21 13:28:00', '2019-10-21 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(153, 7, 3, '2019-10-28', 'Mon 28 Oct', '13:28:00', '22:28:00', '2019-10-28 13:28:00', '2019-10-28 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(154, 7, 3, '2019-11-04', 'Mon 4 Nov', '13:28:00', '22:28:00', '2019-11-04 13:28:00', '2019-11-04 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(155, 7, 3, '2019-11-11', 'Mon 11 Nov', '13:28:00', '22:28:00', '2019-11-11 13:28:00', '2019-11-11 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(156, 7, 3, '2019-11-18', 'Mon 18 Nov', '13:28:00', '22:28:00', '2019-11-18 13:28:00', '2019-11-18 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(157, 7, 3, '2019-11-25', 'Mon 25 Nov', '13:28:00', '22:28:00', '2019-11-25 13:28:00', '2019-11-25 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(158, 7, 3, '2019-12-02', 'Mon 2 Dec', '13:28:00', '22:28:00', '2019-12-02 13:28:00', '2019-12-02 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(159, 7, 3, '2019-12-09', 'Mon 9 Dec', '13:28:00', '22:28:00', '2019-12-09 13:28:00', '2019-12-09 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(160, 7, 3, '2019-12-16', 'Mon 16 Dec', '13:28:00', '22:28:00', '2019-12-16 13:28:00', '2019-12-16 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(161, 7, 3, '2019-12-23', 'Mon 23 Dec', '13:28:00', '22:28:00', '2019-12-23 13:28:00', '2019-12-23 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(162, 7, 3, '2019-12-30', 'Mon 30 Dec', '13:28:00', '22:28:00', '2019-12-30 13:28:00', '2019-12-30 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(163, 7, 3, '2020-01-06', 'Mon 6 Jan', '13:28:00', '22:28:00', '2020-01-06 13:28:00', '2020-01-06 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(164, 7, 3, '2020-01-13', 'Mon 13 Jan', '13:28:00', '22:28:00', '2020-01-13 13:28:00', '2020-01-13 22:28:00', '2019-09-09 13:19:56', '2019-09-09 07:49:56'),
(165, 7, 3, '2020-01-20', 'Mon 20 Jan', '13:28:00', '22:28:00', '2020-01-20 13:28:00', '2020-01-20 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(166, 7, 3, '2020-01-27', 'Mon 27 Jan', '13:28:00', '22:28:00', '2020-01-27 13:28:00', '2020-01-27 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(167, 7, 3, '2020-02-03', 'Mon 3 Feb', '13:28:00', '22:28:00', '2020-02-03 13:28:00', '2020-02-03 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(168, 7, 3, '2020-02-10', 'Mon 10 Feb', '13:28:00', '22:28:00', '2020-02-10 13:28:00', '2020-02-10 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(169, 7, 3, '2020-02-17', 'Mon 17 Feb', '13:28:00', '22:28:00', '2020-02-17 13:28:00', '2020-02-17 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(170, 7, 3, '2020-02-24', 'Mon 24 Feb', '13:28:00', '22:28:00', '2020-02-24 13:28:00', '2020-02-24 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(171, 7, 3, '2020-03-02', 'Mon 2 Mar', '13:28:00', '22:28:00', '2020-03-02 13:28:00', '2020-03-02 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(172, 7, 3, '2020-03-09', 'Mon 9 Mar', '13:28:00', '22:28:00', '2020-03-09 13:28:00', '2020-03-09 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(173, 7, 3, '2020-03-16', 'Mon 16 Mar', '13:28:00', '22:28:00', '2020-03-16 13:28:00', '2020-03-16 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(174, 7, 3, '2020-03-23', 'Mon 23 Mar', '13:28:00', '22:28:00', '2020-03-23 13:28:00', '2020-03-23 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(175, 7, 3, '2020-03-30', 'Mon 30 Mar', '13:28:00', '22:28:00', '2020-03-30 13:28:00', '2020-03-30 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(176, 7, 3, '2020-04-06', 'Mon 6 Apr', '13:28:00', '22:28:00', '2020-04-06 13:28:00', '2020-04-06 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(177, 7, 3, '2020-04-13', 'Mon 13 Apr', '13:28:00', '22:28:00', '2020-04-13 13:28:00', '2020-04-13 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(178, 7, 3, '2020-04-20', 'Mon 20 Apr', '13:28:00', '22:28:00', '2020-04-20 13:28:00', '2020-04-20 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(179, 7, 3, '2020-04-27', 'Mon 27 Apr', '13:28:00', '22:28:00', '2020-04-27 13:28:00', '2020-04-27 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(180, 7, 3, '2020-05-04', 'Mon 4 May', '13:28:00', '22:28:00', '2020-05-04 13:28:00', '2020-05-04 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(181, 7, 3, '2020-05-11', 'Mon 11 May', '13:28:00', '22:28:00', '2020-05-11 13:28:00', '2020-05-11 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(182, 7, 3, '2020-05-18', 'Mon 18 May', '13:28:00', '22:28:00', '2020-05-18 13:28:00', '2020-05-18 22:28:00', '2019-09-09 13:19:57', '2019-09-09 07:49:57'),
(183, 7, 3, '2020-05-25', 'Mon 25 May', '13:28:00', '22:28:00', '2020-05-25 13:28:00', '2020-05-25 22:28:00', '2019-09-09 13:19:58', '2019-09-09 07:49:58'),
(184, 7, 3, '2020-06-01', 'Mon 1 Jun', '13:28:00', '22:28:00', '2020-06-01 13:28:00', '2020-06-01 22:28:00', '2019-09-09 13:19:58', '2019-09-09 07:49:58'),
(185, 7, 3, '2020-06-08', 'Mon 8 Jun', '13:28:00', '22:28:00', '2020-06-08 13:28:00', '2020-06-08 22:28:00', '2019-09-09 13:19:58', '2019-09-09 07:49:58'),
(186, 7, 3, '2020-06-15', 'Mon 15 Jun', '13:28:00', '22:28:00', '2020-06-15 13:28:00', '2020-06-15 22:28:00', '2019-09-09 13:19:58', '2019-09-09 07:49:58'),
(187, 7, 3, '2020-06-22', 'Mon 22 Jun', '13:28:00', '22:28:00', '2020-06-22 13:28:00', '2020-06-22 22:28:00', '2019-09-09 13:19:58', '2019-09-09 07:49:58'),
(188, 7, 3, '2020-06-29', 'Mon 29 Jun', '13:28:00', '22:28:00', '2020-06-29 13:28:00', '2020-06-29 22:28:00', '2019-09-09 13:19:58', '2019-09-09 07:49:58'),
(189, 7, 3, '2020-07-06', 'Mon 6 Jul', '13:28:00', '22:28:00', '2020-07-06 13:28:00', '2020-07-06 22:28:00', '2019-09-09 13:19:58', '2019-09-09 07:49:58'),
(190, 7, 3, '2020-07-13', 'Mon 13 Jul', '13:28:00', '22:28:00', '2020-07-13 13:28:00', '2020-07-13 22:28:00', '2019-09-09 13:19:58', '2019-09-09 07:49:58'),
(191, 7, 3, '2020-07-20', 'Mon 20 Jul', '13:28:00', '22:28:00', '2020-07-20 13:28:00', '2020-07-20 22:28:00', '2019-09-09 13:19:58', '2019-09-09 07:49:58'),
(192, 7, 3, '2020-07-27', 'Mon 27 Jul', '13:28:00', '22:28:00', '2020-07-27 13:28:00', '2020-07-27 22:28:00', '2019-09-09 13:19:58', '2019-09-09 07:49:58'),
(193, 7, 3, '2020-08-03', 'Mon 3 Aug', '13:28:00', '22:28:00', '2020-08-03 13:28:00', '2020-08-03 22:28:00', '2019-09-09 13:19:58', '2019-09-09 07:49:58'),
(194, 8, 5, '2019-09-10', 'Tue 10 Sep', '13:22:00', '13:22:00', '2019-09-10 13:22:00', '2019-09-11 13:22:00', '2019-09-09 13:22:30', '2019-09-09 07:52:30'),
(195, 8, 5, '2019-10-10', 'Thu 10 Oct', '13:22:00', '13:22:00', '2019-10-10 13:22:00', '2019-10-11 13:22:00', '2019-09-09 13:22:30', '2019-09-09 07:52:30'),
(196, 8, 5, '2019-11-10', 'Sun 10 Nov', '13:22:00', '13:22:00', '2019-11-10 13:22:00', '2019-11-11 13:22:00', '2019-09-09 13:22:30', '2019-09-09 07:52:30'),
(197, 8, 5, '2019-12-10', 'Tue 10 Dec', '13:22:00', '13:22:00', '2019-12-10 13:22:00', '2019-12-11 13:22:00', '2019-09-09 13:22:30', '2019-09-09 07:52:30'),
(198, 8, 5, '2020-01-10', 'Fri 10 Jan', '13:22:00', '13:22:00', '2020-01-10 13:22:00', '2020-01-11 13:22:00', '2019-09-09 13:22:30', '2019-09-09 07:52:30'),
(199, 8, 5, '2020-02-10', 'Mon 10 Feb', '13:22:00', '13:22:00', '2020-02-10 13:22:00', '2020-02-11 13:22:00', '2019-09-09 13:22:30', '2019-09-09 07:52:30'),
(200, 8, 5, '2020-03-10', 'Tue 10 Mar', '13:22:00', '13:22:00', '2020-03-10 13:22:00', '2020-03-11 13:22:00', '2019-09-09 13:22:30', '2019-09-09 07:52:30'),
(201, 8, 5, '2020-04-10', 'Fri 10 Apr', '13:22:00', '13:22:00', '2020-04-10 13:22:00', '2020-04-11 13:22:00', '2019-09-09 13:22:30', '2019-09-09 07:52:30'),
(202, 8, 5, '2020-05-10', 'Sun 10 May', '13:22:00', '13:22:00', '2020-05-10 13:22:00', '2020-05-11 13:22:00', '2019-09-09 13:22:30', '2019-09-09 07:52:30'),
(203, 8, 5, '2020-06-10', 'Wed 10 Jun', '13:22:00', '13:22:00', '2020-06-10 13:22:00', '2020-06-11 13:22:00', '2019-09-09 13:22:30', '2019-09-09 07:52:30'),
(204, 8, 5, '2020-07-10', 'Fri 10 Jul', '13:22:00', '13:22:00', '2020-07-10 13:22:00', '2020-07-11 13:22:00', '2019-09-09 13:22:30', '2019-09-09 07:52:30'),
(205, 8, 5, '2020-08-10', 'Mon 10 Aug', '13:22:00', '13:22:00', '2020-08-10 13:22:00', '2020-08-11 13:22:00', '2019-09-09 13:22:31', '2019-09-09 07:52:31'),
(206, 9, 4, '2019-09-09', 'Mon 9 Sep', '14:36:14', '14:36:14', '2019-09-09 14:36:14', '2019-09-10 14:36:14', '2019-09-09 14:27:05', '2019-09-09 08:57:05'),
(207, 9, 4, '2019-09-16', 'Mon 16 Sep', '14:36:14', '14:36:14', '2019-09-16 14:36:14', '2019-09-17 14:36:14', '2019-09-09 14:27:05', '2019-09-09 08:57:05'),
(208, 9, 4, '2019-09-23', 'Mon 23 Sep', '14:36:14', '14:36:14', '2019-09-23 14:36:14', '2019-09-24 14:36:14', '2019-09-09 14:27:05', '2019-09-09 08:57:05'),
(209, 9, 4, '2019-09-30', 'Mon 30 Sep', '14:36:14', '14:36:14', '2019-09-30 14:36:14', '2019-10-01 14:36:14', '2019-09-09 14:27:05', '2019-09-09 08:57:05'),
(210, 9, 4, '2019-10-07', 'Mon 7 Oct', '14:36:14', '14:36:14', '2019-10-07 14:36:14', '2019-10-08 14:36:14', '2019-09-09 14:27:05', '2019-09-09 08:57:05'),
(211, 9, 4, '2019-10-14', 'Mon 14 Oct', '14:36:14', '14:36:14', '2019-10-14 14:36:14', '2019-10-15 14:36:14', '2019-09-09 14:27:05', '2019-09-09 08:57:05'),
(212, 9, 4, '2019-10-21', 'Mon 21 Oct', '14:36:14', '14:36:14', '2019-10-21 14:36:14', '2019-10-22 14:36:14', '2019-09-09 14:27:05', '2019-09-09 08:57:05'),
(213, 9, 4, '2019-10-28', 'Mon 28 Oct', '14:36:14', '14:36:14', '2019-10-28 14:36:14', '2019-10-29 14:36:14', '2019-09-09 14:27:05', '2019-09-09 08:57:05'),
(214, 9, 4, '2019-11-04', 'Mon 4 Nov', '14:36:14', '14:36:14', '2019-11-04 14:36:14', '2019-11-05 14:36:14', '2019-09-09 14:27:05', '2019-09-09 08:57:05'),
(215, 9, 4, '2019-11-11', 'Mon 11 Nov', '14:36:14', '14:36:14', '2019-11-11 14:36:14', '2019-11-12 14:36:14', '2019-09-09 14:27:05', '2019-09-09 08:57:05'),
(216, 9, 4, '2019-11-18', 'Mon 18 Nov', '14:36:14', '14:36:14', '2019-11-18 14:36:14', '2019-11-19 14:36:14', '2019-09-09 14:27:05', '2019-09-09 08:57:05'),
(217, 9, 4, '2019-11-25', 'Mon 25 Nov', '14:36:14', '14:36:14', '2019-11-25 14:36:14', '2019-11-26 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(218, 9, 4, '2019-12-02', 'Mon 2 Dec', '14:36:14', '14:36:14', '2019-12-02 14:36:14', '2019-12-03 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(219, 9, 4, '2019-12-09', 'Mon 9 Dec', '14:36:14', '14:36:14', '2019-12-09 14:36:14', '2019-12-10 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(220, 9, 4, '2019-12-16', 'Mon 16 Dec', '14:36:14', '14:36:14', '2019-12-16 14:36:14', '2019-12-17 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(221, 9, 4, '2019-12-23', 'Mon 23 Dec', '14:36:14', '14:36:14', '2019-12-23 14:36:14', '2019-12-24 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(222, 9, 4, '2019-12-30', 'Mon 30 Dec', '14:36:14', '14:36:14', '2019-12-30 14:36:14', '2019-12-31 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(223, 9, 4, '2020-01-06', 'Mon 6 Jan', '14:36:14', '14:36:14', '2020-01-06 14:36:14', '2020-01-07 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(224, 9, 4, '2020-01-13', 'Mon 13 Jan', '14:36:14', '14:36:14', '2020-01-13 14:36:14', '2020-01-14 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(225, 9, 4, '2020-01-20', 'Mon 20 Jan', '14:36:14', '14:36:14', '2020-01-20 14:36:14', '2020-01-21 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(226, 9, 4, '2020-01-27', 'Mon 27 Jan', '14:36:14', '14:36:14', '2020-01-27 14:36:14', '2020-01-28 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(227, 9, 4, '2020-02-03', 'Mon 3 Feb', '14:36:14', '14:36:14', '2020-02-03 14:36:14', '2020-02-04 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(228, 9, 4, '2020-02-10', 'Mon 10 Feb', '14:36:14', '14:36:14', '2020-02-10 14:36:14', '2020-02-11 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(229, 9, 4, '2020-02-17', 'Mon 17 Feb', '14:36:14', '14:36:14', '2020-02-17 14:36:14', '2020-02-18 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(230, 9, 4, '2020-02-24', 'Mon 24 Feb', '14:36:14', '14:36:14', '2020-02-24 14:36:14', '2020-02-25 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(231, 9, 4, '2020-03-02', 'Mon 2 Mar', '14:36:14', '14:36:14', '2020-03-02 14:36:14', '2020-03-03 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(232, 9, 4, '2020-03-09', 'Mon 9 Mar', '14:36:14', '14:36:14', '2020-03-09 14:36:14', '2020-03-10 14:36:14', '2019-09-09 14:27:06', '2019-09-09 08:57:06'),
(233, 9, 4, '2020-03-16', 'Mon 16 Mar', '14:36:14', '14:36:14', '2020-03-16 14:36:14', '2020-03-17 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(234, 9, 4, '2020-03-23', 'Mon 23 Mar', '14:36:14', '14:36:14', '2020-03-23 14:36:14', '2020-03-24 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(235, 9, 4, '2020-03-30', 'Mon 30 Mar', '14:36:14', '14:36:14', '2020-03-30 14:36:14', '2020-03-31 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(236, 9, 4, '2020-04-06', 'Mon 6 Apr', '14:36:14', '14:36:14', '2020-04-06 14:36:14', '2020-04-07 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(237, 9, 4, '2020-04-13', 'Mon 13 Apr', '14:36:14', '14:36:14', '2020-04-13 14:36:14', '2020-04-14 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(238, 9, 4, '2020-04-20', 'Mon 20 Apr', '14:36:14', '14:36:14', '2020-04-20 14:36:14', '2020-04-21 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(239, 9, 4, '2020-04-27', 'Mon 27 Apr', '14:36:14', '14:36:14', '2020-04-27 14:36:14', '2020-04-28 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(240, 9, 4, '2020-05-04', 'Mon 4 May', '14:36:14', '14:36:14', '2020-05-04 14:36:14', '2020-05-05 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(241, 9, 4, '2020-05-11', 'Mon 11 May', '14:36:14', '14:36:14', '2020-05-11 14:36:14', '2020-05-12 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(242, 9, 4, '2020-05-18', 'Mon 18 May', '14:36:14', '14:36:14', '2020-05-18 14:36:14', '2020-05-19 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(243, 9, 4, '2020-05-25', 'Mon 25 May', '14:36:14', '14:36:14', '2020-05-25 14:36:14', '2020-05-26 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(244, 9, 4, '2020-06-01', 'Mon 1 Jun', '14:36:14', '14:36:14', '2020-06-01 14:36:14', '2020-06-02 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(245, 9, 4, '2020-06-08', 'Mon 8 Jun', '14:36:14', '14:36:14', '2020-06-08 14:36:14', '2020-06-09 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(246, 9, 4, '2020-06-15', 'Mon 15 Jun', '14:36:14', '14:36:14', '2020-06-15 14:36:14', '2020-06-16 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(247, 9, 4, '2020-06-22', 'Mon 22 Jun', '14:36:14', '14:36:14', '2020-06-22 14:36:14', '2020-06-23 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(248, 9, 4, '2020-06-29', 'Mon 29 Jun', '14:36:14', '14:36:14', '2020-06-29 14:36:14', '2020-06-30 14:36:14', '2019-09-09 14:27:07', '2019-09-09 08:57:07'),
(249, 9, 4, '2020-07-06', 'Mon 6 Jul', '14:36:14', '14:36:14', '2020-07-06 14:36:14', '2020-07-07 14:36:14', '2019-09-09 14:27:08', '2019-09-09 08:57:08'),
(250, 9, 4, '2020-07-13', 'Mon 13 Jul', '14:36:14', '14:36:14', '2020-07-13 14:36:14', '2020-07-14 14:36:14', '2019-09-09 14:27:08', '2019-09-09 08:57:08'),
(251, 9, 4, '2020-07-20', 'Mon 20 Jul', '14:36:14', '14:36:14', '2020-07-20 14:36:14', '2020-07-21 14:36:14', '2019-09-09 14:27:08', '2019-09-09 08:57:08'),
(252, 9, 4, '2020-07-27', 'Mon 27 Jul', '14:36:14', '14:36:14', '2020-07-27 14:36:14', '2020-07-28 14:36:14', '2019-09-09 14:27:08', '2019-09-09 08:57:08'),
(253, 9, 4, '2020-08-03', 'Mon 3 Aug', '14:36:14', '14:36:14', '2020-08-03 14:36:14', '2020-08-04 14:36:14', '2019-09-09 14:27:08', '2019-09-09 08:57:08'),
(254, 10, 2, '2019-09-09', 'Mon 9 Sep', '14:40:00', '14:40:00', '2019-09-09 14:40:00', '2019-09-10 14:40:00', '2019-09-09 14:31:24', '2019-09-09 09:01:24'),
(255, 10, 2, '2019-10-09', 'Wed 9 Oct', '14:40:00', '14:40:00', '2019-10-09 14:40:00', '2019-10-10 14:40:00', '2019-09-09 14:31:24', '2019-09-09 09:01:24'),
(256, 10, 2, '2019-11-09', 'Sat 9 Nov', '14:40:00', '14:40:00', '2019-11-09 14:40:00', '2019-11-10 14:40:00', '2019-09-09 14:31:24', '2019-09-09 09:01:24'),
(257, 10, 2, '2019-12-09', 'Mon 9 Dec', '14:40:00', '14:40:00', '2019-12-09 14:40:00', '2019-12-10 14:40:00', '2019-09-09 14:31:24', '2019-09-09 09:01:24'),
(258, 10, 2, '2020-01-09', 'Thu 9 Jan', '14:40:00', '14:40:00', '2020-01-09 14:40:00', '2020-01-10 14:40:00', '2019-09-09 14:31:24', '2019-09-09 09:01:24'),
(259, 10, 2, '2020-02-09', 'Sun 9 Feb', '14:40:00', '14:40:00', '2020-02-09 14:40:00', '2020-02-10 14:40:00', '2019-09-09 14:31:24', '2019-09-09 09:01:24'),
(260, 10, 2, '2020-03-09', 'Mon 9 Mar', '14:40:00', '14:40:00', '2020-03-09 14:40:00', '2020-03-10 14:40:00', '2019-09-09 14:31:24', '2019-09-09 09:01:24'),
(261, 10, 2, '2020-04-09', 'Thu 9 Apr', '14:40:00', '14:40:00', '2020-04-09 14:40:00', '2020-04-10 14:40:00', '2019-09-09 14:31:24', '2019-09-09 09:01:24'),
(262, 10, 2, '2020-05-09', 'Sat 9 May', '14:40:00', '14:40:00', '2020-05-09 14:40:00', '2020-05-10 14:40:00', '2019-09-09 14:31:25', '2019-09-09 09:01:25'),
(263, 10, 2, '2020-06-09', 'Tue 9 Jun', '14:40:00', '14:40:00', '2020-06-09 14:40:00', '2020-06-10 14:40:00', '2019-09-09 14:31:25', '2019-09-09 09:01:25'),
(264, 10, 2, '2020-07-09', 'Thu 9 Jul', '14:40:00', '14:40:00', '2020-07-09 14:40:00', '2020-07-10 14:40:00', '2019-09-09 14:31:25', '2019-09-09 09:01:25'),
(265, 10, 2, '2020-08-09', 'Sun 9 Aug', '14:40:00', '14:40:00', '2020-08-09 14:40:00', '2020-08-10 14:40:00', '2019-09-09 14:31:25', '2019-09-09 09:01:25'),
(266, 11, 7, '2019-09-09', 'Mon 9 Sep', '16:25:00', '16:19:00', '2019-09-09 16:25:00', '2019-09-19 16:19:00', '2019-09-09 16:16:32', '2019-09-09 10:46:32'),
(267, 12, 7, '2019-09-10', 'Tue 10 Sep', '19:43:00', '19:43:00', '2019-09-10 19:43:00', '2019-09-11 19:43:00', '2019-09-09 19:35:04', '2019-09-09 14:05:04'),
(268, 13, 8, '2019-09-10', 'Tue 10 Sep', '19:53:00', '19:53:00', '2019-09-10 19:53:00', '2019-09-12 19:53:00', '2019-09-09 19:44:48', '2019-09-09 14:14:48'),
(269, 14, 9, '2019-09-11', 'Wed 11 Sep', '10:23:00', '10:23:00', '2019-09-11 10:23:00', '2019-09-12 10:23:00', '2019-09-10 10:13:58', '2019-09-10 04:43:58'),
(270, 15, 10, '2019-09-10', 'Tue 10 Sep', '10:23:00', '10:23:00', '2019-09-10 10:23:00', '2019-09-26 10:23:00', '2019-09-10 10:14:18', '2019-09-10 04:44:18'),
(271, 16, 10, '2019-09-17', 'Tue 17 Sep', '10:25:00', '10:25:00', '2019-09-17 10:25:00', '2019-09-18 10:25:00', '2019-09-10 10:16:35', '2019-09-10 04:46:35'),
(273, 17, 13, '2019-09-10', 'Tue 10 Sep', '10:47:00', '10:47:00', '2019-09-10 10:47:00', '2019-09-25 10:47:00', '2019-09-10 10:40:38', '2019-09-10 05:10:38'),
(274, 18, 2, '2019-09-10', 'Tue 10 Sep', '11:50:00', '11:50:00', '2019-09-10 11:50:00', '2019-09-11 11:50:00', '2019-09-10 11:40:48', '2019-09-10 06:10:48'),
(275, 19, 15, '2019-09-10', 'Tue 10 Sep', '12:19:00', '12:19:00', '2019-09-10 12:19:00', '2019-09-11 12:19:00', '2019-09-10 12:09:55', '2019-09-10 06:39:56'),
(277, 20, 16, '2019-09-10', 'Tue 10 Sep', '12:31:00', '12:31:00', '2019-09-10 12:31:00', '2019-09-18 12:31:00', '2019-09-10 12:27:59', '2019-09-10 06:57:59'),
(278, 21, 5, '2019-09-21', 'Sat 21 Sep', '13:12:00', '13:12:00', '2019-09-21 13:12:00', '2019-09-28 13:12:00', '2019-09-20 13:12:41', '2019-09-20 07:42:41'),
(279, 21, 5, '2019-10-05', 'Sat 5 Oct', '13:12:00', '13:12:00', '2019-10-05 13:12:00', '2019-10-12 13:12:00', '2019-09-20 13:12:41', '2019-09-20 07:42:41'),
(280, 21, 5, '2019-10-19', 'Sat 19 Oct', '13:12:00', '13:12:00', '2019-10-19 13:12:00', '2019-10-26 13:12:00', '2019-09-20 13:12:41', '2019-09-20 07:42:41'),
(281, 21, 5, '2019-11-02', 'Sat 2 Nov', '13:12:00', '13:12:00', '2019-11-02 13:12:00', '2019-11-09 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(282, 21, 5, '2019-11-16', 'Sat 16 Nov', '13:12:00', '13:12:00', '2019-11-16 13:12:00', '2019-11-23 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(283, 21, 5, '2019-11-30', 'Sat 30 Nov', '13:12:00', '13:12:00', '2019-11-30 13:12:00', '2019-12-07 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(284, 21, 5, '2019-12-14', 'Sat 14 Dec', '13:12:00', '13:12:00', '2019-12-14 13:12:00', '2019-12-21 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(285, 21, 5, '2019-12-28', 'Sat 28 Dec', '13:12:00', '13:12:00', '2019-12-28 13:12:00', '2020-01-04 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(286, 21, 5, '2020-01-11', 'Sat 11 Jan', '13:12:00', '13:12:00', '2020-01-11 13:12:00', '2020-01-18 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(287, 21, 5, '2020-01-25', 'Sat 25 Jan', '13:12:00', '13:12:00', '2020-01-25 13:12:00', '2020-02-01 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(288, 21, 5, '2020-02-08', 'Sat 8 Feb', '13:12:00', '13:12:00', '2020-02-08 13:12:00', '2020-02-15 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(289, 21, 5, '2020-02-22', 'Sat 22 Feb', '13:12:00', '13:12:00', '2020-02-22 13:12:00', '2020-02-29 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(290, 21, 5, '2020-03-07', 'Sat 7 Mar', '13:12:00', '13:12:00', '2020-03-07 13:12:00', '2020-03-14 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(291, 21, 5, '2020-03-21', 'Sat 21 Mar', '13:12:00', '13:12:00', '2020-03-21 13:12:00', '2020-03-28 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(292, 21, 5, '2020-04-04', 'Sat 4 Apr', '13:12:00', '13:12:00', '2020-04-04 13:12:00', '2020-04-11 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(293, 21, 5, '2020-04-18', 'Sat 18 Apr', '13:12:00', '13:12:00', '2020-04-18 13:12:00', '2020-04-25 13:12:00', '2019-09-20 13:12:42', '2019-09-20 07:42:42'),
(294, 21, 5, '2020-05-02', 'Sat 2 May', '13:12:00', '13:12:00', '2020-05-02 13:12:00', '2020-05-09 13:12:00', '2019-09-20 13:12:43', '2019-09-20 07:42:43'),
(295, 21, 5, '2020-05-16', 'Sat 16 May', '13:12:00', '13:12:00', '2020-05-16 13:12:00', '2020-05-23 13:12:00', '2019-09-20 13:12:43', '2019-09-20 07:42:43'),
(296, 21, 5, '2020-05-30', 'Sat 30 May', '13:12:00', '13:12:00', '2020-05-30 13:12:00', '2020-06-06 13:12:00', '2019-09-20 13:12:43', '2019-09-20 07:42:43'),
(297, 21, 5, '2020-06-13', 'Sat 13 Jun', '13:12:00', '13:12:00', '2020-06-13 13:12:00', '2020-06-20 13:12:00', '2019-09-20 13:12:43', '2019-09-20 07:42:43'),
(298, 21, 5, '2020-06-27', 'Sat 27 Jun', '13:12:00', '13:12:00', '2020-06-27 13:12:00', '2020-07-04 13:12:00', '2019-09-20 13:12:43', '2019-09-20 07:42:43'),
(299, 21, 5, '2020-07-11', 'Sat 11 Jul', '13:12:00', '13:12:00', '2020-07-11 13:12:00', '2020-07-18 13:12:00', '2019-09-20 13:12:43', '2019-09-20 07:42:43'),
(300, 21, 5, '2020-07-25', 'Sat 25 Jul', '13:12:00', '13:12:00', '2020-07-25 13:12:00', '2020-08-01 13:12:00', '2019-09-20 13:12:43', '2019-09-20 07:42:43'),
(301, 21, 5, '2020-08-08', 'Sat 8 Aug', '13:12:00', '13:12:00', '2020-08-08 13:12:00', '2020-08-15 13:12:00', '2019-09-20 13:12:43', '2019-09-20 07:42:43'),
(350, 23, 4, '2019-10-04', 'Fri 4 Oct', '12:35:00', '12:35:00', '2019-10-04 12:35:00', '2019-10-06 12:35:00', '2019-10-04 12:26:13', '2019-10-04 06:56:13'),
(351, 24, 2, '2019-10-04', 'Fri 4 Oct', '13:21:00', '13:21:00', '2019-10-04 13:21:00', '2019-10-06 13:21:00', '2019-10-04 13:12:24', '2019-10-04 07:42:24'),
(352, 25, 18, '2019-10-04', 'Fri 4 Oct', '13:30:00', '13:30:00', '2019-10-04 13:30:00', '2019-10-05 13:30:00', '2019-10-04 13:21:07', '2019-10-04 07:51:07'),
(353, 26, 20, '2019-10-04', 'Fri 4 Oct', '15:05:00', '15:05:00', '2019-10-04 15:05:00', '2019-10-05 15:05:00', '2019-10-04 14:56:35', '2019-10-04 09:26:35'),
(354, 26, 20, '2019-10-11', 'Fri 11 Oct', '15:05:00', '15:05:00', '2019-10-11 15:05:00', '2019-10-12 15:05:00', '2019-10-04 14:56:35', '2019-10-04 09:26:35'),
(355, 26, 20, '2019-10-18', 'Fri 18 Oct', '15:05:00', '15:05:00', '2019-10-18 15:05:00', '2019-10-19 15:05:00', '2019-10-04 14:56:35', '2019-10-04 09:26:35'),
(356, 26, 20, '2019-10-25', 'Fri 25 Oct', '15:05:00', '15:05:00', '2019-10-25 15:05:00', '2019-10-26 15:05:00', '2019-10-04 14:56:35', '2019-10-04 09:26:35'),
(357, 26, 20, '2019-11-01', 'Fri 1 Nov', '15:05:00', '15:05:00', '2019-11-01 15:05:00', '2019-11-02 15:05:00', '2019-10-04 14:56:35', '2019-10-04 09:26:36'),
(358, 26, 20, '2019-11-08', 'Fri 8 Nov', '15:05:00', '15:05:00', '2019-11-08 15:05:00', '2019-11-09 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(359, 26, 20, '2019-11-15', 'Fri 15 Nov', '15:05:00', '15:05:00', '2019-11-15 15:05:00', '2019-11-16 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(360, 26, 20, '2019-11-22', 'Fri 22 Nov', '15:05:00', '15:05:00', '2019-11-22 15:05:00', '2019-11-23 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(361, 26, 20, '2019-11-29', 'Fri 29 Nov', '15:05:00', '15:05:00', '2019-11-29 15:05:00', '2019-11-30 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(362, 26, 20, '2019-12-06', 'Fri 6 Dec', '15:05:00', '15:05:00', '2019-12-06 15:05:00', '2019-12-07 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(363, 26, 20, '2019-12-13', 'Fri 13 Dec', '15:05:00', '15:05:00', '2019-12-13 15:05:00', '2019-12-14 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(364, 26, 20, '2019-12-20', 'Fri 20 Dec', '15:05:00', '15:05:00', '2019-12-20 15:05:00', '2019-12-21 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(365, 26, 20, '2019-12-27', 'Fri 27 Dec', '15:05:00', '15:05:00', '2019-12-27 15:05:00', '2019-12-28 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(366, 26, 20, '2020-01-03', 'Fri 3 Jan', '15:05:00', '15:05:00', '2020-01-03 15:05:00', '2020-01-04 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(367, 26, 20, '2020-01-10', 'Fri 10 Jan', '15:05:00', '15:05:00', '2020-01-10 15:05:00', '2020-01-11 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(368, 26, 20, '2020-01-17', 'Fri 17 Jan', '15:05:00', '15:05:00', '2020-01-17 15:05:00', '2020-01-18 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(369, 26, 20, '2020-01-24', 'Fri 24 Jan', '15:05:00', '15:05:00', '2020-01-24 15:05:00', '2020-01-25 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(370, 26, 20, '2020-01-31', 'Fri 31 Jan', '15:05:00', '15:05:00', '2020-01-31 15:05:00', '2020-02-01 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(371, 26, 20, '2020-02-07', 'Fri 7 Feb', '15:05:00', '15:05:00', '2020-02-07 15:05:00', '2020-02-08 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(372, 26, 20, '2020-02-14', 'Fri 14 Feb', '15:05:00', '15:05:00', '2020-02-14 15:05:00', '2020-02-15 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(373, 26, 20, '2020-02-21', 'Fri 21 Feb', '15:05:00', '15:05:00', '2020-02-21 15:05:00', '2020-02-22 15:05:00', '2019-10-04 14:56:36', '2019-10-04 09:26:36'),
(374, 26, 20, '2020-02-28', 'Fri 28 Feb', '15:05:00', '15:05:00', '2020-02-28 15:05:00', '2020-02-29 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37');
INSERT INTO `event_schedule` (`id`, `event_id`, `user_id`, `event_date`, `event_date2`, `event_time`, `end_time`, `event_start_date_time`, `event_end_date_time`, `created_at`, `updated_at`) VALUES
(375, 26, 20, '2020-03-06', 'Fri 6 Mar', '15:05:00', '15:05:00', '2020-03-06 15:05:00', '2020-03-07 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(376, 26, 20, '2020-03-13', 'Fri 13 Mar', '15:05:00', '15:05:00', '2020-03-13 15:05:00', '2020-03-14 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(377, 26, 20, '2020-03-20', 'Fri 20 Mar', '15:05:00', '15:05:00', '2020-03-20 15:05:00', '2020-03-21 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(378, 26, 20, '2020-03-27', 'Fri 27 Mar', '15:05:00', '15:05:00', '2020-03-27 15:05:00', '2020-03-28 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(379, 26, 20, '2020-04-03', 'Fri 3 Apr', '15:05:00', '15:05:00', '2020-04-03 15:05:00', '2020-04-04 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(380, 26, 20, '2020-04-10', 'Fri 10 Apr', '15:05:00', '15:05:00', '2020-04-10 15:05:00', '2020-04-11 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(381, 26, 20, '2020-04-17', 'Fri 17 Apr', '15:05:00', '15:05:00', '2020-04-17 15:05:00', '2020-04-18 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(382, 26, 20, '2020-04-24', 'Fri 24 Apr', '15:05:00', '15:05:00', '2020-04-24 15:05:00', '2020-04-25 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(383, 26, 20, '2020-05-01', 'Fri 1 May', '15:05:00', '15:05:00', '2020-05-01 15:05:00', '2020-05-02 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(384, 26, 20, '2020-05-08', 'Fri 8 May', '15:05:00', '15:05:00', '2020-05-08 15:05:00', '2020-05-09 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(385, 26, 20, '2020-05-15', 'Fri 15 May', '15:05:00', '15:05:00', '2020-05-15 15:05:00', '2020-05-16 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(386, 26, 20, '2020-05-22', 'Fri 22 May', '15:05:00', '15:05:00', '2020-05-22 15:05:00', '2020-05-23 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(387, 26, 20, '2020-05-29', 'Fri 29 May', '15:05:00', '15:05:00', '2020-05-29 15:05:00', '2020-05-30 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(388, 26, 20, '2020-06-05', 'Fri 5 Jun', '15:05:00', '15:05:00', '2020-06-05 15:05:00', '2020-06-06 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(389, 26, 20, '2020-06-12', 'Fri 12 Jun', '15:05:00', '15:05:00', '2020-06-12 15:05:00', '2020-06-13 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(390, 26, 20, '2020-06-19', 'Fri 19 Jun', '15:05:00', '15:05:00', '2020-06-19 15:05:00', '2020-06-20 15:05:00', '2019-10-04 14:56:37', '2019-10-04 09:26:37'),
(391, 26, 20, '2020-06-26', 'Fri 26 Jun', '15:05:00', '15:05:00', '2020-06-26 15:05:00', '2020-06-27 15:05:00', '2019-10-04 14:56:38', '2019-10-04 09:26:38'),
(392, 26, 20, '2020-07-03', 'Fri 3 Jul', '15:05:00', '15:05:00', '2020-07-03 15:05:00', '2020-07-04 15:05:00', '2019-10-04 14:56:38', '2019-10-04 09:26:38'),
(393, 26, 20, '2020-07-10', 'Fri 10 Jul', '15:05:00', '15:05:00', '2020-07-10 15:05:00', '2020-07-11 15:05:00', '2019-10-04 14:56:38', '2019-10-04 09:26:38'),
(394, 26, 20, '2020-07-17', 'Fri 17 Jul', '15:05:00', '15:05:00', '2020-07-17 15:05:00', '2020-07-18 15:05:00', '2019-10-04 14:56:38', '2019-10-04 09:26:38'),
(395, 26, 20, '2020-07-24', 'Fri 24 Jul', '15:05:00', '15:05:00', '2020-07-24 15:05:00', '2020-07-25 15:05:00', '2019-10-04 14:56:38', '2019-10-04 09:26:38'),
(396, 26, 20, '2020-07-31', 'Fri 31 Jul', '15:05:00', '15:05:00', '2020-07-31 15:05:00', '2020-08-01 15:05:00', '2019-10-04 14:56:38', '2019-10-04 09:26:38'),
(397, 26, 20, '2020-08-07', 'Fri 7 Aug', '15:05:00', '15:05:00', '2020-08-07 15:05:00', '2020-08-08 15:05:00', '2019-10-04 14:56:38', '2019-10-04 09:26:38'),
(398, 26, 20, '2020-08-14', 'Fri 14 Aug', '15:05:00', '15:05:00', '2020-08-14 15:05:00', '2020-08-15 15:05:00', '2019-10-04 14:56:38', '2019-10-04 09:26:38'),
(399, 26, 20, '2020-08-21', 'Fri 21 Aug', '15:05:00', '15:05:00', '2020-08-21 15:05:00', '2020-08-22 15:05:00', '2019-10-04 14:56:38', '2019-10-04 09:26:38'),
(400, 26, 20, '2020-08-28', 'Fri 28 Aug', '15:05:00', '15:05:00', '2020-08-28 15:05:00', '2020-08-29 15:05:00', '2019-10-04 14:56:38', '2019-10-04 09:26:38'),
(401, 27, 21, '2019-10-04', 'Fri 4 Oct', '17:09:00', '18:09:00', '2019-10-04 17:09:00', '2019-10-04 18:09:00', '2019-10-04 17:00:07', '2019-10-04 11:30:07'),
(402, 28, 25, '2019-10-05', 'Sat 5 Oct', '17:13:00', '17:13:00', '2019-10-05 17:13:00', '2019-10-22 17:13:00', '2019-10-04 17:05:22', '2019-10-04 11:35:22'),
(403, 29, 25, '2019-10-05', 'Sat 5 Oct', '17:21:00', '17:21:00', '2019-10-05 17:21:00', '2019-10-14 17:21:00', '2019-10-04 17:12:59', '2019-10-04 11:42:59'),
(404, 30, 31, '2019-10-04', 'Fri 4 Oct', '20:02:00', '21:02:00', '2019-10-04 20:02:00', '2019-10-04 21:02:00', '2019-10-04 19:53:29', '2019-10-04 14:23:29'),
(405, 31, 35, '2019-10-05', 'Sat 5 Oct', '20:11:00', '20:11:00', '2019-10-05 20:11:00', '2019-10-15 20:11:00', '2019-10-04 20:02:09', '2019-10-04 14:32:09'),
(406, 32, 42, '2019-10-30', 'Wed 30 Oct', '19:03:25', '19:03:25', '2019-10-30 19:03:25', '2019-10-31 19:03:25', '2019-10-30 19:07:01', '2019-10-30 13:37:01'),
(407, 32, 42, '2019-11-06', 'Wed 6 Nov', '19:03:25', '19:03:25', '2019-11-06 19:03:25', '2019-11-07 19:03:25', '2019-10-30 19:07:01', '2019-10-30 13:37:01'),
(408, 32, 42, '2019-11-13', 'Wed 13 Nov', '19:03:25', '19:03:25', '2019-11-13 19:03:25', '2019-11-14 19:03:25', '2019-10-30 19:07:01', '2019-10-30 13:37:01'),
(409, 32, 42, '2019-11-20', 'Wed 20 Nov', '19:03:25', '19:03:25', '2019-11-20 19:03:25', '2019-11-21 19:03:25', '2019-10-30 19:07:01', '2019-10-30 13:37:01'),
(410, 32, 42, '2019-11-27', 'Wed 27 Nov', '19:03:25', '19:03:25', '2019-11-27 19:03:25', '2019-11-28 19:03:25', '2019-10-30 19:07:01', '2019-10-30 13:37:01'),
(411, 32, 42, '2019-12-04', 'Wed 4 Dec', '19:03:25', '19:03:25', '2019-12-04 19:03:25', '2019-12-05 19:03:25', '2019-10-30 19:07:01', '2019-10-30 13:37:01'),
(412, 32, 42, '2019-12-11', 'Wed 11 Dec', '19:03:25', '19:03:25', '2019-12-11 19:03:25', '2019-12-12 19:03:25', '2019-10-30 19:07:02', '2019-10-30 13:37:02'),
(413, 32, 42, '2019-12-18', 'Wed 18 Dec', '19:03:25', '19:03:25', '2019-12-18 19:03:25', '2019-12-19 19:03:25', '2019-10-30 19:07:02', '2019-10-30 13:37:02'),
(414, 32, 42, '2019-12-25', 'Wed 25 Dec', '19:03:25', '19:03:25', '2019-12-25 19:03:25', '2019-12-26 19:03:25', '2019-10-30 19:07:02', '2019-10-30 13:37:02'),
(415, 32, 42, '2020-01-01', 'Wed 1 Jan', '19:03:25', '19:03:25', '2020-01-01 19:03:25', '2020-01-02 19:03:25', '2019-10-30 19:07:02', '2019-10-30 13:37:02'),
(416, 32, 42, '2020-01-08', 'Wed 8 Jan', '19:03:25', '19:03:25', '2020-01-08 19:03:25', '2020-01-09 19:03:25', '2019-10-30 19:07:02', '2019-10-30 13:37:02'),
(417, 32, 42, '2020-01-15', 'Wed 15 Jan', '19:03:25', '19:03:25', '2020-01-15 19:03:25', '2020-01-16 19:03:25', '2019-10-30 19:07:02', '2019-10-30 13:37:02'),
(418, 32, 42, '2020-01-22', 'Wed 22 Jan', '19:03:25', '19:03:25', '2020-01-22 19:03:25', '2020-01-23 19:03:25', '2019-10-30 19:07:02', '2019-10-30 13:37:02'),
(419, 32, 42, '2020-01-29', 'Wed 29 Jan', '19:03:25', '19:03:25', '2020-01-29 19:03:25', '2020-01-30 19:03:25', '2019-10-30 19:07:02', '2019-10-30 13:37:02'),
(420, 32, 42, '2020-02-05', 'Wed 5 Feb', '19:03:25', '19:03:25', '2020-02-05 19:03:25', '2020-02-06 19:03:25', '2019-10-30 19:07:02', '2019-10-30 13:37:02'),
(421, 32, 42, '2020-02-12', 'Wed 12 Feb', '19:03:25', '19:03:25', '2020-02-12 19:03:25', '2020-02-13 19:03:25', '2019-10-30 19:07:02', '2019-10-30 13:37:02'),
(422, 32, 42, '2020-02-19', 'Wed 19 Feb', '19:03:25', '19:03:25', '2020-02-19 19:03:25', '2020-02-20 19:03:25', '2019-10-30 19:07:02', '2019-10-30 13:37:02'),
(423, 32, 42, '2020-02-26', 'Wed 26 Feb', '19:03:25', '19:03:25', '2020-02-26 19:03:25', '2020-02-27 19:03:25', '2019-10-30 19:07:02', '2019-10-30 13:37:02'),
(424, 32, 42, '2020-03-04', 'Wed 4 Mar', '19:03:25', '19:03:25', '2020-03-04 19:03:25', '2020-03-05 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(425, 32, 42, '2020-03-11', 'Wed 11 Mar', '19:03:25', '19:03:25', '2020-03-11 19:03:25', '2020-03-12 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(426, 32, 42, '2020-03-18', 'Wed 18 Mar', '19:03:25', '19:03:25', '2020-03-18 19:03:25', '2020-03-19 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(427, 32, 42, '2020-03-25', 'Wed 25 Mar', '19:03:25', '19:03:25', '2020-03-25 19:03:25', '2020-03-26 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(428, 32, 42, '2020-04-01', 'Wed 1 Apr', '19:03:25', '19:03:25', '2020-04-01 19:03:25', '2020-04-02 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(429, 32, 42, '2020-04-08', 'Wed 8 Apr', '19:03:25', '19:03:25', '2020-04-08 19:03:25', '2020-04-09 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(430, 32, 42, '2020-04-15', 'Wed 15 Apr', '19:03:25', '19:03:25', '2020-04-15 19:03:25', '2020-04-16 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(431, 32, 42, '2020-04-22', 'Wed 22 Apr', '19:03:25', '19:03:25', '2020-04-22 19:03:25', '2020-04-23 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(432, 32, 42, '2020-04-29', 'Wed 29 Apr', '19:03:25', '19:03:25', '2020-04-29 19:03:25', '2020-04-30 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(433, 32, 42, '2020-05-06', 'Wed 6 May', '19:03:25', '19:03:25', '2020-05-06 19:03:25', '2020-05-07 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(434, 32, 42, '2020-05-13', 'Wed 13 May', '19:03:25', '19:03:25', '2020-05-13 19:03:25', '2020-05-14 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(435, 32, 42, '2020-05-20', 'Wed 20 May', '19:03:25', '19:03:25', '2020-05-20 19:03:25', '2020-05-21 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(436, 32, 42, '2020-05-27', 'Wed 27 May', '19:03:25', '19:03:25', '2020-05-27 19:03:25', '2020-05-28 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(437, 32, 42, '2020-06-03', 'Wed 3 Jun', '19:03:25', '19:03:25', '2020-06-03 19:03:25', '2020-06-04 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(438, 32, 42, '2020-06-10', 'Wed 10 Jun', '19:03:25', '19:03:25', '2020-06-10 19:03:25', '2020-06-11 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(439, 32, 42, '2020-06-17', 'Wed 17 Jun', '19:03:25', '19:03:25', '2020-06-17 19:03:25', '2020-06-18 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(440, 32, 42, '2020-06-24', 'Wed 24 Jun', '19:03:25', '19:03:25', '2020-06-24 19:03:25', '2020-06-25 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(441, 32, 42, '2020-07-01', 'Wed 1 Jul', '19:03:25', '19:03:25', '2020-07-01 19:03:25', '2020-07-02 19:03:25', '2019-10-30 19:07:03', '2019-10-30 13:37:03'),
(442, 32, 42, '2020-07-08', 'Wed 8 Jul', '19:03:25', '19:03:25', '2020-07-08 19:03:25', '2020-07-09 19:03:25', '2019-10-30 19:07:04', '2019-10-30 13:37:04'),
(443, 32, 42, '2020-07-15', 'Wed 15 Jul', '19:03:25', '19:03:25', '2020-07-15 19:03:25', '2020-07-16 19:03:25', '2019-10-30 19:07:04', '2019-10-30 13:37:04'),
(444, 32, 42, '2020-07-22', 'Wed 22 Jul', '19:03:25', '19:03:25', '2020-07-22 19:03:25', '2020-07-23 19:03:25', '2019-10-30 19:07:04', '2019-10-30 13:37:04'),
(445, 32, 42, '2020-07-29', 'Wed 29 Jul', '19:03:25', '19:03:25', '2020-07-29 19:03:25', '2020-07-30 19:03:25', '2019-10-30 19:07:04', '2019-10-30 13:37:04'),
(446, 32, 42, '2020-08-05', 'Wed 5 Aug', '19:03:25', '19:03:25', '2020-08-05 19:03:25', '2020-08-06 19:03:25', '2019-10-30 19:07:04', '2019-10-30 13:37:04'),
(447, 32, 42, '2020-08-12', 'Wed 12 Aug', '19:03:25', '19:03:25', '2020-08-12 19:03:25', '2020-08-13 19:03:25', '2019-10-30 19:07:04', '2019-10-30 13:37:04'),
(448, 32, 42, '2020-08-19', 'Wed 19 Aug', '19:03:25', '19:03:25', '2020-08-19 19:03:25', '2020-08-20 19:03:25', '2019-10-30 19:07:04', '2019-10-30 13:37:04'),
(449, 32, 42, '2020-08-26', 'Wed 26 Aug', '19:03:25', '19:03:25', '2020-08-26 19:03:25', '2020-08-27 19:03:25', '2019-10-30 19:07:04', '2019-10-30 13:37:04'),
(450, 32, 42, '2020-09-02', 'Wed 2 Sep', '19:03:25', '19:03:25', '2020-09-02 19:03:25', '2020-09-03 19:03:25', '2019-10-30 19:07:04', '2019-10-30 13:37:04'),
(451, 32, 42, '2020-09-09', 'Wed 9 Sep', '19:03:25', '19:03:25', '2020-09-09 19:03:25', '2020-09-10 19:03:25', '2019-10-30 19:07:04', '2019-10-30 13:37:04'),
(452, 32, 42, '2020-09-16', 'Wed 16 Sep', '19:03:25', '19:03:25', '2020-09-16 19:03:25', '2020-09-17 19:03:25', '2019-10-30 19:07:04', '2019-10-30 13:37:04'),
(453, 32, 42, '2020-09-23', 'Wed 23 Sep', '19:03:25', '19:03:25', '2020-09-23 19:03:25', '2020-09-24 19:03:25', '2019-10-30 19:07:04', '2019-10-30 13:37:04'),
(454, 33, 47, '2019-10-31', 'Thu 31 Oct', '19:52:00', '19:52:00', '2019-10-31 19:52:00', '2019-11-01 19:52:00', '2019-10-30 19:52:55', '2019-10-30 14:22:55'),
(455, 34, 46, '2019-10-30', 'Wed 30 Oct', '19:52:12', '19:52:12', '2019-10-30 19:52:12', '2019-10-31 19:52:12', '2019-10-30 19:53:27', '2019-10-30 14:23:27'),
(456, 35, 46, '2019-11-02', 'Sat 2 Nov', '19:54:00', '19:54:00', '2019-11-02 19:54:00', '2019-11-02 19:54:00', '2019-10-30 19:54:43', '2019-10-30 14:24:43'),
(457, 35, 46, '2019-11-09', 'Sat 9 Nov', '19:54:00', '19:54:00', '2019-11-09 19:54:00', '2019-11-09 19:54:00', '2019-10-30 19:54:43', '2019-10-30 14:24:43'),
(458, 35, 46, '2019-11-16', 'Sat 16 Nov', '19:54:00', '19:54:00', '2019-11-16 19:54:00', '2019-11-16 19:54:00', '2019-10-30 19:54:43', '2019-10-30 14:24:43'),
(459, 35, 46, '2019-11-23', 'Sat 23 Nov', '19:54:00', '19:54:00', '2019-11-23 19:54:00', '2019-11-23 19:54:00', '2019-10-30 19:54:43', '2019-10-30 14:24:43'),
(460, 35, 46, '2019-11-30', 'Sat 30 Nov', '19:54:00', '19:54:00', '2019-11-30 19:54:00', '2019-11-30 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(461, 35, 46, '2019-12-07', 'Sat 7 Dec', '19:54:00', '19:54:00', '2019-12-07 19:54:00', '2019-12-07 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(462, 35, 46, '2019-12-14', 'Sat 14 Dec', '19:54:00', '19:54:00', '2019-12-14 19:54:00', '2019-12-14 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(463, 35, 46, '2019-12-21', 'Sat 21 Dec', '19:54:00', '19:54:00', '2019-12-21 19:54:00', '2019-12-21 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(464, 35, 46, '2019-12-28', 'Sat 28 Dec', '19:54:00', '19:54:00', '2019-12-28 19:54:00', '2019-12-28 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(465, 35, 46, '2020-01-04', 'Sat 4 Jan', '19:54:00', '19:54:00', '2020-01-04 19:54:00', '2020-01-04 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(466, 35, 46, '2020-01-11', 'Sat 11 Jan', '19:54:00', '19:54:00', '2020-01-11 19:54:00', '2020-01-11 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(467, 35, 46, '2020-01-18', 'Sat 18 Jan', '19:54:00', '19:54:00', '2020-01-18 19:54:00', '2020-01-18 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(468, 35, 46, '2020-01-25', 'Sat 25 Jan', '19:54:00', '19:54:00', '2020-01-25 19:54:00', '2020-01-25 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(469, 35, 46, '2020-02-01', 'Sat 1 Feb', '19:54:00', '19:54:00', '2020-02-01 19:54:00', '2020-02-01 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(470, 35, 46, '2020-02-08', 'Sat 8 Feb', '19:54:00', '19:54:00', '2020-02-08 19:54:00', '2020-02-08 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(471, 35, 46, '2020-02-15', 'Sat 15 Feb', '19:54:00', '19:54:00', '2020-02-15 19:54:00', '2020-02-15 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(472, 35, 46, '2020-02-22', 'Sat 22 Feb', '19:54:00', '19:54:00', '2020-02-22 19:54:00', '2020-02-22 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(473, 35, 46, '2020-02-29', 'Sat 29 Feb', '19:54:00', '19:54:00', '2020-02-29 19:54:00', '2020-02-29 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(474, 35, 46, '2020-03-07', 'Sat 7 Mar', '19:54:00', '19:54:00', '2020-03-07 19:54:00', '2020-03-07 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(475, 35, 46, '2020-03-14', 'Sat 14 Mar', '19:54:00', '19:54:00', '2020-03-14 19:54:00', '2020-03-14 19:54:00', '2019-10-30 19:54:44', '2019-10-30 14:24:44'),
(476, 35, 46, '2020-03-21', 'Sat 21 Mar', '19:54:00', '19:54:00', '2020-03-21 19:54:00', '2020-03-21 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(477, 35, 46, '2020-03-28', 'Sat 28 Mar', '19:54:00', '19:54:00', '2020-03-28 19:54:00', '2020-03-28 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(478, 35, 46, '2020-04-04', 'Sat 4 Apr', '19:54:00', '19:54:00', '2020-04-04 19:54:00', '2020-04-04 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(479, 35, 46, '2020-04-11', 'Sat 11 Apr', '19:54:00', '19:54:00', '2020-04-11 19:54:00', '2020-04-11 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(480, 35, 46, '2020-04-18', 'Sat 18 Apr', '19:54:00', '19:54:00', '2020-04-18 19:54:00', '2020-04-18 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(481, 35, 46, '2020-04-25', 'Sat 25 Apr', '19:54:00', '19:54:00', '2020-04-25 19:54:00', '2020-04-25 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(482, 35, 46, '2020-05-02', 'Sat 2 May', '19:54:00', '19:54:00', '2020-05-02 19:54:00', '2020-05-02 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(483, 35, 46, '2020-05-09', 'Sat 9 May', '19:54:00', '19:54:00', '2020-05-09 19:54:00', '2020-05-09 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(484, 35, 46, '2020-05-16', 'Sat 16 May', '19:54:00', '19:54:00', '2020-05-16 19:54:00', '2020-05-16 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(485, 35, 46, '2020-05-23', 'Sat 23 May', '19:54:00', '19:54:00', '2020-05-23 19:54:00', '2020-05-23 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(486, 35, 46, '2020-05-30', 'Sat 30 May', '19:54:00', '19:54:00', '2020-05-30 19:54:00', '2020-05-30 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(487, 35, 46, '2020-06-06', 'Sat 6 Jun', '19:54:00', '19:54:00', '2020-06-06 19:54:00', '2020-06-06 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(488, 35, 46, '2020-06-13', 'Sat 13 Jun', '19:54:00', '19:54:00', '2020-06-13 19:54:00', '2020-06-13 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(489, 35, 46, '2020-06-20', 'Sat 20 Jun', '19:54:00', '19:54:00', '2020-06-20 19:54:00', '2020-06-20 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(490, 35, 46, '2020-06-27', 'Sat 27 Jun', '19:54:00', '19:54:00', '2020-06-27 19:54:00', '2020-06-27 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(491, 35, 46, '2020-07-04', 'Sat 4 Jul', '19:54:00', '19:54:00', '2020-07-04 19:54:00', '2020-07-04 19:54:00', '2019-10-30 19:54:45', '2019-10-30 14:24:45'),
(492, 35, 46, '2020-07-11', 'Sat 11 Jul', '19:54:00', '19:54:00', '2020-07-11 19:54:00', '2020-07-11 19:54:00', '2019-10-30 19:54:46', '2019-10-30 14:24:46'),
(493, 35, 46, '2020-07-18', 'Sat 18 Jul', '19:54:00', '19:54:00', '2020-07-18 19:54:00', '2020-07-18 19:54:00', '2019-10-30 19:54:46', '2019-10-30 14:24:46'),
(494, 35, 46, '2020-07-25', 'Sat 25 Jul', '19:54:00', '19:54:00', '2020-07-25 19:54:00', '2020-07-25 19:54:00', '2019-10-30 19:54:46', '2019-10-30 14:24:46'),
(495, 35, 46, '2020-08-01', 'Sat 1 Aug', '19:54:00', '19:54:00', '2020-08-01 19:54:00', '2020-08-01 19:54:00', '2019-10-30 19:54:46', '2019-10-30 14:24:46'),
(496, 35, 46, '2020-08-08', 'Sat 8 Aug', '19:54:00', '19:54:00', '2020-08-08 19:54:00', '2020-08-08 19:54:00', '2019-10-30 19:54:46', '2019-10-30 14:24:46'),
(497, 35, 46, '2020-08-15', 'Sat 15 Aug', '19:54:00', '19:54:00', '2020-08-15 19:54:00', '2020-08-15 19:54:00', '2019-10-30 19:54:46', '2019-10-30 14:24:46'),
(498, 35, 46, '2020-08-22', 'Sat 22 Aug', '19:54:00', '19:54:00', '2020-08-22 19:54:00', '2020-08-22 19:54:00', '2019-10-30 19:54:46', '2019-10-30 14:24:46'),
(499, 35, 46, '2020-08-29', 'Sat 29 Aug', '19:54:00', '19:54:00', '2020-08-29 19:54:00', '2020-08-29 19:54:00', '2019-10-30 19:54:46', '2019-10-30 14:24:46'),
(500, 35, 46, '2020-09-05', 'Sat 5 Sep', '19:54:00', '19:54:00', '2020-09-05 19:54:00', '2020-09-05 19:54:00', '2019-10-30 19:54:46', '2019-10-30 14:24:46'),
(501, 35, 46, '2020-09-12', 'Sat 12 Sep', '19:54:00', '19:54:00', '2020-09-12 19:54:00', '2020-09-12 19:54:00', '2019-10-30 19:54:46', '2019-10-30 14:24:46'),
(502, 35, 46, '2020-09-19', 'Sat 19 Sep', '19:54:00', '19:54:00', '2020-09-19 19:54:00', '2020-09-19 19:54:00', '2019-10-30 19:54:46', '2019-10-30 14:24:46'),
(503, 35, 46, '2020-09-26', 'Sat 26 Sep', '19:54:00', '19:54:00', '2020-09-26 19:54:00', '2020-09-26 19:54:00', '2019-10-30 19:54:46', '2019-10-30 14:24:46'),
(504, 36, 49, '2019-11-04', 'Mon 4 Nov', '11:25:00', '11:25:00', '2019-11-04 11:25:00', '2019-11-12 11:25:00', '2019-11-04 11:17:18', '2019-11-04 05:47:18'),
(505, 37, 50, '2019-11-04', 'Mon 4 Nov', '11:39:00', '11:39:00', '2019-11-04 11:39:00', '2019-11-05 11:39:00', '2019-11-04 11:31:01', '2019-11-04 06:01:01'),
(506, 37, 50, '2019-11-11', 'Mon 11 Nov', '11:39:00', '11:39:00', '2019-11-11 11:39:00', '2019-11-12 11:39:00', '2019-11-04 11:31:02', '2019-11-04 06:01:02'),
(507, 37, 50, '2019-11-18', 'Mon 18 Nov', '11:39:00', '11:39:00', '2019-11-18 11:39:00', '2019-11-19 11:39:00', '2019-11-04 11:31:02', '2019-11-04 06:01:02'),
(508, 37, 50, '2019-11-25', 'Mon 25 Nov', '11:39:00', '11:39:00', '2019-11-25 11:39:00', '2019-11-26 11:39:00', '2019-11-04 11:31:02', '2019-11-04 06:01:02'),
(509, 37, 50, '2019-12-02', 'Mon 2 Dec', '11:39:00', '11:39:00', '2019-12-02 11:39:00', '2019-12-03 11:39:00', '2019-11-04 11:31:02', '2019-11-04 06:01:02'),
(510, 37, 50, '2019-12-09', 'Mon 9 Dec', '11:39:00', '11:39:00', '2019-12-09 11:39:00', '2019-12-10 11:39:00', '2019-11-04 11:31:02', '2019-11-04 06:01:02'),
(511, 37, 50, '2019-12-16', 'Mon 16 Dec', '11:39:00', '11:39:00', '2019-12-16 11:39:00', '2019-12-17 11:39:00', '2019-11-04 11:31:02', '2019-11-04 06:01:02'),
(512, 37, 50, '2019-12-23', 'Mon 23 Dec', '11:39:00', '11:39:00', '2019-12-23 11:39:00', '2019-12-24 11:39:00', '2019-11-04 11:31:02', '2019-11-04 06:01:02'),
(513, 37, 50, '2019-12-30', 'Mon 30 Dec', '11:39:00', '11:39:00', '2019-12-30 11:39:00', '2019-12-31 11:39:00', '2019-11-04 11:31:03', '2019-11-04 06:01:03'),
(514, 37, 50, '2020-01-06', 'Mon 6 Jan', '11:39:00', '11:39:00', '2020-01-06 11:39:00', '2020-01-07 11:39:00', '2019-11-04 11:31:03', '2019-11-04 06:01:03'),
(515, 37, 50, '2020-01-13', 'Mon 13 Jan', '11:39:00', '11:39:00', '2020-01-13 11:39:00', '2020-01-14 11:39:00', '2019-11-04 11:31:03', '2019-11-04 06:01:03'),
(516, 37, 50, '2020-01-20', 'Mon 20 Jan', '11:39:00', '11:39:00', '2020-01-20 11:39:00', '2020-01-21 11:39:00', '2019-11-04 11:31:03', '2019-11-04 06:01:03'),
(517, 37, 50, '2020-01-27', 'Mon 27 Jan', '11:39:00', '11:39:00', '2020-01-27 11:39:00', '2020-01-28 11:39:00', '2019-11-04 11:31:03', '2019-11-04 06:01:03'),
(518, 37, 50, '2020-02-03', 'Mon 3 Feb', '11:39:00', '11:39:00', '2020-02-03 11:39:00', '2020-02-04 11:39:00', '2019-11-04 11:31:03', '2019-11-04 06:01:03'),
(519, 37, 50, '2020-02-10', 'Mon 10 Feb', '11:39:00', '11:39:00', '2020-02-10 11:39:00', '2020-02-11 11:39:00', '2019-11-04 11:31:03', '2019-11-04 06:01:03'),
(520, 37, 50, '2020-02-17', 'Mon 17 Feb', '11:39:00', '11:39:00', '2020-02-17 11:39:00', '2020-02-18 11:39:00', '2019-11-04 11:31:04', '2019-11-04 06:01:04'),
(521, 37, 50, '2020-02-24', 'Mon 24 Feb', '11:39:00', '11:39:00', '2020-02-24 11:39:00', '2020-02-25 11:39:00', '2019-11-04 11:31:04', '2019-11-04 06:01:04'),
(522, 37, 50, '2020-03-02', 'Mon 2 Mar', '11:39:00', '11:39:00', '2020-03-02 11:39:00', '2020-03-03 11:39:00', '2019-11-04 11:31:04', '2019-11-04 06:01:04'),
(523, 37, 50, '2020-03-09', 'Mon 9 Mar', '11:39:00', '11:39:00', '2020-03-09 11:39:00', '2020-03-10 11:39:00', '2019-11-04 11:31:04', '2019-11-04 06:01:04'),
(524, 37, 50, '2020-03-16', 'Mon 16 Mar', '11:39:00', '11:39:00', '2020-03-16 11:39:00', '2020-03-17 11:39:00', '2019-11-04 11:31:04', '2019-11-04 06:01:04'),
(525, 37, 50, '2020-03-23', 'Mon 23 Mar', '11:39:00', '11:39:00', '2020-03-23 11:39:00', '2020-03-24 11:39:00', '2019-11-04 11:31:04', '2019-11-04 06:01:04'),
(526, 37, 50, '2020-03-30', 'Mon 30 Mar', '11:39:00', '11:39:00', '2020-03-30 11:39:00', '2020-03-31 11:39:00', '2019-11-04 11:31:04', '2019-11-04 06:01:04'),
(527, 37, 50, '2020-04-06', 'Mon 6 Apr', '11:39:00', '11:39:00', '2020-04-06 11:39:00', '2020-04-07 11:39:00', '2019-11-04 11:31:04', '2019-11-04 06:01:04'),
(528, 37, 50, '2020-04-13', 'Mon 13 Apr', '11:39:00', '11:39:00', '2020-04-13 11:39:00', '2020-04-14 11:39:00', '2019-11-04 11:31:05', '2019-11-04 06:01:05'),
(529, 37, 50, '2020-04-20', 'Mon 20 Apr', '11:39:00', '11:39:00', '2020-04-20 11:39:00', '2020-04-21 11:39:00', '2019-11-04 11:31:05', '2019-11-04 06:01:05'),
(530, 37, 50, '2020-04-27', 'Mon 27 Apr', '11:39:00', '11:39:00', '2020-04-27 11:39:00', '2020-04-28 11:39:00', '2019-11-04 11:31:05', '2019-11-04 06:01:05'),
(531, 37, 50, '2020-05-04', 'Mon 4 May', '11:39:00', '11:39:00', '2020-05-04 11:39:00', '2020-05-05 11:39:00', '2019-11-04 11:31:05', '2019-11-04 06:01:05'),
(532, 37, 50, '2020-05-11', 'Mon 11 May', '11:39:00', '11:39:00', '2020-05-11 11:39:00', '2020-05-12 11:39:00', '2019-11-04 11:31:05', '2019-11-04 06:01:05'),
(533, 37, 50, '2020-05-18', 'Mon 18 May', '11:39:00', '11:39:00', '2020-05-18 11:39:00', '2020-05-19 11:39:00', '2019-11-04 11:31:05', '2019-11-04 06:01:05'),
(534, 37, 50, '2020-05-25', 'Mon 25 May', '11:39:00', '11:39:00', '2020-05-25 11:39:00', '2020-05-26 11:39:00', '2019-11-04 11:31:05', '2019-11-04 06:01:05'),
(535, 37, 50, '2020-06-01', 'Mon 1 Jun', '11:39:00', '11:39:00', '2020-06-01 11:39:00', '2020-06-02 11:39:00', '2019-11-04 11:31:06', '2019-11-04 06:01:06'),
(536, 37, 50, '2020-06-08', 'Mon 8 Jun', '11:39:00', '11:39:00', '2020-06-08 11:39:00', '2020-06-09 11:39:00', '2019-11-04 11:31:07', '2019-11-04 06:01:07'),
(537, 37, 50, '2020-06-15', 'Mon 15 Jun', '11:39:00', '11:39:00', '2020-06-15 11:39:00', '2020-06-16 11:39:00', '2019-11-04 11:31:07', '2019-11-04 06:01:07'),
(538, 37, 50, '2020-06-22', 'Mon 22 Jun', '11:39:00', '11:39:00', '2020-06-22 11:39:00', '2020-06-23 11:39:00', '2019-11-04 11:31:07', '2019-11-04 06:01:07'),
(539, 37, 50, '2020-06-29', 'Mon 29 Jun', '11:39:00', '11:39:00', '2020-06-29 11:39:00', '2020-06-30 11:39:00', '2019-11-04 11:31:07', '2019-11-04 06:01:07'),
(540, 37, 50, '2020-07-06', 'Mon 6 Jul', '11:39:00', '11:39:00', '2020-07-06 11:39:00', '2020-07-07 11:39:00', '2019-11-04 11:31:07', '2019-11-04 06:01:07'),
(541, 37, 50, '2020-07-13', 'Mon 13 Jul', '11:39:00', '11:39:00', '2020-07-13 11:39:00', '2020-07-14 11:39:00', '2019-11-04 11:31:08', '2019-11-04 06:01:08'),
(542, 37, 50, '2020-07-20', 'Mon 20 Jul', '11:39:00', '11:39:00', '2020-07-20 11:39:00', '2020-07-21 11:39:00', '2019-11-04 11:31:08', '2019-11-04 06:01:08'),
(543, 37, 50, '2020-07-27', 'Mon 27 Jul', '11:39:00', '11:39:00', '2020-07-27 11:39:00', '2020-07-28 11:39:00', '2019-11-04 11:31:08', '2019-11-04 06:01:08'),
(544, 37, 50, '2020-08-03', 'Mon 3 Aug', '11:39:00', '11:39:00', '2020-08-03 11:39:00', '2020-08-04 11:39:00', '2019-11-04 11:31:08', '2019-11-04 06:01:08'),
(545, 37, 50, '2020-08-10', 'Mon 10 Aug', '11:39:00', '11:39:00', '2020-08-10 11:39:00', '2020-08-11 11:39:00', '2019-11-04 11:31:08', '2019-11-04 06:01:08'),
(546, 37, 50, '2020-08-17', 'Mon 17 Aug', '11:39:00', '11:39:00', '2020-08-17 11:39:00', '2020-08-18 11:39:00', '2019-11-04 11:31:08', '2019-11-04 06:01:08'),
(547, 37, 50, '2020-08-24', 'Mon 24 Aug', '11:39:00', '11:39:00', '2020-08-24 11:39:00', '2020-08-25 11:39:00', '2019-11-04 11:31:08', '2019-11-04 06:01:08'),
(548, 37, 50, '2020-08-31', 'Mon 31 Aug', '11:39:00', '11:39:00', '2020-08-31 11:39:00', '2020-09-01 11:39:00', '2019-11-04 11:31:08', '2019-11-04 06:01:08'),
(549, 37, 50, '2020-09-07', 'Mon 7 Sep', '11:39:00', '11:39:00', '2020-09-07 11:39:00', '2020-09-08 11:39:00', '2019-11-04 11:31:09', '2019-11-04 06:01:09'),
(550, 37, 50, '2020-09-14', 'Mon 14 Sep', '11:39:00', '11:39:00', '2020-09-14 11:39:00', '2020-09-15 11:39:00', '2019-11-04 11:31:09', '2019-11-04 06:01:09'),
(551, 37, 50, '2020-09-21', 'Mon 21 Sep', '11:39:00', '11:39:00', '2020-09-21 11:39:00', '2020-09-22 11:39:00', '2019-11-04 11:31:09', '2019-11-04 06:01:09'),
(552, 37, 50, '2020-09-28', 'Mon 28 Sep', '11:39:00', '11:39:00', '2020-09-28 11:39:00', '2020-09-29 11:39:00', '2019-11-04 11:31:09', '2019-11-04 06:01:09'),
(553, 38, 47, '2019-11-04', 'Mon 4 Nov', '11:54:00', '11:54:00', '2019-11-04 11:54:00', '2019-11-05 11:54:00', '2019-11-04 11:46:05', '2019-11-04 06:16:05'),
(554, 38, 47, '2019-11-11', 'Mon 11 Nov', '11:54:00', '11:54:00', '2019-11-11 11:54:00', '2019-11-12 11:54:00', '2019-11-04 11:46:05', '2019-11-04 06:16:05'),
(555, 38, 47, '2019-11-18', 'Mon 18 Nov', '11:54:00', '11:54:00', '2019-11-18 11:54:00', '2019-11-19 11:54:00', '2019-11-04 11:46:05', '2019-11-04 06:16:05'),
(556, 38, 47, '2019-11-25', 'Mon 25 Nov', '11:54:00', '11:54:00', '2019-11-25 11:54:00', '2019-11-26 11:54:00', '2019-11-04 11:46:05', '2019-11-04 06:16:05'),
(557, 38, 47, '2019-12-02', 'Mon 2 Dec', '11:54:00', '11:54:00', '2019-12-02 11:54:00', '2019-12-03 11:54:00', '2019-11-04 11:46:05', '2019-11-04 06:16:05'),
(558, 38, 47, '2019-12-09', 'Mon 9 Dec', '11:54:00', '11:54:00', '2019-12-09 11:54:00', '2019-12-10 11:54:00', '2019-11-04 11:46:05', '2019-11-04 06:16:05'),
(559, 38, 47, '2019-12-16', 'Mon 16 Dec', '11:54:00', '11:54:00', '2019-12-16 11:54:00', '2019-12-17 11:54:00', '2019-11-04 11:46:05', '2019-11-04 06:16:05'),
(560, 38, 47, '2019-12-23', 'Mon 23 Dec', '11:54:00', '11:54:00', '2019-12-23 11:54:00', '2019-12-24 11:54:00', '2019-11-04 11:46:05', '2019-11-04 06:16:05'),
(561, 38, 47, '2019-12-30', 'Mon 30 Dec', '11:54:00', '11:54:00', '2019-12-30 11:54:00', '2019-12-31 11:54:00', '2019-11-04 11:46:05', '2019-11-04 06:16:05'),
(562, 38, 47, '2020-01-06', 'Mon 6 Jan', '11:54:00', '11:54:00', '2020-01-06 11:54:00', '2020-01-07 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(563, 38, 47, '2020-01-13', 'Mon 13 Jan', '11:54:00', '11:54:00', '2020-01-13 11:54:00', '2020-01-14 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(564, 38, 47, '2020-01-20', 'Mon 20 Jan', '11:54:00', '11:54:00', '2020-01-20 11:54:00', '2020-01-21 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(565, 38, 47, '2020-01-27', 'Mon 27 Jan', '11:54:00', '11:54:00', '2020-01-27 11:54:00', '2020-01-28 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(566, 38, 47, '2020-02-03', 'Mon 3 Feb', '11:54:00', '11:54:00', '2020-02-03 11:54:00', '2020-02-04 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(567, 38, 47, '2020-02-10', 'Mon 10 Feb', '11:54:00', '11:54:00', '2020-02-10 11:54:00', '2020-02-11 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(568, 38, 47, '2020-02-17', 'Mon 17 Feb', '11:54:00', '11:54:00', '2020-02-17 11:54:00', '2020-02-18 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(569, 38, 47, '2020-02-24', 'Mon 24 Feb', '11:54:00', '11:54:00', '2020-02-24 11:54:00', '2020-02-25 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(570, 38, 47, '2020-03-02', 'Mon 2 Mar', '11:54:00', '11:54:00', '2020-03-02 11:54:00', '2020-03-03 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(571, 38, 47, '2020-03-09', 'Mon 9 Mar', '11:54:00', '11:54:00', '2020-03-09 11:54:00', '2020-03-10 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(572, 38, 47, '2020-03-16', 'Mon 16 Mar', '11:54:00', '11:54:00', '2020-03-16 11:54:00', '2020-03-17 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(573, 38, 47, '2020-03-23', 'Mon 23 Mar', '11:54:00', '11:54:00', '2020-03-23 11:54:00', '2020-03-24 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(574, 38, 47, '2020-03-30', 'Mon 30 Mar', '11:54:00', '11:54:00', '2020-03-30 11:54:00', '2020-03-31 11:54:00', '2019-11-04 11:46:06', '2019-11-04 06:16:06'),
(575, 38, 47, '2020-04-06', 'Mon 6 Apr', '11:54:00', '11:54:00', '2020-04-06 11:54:00', '2020-04-07 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(576, 38, 47, '2020-04-13', 'Mon 13 Apr', '11:54:00', '11:54:00', '2020-04-13 11:54:00', '2020-04-14 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(577, 38, 47, '2020-04-20', 'Mon 20 Apr', '11:54:00', '11:54:00', '2020-04-20 11:54:00', '2020-04-21 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(578, 38, 47, '2020-04-27', 'Mon 27 Apr', '11:54:00', '11:54:00', '2020-04-27 11:54:00', '2020-04-28 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(579, 38, 47, '2020-05-04', 'Mon 4 May', '11:54:00', '11:54:00', '2020-05-04 11:54:00', '2020-05-05 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(580, 38, 47, '2020-05-11', 'Mon 11 May', '11:54:00', '11:54:00', '2020-05-11 11:54:00', '2020-05-12 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(581, 38, 47, '2020-05-18', 'Mon 18 May', '11:54:00', '11:54:00', '2020-05-18 11:54:00', '2020-05-19 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(582, 38, 47, '2020-05-25', 'Mon 25 May', '11:54:00', '11:54:00', '2020-05-25 11:54:00', '2020-05-26 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(583, 38, 47, '2020-06-01', 'Mon 1 Jun', '11:54:00', '11:54:00', '2020-06-01 11:54:00', '2020-06-02 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(584, 38, 47, '2020-06-08', 'Mon 8 Jun', '11:54:00', '11:54:00', '2020-06-08 11:54:00', '2020-06-09 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(585, 38, 47, '2020-06-15', 'Mon 15 Jun', '11:54:00', '11:54:00', '2020-06-15 11:54:00', '2020-06-16 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(586, 38, 47, '2020-06-22', 'Mon 22 Jun', '11:54:00', '11:54:00', '2020-06-22 11:54:00', '2020-06-23 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(587, 38, 47, '2020-06-29', 'Mon 29 Jun', '11:54:00', '11:54:00', '2020-06-29 11:54:00', '2020-06-30 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(588, 38, 47, '2020-07-06', 'Mon 6 Jul', '11:54:00', '11:54:00', '2020-07-06 11:54:00', '2020-07-07 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(589, 38, 47, '2020-07-13', 'Mon 13 Jul', '11:54:00', '11:54:00', '2020-07-13 11:54:00', '2020-07-14 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(590, 38, 47, '2020-07-20', 'Mon 20 Jul', '11:54:00', '11:54:00', '2020-07-20 11:54:00', '2020-07-21 11:54:00', '2019-11-04 11:46:07', '2019-11-04 06:16:07'),
(591, 38, 47, '2020-07-27', 'Mon 27 Jul', '11:54:00', '11:54:00', '2020-07-27 11:54:00', '2020-07-28 11:54:00', '2019-11-04 11:46:08', '2019-11-04 06:16:08'),
(592, 38, 47, '2020-08-03', 'Mon 3 Aug', '11:54:00', '11:54:00', '2020-08-03 11:54:00', '2020-08-04 11:54:00', '2019-11-04 11:46:08', '2019-11-04 06:16:08'),
(593, 38, 47, '2020-08-10', 'Mon 10 Aug', '11:54:00', '11:54:00', '2020-08-10 11:54:00', '2020-08-11 11:54:00', '2019-11-04 11:46:08', '2019-11-04 06:16:08'),
(594, 38, 47, '2020-08-17', 'Mon 17 Aug', '11:54:00', '11:54:00', '2020-08-17 11:54:00', '2020-08-18 11:54:00', '2019-11-04 11:46:08', '2019-11-04 06:16:08'),
(595, 38, 47, '2020-08-24', 'Mon 24 Aug', '11:54:00', '11:54:00', '2020-08-24 11:54:00', '2020-08-25 11:54:00', '2019-11-04 11:46:08', '2019-11-04 06:16:08'),
(596, 38, 47, '2020-08-31', 'Mon 31 Aug', '11:54:00', '11:54:00', '2020-08-31 11:54:00', '2020-09-01 11:54:00', '2019-11-04 11:46:08', '2019-11-04 06:16:08'),
(597, 38, 47, '2020-09-07', 'Mon 7 Sep', '11:54:00', '11:54:00', '2020-09-07 11:54:00', '2020-09-08 11:54:00', '2019-11-04 11:46:08', '2019-11-04 06:16:08'),
(598, 38, 47, '2020-09-14', 'Mon 14 Sep', '11:54:00', '11:54:00', '2020-09-14 11:54:00', '2020-09-15 11:54:00', '2019-11-04 11:46:08', '2019-11-04 06:16:08'),
(599, 38, 47, '2020-09-21', 'Mon 21 Sep', '11:54:00', '11:54:00', '2020-09-21 11:54:00', '2020-09-22 11:54:00', '2019-11-04 11:46:08', '2019-11-04 06:16:08'),
(600, 38, 47, '2020-09-28', 'Mon 28 Sep', '11:54:00', '11:54:00', '2020-09-28 11:54:00', '2020-09-29 11:54:00', '2019-11-04 11:46:08', '2019-11-04 06:16:08'),
(601, 39, 54, '2019-11-05', 'Tue 5 Nov', '12:00:00', '11:01:00', '2019-11-05 12:00:00', '2019-11-06 11:01:00', '2019-11-05 10:51:44', '2019-11-05 05:21:44'),
(602, 40, 54, '2019-11-05', 'Tue 5 Nov', '12:00:00', '11:01:00', '2019-11-05 12:00:00', '2019-11-06 11:01:00', '2019-11-05 10:51:44', '2019-11-05 05:21:44'),
(603, 41, 54, '2019-11-06', 'Wed 6 Nov', '11:04:00', '11:04:00', '2019-11-06 11:04:00', '2019-11-08 11:04:00', '2019-11-05 10:55:17', '2019-11-05 05:25:17'),
(604, 42, 57, '2019-11-06', 'Wed 6 Nov', '11:06:00', '11:06:00', '2019-11-06 11:06:00', '2019-11-14 11:06:00', '2019-11-05 10:58:17', '2019-11-05 05:28:17'),
(605, 43, 59, '2019-11-05', 'Tue 5 Nov', '16:20:00', '21:20:00', '2019-11-05 16:20:00', '2019-11-05 21:20:00', '2019-11-05 13:09:11', '2019-11-05 07:39:11'),
(606, 44, 59, '2019-11-06', 'Wed 6 Nov', '13:21:00', '13:21:00', '2019-11-06 13:21:00', '2019-11-07 13:21:00', '2019-11-05 13:11:37', '2019-11-05 07:41:37'),
(607, 45, 58, '2019-11-05', 'Tue 5 Nov', '13:35:00', '18:00:00', '2019-11-05 13:35:00', '2019-11-05 18:00:00', '2019-11-05 13:26:35', '2019-11-05 09:32:36'),
(608, 46, 58, '2019-11-12', 'Tue 12 Nov', '15:07:00', '15:07:00', '2019-11-12 15:07:00', '2019-11-28 15:07:00', '2019-11-05 14:58:34', '2019-11-05 09:28:34'),
(657, 48, 64, '2019-11-05', 'Tue 5 Nov', '15:24:00', '15:24:00', '2019-11-05 15:24:00', '2019-11-08 15:24:00', '2019-11-05 15:16:11', '2019-11-05 09:46:11'),
(658, 48, 64, '2019-11-12', 'Tue 12 Nov', '15:24:00', '15:24:00', '2019-11-12 15:24:00', '2019-11-15 15:24:00', '2019-11-05 15:16:11', '2019-11-05 09:46:11'),
(659, 48, 64, '2019-11-19', 'Tue 19 Nov', '15:24:00', '15:24:00', '2019-11-19 15:24:00', '2019-11-22 15:24:00', '2019-11-05 15:16:11', '2019-11-05 09:46:11'),
(660, 48, 64, '2019-11-26', 'Tue 26 Nov', '15:24:00', '15:24:00', '2019-11-26 15:24:00', '2019-11-29 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(661, 48, 64, '2019-12-03', 'Tue 3 Dec', '15:24:00', '15:24:00', '2019-12-03 15:24:00', '2019-12-06 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(662, 48, 64, '2019-12-10', 'Tue 10 Dec', '15:24:00', '15:24:00', '2019-12-10 15:24:00', '2019-12-13 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(663, 48, 64, '2019-12-17', 'Tue 17 Dec', '15:24:00', '15:24:00', '2019-12-17 15:24:00', '2019-12-20 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(664, 48, 64, '2019-12-24', 'Tue 24 Dec', '15:24:00', '15:24:00', '2019-12-24 15:24:00', '2019-12-27 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(665, 48, 64, '2019-12-31', 'Tue 31 Dec', '15:24:00', '15:24:00', '2019-12-31 15:24:00', '2020-01-03 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(666, 48, 64, '2020-01-07', 'Tue 7 Jan', '15:24:00', '15:24:00', '2020-01-07 15:24:00', '2020-01-10 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(667, 48, 64, '2020-01-14', 'Tue 14 Jan', '15:24:00', '15:24:00', '2020-01-14 15:24:00', '2020-01-17 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(668, 48, 64, '2020-01-21', 'Tue 21 Jan', '15:24:00', '15:24:00', '2020-01-21 15:24:00', '2020-01-24 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(669, 48, 64, '2020-01-28', 'Tue 28 Jan', '15:24:00', '15:24:00', '2020-01-28 15:24:00', '2020-01-31 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(670, 48, 64, '2020-02-04', 'Tue 4 Feb', '15:24:00', '15:24:00', '2020-02-04 15:24:00', '2020-02-07 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(671, 48, 64, '2020-02-11', 'Tue 11 Feb', '15:24:00', '15:24:00', '2020-02-11 15:24:00', '2020-02-14 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(672, 48, 64, '2020-02-18', 'Tue 18 Feb', '15:24:00', '15:24:00', '2020-02-18 15:24:00', '2020-02-21 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(673, 48, 64, '2020-02-25', 'Tue 25 Feb', '15:24:00', '15:24:00', '2020-02-25 15:24:00', '2020-02-28 15:24:00', '2019-11-05 15:16:12', '2019-11-05 09:46:12'),
(674, 48, 64, '2020-03-03', 'Tue 3 Mar', '15:24:00', '15:24:00', '2020-03-03 15:24:00', '2020-03-06 15:24:00', '2019-11-05 15:16:13', '2019-11-05 09:46:13'),
(675, 48, 64, '2020-03-10', 'Tue 10 Mar', '15:24:00', '15:24:00', '2020-03-10 15:24:00', '2020-03-13 15:24:00', '2019-11-05 15:16:13', '2019-11-05 09:46:13'),
(676, 48, 64, '2020-03-17', 'Tue 17 Mar', '15:24:00', '15:24:00', '2020-03-17 15:24:00', '2020-03-20 15:24:00', '2019-11-05 15:16:13', '2019-11-05 09:46:13'),
(677, 48, 64, '2020-03-24', 'Tue 24 Mar', '15:24:00', '15:24:00', '2020-03-24 15:24:00', '2020-03-27 15:24:00', '2019-11-05 15:16:13', '2019-11-05 09:46:13'),
(678, 48, 64, '2020-03-31', 'Tue 31 Mar', '15:24:00', '15:24:00', '2020-03-31 15:24:00', '2020-04-03 15:24:00', '2019-11-05 15:16:13', '2019-11-05 09:46:13'),
(679, 48, 64, '2020-04-07', 'Tue 7 Apr', '15:24:00', '15:24:00', '2020-04-07 15:24:00', '2020-04-10 15:24:00', '2019-11-05 15:16:13', '2019-11-05 09:46:13'),
(680, 48, 64, '2020-04-14', 'Tue 14 Apr', '15:24:00', '15:24:00', '2020-04-14 15:24:00', '2020-04-17 15:24:00', '2019-11-05 15:16:13', '2019-11-05 09:46:13'),
(681, 48, 64, '2020-04-21', 'Tue 21 Apr', '15:24:00', '15:24:00', '2020-04-21 15:24:00', '2020-04-24 15:24:00', '2019-11-05 15:16:13', '2019-11-05 09:46:13'),
(682, 48, 64, '2020-04-28', 'Tue 28 Apr', '15:24:00', '15:24:00', '2020-04-28 15:24:00', '2020-05-01 15:24:00', '2019-11-05 15:16:13', '2019-11-05 09:46:13'),
(683, 48, 64, '2020-05-05', 'Tue 5 May', '15:24:00', '15:24:00', '2020-05-05 15:24:00', '2020-05-08 15:24:00', '2019-11-05 15:16:13', '2019-11-05 09:46:13'),
(684, 48, 64, '2020-05-12', 'Tue 12 May', '15:24:00', '15:24:00', '2020-05-12 15:24:00', '2020-05-15 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(685, 48, 64, '2020-05-19', 'Tue 19 May', '15:24:00', '15:24:00', '2020-05-19 15:24:00', '2020-05-22 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(686, 48, 64, '2020-05-26', 'Tue 26 May', '15:24:00', '15:24:00', '2020-05-26 15:24:00', '2020-05-29 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(687, 48, 64, '2020-06-02', 'Tue 2 Jun', '15:24:00', '15:24:00', '2020-06-02 15:24:00', '2020-06-05 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(688, 48, 64, '2020-06-09', 'Tue 9 Jun', '15:24:00', '15:24:00', '2020-06-09 15:24:00', '2020-06-12 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(689, 48, 64, '2020-06-16', 'Tue 16 Jun', '15:24:00', '15:24:00', '2020-06-16 15:24:00', '2020-06-19 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(690, 48, 64, '2020-06-23', 'Tue 23 Jun', '15:24:00', '15:24:00', '2020-06-23 15:24:00', '2020-06-26 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(691, 48, 64, '2020-06-30', 'Tue 30 Jun', '15:24:00', '15:24:00', '2020-06-30 15:24:00', '2020-07-03 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(692, 48, 64, '2020-07-07', 'Tue 7 Jul', '15:24:00', '15:24:00', '2020-07-07 15:24:00', '2020-07-10 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(693, 48, 64, '2020-07-14', 'Tue 14 Jul', '15:24:00', '15:24:00', '2020-07-14 15:24:00', '2020-07-17 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(694, 48, 64, '2020-07-21', 'Tue 21 Jul', '15:24:00', '15:24:00', '2020-07-21 15:24:00', '2020-07-24 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(695, 48, 64, '2020-07-28', 'Tue 28 Jul', '15:24:00', '15:24:00', '2020-07-28 15:24:00', '2020-07-31 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(696, 48, 64, '2020-08-04', 'Tue 4 Aug', '15:24:00', '15:24:00', '2020-08-04 15:24:00', '2020-08-07 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(697, 48, 64, '2020-08-11', 'Tue 11 Aug', '15:24:00', '15:24:00', '2020-08-11 15:24:00', '2020-08-14 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(698, 48, 64, '2020-08-18', 'Tue 18 Aug', '15:24:00', '15:24:00', '2020-08-18 15:24:00', '2020-08-21 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(699, 48, 64, '2020-08-25', 'Tue 25 Aug', '15:24:00', '15:24:00', '2020-08-25 15:24:00', '2020-08-28 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(700, 48, 64, '2020-09-01', 'Tue 1 Sep', '15:24:00', '15:24:00', '2020-09-01 15:24:00', '2020-09-04 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(701, 48, 64, '2020-09-08', 'Tue 8 Sep', '15:24:00', '15:24:00', '2020-09-08 15:24:00', '2020-09-11 15:24:00', '2019-11-05 15:16:14', '2019-11-05 09:46:14'),
(702, 48, 64, '2020-09-15', 'Tue 15 Sep', '15:24:00', '15:24:00', '2020-09-15 15:24:00', '2020-09-18 15:24:00', '2019-11-05 15:16:15', '2019-11-05 09:46:15'),
(703, 48, 64, '2020-09-22', 'Tue 22 Sep', '15:24:00', '15:24:00', '2020-09-22 15:24:00', '2020-09-25 15:24:00', '2019-11-05 15:16:15', '2019-11-05 09:46:15'),
(704, 48, 64, '2020-09-29', 'Tue 29 Sep', '15:24:00', '15:24:00', '2020-09-29 15:24:00', '2020-10-02 15:24:00', '2019-11-05 15:16:15', '2019-11-05 09:46:15'),
(705, 49, 64, '2019-11-05', 'Tue 5 Nov', '15:28:00', '15:28:00', '2019-11-05 15:28:00', '2019-11-07 15:28:00', '2019-11-05 15:19:45', '2019-11-05 09:49:45'),
(706, 49, 64, '2019-11-12', 'Tue 12 Nov', '15:28:00', '15:28:00', '2019-11-12 15:28:00', '2019-11-14 15:28:00', '2019-11-05 15:19:45', '2019-11-05 09:49:45'),
(707, 49, 64, '2019-11-19', 'Tue 19 Nov', '15:28:00', '15:28:00', '2019-11-19 15:28:00', '2019-11-21 15:28:00', '2019-11-05 15:19:45', '2019-11-05 09:49:45'),
(708, 49, 64, '2019-11-26', 'Tue 26 Nov', '15:28:00', '15:28:00', '2019-11-26 15:28:00', '2019-11-28 15:28:00', '2019-11-05 15:19:45', '2019-11-05 09:49:45'),
(709, 49, 64, '2019-12-03', 'Tue 3 Dec', '15:28:00', '15:28:00', '2019-12-03 15:28:00', '2019-12-05 15:28:00', '2019-11-05 15:19:45', '2019-11-05 09:49:45'),
(710, 49, 64, '2019-12-10', 'Tue 10 Dec', '15:28:00', '15:28:00', '2019-12-10 15:28:00', '2019-12-12 15:28:00', '2019-11-05 15:19:45', '2019-11-05 09:49:45'),
(711, 49, 64, '2019-12-17', 'Tue 17 Dec', '15:28:00', '15:28:00', '2019-12-17 15:28:00', '2019-12-19 15:28:00', '2019-11-05 15:19:45', '2019-11-05 09:49:45'),
(712, 49, 64, '2019-12-24', 'Tue 24 Dec', '15:28:00', '15:28:00', '2019-12-24 15:28:00', '2019-12-26 15:28:00', '2019-11-05 15:19:45', '2019-11-05 09:49:45'),
(713, 49, 64, '2019-12-31', 'Tue 31 Dec', '15:28:00', '15:28:00', '2019-12-31 15:28:00', '2020-01-02 15:28:00', '2019-11-05 15:19:45', '2019-11-05 09:49:45'),
(714, 49, 64, '2020-01-07', 'Tue 7 Jan', '15:28:00', '15:28:00', '2020-01-07 15:28:00', '2020-01-09 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(715, 49, 64, '2020-01-14', 'Tue 14 Jan', '15:28:00', '15:28:00', '2020-01-14 15:28:00', '2020-01-16 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(716, 49, 64, '2020-01-21', 'Tue 21 Jan', '15:28:00', '15:28:00', '2020-01-21 15:28:00', '2020-01-23 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(717, 49, 64, '2020-01-28', 'Tue 28 Jan', '15:28:00', '15:28:00', '2020-01-28 15:28:00', '2020-01-30 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(718, 49, 64, '2020-02-04', 'Tue 4 Feb', '15:28:00', '15:28:00', '2020-02-04 15:28:00', '2020-02-06 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(719, 49, 64, '2020-02-11', 'Tue 11 Feb', '15:28:00', '15:28:00', '2020-02-11 15:28:00', '2020-02-13 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(720, 49, 64, '2020-02-18', 'Tue 18 Feb', '15:28:00', '15:28:00', '2020-02-18 15:28:00', '2020-02-20 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(721, 49, 64, '2020-02-25', 'Tue 25 Feb', '15:28:00', '15:28:00', '2020-02-25 15:28:00', '2020-02-27 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(722, 49, 64, '2020-03-03', 'Tue 3 Mar', '15:28:00', '15:28:00', '2020-03-03 15:28:00', '2020-03-05 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(723, 49, 64, '2020-03-10', 'Tue 10 Mar', '15:28:00', '15:28:00', '2020-03-10 15:28:00', '2020-03-12 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(724, 49, 64, '2020-03-17', 'Tue 17 Mar', '15:28:00', '15:28:00', '2020-03-17 15:28:00', '2020-03-19 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(725, 49, 64, '2020-03-24', 'Tue 24 Mar', '15:28:00', '15:28:00', '2020-03-24 15:28:00', '2020-03-26 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(726, 49, 64, '2020-03-31', 'Tue 31 Mar', '15:28:00', '15:28:00', '2020-03-31 15:28:00', '2020-04-02 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(727, 49, 64, '2020-04-07', 'Tue 7 Apr', '15:28:00', '15:28:00', '2020-04-07 15:28:00', '2020-04-09 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(728, 49, 64, '2020-04-14', 'Tue 14 Apr', '15:28:00', '15:28:00', '2020-04-14 15:28:00', '2020-04-16 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(729, 49, 64, '2020-04-21', 'Tue 21 Apr', '15:28:00', '15:28:00', '2020-04-21 15:28:00', '2020-04-23 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(730, 49, 64, '2020-04-28', 'Tue 28 Apr', '15:28:00', '15:28:00', '2020-04-28 15:28:00', '2020-04-30 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(731, 49, 64, '2020-05-05', 'Tue 5 May', '15:28:00', '15:28:00', '2020-05-05 15:28:00', '2020-05-07 15:28:00', '2019-11-05 15:19:46', '2019-11-05 09:49:46'),
(732, 49, 64, '2020-05-12', 'Tue 12 May', '15:28:00', '15:28:00', '2020-05-12 15:28:00', '2020-05-14 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(733, 49, 64, '2020-05-19', 'Tue 19 May', '15:28:00', '15:28:00', '2020-05-19 15:28:00', '2020-05-21 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(734, 49, 64, '2020-05-26', 'Tue 26 May', '15:28:00', '15:28:00', '2020-05-26 15:28:00', '2020-05-28 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(735, 49, 64, '2020-06-02', 'Tue 2 Jun', '15:28:00', '15:28:00', '2020-06-02 15:28:00', '2020-06-04 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(736, 49, 64, '2020-06-09', 'Tue 9 Jun', '15:28:00', '15:28:00', '2020-06-09 15:28:00', '2020-06-11 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(737, 49, 64, '2020-06-16', 'Tue 16 Jun', '15:28:00', '15:28:00', '2020-06-16 15:28:00', '2020-06-18 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(738, 49, 64, '2020-06-23', 'Tue 23 Jun', '15:28:00', '15:28:00', '2020-06-23 15:28:00', '2020-06-25 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(739, 49, 64, '2020-06-30', 'Tue 30 Jun', '15:28:00', '15:28:00', '2020-06-30 15:28:00', '2020-07-02 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47');
INSERT INTO `event_schedule` (`id`, `event_id`, `user_id`, `event_date`, `event_date2`, `event_time`, `end_time`, `event_start_date_time`, `event_end_date_time`, `created_at`, `updated_at`) VALUES
(740, 49, 64, '2020-07-07', 'Tue 7 Jul', '15:28:00', '15:28:00', '2020-07-07 15:28:00', '2020-07-09 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(741, 49, 64, '2020-07-14', 'Tue 14 Jul', '15:28:00', '15:28:00', '2020-07-14 15:28:00', '2020-07-16 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(742, 49, 64, '2020-07-21', 'Tue 21 Jul', '15:28:00', '15:28:00', '2020-07-21 15:28:00', '2020-07-23 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(743, 49, 64, '2020-07-28', 'Tue 28 Jul', '15:28:00', '15:28:00', '2020-07-28 15:28:00', '2020-07-30 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(744, 49, 64, '2020-08-04', 'Tue 4 Aug', '15:28:00', '15:28:00', '2020-08-04 15:28:00', '2020-08-06 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(745, 49, 64, '2020-08-11', 'Tue 11 Aug', '15:28:00', '15:28:00', '2020-08-11 15:28:00', '2020-08-13 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(746, 49, 64, '2020-08-18', 'Tue 18 Aug', '15:28:00', '15:28:00', '2020-08-18 15:28:00', '2020-08-20 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(747, 49, 64, '2020-08-25', 'Tue 25 Aug', '15:28:00', '15:28:00', '2020-08-25 15:28:00', '2020-08-27 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(748, 49, 64, '2020-09-01', 'Tue 1 Sep', '15:28:00', '15:28:00', '2020-09-01 15:28:00', '2020-09-03 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(749, 49, 64, '2020-09-08', 'Tue 8 Sep', '15:28:00', '15:28:00', '2020-09-08 15:28:00', '2020-09-10 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(750, 49, 64, '2020-09-15', 'Tue 15 Sep', '15:28:00', '15:28:00', '2020-09-15 15:28:00', '2020-09-17 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(751, 49, 64, '2020-09-22', 'Tue 22 Sep', '15:28:00', '15:28:00', '2020-09-22 15:28:00', '2020-09-24 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(752, 49, 64, '2020-09-29', 'Tue 29 Sep', '15:28:00', '15:28:00', '2020-09-29 15:28:00', '2020-10-01 15:28:00', '2019-11-05 15:19:47', '2019-11-05 09:49:47'),
(753, 50, 4, '2019-11-05', 'Tue 5 Nov', '18:23:00', '18:23:00', '2019-11-05 18:23:00', '2019-11-06 18:23:00', '2019-11-05 18:14:18', '2019-11-05 12:44:18'),
(754, 51, 5, '2019-11-07', 'Thu 7 Nov', '13:10:00', '13:00:00', '2019-11-07 13:10:00', '2019-11-07 13:00:00', '2019-11-07 13:01:23', '2019-11-07 07:31:23'),
(755, 51, 5, '2019-11-14', 'Thu 14 Nov', '13:10:00', '13:00:00', '2019-11-14 13:10:00', '2019-11-14 13:00:00', '2019-11-07 13:01:23', '2019-11-07 07:31:23'),
(756, 51, 5, '2019-11-21', 'Thu 21 Nov', '13:10:00', '13:00:00', '2019-11-21 13:10:00', '2019-11-21 13:00:00', '2019-11-07 13:01:23', '2019-11-07 07:31:23'),
(757, 51, 5, '2019-11-28', 'Thu 28 Nov', '13:10:00', '13:00:00', '2019-11-28 13:10:00', '2019-11-28 13:00:00', '2019-11-07 13:01:23', '2019-11-07 07:31:23'),
(758, 51, 5, '2019-12-05', 'Thu 5 Dec', '13:10:00', '13:00:00', '2019-12-05 13:10:00', '2019-12-05 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(759, 51, 5, '2019-12-12', 'Thu 12 Dec', '13:10:00', '13:00:00', '2019-12-12 13:10:00', '2019-12-12 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(760, 51, 5, '2019-12-19', 'Thu 19 Dec', '13:10:00', '13:00:00', '2019-12-19 13:10:00', '2019-12-19 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(761, 51, 5, '2019-12-26', 'Thu 26 Dec', '13:10:00', '13:00:00', '2019-12-26 13:10:00', '2019-12-26 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(762, 51, 5, '2020-01-02', 'Thu 2 Jan', '13:10:00', '13:00:00', '2020-01-02 13:10:00', '2020-01-02 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(763, 51, 5, '2020-01-09', 'Thu 9 Jan', '13:10:00', '13:00:00', '2020-01-09 13:10:00', '2020-01-09 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(764, 51, 5, '2020-01-16', 'Thu 16 Jan', '13:10:00', '13:00:00', '2020-01-16 13:10:00', '2020-01-16 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(765, 51, 5, '2020-01-23', 'Thu 23 Jan', '13:10:00', '13:00:00', '2020-01-23 13:10:00', '2020-01-23 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(766, 51, 5, '2020-01-30', 'Thu 30 Jan', '13:10:00', '13:00:00', '2020-01-30 13:10:00', '2020-01-30 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(767, 51, 5, '2020-02-06', 'Thu 6 Feb', '13:10:00', '13:00:00', '2020-02-06 13:10:00', '2020-02-06 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(768, 51, 5, '2020-02-13', 'Thu 13 Feb', '13:10:00', '13:00:00', '2020-02-13 13:10:00', '2020-02-13 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(769, 51, 5, '2020-02-20', 'Thu 20 Feb', '13:10:00', '13:00:00', '2020-02-20 13:10:00', '2020-02-20 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(770, 51, 5, '2020-02-27', 'Thu 27 Feb', '13:10:00', '13:00:00', '2020-02-27 13:10:00', '2020-02-27 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(771, 51, 5, '2020-03-05', 'Thu 5 Mar', '13:10:00', '13:00:00', '2020-03-05 13:10:00', '2020-03-05 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(772, 51, 5, '2020-03-12', 'Thu 12 Mar', '13:10:00', '13:00:00', '2020-03-12 13:10:00', '2020-03-12 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(773, 51, 5, '2020-03-19', 'Thu 19 Mar', '13:10:00', '13:00:00', '2020-03-19 13:10:00', '2020-03-19 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(774, 51, 5, '2020-03-26', 'Thu 26 Mar', '13:10:00', '13:00:00', '2020-03-26 13:10:00', '2020-03-26 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(775, 51, 5, '2020-04-02', 'Thu 2 Apr', '13:10:00', '13:00:00', '2020-04-02 13:10:00', '2020-04-02 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(776, 51, 5, '2020-04-09', 'Thu 9 Apr', '13:10:00', '13:00:00', '2020-04-09 13:10:00', '2020-04-09 13:00:00', '2019-11-07 13:01:24', '2019-11-07 07:31:24'),
(777, 51, 5, '2020-04-16', 'Thu 16 Apr', '13:10:00', '13:00:00', '2020-04-16 13:10:00', '2020-04-16 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(778, 51, 5, '2020-04-23', 'Thu 23 Apr', '13:10:00', '13:00:00', '2020-04-23 13:10:00', '2020-04-23 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(779, 51, 5, '2020-04-30', 'Thu 30 Apr', '13:10:00', '13:00:00', '2020-04-30 13:10:00', '2020-04-30 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(780, 51, 5, '2020-05-07', 'Thu 7 May', '13:10:00', '13:00:00', '2020-05-07 13:10:00', '2020-05-07 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(781, 51, 5, '2020-05-14', 'Thu 14 May', '13:10:00', '13:00:00', '2020-05-14 13:10:00', '2020-05-14 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(782, 51, 5, '2020-05-21', 'Thu 21 May', '13:10:00', '13:00:00', '2020-05-21 13:10:00', '2020-05-21 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(783, 51, 5, '2020-05-28', 'Thu 28 May', '13:10:00', '13:00:00', '2020-05-28 13:10:00', '2020-05-28 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(784, 51, 5, '2020-06-04', 'Thu 4 Jun', '13:10:00', '13:00:00', '2020-06-04 13:10:00', '2020-06-04 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(785, 51, 5, '2020-06-11', 'Thu 11 Jun', '13:10:00', '13:00:00', '2020-06-11 13:10:00', '2020-06-11 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(786, 51, 5, '2020-06-18', 'Thu 18 Jun', '13:10:00', '13:00:00', '2020-06-18 13:10:00', '2020-06-18 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(787, 51, 5, '2020-06-25', 'Thu 25 Jun', '13:10:00', '13:00:00', '2020-06-25 13:10:00', '2020-06-25 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(788, 51, 5, '2020-07-02', 'Thu 2 Jul', '13:10:00', '13:00:00', '2020-07-02 13:10:00', '2020-07-02 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(789, 51, 5, '2020-07-09', 'Thu 9 Jul', '13:10:00', '13:00:00', '2020-07-09 13:10:00', '2020-07-09 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(790, 51, 5, '2020-07-16', 'Thu 16 Jul', '13:10:00', '13:00:00', '2020-07-16 13:10:00', '2020-07-16 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(791, 51, 5, '2020-07-23', 'Thu 23 Jul', '13:10:00', '13:00:00', '2020-07-23 13:10:00', '2020-07-23 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(792, 51, 5, '2020-07-30', 'Thu 30 Jul', '13:10:00', '13:00:00', '2020-07-30 13:10:00', '2020-07-30 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(793, 51, 5, '2020-08-06', 'Thu 6 Aug', '13:10:00', '13:00:00', '2020-08-06 13:10:00', '2020-08-06 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(794, 51, 5, '2020-08-13', 'Thu 13 Aug', '13:10:00', '13:00:00', '2020-08-13 13:10:00', '2020-08-13 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(795, 51, 5, '2020-08-20', 'Thu 20 Aug', '13:10:00', '13:00:00', '2020-08-20 13:10:00', '2020-08-20 13:00:00', '2019-11-07 13:01:25', '2019-11-07 07:31:25'),
(796, 51, 5, '2020-08-27', 'Thu 27 Aug', '13:10:00', '13:00:00', '2020-08-27 13:10:00', '2020-08-27 13:00:00', '2019-11-07 13:01:26', '2019-11-07 07:31:26'),
(797, 51, 5, '2020-09-03', 'Thu 3 Sep', '13:10:00', '13:00:00', '2020-09-03 13:10:00', '2020-09-03 13:00:00', '2019-11-07 13:01:26', '2019-11-07 07:31:26'),
(798, 51, 5, '2020-09-10', 'Thu 10 Sep', '13:10:00', '13:00:00', '2020-09-10 13:10:00', '2020-09-10 13:00:00', '2019-11-07 13:01:26', '2019-11-07 07:31:26'),
(799, 51, 5, '2020-09-17', 'Thu 17 Sep', '13:10:00', '13:00:00', '2020-09-17 13:10:00', '2020-09-17 13:00:00', '2019-11-07 13:01:26', '2019-11-07 07:31:26'),
(800, 51, 5, '2020-09-24', 'Thu 24 Sep', '13:10:00', '13:00:00', '2020-09-24 13:10:00', '2020-09-24 13:00:00', '2019-11-07 13:01:26', '2019-11-07 07:31:26'),
(801, 51, 5, '2020-10-01', 'Thu 1 Oct', '13:10:00', '13:00:00', '2020-10-01 13:10:00', '2020-10-01 13:00:00', '2019-11-07 13:01:26', '2019-11-07 07:31:26'),
(802, 52, 4, '2019-11-07', 'Thu 7 Nov', '13:10:00', '13:03:00', '2019-11-07 13:10:00', '2019-11-07 13:03:00', '2019-11-07 13:05:08', '2019-11-07 07:35:08'),
(803, 52, 4, '2019-11-14', 'Thu 14 Nov', '13:10:00', '13:03:00', '2019-11-14 13:10:00', '2019-11-14 13:03:00', '2019-11-07 13:05:08', '2019-11-07 07:35:08'),
(804, 52, 4, '2019-11-21', 'Thu 21 Nov', '13:10:00', '13:03:00', '2019-11-21 13:10:00', '2019-11-21 13:03:00', '2019-11-07 13:05:08', '2019-11-07 07:35:08'),
(805, 52, 4, '2019-11-28', 'Thu 28 Nov', '13:10:00', '13:03:00', '2019-11-28 13:10:00', '2019-11-28 13:03:00', '2019-11-07 13:05:08', '2019-11-07 07:35:08'),
(806, 52, 4, '2019-12-05', 'Thu 5 Dec', '13:10:00', '13:03:00', '2019-12-05 13:10:00', '2019-12-05 13:03:00', '2019-11-07 13:05:08', '2019-11-07 07:35:08'),
(807, 52, 4, '2019-12-12', 'Thu 12 Dec', '13:10:00', '13:03:00', '2019-12-12 13:10:00', '2019-12-12 13:03:00', '2019-11-07 13:05:08', '2019-11-07 07:35:08'),
(808, 52, 4, '2019-12-19', 'Thu 19 Dec', '13:10:00', '13:03:00', '2019-12-19 13:10:00', '2019-12-19 13:03:00', '2019-11-07 13:05:08', '2019-11-07 07:35:08'),
(809, 52, 4, '2019-12-26', 'Thu 26 Dec', '13:10:00', '13:03:00', '2019-12-26 13:10:00', '2019-12-26 13:03:00', '2019-11-07 13:05:08', '2019-11-07 07:35:08'),
(810, 52, 4, '2020-01-02', 'Thu 2 Jan', '13:10:00', '13:03:00', '2020-01-02 13:10:00', '2020-01-02 13:03:00', '2019-11-07 13:05:08', '2019-11-07 07:35:08'),
(811, 52, 4, '2020-01-09', 'Thu 9 Jan', '13:10:00', '13:03:00', '2020-01-09 13:10:00', '2020-01-09 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(812, 52, 4, '2020-01-16', 'Thu 16 Jan', '13:10:00', '13:03:00', '2020-01-16 13:10:00', '2020-01-16 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(813, 52, 4, '2020-01-23', 'Thu 23 Jan', '13:10:00', '13:03:00', '2020-01-23 13:10:00', '2020-01-23 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(814, 52, 4, '2020-01-30', 'Thu 30 Jan', '13:10:00', '13:03:00', '2020-01-30 13:10:00', '2020-01-30 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(815, 52, 4, '2020-02-06', 'Thu 6 Feb', '13:10:00', '13:03:00', '2020-02-06 13:10:00', '2020-02-06 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(816, 52, 4, '2020-02-13', 'Thu 13 Feb', '13:10:00', '13:03:00', '2020-02-13 13:10:00', '2020-02-13 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(817, 52, 4, '2020-02-20', 'Thu 20 Feb', '13:10:00', '13:03:00', '2020-02-20 13:10:00', '2020-02-20 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(818, 52, 4, '2020-02-27', 'Thu 27 Feb', '13:10:00', '13:03:00', '2020-02-27 13:10:00', '2020-02-27 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(819, 52, 4, '2020-03-05', 'Thu 5 Mar', '13:10:00', '13:03:00', '2020-03-05 13:10:00', '2020-03-05 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(820, 52, 4, '2020-03-12', 'Thu 12 Mar', '13:10:00', '13:03:00', '2020-03-12 13:10:00', '2020-03-12 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(821, 52, 4, '2020-03-19', 'Thu 19 Mar', '13:10:00', '13:03:00', '2020-03-19 13:10:00', '2020-03-19 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(822, 52, 4, '2020-03-26', 'Thu 26 Mar', '13:10:00', '13:03:00', '2020-03-26 13:10:00', '2020-03-26 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(823, 52, 4, '2020-04-02', 'Thu 2 Apr', '13:10:00', '13:03:00', '2020-04-02 13:10:00', '2020-04-02 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(824, 52, 4, '2020-04-09', 'Thu 9 Apr', '13:10:00', '13:03:00', '2020-04-09 13:10:00', '2020-04-09 13:03:00', '2019-11-07 13:05:09', '2019-11-07 07:35:09'),
(825, 52, 4, '2020-04-16', 'Thu 16 Apr', '13:10:00', '13:03:00', '2020-04-16 13:10:00', '2020-04-16 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(826, 52, 4, '2020-04-23', 'Thu 23 Apr', '13:10:00', '13:03:00', '2020-04-23 13:10:00', '2020-04-23 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(827, 52, 4, '2020-04-30', 'Thu 30 Apr', '13:10:00', '13:03:00', '2020-04-30 13:10:00', '2020-04-30 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(828, 52, 4, '2020-05-07', 'Thu 7 May', '13:10:00', '13:03:00', '2020-05-07 13:10:00', '2020-05-07 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(829, 52, 4, '2020-05-14', 'Thu 14 May', '13:10:00', '13:03:00', '2020-05-14 13:10:00', '2020-05-14 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(830, 52, 4, '2020-05-21', 'Thu 21 May', '13:10:00', '13:03:00', '2020-05-21 13:10:00', '2020-05-21 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(831, 52, 4, '2020-05-28', 'Thu 28 May', '13:10:00', '13:03:00', '2020-05-28 13:10:00', '2020-05-28 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(832, 52, 4, '2020-06-04', 'Thu 4 Jun', '13:10:00', '13:03:00', '2020-06-04 13:10:00', '2020-06-04 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(833, 52, 4, '2020-06-11', 'Thu 11 Jun', '13:10:00', '13:03:00', '2020-06-11 13:10:00', '2020-06-11 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(834, 52, 4, '2020-06-18', 'Thu 18 Jun', '13:10:00', '13:03:00', '2020-06-18 13:10:00', '2020-06-18 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(835, 52, 4, '2020-06-25', 'Thu 25 Jun', '13:10:00', '13:03:00', '2020-06-25 13:10:00', '2020-06-25 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(836, 52, 4, '2020-07-02', 'Thu 2 Jul', '13:10:00', '13:03:00', '2020-07-02 13:10:00', '2020-07-02 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(837, 52, 4, '2020-07-09', 'Thu 9 Jul', '13:10:00', '13:03:00', '2020-07-09 13:10:00', '2020-07-09 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(838, 52, 4, '2020-07-16', 'Thu 16 Jul', '13:10:00', '13:03:00', '2020-07-16 13:10:00', '2020-07-16 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(839, 52, 4, '2020-07-23', 'Thu 23 Jul', '13:10:00', '13:03:00', '2020-07-23 13:10:00', '2020-07-23 13:03:00', '2019-11-07 13:05:10', '2019-11-07 07:35:10'),
(840, 52, 4, '2020-07-30', 'Thu 30 Jul', '13:10:00', '13:03:00', '2020-07-30 13:10:00', '2020-07-30 13:03:00', '2019-11-07 13:05:11', '2019-11-07 07:35:11'),
(841, 52, 4, '2020-08-06', 'Thu 6 Aug', '13:10:00', '13:03:00', '2020-08-06 13:10:00', '2020-08-06 13:03:00', '2019-11-07 13:05:11', '2019-11-07 07:35:11'),
(842, 52, 4, '2020-08-13', 'Thu 13 Aug', '13:10:00', '13:03:00', '2020-08-13 13:10:00', '2020-08-13 13:03:00', '2019-11-07 13:05:11', '2019-11-07 07:35:11'),
(843, 52, 4, '2020-08-20', 'Thu 20 Aug', '13:10:00', '13:03:00', '2020-08-20 13:10:00', '2020-08-20 13:03:00', '2019-11-07 13:05:11', '2019-11-07 07:35:11'),
(844, 52, 4, '2020-08-27', 'Thu 27 Aug', '13:10:00', '13:03:00', '2020-08-27 13:10:00', '2020-08-27 13:03:00', '2019-11-07 13:05:11', '2019-11-07 07:35:11'),
(845, 52, 4, '2020-09-03', 'Thu 3 Sep', '13:10:00', '13:03:00', '2020-09-03 13:10:00', '2020-09-03 13:03:00', '2019-11-07 13:05:11', '2019-11-07 07:35:11'),
(846, 52, 4, '2020-09-10', 'Thu 10 Sep', '13:10:00', '13:03:00', '2020-09-10 13:10:00', '2020-09-10 13:03:00', '2019-11-07 13:05:11', '2019-11-07 07:35:11'),
(847, 52, 4, '2020-09-17', 'Thu 17 Sep', '13:10:00', '13:03:00', '2020-09-17 13:10:00', '2020-09-17 13:03:00', '2019-11-07 13:05:11', '2019-11-07 07:35:11'),
(848, 52, 4, '2020-09-24', 'Thu 24 Sep', '13:10:00', '13:03:00', '2020-09-24 13:10:00', '2020-09-24 13:03:00', '2019-11-07 13:05:11', '2019-11-07 07:35:11'),
(849, 52, 4, '2020-10-01', 'Thu 1 Oct', '13:10:00', '13:03:00', '2020-10-01 13:10:00', '2020-10-01 13:03:00', '2019-11-07 13:05:11', '2019-11-07 07:35:11'),
(850, 53, 66, '2019-11-11', 'Mon 11 Nov', '15:32:00', '17:25:00', '2019-11-11 15:32:00', '2019-11-11 17:25:00', '2019-11-11 15:27:32', '2019-11-11 09:57:32'),
(851, 53, 66, '2019-12-11', 'Wed 11 Dec', '15:32:00', '17:25:00', '2019-12-11 15:32:00', '2019-12-11 17:25:00', '2019-11-11 15:27:32', '2019-11-11 09:57:32'),
(852, 53, 66, '2020-01-11', 'Sat 11 Jan', '15:32:00', '17:25:00', '2020-01-11 15:32:00', '2020-01-11 17:25:00', '2019-11-11 15:27:32', '2019-11-11 09:57:32'),
(853, 53, 66, '2020-02-11', 'Tue 11 Feb', '15:32:00', '17:25:00', '2020-02-11 15:32:00', '2020-02-11 17:25:00', '2019-11-11 15:27:32', '2019-11-11 09:57:32'),
(854, 53, 66, '2020-03-11', 'Wed 11 Mar', '15:32:00', '17:25:00', '2020-03-11 15:32:00', '2020-03-11 17:25:00', '2019-11-11 15:27:32', '2019-11-11 09:57:32'),
(855, 53, 66, '2020-04-11', 'Sat 11 Apr', '15:32:00', '17:25:00', '2020-04-11 15:32:00', '2020-04-11 17:25:00', '2019-11-11 15:27:32', '2019-11-11 09:57:32'),
(856, 53, 66, '2020-05-11', 'Mon 11 May', '15:32:00', '17:25:00', '2020-05-11 15:32:00', '2020-05-11 17:25:00', '2019-11-11 15:27:32', '2019-11-11 09:57:32'),
(857, 53, 66, '2020-06-11', 'Thu 11 Jun', '15:32:00', '17:25:00', '2020-06-11 15:32:00', '2020-06-11 17:25:00', '2019-11-11 15:27:32', '2019-11-11 09:57:32'),
(858, 53, 66, '2020-07-11', 'Sat 11 Jul', '15:32:00', '17:25:00', '2020-07-11 15:32:00', '2020-07-11 17:25:00', '2019-11-11 15:27:32', '2019-11-11 09:57:32'),
(859, 53, 66, '2020-08-11', 'Tue 11 Aug', '15:32:00', '17:25:00', '2020-08-11 15:32:00', '2020-08-11 17:25:00', '2019-11-11 15:27:32', '2019-11-11 09:57:32'),
(860, 53, 66, '2020-09-11', 'Fri 11 Sep', '15:32:00', '17:25:00', '2020-09-11 15:32:00', '2020-09-11 17:25:00', '2019-11-11 15:27:32', '2019-11-11 09:57:32'),
(861, 53, 66, '2020-10-11', 'Sun 11 Oct', '15:32:00', '17:25:00', '2020-10-11 15:32:00', '2020-10-11 17:25:00', '2019-11-11 15:27:32', '2019-11-11 09:57:32'),
(862, 54, 66, '2019-11-11', 'Mon 11 Nov', '15:40:00', '15:50:00', '2019-11-11 15:40:00', '2019-11-11 15:50:00', '2019-11-11 15:33:43', '2019-11-11 10:03:43'),
(863, 54, 66, '2019-11-18', 'Mon 18 Nov', '15:40:00', '15:50:00', '2019-11-18 15:40:00', '2019-11-18 15:50:00', '2019-11-11 15:33:43', '2019-11-11 10:03:43'),
(864, 54, 66, '2019-11-25', 'Mon 25 Nov', '15:40:00', '15:50:00', '2019-11-25 15:40:00', '2019-11-25 15:50:00', '2019-11-11 15:33:43', '2019-11-11 10:03:43'),
(865, 54, 66, '2019-12-02', 'Mon 2 Dec', '15:40:00', '15:50:00', '2019-12-02 15:40:00', '2019-12-02 15:50:00', '2019-11-11 15:33:43', '2019-11-11 10:03:43'),
(866, 54, 66, '2019-12-09', 'Mon 9 Dec', '15:40:00', '15:50:00', '2019-12-09 15:40:00', '2019-12-09 15:50:00', '2019-11-11 15:33:43', '2019-11-11 10:03:43'),
(867, 54, 66, '2019-12-16', 'Mon 16 Dec', '15:40:00', '15:50:00', '2019-12-16 15:40:00', '2019-12-16 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(868, 54, 66, '2019-12-23', 'Mon 23 Dec', '15:40:00', '15:50:00', '2019-12-23 15:40:00', '2019-12-23 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(869, 54, 66, '2019-12-30', 'Mon 30 Dec', '15:40:00', '15:50:00', '2019-12-30 15:40:00', '2019-12-30 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(870, 54, 66, '2020-01-06', 'Mon 6 Jan', '15:40:00', '15:50:00', '2020-01-06 15:40:00', '2020-01-06 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(871, 54, 66, '2020-01-13', 'Mon 13 Jan', '15:40:00', '15:50:00', '2020-01-13 15:40:00', '2020-01-13 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(872, 54, 66, '2020-01-20', 'Mon 20 Jan', '15:40:00', '15:50:00', '2020-01-20 15:40:00', '2020-01-20 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(873, 54, 66, '2020-01-27', 'Mon 27 Jan', '15:40:00', '15:50:00', '2020-01-27 15:40:00', '2020-01-27 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(874, 54, 66, '2020-02-03', 'Mon 3 Feb', '15:40:00', '15:50:00', '2020-02-03 15:40:00', '2020-02-03 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(875, 54, 66, '2020-02-10', 'Mon 10 Feb', '15:40:00', '15:50:00', '2020-02-10 15:40:00', '2020-02-10 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(876, 54, 66, '2020-02-17', 'Mon 17 Feb', '15:40:00', '15:50:00', '2020-02-17 15:40:00', '2020-02-17 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(877, 54, 66, '2020-02-24', 'Mon 24 Feb', '15:40:00', '15:50:00', '2020-02-24 15:40:00', '2020-02-24 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(878, 54, 66, '2020-03-02', 'Mon 2 Mar', '15:40:00', '15:50:00', '2020-03-02 15:40:00', '2020-03-02 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(879, 54, 66, '2020-03-09', 'Mon 9 Mar', '15:40:00', '15:50:00', '2020-03-09 15:40:00', '2020-03-09 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(880, 54, 66, '2020-03-16', 'Mon 16 Mar', '15:40:00', '15:50:00', '2020-03-16 15:40:00', '2020-03-16 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(881, 54, 66, '2020-03-23', 'Mon 23 Mar', '15:40:00', '15:50:00', '2020-03-23 15:40:00', '2020-03-23 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(882, 54, 66, '2020-03-30', 'Mon 30 Mar', '15:40:00', '15:50:00', '2020-03-30 15:40:00', '2020-03-30 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(883, 54, 66, '2020-04-06', 'Mon 6 Apr', '15:40:00', '15:50:00', '2020-04-06 15:40:00', '2020-04-06 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(884, 54, 66, '2020-04-13', 'Mon 13 Apr', '15:40:00', '15:50:00', '2020-04-13 15:40:00', '2020-04-13 15:50:00', '2019-11-11 15:33:44', '2019-11-11 10:03:44'),
(885, 54, 66, '2020-04-20', 'Mon 20 Apr', '15:40:00', '15:50:00', '2020-04-20 15:40:00', '2020-04-20 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(886, 54, 66, '2020-04-27', 'Mon 27 Apr', '15:40:00', '15:50:00', '2020-04-27 15:40:00', '2020-04-27 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(887, 54, 66, '2020-05-04', 'Mon 4 May', '15:40:00', '15:50:00', '2020-05-04 15:40:00', '2020-05-04 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(888, 54, 66, '2020-05-11', 'Mon 11 May', '15:40:00', '15:50:00', '2020-05-11 15:40:00', '2020-05-11 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(889, 54, 66, '2020-05-18', 'Mon 18 May', '15:40:00', '15:50:00', '2020-05-18 15:40:00', '2020-05-18 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(890, 54, 66, '2020-05-25', 'Mon 25 May', '15:40:00', '15:50:00', '2020-05-25 15:40:00', '2020-05-25 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(891, 54, 66, '2020-06-01', 'Mon 1 Jun', '15:40:00', '15:50:00', '2020-06-01 15:40:00', '2020-06-01 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(892, 54, 66, '2020-06-08', 'Mon 8 Jun', '15:40:00', '15:50:00', '2020-06-08 15:40:00', '2020-06-08 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(893, 54, 66, '2020-06-15', 'Mon 15 Jun', '15:40:00', '15:50:00', '2020-06-15 15:40:00', '2020-06-15 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(894, 54, 66, '2020-06-22', 'Mon 22 Jun', '15:40:00', '15:50:00', '2020-06-22 15:40:00', '2020-06-22 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(895, 54, 66, '2020-06-29', 'Mon 29 Jun', '15:40:00', '15:50:00', '2020-06-29 15:40:00', '2020-06-29 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(896, 54, 66, '2020-07-06', 'Mon 6 Jul', '15:40:00', '15:50:00', '2020-07-06 15:40:00', '2020-07-06 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(897, 54, 66, '2020-07-13', 'Mon 13 Jul', '15:40:00', '15:50:00', '2020-07-13 15:40:00', '2020-07-13 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(898, 54, 66, '2020-07-20', 'Mon 20 Jul', '15:40:00', '15:50:00', '2020-07-20 15:40:00', '2020-07-20 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(899, 54, 66, '2020-07-27', 'Mon 27 Jul', '15:40:00', '15:50:00', '2020-07-27 15:40:00', '2020-07-27 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(900, 54, 66, '2020-08-03', 'Mon 3 Aug', '15:40:00', '15:50:00', '2020-08-03 15:40:00', '2020-08-03 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(901, 54, 66, '2020-08-10', 'Mon 10 Aug', '15:40:00', '15:50:00', '2020-08-10 15:40:00', '2020-08-10 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(902, 54, 66, '2020-08-17', 'Mon 17 Aug', '15:40:00', '15:50:00', '2020-08-17 15:40:00', '2020-08-17 15:50:00', '2019-11-11 15:33:45', '2019-11-11 10:03:45'),
(903, 54, 66, '2020-08-24', 'Mon 24 Aug', '15:40:00', '15:50:00', '2020-08-24 15:40:00', '2020-08-24 15:50:00', '2019-11-11 15:33:46', '2019-11-11 10:03:46'),
(904, 54, 66, '2020-08-31', 'Mon 31 Aug', '15:40:00', '15:50:00', '2020-08-31 15:40:00', '2020-08-31 15:50:00', '2019-11-11 15:33:46', '2019-11-11 10:03:46'),
(905, 54, 66, '2020-09-07', 'Mon 7 Sep', '15:40:00', '15:50:00', '2020-09-07 15:40:00', '2020-09-07 15:50:00', '2019-11-11 15:33:46', '2019-11-11 10:03:46'),
(906, 54, 66, '2020-09-14', 'Mon 14 Sep', '15:40:00', '15:50:00', '2020-09-14 15:40:00', '2020-09-14 15:50:00', '2019-11-11 15:33:46', '2019-11-11 10:03:46'),
(907, 54, 66, '2020-09-21', 'Mon 21 Sep', '15:40:00', '15:50:00', '2020-09-21 15:40:00', '2020-09-21 15:50:00', '2019-11-11 15:33:46', '2019-11-11 10:03:46'),
(908, 54, 66, '2020-09-28', 'Mon 28 Sep', '15:40:00', '15:50:00', '2020-09-28 15:40:00', '2020-09-28 15:50:00', '2019-11-11 15:33:46', '2019-11-11 10:03:46'),
(909, 54, 66, '2020-10-05', 'Mon 5 Oct', '15:40:00', '15:50:00', '2020-10-05 15:40:00', '2020-10-05 15:50:00', '2019-11-11 15:33:46', '2019-11-11 10:03:46'),
(910, 55, 68, '2019-11-11', 'Mon 11 Nov', '18:00:00', '19:00:00', '2019-11-11 18:00:00', '2019-11-11 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(911, 55, 68, '2019-11-18', 'Mon 18 Nov', '18:00:00', '19:00:00', '2019-11-18 18:00:00', '2019-11-18 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(912, 55, 68, '2019-11-25', 'Mon 25 Nov', '18:00:00', '19:00:00', '2019-11-25 18:00:00', '2019-11-25 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(913, 55, 68, '2019-12-02', 'Mon 2 Dec', '18:00:00', '19:00:00', '2019-12-02 18:00:00', '2019-12-02 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(914, 55, 68, '2019-12-09', 'Mon 9 Dec', '18:00:00', '19:00:00', '2019-12-09 18:00:00', '2019-12-09 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(915, 55, 68, '2019-12-16', 'Mon 16 Dec', '18:00:00', '19:00:00', '2019-12-16 18:00:00', '2019-12-16 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(916, 55, 68, '2019-12-23', 'Mon 23 Dec', '18:00:00', '19:00:00', '2019-12-23 18:00:00', '2019-12-23 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(917, 55, 68, '2019-12-30', 'Mon 30 Dec', '18:00:00', '19:00:00', '2019-12-30 18:00:00', '2019-12-30 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(918, 55, 68, '2020-01-06', 'Mon 6 Jan', '18:00:00', '19:00:00', '2020-01-06 18:00:00', '2020-01-06 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(919, 55, 68, '2020-01-13', 'Mon 13 Jan', '18:00:00', '19:00:00', '2020-01-13 18:00:00', '2020-01-13 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(920, 55, 68, '2020-01-20', 'Mon 20 Jan', '18:00:00', '19:00:00', '2020-01-20 18:00:00', '2020-01-20 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(921, 55, 68, '2020-01-27', 'Mon 27 Jan', '18:00:00', '19:00:00', '2020-01-27 18:00:00', '2020-01-27 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(922, 55, 68, '2020-02-03', 'Mon 3 Feb', '18:00:00', '19:00:00', '2020-02-03 18:00:00', '2020-02-03 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(923, 55, 68, '2020-02-10', 'Mon 10 Feb', '18:00:00', '19:00:00', '2020-02-10 18:00:00', '2020-02-10 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(924, 55, 68, '2020-02-17', 'Mon 17 Feb', '18:00:00', '19:00:00', '2020-02-17 18:00:00', '2020-02-17 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(925, 55, 68, '2020-02-24', 'Mon 24 Feb', '18:00:00', '19:00:00', '2020-02-24 18:00:00', '2020-02-24 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(926, 55, 68, '2020-03-02', 'Mon 2 Mar', '18:00:00', '19:00:00', '2020-03-02 18:00:00', '2020-03-02 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(927, 55, 68, '2020-03-09', 'Mon 9 Mar', '18:00:00', '19:00:00', '2020-03-09 18:00:00', '2020-03-09 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(928, 55, 68, '2020-03-16', 'Mon 16 Mar', '18:00:00', '19:00:00', '2020-03-16 18:00:00', '2020-03-16 19:00:00', '2019-11-11 15:38:24', '2019-11-11 10:08:24'),
(929, 55, 68, '2020-03-23', 'Mon 23 Mar', '18:00:00', '19:00:00', '2020-03-23 18:00:00', '2020-03-23 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(930, 55, 68, '2020-03-30', 'Mon 30 Mar', '18:00:00', '19:00:00', '2020-03-30 18:00:00', '2020-03-30 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(931, 55, 68, '2020-04-06', 'Mon 6 Apr', '18:00:00', '19:00:00', '2020-04-06 18:00:00', '2020-04-06 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(932, 55, 68, '2020-04-13', 'Mon 13 Apr', '18:00:00', '19:00:00', '2020-04-13 18:00:00', '2020-04-13 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(933, 55, 68, '2020-04-20', 'Mon 20 Apr', '18:00:00', '19:00:00', '2020-04-20 18:00:00', '2020-04-20 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(934, 55, 68, '2020-04-27', 'Mon 27 Apr', '18:00:00', '19:00:00', '2020-04-27 18:00:00', '2020-04-27 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(935, 55, 68, '2020-05-04', 'Mon 4 May', '18:00:00', '19:00:00', '2020-05-04 18:00:00', '2020-05-04 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(936, 55, 68, '2020-05-11', 'Mon 11 May', '18:00:00', '19:00:00', '2020-05-11 18:00:00', '2020-05-11 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(937, 55, 68, '2020-05-18', 'Mon 18 May', '18:00:00', '19:00:00', '2020-05-18 18:00:00', '2020-05-18 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(938, 55, 68, '2020-05-25', 'Mon 25 May', '18:00:00', '19:00:00', '2020-05-25 18:00:00', '2020-05-25 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(939, 55, 68, '2020-06-01', 'Mon 1 Jun', '18:00:00', '19:00:00', '2020-06-01 18:00:00', '2020-06-01 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(940, 55, 68, '2020-06-08', 'Mon 8 Jun', '18:00:00', '19:00:00', '2020-06-08 18:00:00', '2020-06-08 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(941, 55, 68, '2020-06-15', 'Mon 15 Jun', '18:00:00', '19:00:00', '2020-06-15 18:00:00', '2020-06-15 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(942, 55, 68, '2020-06-22', 'Mon 22 Jun', '18:00:00', '19:00:00', '2020-06-22 18:00:00', '2020-06-22 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(943, 55, 68, '2020-06-29', 'Mon 29 Jun', '18:00:00', '19:00:00', '2020-06-29 18:00:00', '2020-06-29 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(944, 55, 68, '2020-07-06', 'Mon 6 Jul', '18:00:00', '19:00:00', '2020-07-06 18:00:00', '2020-07-06 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(945, 55, 68, '2020-07-13', 'Mon 13 Jul', '18:00:00', '19:00:00', '2020-07-13 18:00:00', '2020-07-13 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(946, 55, 68, '2020-07-20', 'Mon 20 Jul', '18:00:00', '19:00:00', '2020-07-20 18:00:00', '2020-07-20 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(947, 55, 68, '2020-07-27', 'Mon 27 Jul', '18:00:00', '19:00:00', '2020-07-27 18:00:00', '2020-07-27 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(948, 55, 68, '2020-08-03', 'Mon 3 Aug', '18:00:00', '19:00:00', '2020-08-03 18:00:00', '2020-08-03 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(949, 55, 68, '2020-08-10', 'Mon 10 Aug', '18:00:00', '19:00:00', '2020-08-10 18:00:00', '2020-08-10 19:00:00', '2019-11-11 15:38:25', '2019-11-11 10:08:25'),
(950, 55, 68, '2020-08-17', 'Mon 17 Aug', '18:00:00', '19:00:00', '2020-08-17 18:00:00', '2020-08-17 19:00:00', '2019-11-11 15:38:26', '2019-11-11 10:08:26'),
(951, 55, 68, '2020-08-24', 'Mon 24 Aug', '18:00:00', '19:00:00', '2020-08-24 18:00:00', '2020-08-24 19:00:00', '2019-11-11 15:38:26', '2019-11-11 10:08:26'),
(952, 55, 68, '2020-08-31', 'Mon 31 Aug', '18:00:00', '19:00:00', '2020-08-31 18:00:00', '2020-08-31 19:00:00', '2019-11-11 15:38:26', '2019-11-11 10:08:26'),
(953, 55, 68, '2020-09-07', 'Mon 7 Sep', '18:00:00', '19:00:00', '2020-09-07 18:00:00', '2020-09-07 19:00:00', '2019-11-11 15:38:26', '2019-11-11 10:08:26'),
(954, 55, 68, '2020-09-14', 'Mon 14 Sep', '18:00:00', '19:00:00', '2020-09-14 18:00:00', '2020-09-14 19:00:00', '2019-11-11 15:38:26', '2019-11-11 10:08:26'),
(955, 55, 68, '2020-09-21', 'Mon 21 Sep', '18:00:00', '19:00:00', '2020-09-21 18:00:00', '2020-09-21 19:00:00', '2019-11-11 15:38:26', '2019-11-11 10:08:26'),
(956, 55, 68, '2020-09-28', 'Mon 28 Sep', '18:00:00', '19:00:00', '2020-09-28 18:00:00', '2020-09-28 19:00:00', '2019-11-11 15:38:26', '2019-11-11 10:08:26'),
(957, 55, 68, '2020-10-05', 'Mon 5 Oct', '18:00:00', '19:00:00', '2020-10-05 18:00:00', '2020-10-05 19:00:00', '2019-11-11 15:38:26', '2019-11-11 10:08:26'),
(959, 57, 70, '2019-11-14', 'Thu 14 Nov', '10:47:00', '10:47:00', '2019-11-14 10:47:00', '2019-11-29 10:47:00', '2019-11-13 10:47:59', '2019-11-13 05:17:59'),
(960, 56, 69, '2019-11-14', 'Thu 14 Nov', '10:32:00', '10:32:00', '2019-11-14 10:32:00', '2019-11-15 10:32:00', '2019-11-13 10:57:14', '2019-11-13 05:27:14'),
(961, 56, 69, '2019-12-14', 'Sat 14 Dec', '10:32:00', '10:32:00', '2019-12-14 10:32:00', '2019-12-15 10:32:00', '2019-11-13 10:57:14', '2019-11-13 05:27:14'),
(962, 56, 69, '2020-01-14', 'Tue 14 Jan', '10:32:00', '10:32:00', '2020-01-14 10:32:00', '2020-01-15 10:32:00', '2019-11-13 10:57:14', '2019-11-13 05:27:14'),
(963, 56, 69, '2020-02-14', 'Fri 14 Feb', '10:32:00', '10:32:00', '2020-02-14 10:32:00', '2020-02-15 10:32:00', '2019-11-13 10:57:14', '2019-11-13 05:27:14'),
(964, 56, 69, '2020-03-14', 'Sat 14 Mar', '10:32:00', '10:32:00', '2020-03-14 10:32:00', '2020-03-15 10:32:00', '2019-11-13 10:57:14', '2019-11-13 05:27:14'),
(965, 56, 69, '2020-04-14', 'Tue 14 Apr', '10:32:00', '10:32:00', '2020-04-14 10:32:00', '2020-04-15 10:32:00', '2019-11-13 10:57:14', '2019-11-13 05:27:14'),
(966, 56, 69, '2020-05-14', 'Thu 14 May', '10:32:00', '10:32:00', '2020-05-14 10:32:00', '2020-05-15 10:32:00', '2019-11-13 10:57:14', '2019-11-13 05:27:14'),
(967, 56, 69, '2020-06-14', 'Sun 14 Jun', '10:32:00', '10:32:00', '2020-06-14 10:32:00', '2020-06-15 10:32:00', '2019-11-13 10:57:14', '2019-11-13 05:27:14'),
(968, 56, 69, '2020-07-14', 'Tue 14 Jul', '10:32:00', '10:32:00', '2020-07-14 10:32:00', '2020-07-15 10:32:00', '2019-11-13 10:57:15', '2019-11-13 05:27:15'),
(969, 56, 69, '2020-08-14', 'Fri 14 Aug', '10:32:00', '10:32:00', '2020-08-14 10:32:00', '2020-08-15 10:32:00', '2019-11-13 10:57:15', '2019-11-13 05:27:15'),
(970, 56, 69, '2020-09-14', 'Mon 14 Sep', '10:32:00', '10:32:00', '2020-09-14 10:32:00', '2020-09-15 10:32:00', '2019-11-13 10:57:15', '2019-11-13 05:27:15'),
(971, 56, 69, '2020-10-14', 'Wed 14 Oct', '10:32:00', '10:32:00', '2020-10-14 10:32:00', '2020-10-15 10:32:00', '2019-11-13 10:57:15', '2019-11-13 05:27:15'),
(972, 58, 69, '2019-11-14', 'Thu 14 Nov', '11:03:00', '12:03:00', '2019-11-14 11:03:00', '2019-11-14 12:03:00', '2019-11-13 11:04:00', '2019-11-13 05:34:00'),
(973, 58, 69, '2019-12-14', 'Sat 14 Dec', '11:03:00', '12:03:00', '2019-12-14 11:03:00', '2019-12-14 12:03:00', '2019-11-13 11:04:00', '2019-11-13 05:34:00'),
(974, 58, 69, '2020-01-14', 'Tue 14 Jan', '11:03:00', '12:03:00', '2020-01-14 11:03:00', '2020-01-14 12:03:00', '2019-11-13 11:04:00', '2019-11-13 05:34:00'),
(975, 58, 69, '2020-02-14', 'Fri 14 Feb', '11:03:00', '12:03:00', '2020-02-14 11:03:00', '2020-02-14 12:03:00', '2019-11-13 11:04:00', '2019-11-13 05:34:00'),
(976, 58, 69, '2020-03-14', 'Sat 14 Mar', '11:03:00', '12:03:00', '2020-03-14 11:03:00', '2020-03-14 12:03:00', '2019-11-13 11:04:00', '2019-11-13 05:34:00'),
(977, 58, 69, '2020-04-14', 'Tue 14 Apr', '11:03:00', '12:03:00', '2020-04-14 11:03:00', '2020-04-14 12:03:00', '2019-11-13 11:04:00', '2019-11-13 05:34:00'),
(978, 58, 69, '2020-05-14', 'Thu 14 May', '11:03:00', '12:03:00', '2020-05-14 11:03:00', '2020-05-14 12:03:00', '2019-11-13 11:04:00', '2019-11-13 05:34:00'),
(979, 58, 69, '2020-06-14', 'Sun 14 Jun', '11:03:00', '12:03:00', '2020-06-14 11:03:00', '2020-06-14 12:03:00', '2019-11-13 11:04:00', '2019-11-13 05:34:00'),
(980, 58, 69, '2020-07-14', 'Tue 14 Jul', '11:03:00', '12:03:00', '2020-07-14 11:03:00', '2020-07-14 12:03:00', '2019-11-13 11:04:00', '2019-11-13 05:34:00'),
(981, 58, 69, '2020-08-14', 'Fri 14 Aug', '11:03:00', '12:03:00', '2020-08-14 11:03:00', '2020-08-14 12:03:00', '2019-11-13 11:04:01', '2019-11-13 05:34:01'),
(982, 58, 69, '2020-09-14', 'Mon 14 Sep', '11:03:00', '12:03:00', '2020-09-14 11:03:00', '2020-09-14 12:03:00', '2019-11-13 11:04:01', '2019-11-13 05:34:01'),
(983, 58, 69, '2020-10-14', 'Wed 14 Oct', '11:03:00', '12:03:00', '2020-10-14 11:03:00', '2020-10-14 12:03:00', '2019-11-13 11:04:01', '2019-11-13 05:34:01'),
(984, 59, 71, '2019-11-14', 'Thu 14 Nov', '16:35:00', '16:35:00', '2019-11-14 16:35:00', '2019-11-16 16:35:00', '2019-11-13 16:36:14', '2019-11-13 11:06:14'),
(985, 59, 71, '2019-12-14', 'Sat 14 Dec', '16:35:00', '16:35:00', '2019-12-14 16:35:00', '2019-12-16 16:35:00', '2019-11-13 16:36:14', '2019-11-13 11:06:14'),
(986, 59, 71, '2020-01-14', 'Tue 14 Jan', '16:35:00', '16:35:00', '2020-01-14 16:35:00', '2020-01-16 16:35:00', '2019-11-13 16:36:14', '2019-11-13 11:06:14'),
(987, 59, 71, '2020-02-14', 'Fri 14 Feb', '16:35:00', '16:35:00', '2020-02-14 16:35:00', '2020-02-16 16:35:00', '2019-11-13 16:36:14', '2019-11-13 11:06:14'),
(988, 59, 71, '2020-03-14', 'Sat 14 Mar', '16:35:00', '16:35:00', '2020-03-14 16:35:00', '2020-03-16 16:35:00', '2019-11-13 16:36:14', '2019-11-13 11:06:14'),
(989, 59, 71, '2020-04-14', 'Tue 14 Apr', '16:35:00', '16:35:00', '2020-04-14 16:35:00', '2020-04-16 16:35:00', '2019-11-13 16:36:14', '2019-11-13 11:06:14'),
(990, 59, 71, '2020-05-14', 'Thu 14 May', '16:35:00', '16:35:00', '2020-05-14 16:35:00', '2020-05-16 16:35:00', '2019-11-13 16:36:14', '2019-11-13 11:06:14'),
(991, 59, 71, '2020-06-14', 'Sun 14 Jun', '16:35:00', '16:35:00', '2020-06-14 16:35:00', '2020-06-16 16:35:00', '2019-11-13 16:36:15', '2019-11-13 11:06:15'),
(992, 59, 71, '2020-07-14', 'Tue 14 Jul', '16:35:00', '16:35:00', '2020-07-14 16:35:00', '2020-07-16 16:35:00', '2019-11-13 16:36:15', '2019-11-13 11:06:15'),
(993, 59, 71, '2020-08-14', 'Fri 14 Aug', '16:35:00', '16:35:00', '2020-08-14 16:35:00', '2020-08-16 16:35:00', '2019-11-13 16:36:15', '2019-11-13 11:06:15'),
(994, 59, 71, '2020-09-14', 'Mon 14 Sep', '16:35:00', '16:35:00', '2020-09-14 16:35:00', '2020-09-16 16:35:00', '2019-11-13 16:36:15', '2019-11-13 11:06:15'),
(995, 59, 71, '2020-10-14', 'Wed 14 Oct', '16:35:00', '16:35:00', '2020-10-14 16:35:00', '2020-10-16 16:35:00', '2019-11-13 16:36:15', '2019-11-13 11:06:15'),
(996, 60, 70, '2019-11-14', 'Thu 14 Nov', '18:24:00', '18:24:00', '2019-11-14 18:24:00', '2019-11-15 18:24:00', '2019-11-13 18:25:01', '2019-11-13 12:55:01'),
(997, 61, 4, '2019-11-15', 'Fri 15 Nov', '13:20:00', '13:20:00', '2019-11-15 13:20:00', '2019-11-16 13:20:00', '2019-11-14 13:21:21', '2019-11-14 07:51:21'),
(998, 62, 74, '2019-11-14', 'Thu 14 Nov', '16:03:00', '06:55:00', '2019-11-14 16:03:00', '2019-11-15 06:55:00', '2019-11-14 15:55:55', '2019-11-14 10:25:55'),
(999, 62, 74, '2019-11-21', 'Thu 21 Nov', '16:03:00', '06:55:00', '2019-11-21 16:03:00', '2019-11-22 06:55:00', '2019-11-14 15:55:55', '2019-11-14 10:25:55'),
(1000, 62, 74, '2019-11-28', 'Thu 28 Nov', '16:03:00', '06:55:00', '2019-11-28 16:03:00', '2019-11-29 06:55:00', '2019-11-14 15:55:55', '2019-11-14 10:25:55'),
(1001, 62, 74, '2019-12-05', 'Thu 5 Dec', '16:03:00', '06:55:00', '2019-12-05 16:03:00', '2019-12-06 06:55:00', '2019-11-14 15:55:55', '2019-11-14 10:25:55'),
(1002, 62, 74, '2019-12-12', 'Thu 12 Dec', '16:03:00', '06:55:00', '2019-12-12 16:03:00', '2019-12-13 06:55:00', '2019-11-14 15:55:55', '2019-11-14 10:25:55'),
(1003, 62, 74, '2019-12-19', 'Thu 19 Dec', '16:03:00', '06:55:00', '2019-12-19 16:03:00', '2019-12-20 06:55:00', '2019-11-14 15:55:55', '2019-11-14 10:25:55'),
(1004, 62, 74, '2019-12-26', 'Thu 26 Dec', '16:03:00', '06:55:00', '2019-12-26 16:03:00', '2019-12-27 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1005, 62, 74, '2020-01-02', 'Thu 2 Jan', '16:03:00', '06:55:00', '2020-01-02 16:03:00', '2020-01-03 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1006, 62, 74, '2020-01-09', 'Thu 9 Jan', '16:03:00', '06:55:00', '2020-01-09 16:03:00', '2020-01-10 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1007, 62, 74, '2020-01-16', 'Thu 16 Jan', '16:03:00', '06:55:00', '2020-01-16 16:03:00', '2020-01-17 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1008, 62, 74, '2020-01-23', 'Thu 23 Jan', '16:03:00', '06:55:00', '2020-01-23 16:03:00', '2020-01-24 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1009, 62, 74, '2020-01-30', 'Thu 30 Jan', '16:03:00', '06:55:00', '2020-01-30 16:03:00', '2020-01-31 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1010, 62, 74, '2020-02-06', 'Thu 6 Feb', '16:03:00', '06:55:00', '2020-02-06 16:03:00', '2020-02-07 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1011, 62, 74, '2020-02-13', 'Thu 13 Feb', '16:03:00', '06:55:00', '2020-02-13 16:03:00', '2020-02-14 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1012, 62, 74, '2020-02-20', 'Thu 20 Feb', '16:03:00', '06:55:00', '2020-02-20 16:03:00', '2020-02-21 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1013, 62, 74, '2020-02-27', 'Thu 27 Feb', '16:03:00', '06:55:00', '2020-02-27 16:03:00', '2020-02-28 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1014, 62, 74, '2020-03-05', 'Thu 5 Mar', '16:03:00', '06:55:00', '2020-03-05 16:03:00', '2020-03-06 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1015, 62, 74, '2020-03-12', 'Thu 12 Mar', '16:03:00', '06:55:00', '2020-03-12 16:03:00', '2020-03-13 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1016, 62, 74, '2020-03-19', 'Thu 19 Mar', '16:03:00', '06:55:00', '2020-03-19 16:03:00', '2020-03-20 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1017, 62, 74, '2020-03-26', 'Thu 26 Mar', '16:03:00', '06:55:00', '2020-03-26 16:03:00', '2020-03-27 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1018, 62, 74, '2020-04-02', 'Thu 2 Apr', '16:03:00', '06:55:00', '2020-04-02 16:03:00', '2020-04-03 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1019, 62, 74, '2020-04-09', 'Thu 9 Apr', '16:03:00', '06:55:00', '2020-04-09 16:03:00', '2020-04-10 06:55:00', '2019-11-14 15:55:56', '2019-11-14 10:25:56'),
(1020, 62, 74, '2020-04-16', 'Thu 16 Apr', '16:03:00', '06:55:00', '2020-04-16 16:03:00', '2020-04-17 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1021, 62, 74, '2020-04-23', 'Thu 23 Apr', '16:03:00', '06:55:00', '2020-04-23 16:03:00', '2020-04-24 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1022, 62, 74, '2020-04-30', 'Thu 30 Apr', '16:03:00', '06:55:00', '2020-04-30 16:03:00', '2020-05-01 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1023, 62, 74, '2020-05-07', 'Thu 7 May', '16:03:00', '06:55:00', '2020-05-07 16:03:00', '2020-05-08 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1024, 62, 74, '2020-05-14', 'Thu 14 May', '16:03:00', '06:55:00', '2020-05-14 16:03:00', '2020-05-15 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1025, 62, 74, '2020-05-21', 'Thu 21 May', '16:03:00', '06:55:00', '2020-05-21 16:03:00', '2020-05-22 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1026, 62, 74, '2020-05-28', 'Thu 28 May', '16:03:00', '06:55:00', '2020-05-28 16:03:00', '2020-05-29 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1027, 62, 74, '2020-06-04', 'Thu 4 Jun', '16:03:00', '06:55:00', '2020-06-04 16:03:00', '2020-06-05 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1028, 62, 74, '2020-06-11', 'Thu 11 Jun', '16:03:00', '06:55:00', '2020-06-11 16:03:00', '2020-06-12 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1029, 62, 74, '2020-06-18', 'Thu 18 Jun', '16:03:00', '06:55:00', '2020-06-18 16:03:00', '2020-06-19 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1030, 62, 74, '2020-06-25', 'Thu 25 Jun', '16:03:00', '06:55:00', '2020-06-25 16:03:00', '2020-06-26 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1031, 62, 74, '2020-07-02', 'Thu 2 Jul', '16:03:00', '06:55:00', '2020-07-02 16:03:00', '2020-07-03 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1032, 62, 74, '2020-07-09', 'Thu 9 Jul', '16:03:00', '06:55:00', '2020-07-09 16:03:00', '2020-07-10 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1033, 62, 74, '2020-07-16', 'Thu 16 Jul', '16:03:00', '06:55:00', '2020-07-16 16:03:00', '2020-07-17 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1034, 62, 74, '2020-07-23', 'Thu 23 Jul', '16:03:00', '06:55:00', '2020-07-23 16:03:00', '2020-07-24 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1035, 62, 74, '2020-07-30', 'Thu 30 Jul', '16:03:00', '06:55:00', '2020-07-30 16:03:00', '2020-07-31 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1036, 62, 74, '2020-08-06', 'Thu 6 Aug', '16:03:00', '06:55:00', '2020-08-06 16:03:00', '2020-08-07 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1037, 62, 74, '2020-08-13', 'Thu 13 Aug', '16:03:00', '06:55:00', '2020-08-13 16:03:00', '2020-08-14 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1038, 62, 74, '2020-08-20', 'Thu 20 Aug', '16:03:00', '06:55:00', '2020-08-20 16:03:00', '2020-08-21 06:55:00', '2019-11-14 15:55:57', '2019-11-14 10:25:57'),
(1039, 62, 74, '2020-08-27', 'Thu 27 Aug', '16:03:00', '06:55:00', '2020-08-27 16:03:00', '2020-08-28 06:55:00', '2019-11-14 15:55:58', '2019-11-14 10:25:58'),
(1040, 62, 74, '2020-09-03', 'Thu 3 Sep', '16:03:00', '06:55:00', '2020-09-03 16:03:00', '2020-09-04 06:55:00', '2019-11-14 15:55:58', '2019-11-14 10:25:58'),
(1041, 62, 74, '2020-09-10', 'Thu 10 Sep', '16:03:00', '06:55:00', '2020-09-10 16:03:00', '2020-09-11 06:55:00', '2019-11-14 15:55:58', '2019-11-14 10:25:58'),
(1042, 62, 74, '2020-09-17', 'Thu 17 Sep', '16:03:00', '06:55:00', '2020-09-17 16:03:00', '2020-09-18 06:55:00', '2019-11-14 15:55:58', '2019-11-14 10:25:58'),
(1043, 62, 74, '2020-09-24', 'Thu 24 Sep', '16:03:00', '06:55:00', '2020-09-24 16:03:00', '2020-09-25 06:55:00', '2019-11-14 15:55:58', '2019-11-14 10:25:58'),
(1044, 62, 74, '2020-10-01', 'Thu 1 Oct', '16:03:00', '06:55:00', '2020-10-01 16:03:00', '2020-10-02 06:55:00', '2019-11-14 15:55:58', '2019-11-14 10:25:58'),
(1045, 62, 74, '2020-10-08', 'Thu 8 Oct', '16:03:00', '06:55:00', '2020-10-08 16:03:00', '2020-10-09 06:55:00', '2019-11-14 15:55:58', '2019-11-14 10:25:58'),
(1046, 63, 4, '2019-11-30', 'Sat 30 Nov', '05:39:00', '17:39:00', '2019-11-30 05:39:00', '2019-12-27 17:39:00', '2019-11-29 18:40:42', '2019-11-29 13:10:42'),
(1047, 22, 4, '2019-02-27', 'Wed 27 Feb', '21:00:00', '22:00:00', '2019-02-27 21:00:00', '2019-02-27 22:00:00', '2019-12-03 13:30:12', '2019-12-03 08:00:12'),
(1048, 47, 4, '2019-02-27', 'Wed 27 Feb', '21:00:00', '22:00:00', '2019-02-27 21:00:00', '2019-02-27 22:00:00', '2019-12-03 13:31:25', '2019-12-03 08:01:25'),
(1049, 64, 4, '2019-12-08', 'Sun 8 Dec', '12:49:00', '12:49:00', '2019-12-08 12:49:00', '2019-12-09 12:49:00', '2019-12-05 12:54:02', '2019-12-06 12:49:38'),
(1050, 65, 4, '2019-12-06', 'Fri 6 Dec', '16:37:00', '16:37:00', '2019-12-06 16:37:00', '2019-12-07 16:37:00', '2019-12-05 16:38:53', '2019-12-05 11:08:53'),
(1051, 66, 41, '2019-12-07', 'Sat 7 Dec', '11:43:00', '11:43:00', '2019-12-07 11:43:00', '2019-12-09 11:43:00', '2019-12-06 11:44:27', '2019-12-06 06:14:27'),
(1052, 67, 77, '2019-12-06', 'Fri 6 Dec', '18:30:00', '19:30:00', '2019-12-06 18:30:00', '2019-12-06 19:30:00', '2019-12-06 17:33:52', '2019-12-06 12:03:52'),
(1053, 68, 77, '2019-12-06', 'Fri 6 Dec', '17:41:44', '17:41:44', '2019-12-06 17:41:44', '2019-12-06 17:41:44', '2019-12-06 17:43:18', '2019-12-06 12:13:18'),
(1054, 68, 77, '2019-12-20', 'Fri 20 Dec', '17:41:44', '17:41:44', '2019-12-20 17:41:44', '2019-12-20 17:41:44', '2019-12-06 17:43:18', '2019-12-06 12:13:18'),
(1055, 68, 77, '2020-01-03', 'Fri 3 Jan', '17:41:44', '17:41:44', '2020-01-03 17:41:44', '2020-01-03 17:41:44', '2019-12-06 17:43:18', '2019-12-06 12:13:18'),
(1056, 68, 77, '2020-01-17', 'Fri 17 Jan', '17:41:44', '17:41:44', '2020-01-17 17:41:44', '2020-01-17 17:41:44', '2019-12-06 17:43:18', '2019-12-06 12:13:18'),
(1057, 68, 77, '2020-01-31', 'Fri 31 Jan', '17:41:44', '17:41:44', '2020-01-31 17:41:44', '2020-01-31 17:41:44', '2019-12-06 17:43:18', '2019-12-06 12:13:18'),
(1058, 68, 77, '2020-02-14', 'Fri 14 Feb', '17:41:44', '17:41:44', '2020-02-14 17:41:44', '2020-02-14 17:41:44', '2019-12-06 17:43:18', '2019-12-06 12:13:18');
INSERT INTO `event_schedule` (`id`, `event_id`, `user_id`, `event_date`, `event_date2`, `event_time`, `end_time`, `event_start_date_time`, `event_end_date_time`, `created_at`, `updated_at`) VALUES
(1059, 68, 77, '2020-02-28', 'Fri 28 Feb', '17:41:44', '17:41:44', '2020-02-28 17:41:44', '2020-02-28 17:41:44', '2019-12-06 17:43:18', '2019-12-06 12:13:18'),
(1060, 68, 77, '2020-03-13', 'Fri 13 Mar', '17:41:44', '17:41:44', '2020-03-13 17:41:44', '2020-03-13 17:41:44', '2019-12-06 17:43:18', '2019-12-06 12:13:18'),
(1061, 68, 77, '2020-03-27', 'Fri 27 Mar', '17:41:44', '17:41:44', '2020-03-27 17:41:44', '2020-03-27 17:41:44', '2019-12-06 17:43:18', '2019-12-06 12:13:18'),
(1062, 68, 77, '2020-04-10', 'Fri 10 Apr', '17:41:44', '17:41:44', '2020-04-10 17:41:44', '2020-04-10 17:41:44', '2019-12-06 17:43:18', '2019-12-06 12:13:18'),
(1063, 68, 77, '2020-04-24', 'Fri 24 Apr', '17:41:44', '17:41:44', '2020-04-24 17:41:44', '2020-04-24 17:41:44', '2019-12-06 17:43:18', '2019-12-06 12:13:18'),
(1064, 68, 77, '2020-05-08', 'Fri 8 May', '17:41:44', '17:41:44', '2020-05-08 17:41:44', '2020-05-08 17:41:44', '2019-12-06 17:43:18', '2019-12-06 12:13:18'),
(1065, 68, 77, '2020-05-22', 'Fri 22 May', '17:41:44', '17:41:44', '2020-05-22 17:41:44', '2020-05-22 17:41:44', '2019-12-06 17:43:19', '2019-12-06 12:13:19'),
(1066, 68, 77, '2020-06-05', 'Fri 5 Jun', '17:41:44', '17:41:44', '2020-06-05 17:41:44', '2020-06-05 17:41:44', '2019-12-06 17:43:19', '2019-12-06 12:13:19'),
(1067, 68, 77, '2020-06-19', 'Fri 19 Jun', '17:41:44', '17:41:44', '2020-06-19 17:41:44', '2020-06-19 17:41:44', '2019-12-06 17:43:19', '2019-12-06 12:13:19'),
(1068, 68, 77, '2020-07-03', 'Fri 3 Jul', '17:41:44', '17:41:44', '2020-07-03 17:41:44', '2020-07-03 17:41:44', '2019-12-06 17:43:19', '2019-12-06 12:13:19'),
(1069, 68, 77, '2020-07-17', 'Fri 17 Jul', '17:41:44', '17:41:44', '2020-07-17 17:41:44', '2020-07-17 17:41:44', '2019-12-06 17:43:19', '2019-12-06 12:13:19'),
(1070, 68, 77, '2020-07-31', 'Fri 31 Jul', '17:41:44', '17:41:44', '2020-07-31 17:41:44', '2020-07-31 17:41:44', '2019-12-06 17:43:19', '2019-12-06 12:13:19'),
(1071, 68, 77, '2020-08-14', 'Fri 14 Aug', '17:41:44', '17:41:44', '2020-08-14 17:41:44', '2020-08-14 17:41:44', '2019-12-06 17:43:19', '2019-12-06 12:13:19'),
(1072, 68, 77, '2020-08-28', 'Fri 28 Aug', '17:41:44', '17:41:44', '2020-08-28 17:41:44', '2020-08-28 17:41:44', '2019-12-06 17:43:19', '2019-12-06 12:13:19'),
(1073, 68, 77, '2020-09-11', 'Fri 11 Sep', '17:41:44', '17:41:44', '2020-09-11 17:41:44', '2020-09-11 17:41:44', '2019-12-06 17:43:19', '2019-12-06 12:13:19'),
(1074, 68, 77, '2020-09-25', 'Fri 25 Sep', '17:41:44', '17:41:44', '2020-09-25 17:41:44', '2020-09-25 17:41:44', '2019-12-06 17:43:19', '2019-12-06 12:13:19'),
(1075, 68, 77, '2020-10-09', 'Fri 9 Oct', '17:41:44', '17:41:44', '2020-10-09 17:41:44', '2020-10-09 17:41:44', '2019-12-06 17:43:19', '2019-12-06 12:13:19'),
(1076, 68, 77, '2020-10-23', 'Fri 23 Oct', '17:41:44', '17:41:44', '2020-10-23 17:41:44', '2020-10-23 17:41:44', '2019-12-06 17:43:19', '2019-12-06 12:13:19'),
(1077, 69, 78, '2019-12-06', 'Fri 6 Dec', '18:44:21', '18:44:21', '2019-12-06 18:44:21', '2019-12-08 18:44:21', '2019-12-06 18:45:09', '2019-12-06 13:15:09'),
(1078, 70, 77, '2019-12-06', 'Fri 6 Dec', '18:44:15', '19:44:15', '2019-12-06 18:44:15', '2019-12-06 19:44:15', '2019-12-06 18:45:49', '2019-12-06 13:15:49'),
(1079, 71, 78, '2019-12-06', 'Fri 6 Dec', '19:04:49', '19:04:49', '2019-12-06 19:04:49', '2019-12-08 19:04:49', '2019-12-06 19:05:41', '2019-12-06 13:35:41'),
(1080, 72, 78, '2019-12-06', 'Fri 6 Dec', '19:06:09', '19:06:09', '2019-12-06 19:06:09', '2019-12-07 19:06:09', '2019-12-06 19:06:50', '2019-12-06 13:36:50'),
(1081, 73, 41, '2019-12-07', 'Sat 7 Dec', '19:33:27', '19:33:27', '2019-12-07 19:33:27', '2019-12-08 19:33:27', '2019-12-06 19:34:56', '2019-12-06 14:04:56'),
(1082, 74, 81, '2019-12-06', 'Fri 6 Dec', '21:00:00', '22:00:00', '2019-12-06 21:00:00', '2019-12-06 22:00:00', '2019-12-06 20:43:29', '2019-12-06 15:13:29'),
(1083, 75, 81, '2019-12-06', 'Fri 6 Dec', '21:30:00', '22:30:00', '2019-12-06 21:30:00', '2019-12-06 22:30:00', '2019-12-06 21:03:18', '2019-12-06 15:33:18'),
(1084, 76, 80, '2019-12-06', 'Fri 6 Dec', '21:10:00', '23:10:00', '2019-12-06 21:10:00', '2019-12-06 23:10:00', '2019-12-06 21:10:14', '2019-12-06 15:40:14'),
(1085, 77, 81, '2019-12-06', 'Fri 6 Dec', '22:16:00', '22:16:00', '2019-12-06 22:16:00', '2019-12-07 22:16:00', '2019-12-06 21:17:07', '2019-12-06 15:47:07'),
(1086, 78, 80, '2019-12-06', 'Fri 6 Dec', '21:31:28', '22:31:28', '2019-12-06 21:31:28', '2019-12-07 22:31:28', '2019-12-06 21:32:07', '2019-12-06 16:02:07'),
(1087, 79, 86, '2019-12-07', 'Sat 7 Dec', '16:10:16', '16:10:16', '2019-12-07 16:10:16', '2019-12-09 16:10:16', '2019-12-07 16:11:31', '2019-12-07 10:41:31'),
(1088, 80, 85, '2019-12-07', 'Sat 7 Dec', '17:20:00', '18:20:00', '2019-12-07 17:20:00', '2019-12-07 18:20:00', '2019-12-07 16:14:16', '2019-12-07 10:44:16'),
(1089, 81, 86, '2019-12-09', 'Mon 9 Dec', '16:20:00', '16:20:00', '2019-12-09 16:20:00', '2019-12-10 16:20:00', '2019-12-07 16:21:17', '2019-12-07 10:51:17'),
(1090, 82, 88, '2019-12-07', 'Sat 7 Dec', '16:57:20', '18:57:20', '2019-12-07 16:57:20', '2019-12-07 18:57:20', '2019-12-07 16:58:49', '2019-12-07 11:28:49'),
(1091, 83, 87, '2019-12-07', 'Sat 7 Dec', '19:06:00', '19:06:00', '2019-12-07 19:06:00', '2019-12-08 19:06:00', '2019-12-07 17:07:15', '2019-12-07 11:37:15'),
(1092, 84, 89, '2019-12-12', 'Thu 12 Dec', '13:37:00', '14:20:00', '2019-12-12 13:37:00', '2019-12-12 14:20:00', '2019-12-09 13:37:27', '2019-12-09 08:07:27'),
(1093, 84, 89, '2019-12-19', 'Thu 19 Dec', '13:37:00', '14:20:00', '2019-12-19 13:37:00', '2019-12-19 14:20:00', '2019-12-09 13:37:27', '2019-12-09 08:07:27'),
(1094, 84, 89, '2019-12-26', 'Thu 26 Dec', '13:37:00', '14:20:00', '2019-12-26 13:37:00', '2019-12-26 14:20:00', '2019-12-09 13:37:27', '2019-12-09 08:07:27'),
(1095, 84, 89, '2020-01-02', 'Thu 2 Jan', '13:37:00', '14:20:00', '2020-01-02 13:37:00', '2020-01-02 14:20:00', '2019-12-09 13:37:27', '2019-12-09 08:07:27'),
(1096, 84, 89, '2020-01-09', 'Thu 9 Jan', '13:37:00', '14:20:00', '2020-01-09 13:37:00', '2020-01-09 14:20:00', '2019-12-09 13:37:28', '2019-12-09 08:07:28'),
(1097, 84, 89, '2020-01-16', 'Thu 16 Jan', '13:37:00', '14:20:00', '2020-01-16 13:37:00', '2020-01-16 14:20:00', '2019-12-09 13:37:28', '2019-12-09 08:07:28'),
(1098, 84, 89, '2020-01-23', 'Thu 23 Jan', '13:37:00', '14:20:00', '2020-01-23 13:37:00', '2020-01-23 14:20:00', '2019-12-09 13:37:28', '2019-12-09 08:07:28'),
(1099, 84, 89, '2020-01-30', 'Thu 30 Jan', '13:37:00', '14:20:00', '2020-01-30 13:37:00', '2020-01-30 14:20:00', '2019-12-09 13:37:28', '2019-12-09 08:07:28'),
(1100, 84, 89, '2020-02-06', 'Thu 6 Feb', '13:37:00', '14:20:00', '2020-02-06 13:37:00', '2020-02-06 14:20:00', '2019-12-09 13:37:28', '2019-12-09 08:07:28'),
(1101, 84, 89, '2020-02-13', 'Thu 13 Feb', '13:37:00', '14:20:00', '2020-02-13 13:37:00', '2020-02-13 14:20:00', '2019-12-09 13:37:28', '2019-12-09 08:07:28'),
(1102, 84, 89, '2020-02-20', 'Thu 20 Feb', '13:37:00', '14:20:00', '2020-02-20 13:37:00', '2020-02-20 14:20:00', '2019-12-09 13:37:28', '2019-12-09 08:07:28'),
(1103, 84, 89, '2020-02-27', 'Thu 27 Feb', '13:37:00', '14:20:00', '2020-02-27 13:37:00', '2020-02-27 14:20:00', '2019-12-09 13:37:28', '2019-12-09 08:07:28'),
(1104, 84, 89, '2020-03-05', 'Thu 5 Mar', '13:37:00', '14:20:00', '2020-03-05 13:37:00', '2020-03-05 14:20:00', '2019-12-09 13:37:28', '2019-12-09 08:07:28'),
(1105, 84, 89, '2020-03-12', 'Thu 12 Mar', '13:37:00', '14:20:00', '2020-03-12 13:37:00', '2020-03-12 14:20:00', '2019-12-09 13:37:28', '2019-12-09 08:07:28'),
(1106, 84, 89, '2020-03-19', 'Thu 19 Mar', '13:37:00', '14:20:00', '2020-03-19 13:37:00', '2020-03-19 14:20:00', '2019-12-09 13:37:29', '2019-12-09 08:07:29'),
(1107, 84, 89, '2020-03-26', 'Thu 26 Mar', '13:37:00', '14:20:00', '2020-03-26 13:37:00', '2020-03-26 14:20:00', '2019-12-09 13:37:29', '2019-12-09 08:07:29'),
(1108, 84, 89, '2020-04-02', 'Thu 2 Apr', '13:37:00', '14:20:00', '2020-04-02 13:37:00', '2020-04-02 14:20:00', '2019-12-09 13:37:29', '2019-12-09 08:07:29'),
(1109, 84, 89, '2020-04-09', 'Thu 9 Apr', '13:37:00', '14:20:00', '2020-04-09 13:37:00', '2020-04-09 14:20:00', '2019-12-09 13:37:29', '2019-12-09 08:07:29'),
(1110, 84, 89, '2020-04-16', 'Thu 16 Apr', '13:37:00', '14:20:00', '2020-04-16 13:37:00', '2020-04-16 14:20:00', '2019-12-09 13:37:29', '2019-12-09 08:07:29'),
(1111, 84, 89, '2020-04-23', 'Thu 23 Apr', '13:37:00', '14:20:00', '2020-04-23 13:37:00', '2020-04-23 14:20:00', '2019-12-09 13:37:29', '2019-12-09 08:07:29'),
(1112, 84, 89, '2020-04-30', 'Thu 30 Apr', '13:37:00', '14:20:00', '2020-04-30 13:37:00', '2020-04-30 14:20:00', '2019-12-09 13:37:29', '2019-12-09 08:07:29'),
(1113, 84, 89, '2020-05-07', 'Thu 7 May', '13:37:00', '14:20:00', '2020-05-07 13:37:00', '2020-05-07 14:20:00', '2019-12-09 13:37:29', '2019-12-09 08:07:29'),
(1114, 84, 89, '2020-05-14', 'Thu 14 May', '13:37:00', '14:20:00', '2020-05-14 13:37:00', '2020-05-14 14:20:00', '2019-12-09 13:37:29', '2019-12-09 08:07:29'),
(1115, 84, 89, '2020-05-21', 'Thu 21 May', '13:37:00', '14:20:00', '2020-05-21 13:37:00', '2020-05-21 14:20:00', '2019-12-09 13:37:30', '2019-12-09 08:07:30'),
(1116, 84, 89, '2020-05-28', 'Thu 28 May', '13:37:00', '14:20:00', '2020-05-28 13:37:00', '2020-05-28 14:20:00', '2019-12-09 13:37:30', '2019-12-09 08:07:30'),
(1117, 84, 89, '2020-06-04', 'Thu 4 Jun', '13:37:00', '14:20:00', '2020-06-04 13:37:00', '2020-06-04 14:20:00', '2019-12-09 13:37:30', '2019-12-09 08:07:30'),
(1118, 84, 89, '2020-06-11', 'Thu 11 Jun', '13:37:00', '14:20:00', '2020-06-11 13:37:00', '2020-06-11 14:20:00', '2019-12-09 13:37:30', '2019-12-09 08:07:30'),
(1119, 84, 89, '2020-06-18', 'Thu 18 Jun', '13:37:00', '14:20:00', '2020-06-18 13:37:00', '2020-06-18 14:20:00', '2019-12-09 13:37:30', '2019-12-09 08:07:30'),
(1120, 84, 89, '2020-06-25', 'Thu 25 Jun', '13:37:00', '14:20:00', '2020-06-25 13:37:00', '2020-06-25 14:20:00', '2019-12-09 13:37:30', '2019-12-09 08:07:30'),
(1121, 84, 89, '2020-07-02', 'Thu 2 Jul', '13:37:00', '14:20:00', '2020-07-02 13:37:00', '2020-07-02 14:20:00', '2019-12-09 13:37:30', '2019-12-09 08:07:30'),
(1122, 84, 89, '2020-07-09', 'Thu 9 Jul', '13:37:00', '14:20:00', '2020-07-09 13:37:00', '2020-07-09 14:20:00', '2019-12-09 13:37:30', '2019-12-09 08:07:30'),
(1123, 84, 89, '2020-07-16', 'Thu 16 Jul', '13:37:00', '14:20:00', '2020-07-16 13:37:00', '2020-07-16 14:20:00', '2019-12-09 13:37:30', '2019-12-09 08:07:30'),
(1124, 84, 89, '2020-07-23', 'Thu 23 Jul', '13:37:00', '14:20:00', '2020-07-23 13:37:00', '2020-07-23 14:20:00', '2019-12-09 13:37:31', '2019-12-09 08:07:31'),
(1125, 84, 89, '2020-07-30', 'Thu 30 Jul', '13:37:00', '14:20:00', '2020-07-30 13:37:00', '2020-07-30 14:20:00', '2019-12-09 13:37:31', '2019-12-09 08:07:31'),
(1126, 84, 89, '2020-08-06', 'Thu 6 Aug', '13:37:00', '14:20:00', '2020-08-06 13:37:00', '2020-08-06 14:20:00', '2019-12-09 13:37:31', '2019-12-09 08:07:31'),
(1127, 84, 89, '2020-08-13', 'Thu 13 Aug', '13:37:00', '14:20:00', '2020-08-13 13:37:00', '2020-08-13 14:20:00', '2019-12-09 13:37:31', '2019-12-09 08:07:31'),
(1128, 84, 89, '2020-08-20', 'Thu 20 Aug', '13:37:00', '14:20:00', '2020-08-20 13:37:00', '2020-08-20 14:20:00', '2019-12-09 13:37:31', '2019-12-09 08:07:31'),
(1129, 84, 89, '2020-08-27', 'Thu 27 Aug', '13:37:00', '14:20:00', '2020-08-27 13:37:00', '2020-08-27 14:20:00', '2019-12-09 13:37:31', '2019-12-09 08:07:31'),
(1130, 84, 89, '2020-09-03', 'Thu 3 Sep', '13:37:00', '14:20:00', '2020-09-03 13:37:00', '2020-09-03 14:20:00', '2019-12-09 13:37:31', '2019-12-09 08:07:31'),
(1131, 84, 89, '2020-09-10', 'Thu 10 Sep', '13:37:00', '14:20:00', '2020-09-10 13:37:00', '2020-09-10 14:20:00', '2019-12-09 13:37:31', '2019-12-09 08:07:31'),
(1132, 84, 89, '2020-09-17', 'Thu 17 Sep', '13:37:00', '14:20:00', '2020-09-17 13:37:00', '2020-09-17 14:20:00', '2019-12-09 13:37:31', '2019-12-09 08:07:31'),
(1133, 84, 89, '2020-09-24', 'Thu 24 Sep', '13:37:00', '14:20:00', '2020-09-24 13:37:00', '2020-09-24 14:20:00', '2019-12-09 13:37:31', '2019-12-09 08:07:31'),
(1134, 84, 89, '2020-10-01', 'Thu 1 Oct', '13:37:00', '14:20:00', '2020-10-01 13:37:00', '2020-10-01 14:20:00', '2019-12-09 13:37:31', '2019-12-09 08:07:31'),
(1135, 84, 89, '2020-10-08', 'Thu 8 Oct', '13:37:00', '14:20:00', '2020-10-08 13:37:00', '2020-10-08 14:20:00', '2019-12-09 13:37:31', '2019-12-09 08:07:31'),
(1136, 84, 89, '2020-10-15', 'Thu 15 Oct', '13:37:00', '14:20:00', '2020-10-15 13:37:00', '2020-10-15 14:20:00', '2019-12-09 13:37:32', '2019-12-09 08:07:32'),
(1137, 84, 89, '2020-10-22', 'Thu 22 Oct', '13:37:00', '14:20:00', '2020-10-22 13:37:00', '2020-10-22 14:20:00', '2019-12-09 13:37:32', '2019-12-09 08:07:32'),
(1138, 84, 89, '2020-10-29', 'Thu 29 Oct', '13:37:00', '14:20:00', '2020-10-29 13:37:00', '2020-10-29 14:20:00', '2019-12-09 13:37:32', '2019-12-09 08:07:32'),
(1139, 84, 89, '2020-11-05', 'Thu 5 Nov', '13:37:00', '14:20:00', '2020-11-05 13:37:00', '2020-11-05 14:20:00', '2019-12-09 13:37:32', '2019-12-09 08:07:32'),
(1140, 85, 90, '2019-12-09', 'Mon 9 Dec', '15:29:00', '18:25:00', '2019-12-09 15:29:00', '2019-12-09 18:25:00', '2019-12-09 15:22:39', '2019-12-09 09:52:39'),
(1141, 85, 90, '2019-12-16', 'Mon 16 Dec', '15:29:00', '18:25:00', '2019-12-16 15:29:00', '2019-12-16 18:25:00', '2019-12-09 15:22:39', '2019-12-09 09:52:39'),
(1142, 85, 90, '2019-12-23', 'Mon 23 Dec', '15:29:00', '18:25:00', '2019-12-23 15:29:00', '2019-12-23 18:25:00', '2019-12-09 15:22:39', '2019-12-09 09:52:39'),
(1143, 85, 90, '2019-12-30', 'Mon 30 Dec', '15:29:00', '18:25:00', '2019-12-30 15:29:00', '2019-12-30 18:25:00', '2019-12-09 15:22:39', '2019-12-09 09:52:39'),
(1144, 85, 90, '2020-01-06', 'Mon 6 Jan', '15:29:00', '18:25:00', '2020-01-06 15:29:00', '2020-01-06 18:25:00', '2019-12-09 15:22:39', '2019-12-09 09:52:39'),
(1145, 85, 90, '2020-01-13', 'Mon 13 Jan', '15:29:00', '18:25:00', '2020-01-13 15:29:00', '2020-01-13 18:25:00', '2019-12-09 15:22:39', '2019-12-09 09:52:39'),
(1146, 85, 90, '2020-01-20', 'Mon 20 Jan', '15:29:00', '18:25:00', '2020-01-20 15:29:00', '2020-01-20 18:25:00', '2019-12-09 15:22:39', '2019-12-09 09:52:39'),
(1147, 85, 90, '2020-01-27', 'Mon 27 Jan', '15:29:00', '18:25:00', '2020-01-27 15:29:00', '2020-01-27 18:25:00', '2019-12-09 15:22:39', '2019-12-09 09:52:39'),
(1148, 85, 90, '2020-02-03', 'Mon 3 Feb', '15:29:00', '18:25:00', '2020-02-03 15:29:00', '2020-02-03 18:25:00', '2019-12-09 15:22:39', '2019-12-09 09:52:39'),
(1149, 85, 90, '2020-02-10', 'Mon 10 Feb', '15:29:00', '18:25:00', '2020-02-10 15:29:00', '2020-02-10 18:25:00', '2019-12-09 15:22:39', '2019-12-09 09:52:39'),
(1150, 85, 90, '2020-02-17', 'Mon 17 Feb', '15:29:00', '18:25:00', '2020-02-17 15:29:00', '2020-02-17 18:25:00', '2019-12-09 15:22:39', '2019-12-09 09:52:39'),
(1151, 85, 90, '2020-02-24', 'Mon 24 Feb', '15:29:00', '18:25:00', '2020-02-24 15:29:00', '2020-02-24 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1152, 85, 90, '2020-03-02', 'Mon 2 Mar', '15:29:00', '18:25:00', '2020-03-02 15:29:00', '2020-03-02 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1153, 85, 90, '2020-03-09', 'Mon 9 Mar', '15:29:00', '18:25:00', '2020-03-09 15:29:00', '2020-03-09 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1154, 85, 90, '2020-03-16', 'Mon 16 Mar', '15:29:00', '18:25:00', '2020-03-16 15:29:00', '2020-03-16 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1155, 85, 90, '2020-03-23', 'Mon 23 Mar', '15:29:00', '18:25:00', '2020-03-23 15:29:00', '2020-03-23 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1156, 85, 90, '2020-03-30', 'Mon 30 Mar', '15:29:00', '18:25:00', '2020-03-30 15:29:00', '2020-03-30 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1157, 85, 90, '2020-04-06', 'Mon 6 Apr', '15:29:00', '18:25:00', '2020-04-06 15:29:00', '2020-04-06 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1158, 85, 90, '2020-04-13', 'Mon 13 Apr', '15:29:00', '18:25:00', '2020-04-13 15:29:00', '2020-04-13 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1159, 85, 90, '2020-04-20', 'Mon 20 Apr', '15:29:00', '18:25:00', '2020-04-20 15:29:00', '2020-04-20 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1160, 85, 90, '2020-04-27', 'Mon 27 Apr', '15:29:00', '18:25:00', '2020-04-27 15:29:00', '2020-04-27 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1161, 85, 90, '2020-05-04', 'Mon 4 May', '15:29:00', '18:25:00', '2020-05-04 15:29:00', '2020-05-04 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1162, 85, 90, '2020-05-11', 'Mon 11 May', '15:29:00', '18:25:00', '2020-05-11 15:29:00', '2020-05-11 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1163, 85, 90, '2020-05-18', 'Mon 18 May', '15:29:00', '18:25:00', '2020-05-18 15:29:00', '2020-05-18 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1164, 85, 90, '2020-05-25', 'Mon 25 May', '15:29:00', '18:25:00', '2020-05-25 15:29:00', '2020-05-25 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1165, 85, 90, '2020-06-01', 'Mon 1 Jun', '15:29:00', '18:25:00', '2020-06-01 15:29:00', '2020-06-01 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1166, 85, 90, '2020-06-08', 'Mon 8 Jun', '15:29:00', '18:25:00', '2020-06-08 15:29:00', '2020-06-08 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1167, 85, 90, '2020-06-15', 'Mon 15 Jun', '15:29:00', '18:25:00', '2020-06-15 15:29:00', '2020-06-15 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1168, 85, 90, '2020-06-22', 'Mon 22 Jun', '15:29:00', '18:25:00', '2020-06-22 15:29:00', '2020-06-22 18:25:00', '2019-12-09 15:22:40', '2019-12-09 09:52:40'),
(1169, 85, 90, '2020-06-29', 'Mon 29 Jun', '15:29:00', '18:25:00', '2020-06-29 15:29:00', '2020-06-29 18:25:00', '2019-12-09 15:22:41', '2019-12-09 09:52:41'),
(1170, 85, 90, '2020-07-06', 'Mon 6 Jul', '15:29:00', '18:25:00', '2020-07-06 15:29:00', '2020-07-06 18:25:00', '2019-12-09 15:22:41', '2019-12-09 09:52:41'),
(1171, 85, 90, '2020-07-13', 'Mon 13 Jul', '15:29:00', '18:25:00', '2020-07-13 15:29:00', '2020-07-13 18:25:00', '2019-12-09 15:22:41', '2019-12-09 09:52:41'),
(1172, 85, 90, '2020-07-20', 'Mon 20 Jul', '15:29:00', '18:25:00', '2020-07-20 15:29:00', '2020-07-20 18:25:00', '2019-12-09 15:22:41', '2019-12-09 09:52:41'),
(1173, 85, 90, '2020-07-27', 'Mon 27 Jul', '15:29:00', '18:25:00', '2020-07-27 15:29:00', '2020-07-27 18:25:00', '2019-12-09 15:22:41', '2019-12-09 09:52:41'),
(1174, 85, 90, '2020-08-03', 'Mon 3 Aug', '15:29:00', '18:25:00', '2020-08-03 15:29:00', '2020-08-03 18:25:00', '2019-12-09 15:22:41', '2019-12-09 09:52:41'),
(1175, 85, 90, '2020-08-10', 'Mon 10 Aug', '15:29:00', '18:25:00', '2020-08-10 15:29:00', '2020-08-10 18:25:00', '2019-12-09 15:22:41', '2019-12-09 09:52:41'),
(1176, 85, 90, '2020-08-17', 'Mon 17 Aug', '15:29:00', '18:25:00', '2020-08-17 15:29:00', '2020-08-17 18:25:00', '2019-12-09 15:22:41', '2019-12-09 09:52:41'),
(1177, 85, 90, '2020-08-24', 'Mon 24 Aug', '15:29:00', '18:25:00', '2020-08-24 15:29:00', '2020-08-24 18:25:00', '2019-12-09 15:22:41', '2019-12-09 09:52:41'),
(1178, 85, 90, '2020-08-31', 'Mon 31 Aug', '15:29:00', '18:25:00', '2020-08-31 15:29:00', '2020-08-31 18:25:00', '2019-12-09 15:22:42', '2019-12-09 09:52:42'),
(1179, 85, 90, '2020-09-07', 'Mon 7 Sep', '15:29:00', '18:25:00', '2020-09-07 15:29:00', '2020-09-07 18:25:00', '2019-12-09 15:22:42', '2019-12-09 09:52:42'),
(1180, 85, 90, '2020-09-14', 'Mon 14 Sep', '15:29:00', '18:25:00', '2020-09-14 15:29:00', '2020-09-14 18:25:00', '2019-12-09 15:22:42', '2019-12-09 09:52:42'),
(1181, 85, 90, '2020-09-21', 'Mon 21 Sep', '15:29:00', '18:25:00', '2020-09-21 15:29:00', '2020-09-21 18:25:00', '2019-12-09 15:22:42', '2019-12-09 09:52:42'),
(1182, 85, 90, '2020-09-28', 'Mon 28 Sep', '15:29:00', '18:25:00', '2020-09-28 15:29:00', '2020-09-28 18:25:00', '2019-12-09 15:22:42', '2019-12-09 09:52:42'),
(1183, 85, 90, '2020-10-05', 'Mon 5 Oct', '15:29:00', '18:25:00', '2020-10-05 15:29:00', '2020-10-05 18:25:00', '2019-12-09 15:22:42', '2019-12-09 09:52:42'),
(1184, 85, 90, '2020-10-12', 'Mon 12 Oct', '15:29:00', '18:25:00', '2020-10-12 15:29:00', '2020-10-12 18:25:00', '2019-12-09 15:22:42', '2019-12-09 09:52:42'),
(1185, 85, 90, '2020-10-19', 'Mon 19 Oct', '15:29:00', '18:25:00', '2020-10-19 15:29:00', '2020-10-19 18:25:00', '2019-12-09 15:22:42', '2019-12-09 09:52:42'),
(1186, 85, 90, '2020-10-26', 'Mon 26 Oct', '15:29:00', '18:25:00', '2020-10-26 15:29:00', '2020-10-26 18:25:00', '2019-12-09 15:22:42', '2019-12-09 09:52:42'),
(1187, 85, 90, '2020-11-02', 'Mon 2 Nov', '15:29:00', '18:25:00', '2020-11-02 15:29:00', '2020-11-02 18:25:00', '2019-12-09 15:22:42', '2019-12-09 09:52:42'),
(1188, 86, 41, '2019-12-10', 'Tue 10 Dec', '17:57:00', '17:57:00', '2019-12-10 17:57:00', '2019-12-11 17:57:00', '2019-12-09 17:57:58', '2019-12-09 12:27:58');
-- --------------------------------------------------------
--
-- Table structure for table `event_sub_admins`
--
CREATE TABLE `event_sub_admins` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `event_views`
--
CREATE TABLE `event_views` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`sub_event_id` int(11) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `favourite_events`
--
CREATE TABLE `favourite_events` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`sub_event_id` int(11) NOT NULL,
`is_favorite` int(11) NOT NULL DEFAULT '1' COMMENT '1=>fav,2=>unfav ',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `favourite_events`
--
INSERT INTO `favourite_events` (`id`, `user_id`, `event_id`, `sub_event_id`, `is_favorite`, `created_at`, `updated_at`) VALUES
(1, 3, 3, 50, 1, '2019-09-09 07:23:34', '2019-09-09 07:23:34'),
(3, 7, 11, 266, 1, '2019-09-09 10:47:27', '2019-09-09 10:47:27'),
(5, 9, 15, 270, 1, '2019-09-10 04:46:21', '2019-09-10 04:46:21'),
(25, 2, 10, 255, 1, '2019-10-04 06:47:27', '2019-10-04 06:47:27'),
(48, 2, 24, 351, 1, '2019-10-04 09:21:27', '2019-10-04 09:21:27'),
(49, 19, 24, 351, 1, '2019-10-04 09:23:59', '2019-10-04 09:23:59'),
(52, 2, 7, 150, 1, '2019-10-04 09:39:39', '2019-10-04 09:39:39'),
(57, 2, 21, 279, 1, '2019-10-04 09:44:03', '2019-10-04 09:44:03'),
(61, 2, 22, 302, 1, '2019-10-04 10:09:21', '2019-10-04 10:09:21'),
(72, 21, 28, 402, 1, '2019-10-04 11:36:00', '2019-10-04 11:36:00'),
(76, 21, 24, 351, 1, '2019-10-04 11:40:10', '2019-10-04 11:40:10'),
(77, 31, 22, 302, 1, '2019-10-04 14:13:36', '2019-10-04 14:13:36'),
(79, 34, 22, 302, 1, '2019-10-04 14:24:35', '2019-10-04 14:24:35'),
(80, 34, 24, 351, 1, '2019-10-04 14:24:50', '2019-10-04 14:24:50'),
(81, 34, 25, 352, 1, '2019-10-04 14:24:52', '2019-10-04 14:24:52'),
(82, 43, 32, 406, 1, '2019-10-30 14:27:49', '2019-10-30 14:27:49'),
(83, 48, 35, 457, 1, '2019-11-04 05:56:17', '2019-11-04 05:56:17'),
(88, 48, 9, 215, 1, '2019-11-04 05:56:37', '2019-11-04 05:56:37'),
(92, 48, 37, 505, 1, '2019-11-04 06:10:38', '2019-11-04 06:10:38'),
(94, 51, 37, 505, 1, '2019-11-04 06:16:13', '2019-11-04 06:16:13'),
(100, 47, 10, 256, 1, '2019-11-04 06:29:45', '2019-11-04 06:29:45'),
(107, 54, 42, 604, 1, '2019-11-05 05:29:13', '2019-11-05 05:29:13'),
(111, 2, 5, 114, 1, '2019-11-05 06:27:48', '2019-11-05 06:27:48'),
(112, 2, 9, 214, 1, '2019-11-05 06:27:58', '2019-11-05 06:27:58'),
(145, 58, 39, 601, 1, '2019-11-05 09:06:31', '2019-11-05 09:06:31'),
(147, 58, 21, 281, 1, '2019-11-05 09:12:16', '2019-11-05 09:12:16'),
(148, 58, 40, 602, 1, '2019-11-05 09:12:36', '2019-11-05 09:12:36'),
(151, 65, 47, 609, 1, '2019-11-05 09:34:11', '2019-11-05 09:34:11'),
(160, 58, 47, 609, 1, '2019-11-05 09:42:29', '2019-11-05 09:42:29'),
(161, 63, 48, 658, 1, '2019-11-05 09:47:24', '2019-11-05 09:47:24'),
(165, 66, 53, 850, 1, '2019-11-11 09:58:21', '2019-11-11 09:58:21'),
(166, 70, 52, 803, 1, '2019-11-13 05:02:54', '2019-11-13 05:02:54'),
(167, 70, 22, 308, 1, '2019-11-13 05:02:56', '2019-11-13 05:02:56'),
(168, 70, 47, 610, 1, '2019-11-13 05:41:54', '2019-11-13 05:41:54'),
(169, 78, 66, 1051, 1, '2019-12-06 12:51:32', '2019-12-06 12:51:32'),
(170, 78, 67, 1052, 1, '2019-12-06 12:51:46', '2019-12-06 12:51:46'),
(171, 78, 64, 1049, 1, '2019-12-06 12:51:51', '2019-12-06 12:51:51'),
(172, 78, 21, 283, 1, '2019-12-06 13:17:21', '2019-12-06 13:17:21'),
(173, 80, 74, 1082, 1, '2019-12-06 15:15:41', '2019-12-06 15:15:41'),
(174, 82, 78, 1086, 1, '2019-12-06 16:02:20', '2019-12-06 16:02:20'),
(175, 80, 55, 916, 1, '2019-12-06 16:03:56', '2019-12-06 16:03:56'),
(176, 86, 80, 1088, 1, '2019-12-07 10:53:57', '2019-12-07 10:53:57'),
(177, 87, 82, 1090, 1, '2019-12-07 11:29:34', '2019-12-07 11:29:34'),
(178, 87, 63, 1046, 1, '2019-12-07 11:31:52', '2019-12-07 11:31:52'),
(179, 78, 80, 1088, 1, '2019-12-07 11:40:50', '2019-12-07 11:40:50'),
(180, 90, 84, 1092, 1, '2019-12-09 09:02:24', '2019-12-09 09:02:24'),
(181, 12, 63, 1046, 1, '2019-12-09 09:48:09', '2019-12-09 09:48:09');
-- --------------------------------------------------------
--
-- Table structure for table `friends`
--
CREATE TABLE `friends` (
`id` int(11) NOT NULL,
`sender_id` int(11) NOT NULL,
`receiver_id` int(11) NOT NULL,
`request_status` enum('1','2','3','4') COLLATE utf8_unicode_ci NOT NULL DEFAULT '2' COMMENT '1=Accepted,2=Pending,3=Declined 4=blocked',
`timestamp` double NOT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `friends`
--
INSERT INTO `friends` (`id`, `sender_id`, `receiver_id`, `request_status`, `timestamp`, `updated_at`) VALUES
(2, 5, 2, '2', 1568014207200, '2019-09-09 07:30:07'),
(5, 9, 10, '2', 1568091863209, '2019-09-10 05:04:23'),
(6, 12, 9, '1', 1568092378106, '2019-09-09 23:43:07'),
(7, 18, 2, '2', 1570175586599, '2019-10-04 07:53:06'),
(8, 21, 24, '1', 1570188425270, '2019-10-04 05:57:13'),
(9, 31, 24, '1', 1570198524803, '2019-10-04 08:48:03'),
(10, 31, 34, '1', 1570198961061, '2019-10-04 08:52:48'),
(11, 43, 44, '4', 1572443134797, '2019-10-30 13:46:44'),
(12, 43, 47, '1', 1572445632752, '2019-10-30 14:27:39'),
(14, 47, 48, '1', 1572848279338, '2019-11-04 00:48:16'),
(15, 2, 3, '4', 1572853635254, '2019-11-05 03:59:59'),
(16, 2, 7, '1', 1572853642631, '2019-11-04 07:55:15'),
(19, 58, 54, '1', 1572930945980, '2019-11-04 23:47:37'),
(20, 59, 60, '1', 1572939965223, '2019-11-05 02:18:01'),
(21, 58, 63, '1', 1572945618724, '2019-11-05 03:54:33'),
(22, 62, 63, '1', 1572945725000, '2019-11-05 03:52:09'),
(23, 2, 58, '1', 1572946152332, '2019-11-05 03:59:16'),
(24, 5, 3, '2', 1573108602467, '2019-11-07 06:36:42'),
(25, 66, 67, '1', 1573465923398, '2019-11-11 10:17:26'),
(26, 70, 62, '1', 1573622007786, '2019-11-13 05:40:20'),
(27, 72, 11, '2', 1573648672765, '2019-11-13 12:37:52'),
(28, 70, 72, '1', 1573649544351, '2019-11-13 12:53:52'),
(29, 70, 5, '1', 1573724156201, '2019-11-14 09:36:10'),
(30, 74, 75, '1', 1573726878378, '2019-11-14 10:23:04'),
(32, 78, 79, '1', 1575637224110, '2019-12-06 13:00:50'),
(33, 80, 78, '1', 1575645666899, '2019-12-06 15:21:12'),
(34, 80, 82, '1', 1575648051679, '2019-12-06 16:01:12'),
(35, 86, 78, '1', 1575715639433, '2019-12-07 10:48:09'),
(36, 87, 78, '1', 1575718443888, '2019-12-07 11:34:09'),
(37, 12, 90, '1', 1575884867835, '2019-12-09 09:48:06');
-- --------------------------------------------------------
--
-- Table structure for table `guests`
--
CREATE TABLE `guests` (
`id` int(11) NOT NULL,
`guest_list_name_id` int(11) NOT NULL,
`full_name` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`organisation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `guests`
--
INSERT INTO `guests` (`id`, `guest_list_name_id`, `full_name`, `email`, `organisation`, `created_at`, `updated_at`) VALUES
(1, 1, 'Maahi', '<EMAIL>', NULL, '2019-09-10 05:13:05', '2019-09-10 05:13:05'),
(2, 2, 'john', '<EMAIL>', 'Deftsoft', '2019-12-02 05:03:16', '2019-12-02 05:03:16'),
(3, 2, 'john', '<EMAIL>', 'Deftsoft', '2019-12-02 05:03:26', '2019-12-02 05:03:26'),
(4, 2, 'john', '<EMAIL>', 'deftsoft', '2019-12-02 05:05:06', '2019-12-02 05:05:06'),
(5, 3, 'Jennyy', '<EMAIL>', '', '2019-12-05 10:28:47', '2019-12-05 10:28:47'),
(6, 4, 'Gust1', '<EMAIL>', 'Test', '2019-12-06 06:48:01', '2019-12-06 06:48:01'),
(7, 4, 'Guest2', '<EMAIL>', 'TEst', '2019-12-06 06:48:08', '2019-12-06 06:48:08'),
(8, 5, 'Bhart', '<EMAIL>', '', '2019-12-06 13:24:56', '2019-12-06 13:24:56'),
(9, 5, 'Heo', '<EMAIL>', '', '2019-12-06 13:26:41', '2019-12-06 13:26:41'),
(11, 6, 'Guest 2', '<EMAIL>', '', '2019-12-06 14:18:00', '2019-12-06 14:18:00'),
(12, 6, 'Guest 3', '<EMAIL>', '', '2019-12-06 14:18:57', '2019-12-06 14:18:57'),
(13, 1, '<NAME>', '<EMAIL>', 'fdddg', '2019-12-06 14:33:46', '2019-12-06 14:33:46'),
(14, 1, '<NAME>', '<EMAIL>', 'fdddg', '2019-12-06 14:44:37', '2019-12-06 14:44:37'),
(15, 1, '<NAME>', '<EMAIL>', 'fdddg', '2019-12-06 14:44:38', '2019-12-06 14:44:38'),
(16, 6, 'Guest 5', '<EMAIL>', '', '2019-12-06 14:45:34', '2019-12-06 14:45:34'),
(17, 6, 'Guest 6', '<EMAIL>', '', '2019-12-06 14:45:34', '2019-12-06 14:45:34'),
(18, 8, 'Jo', '<EMAIL>', 'Mmu', '2019-12-09 09:17:02', '2019-12-09 09:17:02');
-- --------------------------------------------------------
--
-- Table structure for table `guest_list_name`
--
CREATE TABLE `guest_list_name` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`sub_event_id` int(11) NOT NULL,
`guest_list_name` varchar(255) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `guest_list_name`
--
INSERT INTO `guest_list_name` (`id`, `user_id`, `event_id`, `sub_event_id`, `guest_list_name`, `created_at`, `updated_at`) VALUES
(1, 13, 17, 273, 'My', '2019-09-10 05:12:58', '2019-09-10 05:12:58'),
(2, 4, 2, 2, 'VIP', '2019-12-02 05:03:16', '2019-12-02 05:03:16'),
(3, 4, 64, 1049, 'Vip', '2019-12-05 10:28:47', '2019-12-05 10:28:47'),
(4, 41, 66, 1051, 'List 1', '2019-12-06 06:48:01', '2019-12-06 06:48:01'),
(5, 77, 68, 1053, 'Vjv', '2019-12-06 13:24:56', '2019-12-06 13:24:56'),
(6, 41, 73, 1081, 'List 1', '2019-12-06 14:16:50', '2019-12-06 14:16:50'),
(7, 81, 74, 1082, 'Guest1', '2019-12-06 15:28:26', '2019-12-06 15:28:26'),
(8, 89, 84, 1092, 'Logic', '2019-12-09 09:17:02', '2019-12-09 09:17:02');
-- --------------------------------------------------------
--
-- Table structure for table `id_proofs`
--
CREATE TABLE `id_proofs` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `id_proofs`
--
INSERT INTO `id_proofs` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'Voter ID', '2018-03-23 06:03:42', '0000-00-00 00:00:00'),
(2, 'Pan Card', '2018-03-23 06:04:02', '0000-00-00 00:00:00'),
(3, 'Driving licence', '2018-03-23 06:04:15', '0000-00-00 00:00:00'),
(4, 'Student ID card', '2018-03-23 06:04:57', '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `invitations`
--
CREATE TABLE `invitations` (
`id` bigint(20) NOT NULL,
`sender_id` int(11) NOT NULL,
`receiver_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`sub_event_id` int(11) NOT NULL DEFAULT '0',
`request_status` enum('1','2','3') COLLATE utf8_unicode_ci NOT NULL DEFAULT '2' COMMENT '1=Accepted,2=Pending,3=Declined',
`timestamp` double NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `invitations`
--
INSERT INTO `invitations` (`id`, `sender_id`, `receiver_id`, `event_id`, `sub_event_id`, `request_status`, `timestamp`, `created_at`, `updated_at`) VALUES
(1, 0, 2, 1, 0, '1', 1568012412236, '2019-09-09 12:30:12', '2019-09-09 07:00:12'),
(2, 0, 4, 2, 0, '1', 1568013330644, '2019-09-09 12:45:30', '2019-09-09 07:15:30'),
(3, 0, 3, 3, 0, '1', 1568013800188, '2019-09-09 12:53:20', '2019-09-09 07:23:20'),
(4, 0, 4, 4, 0, '1', 1568014055532, '2019-09-09 12:57:35', '2019-09-09 07:27:35'),
(5, 0, 4, 5, 0, '1', 1568014280114, '2019-09-09 01:01:20', '2019-09-09 07:31:20'),
(6, 0, 4, 6, 0, '1', 1568014416198, '2019-09-09 01:03:36', '2019-09-09 07:33:36'),
(7, 0, 3, 7, 0, '1', 1568015395697, '2019-09-09 01:19:55', '2019-09-09 07:49:55'),
(8, 0, 5, 8, 0, '1', 1568015549835, '2019-09-09 01:22:29', '2019-09-09 07:52:29'),
(9, 0, 4, 9, 0, '1', 1568019424814, '2019-09-09 02:27:04', '2019-09-09 08:57:04'),
(10, 0, 2, 10, 0, '1', 1568019684166, '2019-09-09 02:31:24', '2019-09-09 09:01:24'),
(11, 0, 7, 11, 0, '1', 1568025991402, '2019-09-09 04:16:31', '2019-09-09 10:46:31'),
(12, 0, 7, 12, 0, '1', 1568037903800, '2019-09-09 07:35:03', '2019-09-09 14:05:03'),
(13, 0, 8, 13, 0, '1', 1568038488861, '2019-09-09 07:44:48', '2019-09-09 14:14:48'),
(14, 9, 10, 14, 0, '1', 1568090638293, '2019-09-10 10:13:58', '2019-09-10 04:43:58'),
(15, 0, 9, 14, 0, '1', 1568090638414, '2019-09-10 10:13:58', '2019-09-10 04:43:58'),
(16, 9, 10, 14, 269, '1', 1568090638767, '2019-09-10 10:13:58', '2019-09-10 04:51:12'),
(17, 10, 9, 15, 0, '1', 1568090657869, '2019-09-10 10:14:17', '2019-09-10 04:44:17'),
(18, 0, 10, 15, 0, '1', 1568090657923, '2019-09-10 10:14:17', '2019-09-10 04:44:17'),
(19, 10, 2, 15, 270, '2', 1568090658182, '2019-09-10 10:14:18', '2019-09-30 09:10:12'),
(20, 10, 9, 16, 0, '1', 1568090794961, '2019-09-10 10:16:34', '2019-09-10 04:46:34'),
(21, 0, 10, 16, 0, '1', 1568090795015, '2019-09-10 10:16:35', '2019-09-10 04:46:35'),
(22, 10, 9, 16, 271, '1', 1568090795190, '2019-09-10 10:16:35', '2019-09-10 04:51:18'),
(23, 0, 13, 17, 0, '1', 1568092137464, '2019-09-10 10:38:57', '2019-09-10 05:08:57'),
(24, 0, 2, 18, 0, '1', 1568095847506, '2019-09-10 11:40:47', '2019-09-10 06:10:47'),
(25, 15, 14, 19, 0, '1', 1568097595614, '2019-09-10 12:09:55', '2019-09-10 06:39:55'),
(26, 0, 15, 19, 0, '1', 1568097595754, '2019-09-10 12:09:55', '2019-09-10 06:39:55'),
(27, 15, 14, 19, 275, '1', 1568097596370, '2019-09-10 12:09:56', '2019-09-10 06:43:11'),
(28, 0, 16, 20, 0, '1', 1568098381062, '2019-09-10 12:23:01', '2019-09-10 06:53:01'),
(29, 0, 5, 21, 0, '1', 1568965361259, '2019-09-20 01:12:41', '2019-09-20 07:42:41'),
(30, 0, 2, 22, 0, '1', 1570164650173, '2019-10-04 10:20:50', '2019-10-04 04:50:50'),
(31, 0, 4, 23, 0, '1', 1570172172891, '2019-10-04 12:26:12', '2019-10-04 06:56:12'),
(32, 0, 2, 24, 0, '1', 1570174944309, '2019-10-04 01:12:24', '2019-10-04 07:42:24'),
(33, 0, 18, 25, 0, '1', 1570175467317, '2019-10-04 01:21:07', '2019-10-04 07:51:07'),
(34, 0, 20, 26, 0, '1', 1570181195119, '2019-10-04 02:56:35', '2019-10-04 09:26:35'),
(35, 21, 24, 27, 0, '1', 1570188607109, '2019-10-04 05:00:07', '2019-10-04 11:30:07'),
(36, 0, 21, 27, 0, '1', 1570188607186, '2019-10-04 05:00:07', '2019-10-04 11:30:07'),
(37, 21, 24, 27, 401, '1', 1570188607414, '2019-10-04 05:00:07', '2019-10-04 11:31:46'),
(38, 0, 25, 28, 0, '1', 1570188922619, '2019-10-04 05:05:22', '2019-10-04 11:35:22'),
(39, 0, 25, 29, 0, '1', 1570189379148, '2019-10-04 05:12:59', '2019-10-04 11:42:59'),
(40, 31, 24, 30, 0, '1', 1570199008851, '2019-10-04 07:53:28', '2019-10-04 14:23:28'),
(41, 31, 34, 30, 0, '1', 1570199008907, '2019-10-04 07:53:28', '2019-10-04 14:23:28'),
(42, 0, 31, 30, 0, '1', 1570199008973, '2019-10-04 07:53:28', '2019-10-04 14:23:28'),
(43, 31, 24, 30, 404, '2', 1570199009155, '2019-10-04 07:53:29', '2019-10-04 14:23:29'),
(44, 31, 34, 30, 404, '1', 1570199009208, '2019-10-04 07:53:29', '2019-10-04 14:26:01'),
(45, 0, 35, 31, 0, '1', 1570199528710, '2019-10-04 08:02:08', '2019-10-04 14:32:08'),
(46, 0, 42, 32, 0, '1', 1572442620594, '2019-10-30 07:07:00', '2019-10-30 13:37:00'),
(47, 0, 47, 33, 0, '1', 1572445375652, '2019-10-30 07:52:55', '2019-10-30 14:22:55'),
(48, 0, 46, 34, 0, '1', 1572445407104, '2019-10-30 07:53:27', '2019-10-30 14:23:27'),
(49, 0, 46, 35, 0, '1', 1572445483424, '2019-10-30 07:54:43', '2019-10-30 14:24:43'),
(50, 0, 49, 36, 0, '1', 1572846438599, '2019-11-04 11:17:18', '2019-11-04 05:47:18'),
(51, 0, 50, 37, 0, '1', 1572847260592, '2019-11-04 11:31:00', '2019-11-04 06:01:00'),
(52, 47, 43, 38, 0, '1', 1572848164896, '2019-11-04 11:46:04', '2019-11-04 06:16:04'),
(53, 47, 48, 38, 0, '1', 1572848164963, '2019-11-04 11:46:04', '2019-11-04 06:16:04'),
(54, 0, 47, 38, 0, '1', 1572848165017, '2019-11-04 11:46:05', '2019-11-04 06:16:05'),
(55, 47, 43, 38, 553, '2', 1572848168661, '2019-11-04 11:46:08', '2019-11-04 06:16:08'),
(56, 47, 48, 38, 553, '1', 1572848168726, '2019-11-04 11:46:08', '2019-11-04 06:16:29'),
(57, 0, 54, 39, 0, '1', 1572931304260, '2019-11-05 10:51:44', '2019-11-05 05:21:44'),
(58, 54, 58, 39, 601, '2', 1572931304389, '2019-11-05 10:51:44', '2019-11-05 05:21:44'),
(59, 54, 58, 40, 0, '1', 1572931304587, '2019-11-05 10:51:44', '2019-11-05 05:21:44'),
(60, 0, 54, 40, 0, '1', 1572931304642, '2019-11-05 10:51:44', '2019-11-05 05:21:44'),
(61, 54, 58, 40, 602, '2', 1572931304768, '2019-11-05 10:51:44', '2019-11-05 05:21:44'),
(62, 54, 58, 41, 0, '1', 1572931517320, '2019-11-05 10:55:17', '2019-11-05 05:25:17'),
(63, 0, 54, 41, 0, '1', 1572931517374, '2019-11-05 10:55:17', '2019-11-05 05:25:17'),
(64, 54, 58, 41, 603, '2', 1572931517512, '2019-11-05 10:55:17', '2019-11-05 05:25:17'),
(65, 0, 57, 42, 0, '1', 1572931697467, '2019-11-05 10:58:17', '2019-11-05 05:28:17'),
(66, 0, 59, 43, 0, '1', 1572939550828, '2019-11-05 01:09:10', '2019-11-05 07:39:11'),
(67, 0, 59, 44, 0, '1', 1572939697283, '2019-11-05 01:11:37', '2019-11-05 07:41:37'),
(68, 58, 54, 45, 0, '1', 1572940595745, '2019-11-05 01:26:35', '2019-11-05 07:56:35'),
(69, 0, 58, 45, 0, '1', 1572940595800, '2019-11-05 01:26:35', '2019-11-05 07:56:35'),
(70, 58, 54, 45, 607, '2', 1572940596038, '2019-11-05 01:26:36', '2019-11-05 07:56:36'),
(71, 58, 54, 46, 0, '1', 1572946113811, '2019-11-05 02:58:33', '2019-11-05 09:28:33'),
(72, 58, 63, 46, 0, '1', 1572946113867, '2019-11-05 02:58:33', '2019-11-05 09:28:33'),
(73, 0, 58, 46, 0, '1', 1572946113911, '2019-11-05 02:58:33', '2019-11-05 09:28:33'),
(74, 58, 54, 46, 608, '2', 1572946114204, '2019-11-05 02:58:34', '2019-11-05 09:28:34'),
(75, 58, 63, 46, 608, '2', 1572946114257, '2019-11-05 02:58:34', '2019-11-05 09:28:34'),
(76, 0, 64, 47, 0, '1', 1572946170356, '2019-11-05 02:59:30', '2019-11-05 09:29:30'),
(77, 0, 64, 48, 0, '1', 1572947171668, '2019-11-05 03:16:11', '2019-11-05 09:46:11'),
(78, 0, 64, 49, 0, '1', 1572947385132, '2019-11-05 03:19:45', '2019-11-05 09:49:45'),
(79, 0, 4, 50, 0, '1', 1572957858809, '2019-11-05 06:14:18', '2019-11-05 12:44:18'),
(80, 0, 5, 51, 0, '1', 1573111883454, '2019-11-07 01:01:23', '2019-11-07 07:31:23'),
(81, 0, 4, 52, 0, '1', 1573112105496, '2019-11-07 01:05:05', '2019-11-07 07:35:05'),
(82, 0, 66, 53, 0, '1', 1573466252251, '2019-11-11 03:27:32', '2019-11-11 09:57:32'),
(83, 66, 67, 53, 850, '1', 1573466253067, '2019-11-11 03:27:33', '2019-11-11 09:58:26'),
(84, 0, 66, 54, 0, '1', 1573466623448, '2019-11-11 03:33:43', '2019-11-11 10:03:43'),
(85, 66, 67, 54, 862, '1', 1573466626425, '2019-11-11 03:33:46', '2019-11-11 10:04:07'),
(86, 0, 68, 55, 0, '1', 1573466902924, '2019-11-11 03:38:22', '2019-11-11 10:08:22'),
(87, 0, 69, 56, 0, '1', 1573621472845, '2019-11-13 10:34:32', '2019-11-13 05:04:32'),
(88, 0, 70, 57, 0, '1', 1573622279065, '2019-11-13 10:47:59', '2019-11-13 05:17:59'),
(90, 0, 69, 58, 0, '1', 1573623240126, '2019-11-13 11:04:00', '2019-11-13 05:34:00'),
(91, 0, 71, 59, 0, '1', 1573643174442, '2019-11-13 04:36:14', '2019-11-13 11:06:14'),
(92, 0, 70, 60, 0, '1', 1573649701365, '2019-11-13 06:25:01', '2019-11-13 12:55:01'),
(94, 70, 62, 60, 996, '2', 1573649702235, '2019-11-13 06:25:02', '2019-11-13 12:55:02'),
(95, 0, 4, 61, 0, '1', 1573717880151, '2019-11-14 01:21:20', '2019-11-14 07:51:20'),
(96, 0, 74, 62, 0, '1', 1573727155263, '2019-11-14 03:55:55', '2019-11-14 10:25:55'),
(97, 74, 75, 62, 998, '1', 1573727158387, '2019-11-14 03:55:58', '2019-11-14 10:26:20'),
(98, 0, 4, 63, 0, '1', 1575033042631, '2019-11-29 06:40:42', '2019-11-29 13:10:42'),
(99, 0, 4, 64, 0, '1', 1575530642129, '2019-12-05 12:54:02', '2019-12-05 07:24:02'),
(100, 0, 4, 65, 0, '1', 1575544132628, '2019-12-05 04:38:52', '2019-12-05 11:08:52'),
(101, 0, 41, 66, 0, '1', 1575612867227, '2019-12-06 11:44:27', '2019-12-06 06:14:27'),
(102, 0, 77, 67, 0, '1', 1575633832587, '2019-12-06 05:33:52', '2019-12-06 12:03:52'),
(103, 0, 77, 68, 0, '1', 1575634397910, '2019-12-06 05:43:17', '2019-12-06 12:13:17'),
(104, 0, 78, 69, 0, '1', 1575638108908, '2019-12-06 06:45:08', '2019-12-06 13:15:08'),
(105, 78, 79, 69, 1077, '2', 1575638109247, '2019-12-06 06:45:09', '2019-12-06 13:15:09'),
(106, 0, 77, 70, 0, '1', 1575638148007, '2019-12-06 06:45:48', '2019-12-06 13:15:48'),
(107, 0, 78, 71, 0, '1', 1575639341056, '2019-12-06 07:05:41', '2019-12-06 13:35:41'),
(108, 78, 79, 71, 1079, '2', 1575639341350, '2019-12-06 07:05:41', '2019-12-06 13:35:41'),
(109, 0, 78, 72, 0, '1', 1575639410626, '2019-12-06 07:06:50', '2019-12-06 13:36:50'),
(110, 78, 79, 72, 1080, '2', 1575639410854, '2019-12-06 07:06:50', '2019-12-06 13:36:50'),
(111, 0, 41, 73, 0, '1', 1575641095562, '2019-12-06 07:34:55', '2019-12-06 14:04:55'),
(112, 0, 81, 74, 0, '1', 1575645209109, '2019-12-06 08:43:29', '2019-12-06 15:13:29'),
(113, 0, 81, 75, 0, '1', 1575646397647, '2019-12-06 09:03:17', '2019-12-06 15:33:17'),
(114, 0, 80, 76, 0, '1', 1575646813858, '2019-12-06 09:10:13', '2019-12-06 15:40:13'),
(115, 80, 78, 76, 1084, '2', 1575646814163, '2019-12-06 09:10:14', '2019-12-06 15:40:14'),
(116, 0, 81, 77, 0, '1', 1575647226516, '2019-12-06 09:17:06', '2019-12-06 15:47:06'),
(117, 0, 80, 78, 0, '1', 1575648127088, '2019-12-06 09:32:07', '2019-12-06 16:02:07'),
(118, 80, 82, 78, 1086, '1', 1575648127316, '2019-12-06 09:32:07', '2019-12-06 16:02:30'),
(119, 80, 78, 78, 1086, '2', 1575648128389, '2019-12-06 09:32:08', '2019-12-06 16:02:08'),
(120, 0, 86, 79, 0, '1', 1575715291180, '2019-12-07 04:11:31', '2019-12-07 10:41:31'),
(121, 0, 85, 80, 0, '1', 1575715456062, '2019-12-07 04:14:16', '2019-12-07 10:44:16'),
(122, 0, 86, 81, 0, '1', 1575715877490, '2019-12-07 04:21:17', '2019-12-07 10:51:17'),
(123, 86, 78, 81, 1089, '1', 1575715877818, '2019-12-07 04:21:17', '2019-12-07 10:51:40'),
(124, 0, 88, 82, 0, '1', 1575718129314, '2019-12-07 04:58:49', '2019-12-07 11:28:49'),
(125, 0, 87, 83, 0, '1', 1575718635065, '2019-12-07 05:07:15', '2019-12-07 11:37:15'),
(126, 87, 78, 83, 1091, '1', 1575718635359, '2019-12-07 05:07:15', '2019-12-07 11:37:27'),
(127, 0, 89, 84, 0, '1', 1575878847340, '2019-12-09 01:37:27', '2019-12-09 08:07:27'),
(128, 0, 90, 85, 0, '1', 1575885158936, '2019-12-09 03:22:38', '2019-12-09 09:52:38'),
(129, 90, 12, 85, 1140, '1', 1575885162682, '2019-12-09 03:22:42', '2019-12-09 09:54:07'),
(130, 0, 41, 86, 0, '1', 1575894477495, '2019-12-09 05:57:57', '2019-12-09 12:27:57');
-- --------------------------------------------------------
--
-- Table structure for table `istagram_images`
--
CREATE TABLE `istagram_images` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`image_url` varchar(255) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `likes`
--
CREATE TABLE `likes` (
`id` int(11) NOT NULL,
`post_id` int(11) NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`like_status` enum('1','2') COLLATE utf8_unicode_ci NOT NULL COMMENT '1=>like,2=>unlike',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`timestamp` double NOT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `likes`
--
INSERT INTO `likes` (`id`, `post_id`, `user_id`, `like_status`, `created_at`, `timestamp`, `updated_at`) VALUES
(1, 5, 2, '1', '2019-09-09 08:59:17', 1568019557498, '2019-09-09 08:59:17'),
(3, 4, 2, '1', '2019-09-09 08:59:21', 1568019561854, '2019-09-09 08:59:21'),
(4, 10, 8, '1', '2019-09-09 14:15:15', 1568038515896, '2019-09-09 14:15:15'),
(5, 11, 9, '1', '2019-09-10 04:45:27', 1568090727256, '2019-09-10 04:45:27'),
(6, 11, 10, '1', '2019-09-10 04:47:22', 1568090842327, '2019-09-10 04:47:22'),
(7, 12, 12, '1', '2019-09-10 05:15:40', 1568092540241, '2019-09-10 05:15:40'),
(8, 12, 5, '1', '2019-09-20 07:40:33', 1568965233546, '2019-09-20 07:40:33'),
(9, 14, 5, '1', '2019-09-20 07:43:23', 1568965403273, '2019-09-20 07:43:36'),
(10, 15, 21, '1', '2019-10-04 11:39:33', 1570189173636, '2019-10-04 11:39:33'),
(15, 15, 25, '1', '2019-10-04 11:39:50', 1570189190241, '2019-10-04 11:39:50'),
(16, 16, 31, '1', '2019-10-04 14:24:21', 1570199061757, '2019-10-04 14:24:21'),
(19, 16, 34, '1', '2019-10-04 14:26:44', 1570199204903, '2019-10-04 14:26:44'),
(20, 17, 42, '1', '2019-10-30 13:44:08', 1572443048003, '2019-10-30 13:44:08'),
(21, 18, 50, '1', '2019-11-04 05:58:09', 1572847089357, '2019-11-04 05:58:09'),
(23, 19, 48, '1', '2019-11-04 06:09:53', 1572847793042, '2019-11-04 06:09:53'),
(25, 19, 50, '1', '2019-11-04 06:10:33', 1572847833923, '2019-11-04 06:10:33'),
(26, 20, 51, '1', '2019-11-04 06:17:25', 1572848245675, '2019-11-04 06:17:25'),
(27, 19, 51, '1', '2019-11-04 06:17:28', 1572848248186, '2019-11-04 06:17:28'),
(29, 23, 57, '1', '2019-11-05 05:30:15', 1572931815823, '2019-11-05 05:30:15'),
(36, 25, 2, '1', '2019-11-05 06:42:14', 1572936134529, '2019-11-05 06:42:14'),
(37, 28, 2, '1', '2019-11-05 06:42:29', 1572936149602, '2019-11-05 06:42:29'),
(39, 5, 61, '1', '2019-11-05 07:52:20', 1572940340854, '2019-11-05 07:52:20'),
(46, 30, 59, '1', '2019-11-05 07:54:33', 1572940473914, '2019-11-05 07:54:33'),
(54, 32, 2, '1', '2019-11-05 07:57:55', 1572940675067, '2019-11-05 07:57:55'),
(57, 32, 60, '1', '2019-11-05 09:03:42', 1572944622603, '2019-11-05 09:03:42'),
(60, 34, 58, '1', '2019-11-05 09:25:51', 1572945951304, '2019-11-05 09:25:51'),
(62, 34, 63, '1', '2019-11-05 09:26:01', 1572945961430, '2019-11-05 09:26:01'),
(64, 35, 64, '1', '2019-11-05 09:31:53', 1572946313309, '2019-11-05 09:31:53'),
(65, 35, 63, '1', '2019-11-05 09:31:54', 1572946314907, '2019-11-05 09:31:54'),
(67, 36, 65, '1', '2019-11-05 09:34:51', 1572946491055, '2019-11-05 09:34:51'),
(68, 35, 65, '1', '2019-11-05 09:34:53', 1572946493282, '2019-11-05 09:34:53'),
(69, 37, 64, '1', '2019-11-05 09:47:29', 1572947249106, '2019-11-05 09:47:29'),
(70, 40, 66, '1', '2019-11-11 09:59:01', 1573466341131, '2019-11-11 09:59:01'),
(71, 40, 67, '1', '2019-11-11 09:59:28', 1573466368033, '2019-11-11 09:59:28'),
(72, 42, 4, '1', '2019-12-05 11:13:42', 1575544422440, '2019-12-05 11:14:10'),
(73, 43, 77, '1', '2019-12-06 12:34:08', 1575635648744, '2019-12-06 12:34:08'),
(74, 46, 81, '1', '2019-12-06 15:17:04', 1575645424446, '2019-12-06 15:17:04'),
(75, 47, 80, '1', '2019-12-06 15:28:20', 1575646100440, '2019-12-06 15:28:20'),
(76, 46, 80, '1', '2019-12-06 15:28:22', 1575646102217, '2019-12-06 15:28:22'),
(77, 48, 90, '1', '2019-12-09 09:56:19', 1575885379837, '2019-12-09 09:56:19');
-- --------------------------------------------------------
--
-- Table structure for table `messages`
--
CREATE TABLE `messages` (
`id` int(11) NOT NULL,
`message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`sender_id` int(11) NOT NULL,
`receiver_id` int(11) NOT NULL,
`chat_id` int(11) NOT NULL,
`msg_type` int(11) NOT NULL,
`image` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT '1=>text,2=>image,3=>video',
`deleted_by` int(11) NOT NULL,
`read_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '2' COMMENT '1 =>read, 2 =>unread',
`timestamp` double NOT NULL,
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2016_06_01_000001_create_oauth_auth_codes_table', 1),
(4, '2016_06_01_000002_create_oauth_access_tokens_table', 1),
(5, '2016_06_01_000003_create_oauth_refresh_tokens_table', 1),
(6, '2016_06_01_000004_create_oauth_clients_table', 1),
(7, '2016_06_01_000005_create_oauth_personal_access_clients_table', 1);
-- --------------------------------------------------------
--
-- Table structure for table `music_interest`
--
CREATE TABLE `music_interest` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`image` varchar(255) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `music_interest`
--
INSERT INTO `music_interest` (`id`, `name`, `image`, `created_at`, `updated_at`) VALUES
(1, 'Rnb', 'music-interest-images/Rock.png', '2018-03-29 13:47:52', '2018-03-29 13:47:52'),
(2, 'Hip hop', 'music-interest-images/hip hop.png', '2018-03-29 13:48:00', '2018-03-29 13:48:00'),
(3, 'Garage', 'music-interest-images/folk-music.png', '2018-03-29 13:48:31', '2018-03-29 13:48:31'),
(4, 'House', 'music-interest-images/hip hop.png', '2018-03-29 13:48:37', '2018-03-29 13:48:37'),
(5, 'Grime', 'music-interest-images/jazz-01.png', '2018-03-29 13:48:45', '2018-03-29 13:48:45'),
(6, 'Trap', 'music-interest-images/Music01.png', '2018-03-29 13:48:52', '2018-03-29 13:48:52'),
(7, 'Afro beats', 'music-interest-images/pop.png', '2018-03-29 13:49:03', '2018-03-29 13:49:03'),
(8, 'Jazz', 'music-interest-images/rapper.png', '2018-03-29 13:49:11', '2018-03-29 13:49:11'),
(9, 'Dancehall', 'music-interest-images/Rock.png', '2018-03-29 13:49:17', '2018-03-29 13:49:17'),
(10, 'Soca', 'music-interest-images/rythem.png', '2018-03-29 13:49:27', '2018-03-29 13:49:27'),
(11, 'Drum and Bass', 'music-interest-images/pop.png', '2018-03-29 13:49:39', '2018-03-29 13:49:39'),
(13, 'Old School', 'music-interest-images/folk-music.png', '2018-06-06 07:22:42', '2018-06-06 07:22:42'),
(14, 'Jungle', 'music-interest-images/folk-music.png', '0000-00-00 00:00:00', '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `notification_list`
--
CREATE TABLE `notification_list` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`other_user_id` int(11) NOT NULL,
`notification_type` int(11) NOT NULL,
`other_id` varchar(255) NOT NULL DEFAULT '',
`message` mediumtext NOT NULL,
`timestamp` double NOT NULL,
`status` varchar(10) NOT NULL DEFAULT '2' COMMENT '1 => read, 2 => unread',
`updated_at` datetime NOT NULL,
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `notification_list`
--
INSERT INTO `notification_list` (`id`, `user_id`, `other_user_id`, `notification_type`, `other_id`, `message`, `timestamp`, `status`, `updated_at`, `created_at`) VALUES
(1, 2, 3, 1, '', 'you have received friend request', 1568013097156, '2', '2019-09-09 07:11:37', '2019-09-09 07:11:37'),
(2, 4, 0, 1, '', 'Your event is approved by Admin', 1568013344482, '1', '2019-09-09 08:15:44', '2019-09-09 08:15:44'),
(3, 4, 0, 1, '', 'Your event is approved by Admin', 1568014071142, '1', '2019-09-09 08:27:51', '2019-09-09 08:27:51'),
(4, 4, 0, 1, '', 'Your event is approved by Admin', 1568014072642, '1', '2019-09-09 08:27:52', '2019-09-09 08:27:52'),
(5, 2, 5, 1, '', 'you have received friend request', 1568014207281, '2', '2019-09-09 13:00:07', '2019-09-09 13:00:07'),
(6, 4, 0, 1, '', 'Your event is approved by Admin', 1568014290432, '1', '2019-09-09 08:31:30', '2019-09-09 08:31:30'),
(7, 4, 0, 1, '', 'Your event is approved by Admin', 1568014428268, '1', '2019-09-09 08:33:48', '2019-09-09 08:33:48'),
(8, 4, 0, 1, '', 'Your event is approved by Admin', 1568019458923, '1', '2019-09-09 09:57:38', '2019-09-09 09:57:38'),
(9, 2, 4, 2, '', 'org Commented on your post', 1568019590067, '2', '2019-09-09 14:29:50', '2019-09-09 14:29:50'),
(10, 10, 9, 1, '', 'you have received friend request', 1568090322374, '2', '2019-09-10 04:38:42', '2019-09-10 04:38:42'),
(11, 9, 10, 1, '', 'you have received friend request', 1568090525288, '2', '2019-09-10 04:42:05', '2019-09-10 04:42:05'),
(12, 10, 9, 1, '', 'pea pea accepted your friend request', 1568090540084, '2', '2019-09-10 04:42:20', '2019-09-10 04:42:20'),
(13, 10, 9, 1, '', 'you have received event invitation', 1568090638837, '2', '2019-09-10 10:13:58', '2019-09-10 10:13:58'),
(14, 9, 10, 1, '', 'you have received event invitation', 1568090658235, '2', '2019-09-10 10:14:18', '2019-09-10 10:14:18'),
(15, 9, 10, 1, '', 'you have received event invitation', 1568090795261, '2', '2019-09-10 10:16:35', '2019-09-10 10:16:35'),
(16, 9, 10, 2, '', 'edit er Commented on your post', 1568090852723, '2', '2019-09-10 10:17:32', '2019-09-10 10:17:32'),
(17, 10, 9, 1, '', 'pea pea accepted your event invitation', 1568091065078, '2', '2019-09-10 10:21:05', '2019-09-10 10:21:05'),
(18, 9, 10, 1, '', 'editer accepted your event invitation', 1568091072978, '2', '2019-09-10 10:21:12', '2019-09-10 10:21:12'),
(19, 10, 9, 1, '', 'pea pea accepted your event invitation', 1568091078763, '2', '2019-09-10 10:21:18', '2019-09-10 10:21:18'),
(20, 10, 9, 1, '', 'you have received friend request', 1568091863258, '2', '2019-09-10 05:04:23', '2019-09-10 05:04:23'),
(21, 13, 0, 1, '', 'Your event is approved by Admin', 1568092169848, '2', '2019-09-10 06:09:29', '2019-09-10 06:09:29'),
(22, 9, 12, 1, '', 'you have received friend request', 1568092378185, '2', '2019-09-10 10:42:58', '2019-09-10 10:42:58'),
(23, 12, 9, 1, '', 'pea peaa accepted your friend request', 1568092387475, '1', '2019-09-10 05:13:07', '2019-09-10 05:13:07'),
(24, 13, 12, 2, '', 'Quality Assurance Chhv Commented on your post', 1568092538203, '2', '2019-09-10 10:45:38', '2019-09-10 10:45:38'),
(25, 13, 12, 2, '', 'Quality Assurance Chhv Liked your post', 1568092540536, '2', '2019-09-10 10:45:40', '2019-09-10 10:45:40'),
(26, 3, 4, 2, '', 'org Commented on your post', 1568092696221, '2', '2019-09-10 10:48:16', '2019-09-10 10:48:16'),
(27, 14, 15, 1, '', 'you have received friend request', 1568097476883, '2', '2019-09-10 06:37:56', '2019-09-10 06:37:56'),
(28, 15, 14, 1, '', 'orange orange accepted your friend request', 1568097488368, '2', '2019-09-10 06:38:08', '2019-09-10 06:38:08'),
(29, 14, 15, 1, '', 'you have received event invitation', 1568097596480, '2', '2019-09-10 12:09:56', '2019-09-10 12:09:56'),
(30, 15, 14, 1, '', 'orange orange accepted your event invitation', 1568097791815, '2', '2019-09-10 12:13:11', '2019-09-10 12:13:11'),
(31, 16, 0, 1, '', 'Your event is approved by Admin', 1568098452126, '2', '2019-09-10 07:54:12', '2019-09-10 07:54:12'),
(32, 13, 5, 2, '', 'User1 Liked your post', 1568965233640, '2', '2019-09-20 13:10:33', '2019-09-20 13:10:33'),
(33, 13, 5, 2, '', 'User1 Commented on your post', 1568965238755, '2', '2019-09-20 13:10:38', '2019-09-20 13:10:38'),
(34, 21, 24, 1, '', 'Fish Gen accepted your event invitation', 1570188706582, '2', '2019-10-04 17:01:46', '2019-10-04 17:01:46'),
(35, 25, 0, 1, '', 'Your event is approved by Admin', 1570188930603, '2', '2019-10-04 12:35:30', '2019-10-04 12:35:30'),
(36, 25, 0, 1, '', 'Your event is approved by Admin', 1570189383267, '2', '2019-10-04 12:43:03', '2019-10-04 12:43:03'),
(37, 31, 34, 1, '', 'pol sdss accepted your event invitation', 1570199161172, '2', '2019-10-04 19:56:01', '2019-10-04 19:56:01'),
(38, 35, 0, 1, '', 'Your event is approved by Admin', 1570199532515, '2', '2019-10-04 15:32:12', '2019-10-04 15:32:12'),
(39, 42, 0, 1, '', 'Your event is approved by Admin', 1572442664178, '1', '2019-10-30 13:37:44', '2019-10-30 13:37:44'),
(40, 42, 43, 2, '', 'Useroctb In Commented on your post', 1572443102363, '1', '2019-10-30 19:15:02', '2019-10-30 19:15:02'),
(41, 44, 43, 1, '', 'you have received friend request', 1572443134888, '2', '2019-10-30 19:15:34', '2019-10-30 19:15:34'),
(42, 43, 44, 1, '', 'Mouse Mouse accepted your friend request', 1572443140593, '2', '2019-10-30 19:15:40', '2019-10-30 19:15:40'),
(43, 46, 0, 1, '', 'Your event is approved by Admin', 1572445413702, '2', '2019-10-30 14:23:33', '2019-10-30 14:23:33'),
(44, 46, 0, 1, '', 'Your event is approved by Admin', 1572445490717, '2', '2019-10-30 14:24:50', '2019-10-30 14:24:50'),
(45, 47, 43, 1, '', 'you have received friend request', 1572445633001, '2', '2019-10-30 19:57:13', '2019-10-30 19:57:13'),
(46, 43, 47, 1, '', 'Bottle Bottlee accepted your friend request', 1572445638808, '2', '2019-10-30 19:57:18', '2019-10-30 19:57:18'),
(47, 49, 0, 1, '', 'Your event is approved by Admin', 1572846471678, '2', '2019-11-04 05:47:51', '2019-11-04 05:47:51'),
(48, 50, 0, 1, '', 'Your event is approved by Admin', 1572847434455, '2', '2019-11-04 06:03:54', '2019-11-04 06:03:54'),
(49, 47, 48, 1, '', '<NAME> accepted your event invitation', 1572848189296, '2', '2019-11-04 11:46:29', '2019-11-04 11:46:29'),
(50, 57, 0, 1, '', 'Your event is approved by Admin', 1572931712693, '2', '2019-11-05 05:28:32', '2019-11-05 05:28:32'),
(51, 64, 0, 1, '', 'Your event is approved by Admin', 1572946188530, '2', '2019-11-05 09:29:48', '2019-11-05 09:29:48'),
(52, 64, 0, 1, '', 'Your event is approved by Admin', 1572947209371, '2', '2019-11-05 09:46:49', '2019-11-05 09:46:49'),
(53, 64, 0, 1, '', 'Your event is approved by Admin', 1572947397805, '2', '2019-11-05 09:49:57', '2019-11-05 09:49:57'),
(54, 4, 0, 1, '', 'Your event is approved by Admin', 1572957882639, '1', '2019-11-05 12:44:42', '2019-11-05 12:44:42'),
(55, 46, 5, 2, '', 'User1 post on your event', 1573108502121, '2', '2019-11-07 12:05:02', '2019-11-07 12:05:02'),
(56, 46, 5, 2, '', 'User1 post on your event', 1573108536592, '2', '2019-11-07 12:05:36', '2019-11-07 12:05:36'),
(57, 3, 5, 1, '', 'you have received friend request', 1573108602587, '2', '2019-11-07 12:06:42', '2019-11-07 12:06:42'),
(58, 4, 0, 1, '', 'Your event is approved by Admin', 1573112169511, '1', '2019-11-07 07:36:09', '2019-11-07 07:36:09'),
(59, 67, 66, 1, '', 'you have received friend request', 1573465923453, '1', '2019-11-11 15:22:03', '2019-11-11 15:22:03'),
(60, 66, 67, 1, '', '<NAME> accepted your friend request', 1573465928581, '1', '2019-11-11 15:22:08', '2019-11-11 15:22:08'),
(61, 67, 66, 1, '', 'you have received event invitation', 1573466253543, '1', '2019-11-11 15:27:33', '2019-11-11 15:27:33'),
(62, 66, 67, 1, '', '<NAME> accepted your event invitation', 1573466307047, '1', '2019-11-11 15:28:27', '2019-11-11 15:28:27'),
(63, 66, 67, 2, '', '<NAME> Commented on your post', 1573466365556, '1', '2019-11-11 15:29:25', '2019-11-11 15:29:25'),
(64, 66, 67, 2, '', '<NAME> Liked your post', 1573466368087, '1', '2019-11-11 15:29:28', '2019-11-11 15:29:28'),
(65, 67, 66, 1, '', 'you have received event invitation', 1573466626476, '1', '2019-11-11 15:33:46', '2019-11-11 15:33:46'),
(66, 66, 67, 1, '', '<NAME> accepted your event invitation', 1573466647427, '1', '2019-11-11 15:34:07', '2019-11-11 15:34:07'),
(67, 68, 0, 1, '', 'Your event is approved by Admin', 1573466931654, '2', '2019-11-11 10:08:51', '2019-11-11 10:08:51'),
(68, 69, 0, 1, '', 'Your event is approved by Admin', 1573621510462, '1', '2019-11-13 05:05:10', '2019-11-13 05:05:10'),
(69, 62, 70, 1, '', 'you have received friend request', 1573622007859, '1', '2019-11-13 10:43:27', '2019-11-13 10:43:27'),
(70, 70, 62, 1, '', 'Tester Cool accepted your friend request', 1573622025110, '1', '2019-11-13 10:43:45', '2019-11-13 10:43:45'),
(71, 62, 70, 1, '', 'you have received event invitation', 1573622279510, '1', '2019-11-13 10:47:59', '2019-11-13 10:47:59'),
(72, 70, 62, 1, '', 'Tester Cool rejected your event invitation', 1573622299907, '1', '2019-11-13 10:48:19', '2019-11-13 10:48:19'),
(73, 69, 0, 1, '', 'Your event is approved by Admin', 1573623251026, '1', '2019-11-13 05:34:11', '2019-11-13 05:34:11'),
(74, 71, 0, 1, '', 'Your event is approved by Admin', 1573643263795, '1', '2019-11-13 11:07:43', '2019-11-13 11:07:43'),
(75, 11, 72, 1, '', 'you have received friend request', 1573648672831, '2', '2019-11-13 18:07:52', '2019-11-13 18:07:52'),
(76, 72, 70, 1, '', 'you have received friend request', 1573649544437, '1', '2019-11-13 18:22:24', '2019-11-13 18:22:24'),
(77, 70, 72, 1, '', 'Eagle User accepted your friend request', 1573649553720, '1', '2019-11-13 18:22:33', '2019-11-13 18:22:33'),
(78, 72, 70, 1, '', 'you have received event invitation', 1573649701668, '2', '2019-11-13 18:25:01', '2019-11-13 18:25:01'),
(79, 62, 70, 1, '', 'you have received event invitation', 1573649702291, '2', '2019-11-13 18:25:02', '2019-11-13 18:25:02'),
(80, 70, 72, 1, '', 'Eagle User rejected your event invitation', 1573649711894, '1', '2019-11-13 18:25:11', '2019-11-13 18:25:11'),
(81, 4, 0, 1, '', 'Your event is approved by Admin', 1573717907949, '1', '2019-11-14 07:51:47', '2019-11-14 07:51:47'),
(82, 4, 0, 1, '', 'Your event is approved by Admin', 1573717949045, '1', '2019-11-14 07:52:29', '2019-11-14 07:52:29'),
(83, 4, 0, 1, '', 'Your event is approved by Admin', 1573717998497, '1', '2019-11-14 07:53:18', '2019-11-14 07:53:18'),
(84, 4, 0, 1, '', 'Your event is approved by Admin', 1573721654093, '1', '2019-11-14 08:54:14', '2019-11-14 08:54:14'),
(85, 4, 0, 1, '', 'Your event is approved by Admin', 1573721689397, '1', '2019-11-14 08:54:49', '2019-11-14 08:54:49'),
(86, 4, 0, 1, '', 'Your event is approved by Admin', 1573722915189, '1', '2019-11-14 09:15:15', '2019-11-14 09:15:15'),
(87, 5, 70, 1, '', 'you have received friend request', 1573724156568, '1', '2019-11-14 15:05:56', '2019-11-14 15:05:56'),
(88, 70, 5, 1, '', 'User1 accepted your friend request', 1573724170732, '2', '2019-11-14 15:06:10', '2019-11-14 15:06:10'),
(89, 75, 74, 1, '', 'you have received friend request', 1573726878439, '2', '2019-11-14 15:51:18', '2019-11-14 15:51:18'),
(90, 74, 75, 1, '', 'Regi Last accepted your friend request', 1573726984211, '2', '2019-11-14 15:53:04', '2019-11-14 15:53:04'),
(91, 75, 74, 1, '', 'you have received event invitation', 1573727158447, '2', '2019-11-14 15:55:58', '2019-11-14 15:55:58'),
(92, 74, 75, 1, '', 'Regi Last accepted your event invitation', 1573727180594, '2', '2019-11-14 15:56:20', '2019-11-14 15:56:20'),
(93, 74, 5, 1, '', 'you have received friend request', 1573727460040, '2', '2019-11-14 16:01:00', '2019-11-14 16:01:00'),
(94, 5, 74, 1, '', 'Live Test rejected your friend request', 1573727483458, '1', '2019-11-14 16:01:23', '2019-11-14 16:01:23'),
(95, 5, 74, 1, '', 'you have received friend request', 1573727502361, '1', '2019-11-14 16:01:42', '2019-11-14 16:01:42'),
(96, 74, 5, 1, '', 'User1 rejected your friend request', 1573727884419, '2', '2019-11-14 16:08:04', '2019-11-14 16:08:04'),
(97, 4, 0, 1, '', 'Your event is approved by Admin', 1573727938864, '1', '2019-11-14 10:38:58', '2019-11-14 10:38:58'),
(98, 4, 0, 1, '', 'Your event is approved by Admin', 1573727959083, '1', '2019-11-14 10:39:19', '2019-11-14 10:39:19'),
(99, 4, 0, 1, '', 'Your event is approved by Admin', 1573727994269, '1', '2019-11-14 10:39:54', '2019-11-14 10:39:54'),
(100, 4, 0, 1, '', 'Your event is approved by Admin', 1573728004564, '1', '2019-11-14 10:40:04', '2019-11-14 10:40:04'),
(101, 4, 0, 1, '', 'Your event is approved by Admin', 1573728016545, '1', '2019-11-14 10:40:16', '2019-11-14 10:40:16'),
(102, 4, 0, 1, '', 'Your event is approved by Admin', 1573728150463, '1', '2019-11-14 10:42:30', '2019-11-14 10:42:30'),
(103, 4, 0, 1, '', 'Your event is approved by Admin', 1573729679985, '1', '2019-11-14 11:07:59', '2019-11-14 11:07:59'),
(104, 4, 0, 1, '', 'Your event is approved by Admin', 1573730494308, '1', '2019-11-14 11:21:34', '2019-11-14 11:21:34'),
(105, 4, 0, 1, '', 'Your event is approved by Admin', 1575033059662, '1', '2019-11-29 13:10:59', '2019-11-29 13:10:59'),
(106, 2, 4, 1, '', 'Test:Event detail has been updated', 1575360012556, '2', '2019-12-03 13:30:12', '2019-12-03 13:30:12'),
(107, 64, 4, 1, '', 'Test Organizer event:Event detail has been updated', 1575360085432, '2', '2019-12-03 13:31:25', '2019-12-03 13:31:25'),
(108, 4, 0, 1, '', 'Your event is approved by Admin', 1575530790631, '1', '2019-12-05 07:26:30', '2019-12-05 07:26:30'),
(109, 70, 5, 3, '', 'You have received Gdhdh invitation', 1575540850333, '2', '2019-12-05 15:44:10', '2019-12-05 15:44:10'),
(110, 4, 0, 1, '', 'Your event is approved by Admin', 1575544170496, '1', '2019-12-05 11:09:30', '2019-12-05 11:09:30'),
(111, 4, 5, 2, '', 'Cley post on your event', 1575544346315, '1', '2019-12-05 16:42:26', '2019-12-05 16:42:26'),
(112, 5, 4, 2, '', 'org Liked your post', 1575544422491, '1', '2019-12-05 16:43:42', '2019-12-05 16:43:42'),
(113, 5, 4, 2, '', 'org Liked your post', 1575544423793, '1', '2019-12-05 16:43:43', '2019-12-05 16:43:43'),
(114, 5, 4, 2, '', 'org Liked your post', 1575544432340, '1', '2019-12-05 16:43:52', '2019-12-05 16:43:52'),
(115, 5, 4, 2, '', 'org Liked your post', 1575544434930, '1', '2019-12-05 16:43:54', '2019-12-05 16:43:54'),
(116, 5, 4, 2, '', 'org Liked your post', 1575544436920, '1', '2019-12-05 16:43:56', '2019-12-05 16:43:56'),
(117, 5, 4, 2, '', 'org Liked your post', 1575544439600, '1', '2019-12-05 16:43:59', '2019-12-05 16:43:59'),
(118, 5, 4, 2, '', 'org Liked your post', 1575544443113, '1', '2019-12-05 16:44:03', '2019-12-05 16:44:03'),
(119, 5, 4, 2, '', 'org Liked your post', 1575544445759, '1', '2019-12-05 16:44:05', '2019-12-05 16:44:05'),
(120, 5, 4, 2, '', 'org Liked your post', 1575544449338, '1', '2019-12-05 16:44:09', '2019-12-05 16:44:09'),
(121, 5, 4, 2, '', 'org Liked your post', 1575544450786, '1', '2019-12-05 16:44:10', '2019-12-05 16:44:10'),
(122, 41, 0, 1, '', 'Your event is approved by Admin', 1575613510075, '1', '2019-12-06 06:25:10', '2019-12-06 06:25:10'),
(123, 77, 0, 1, '', 'Your event is approved by Admin', 1575633862708, '1', '2019-12-06 12:04:22', '2019-12-06 12:04:22'),
(124, 77, 0, 1, '', 'Your event is approved by Admin', 1575634415651, '1', '2019-12-06 12:13:35', '2019-12-06 12:13:35'),
(125, 79, 78, 1, '', 'you have received friend request', 1575637197669, '2', '2019-12-06 18:29:57', '2019-12-06 18:29:57'),
(126, 78, 79, 1, '', '<NAME> rejected your friend request', 1575637213654, '1', '2019-12-06 18:30:13', '2019-12-06 18:30:13'),
(127, 79, 78, 1, '', 'you have received friend request', 1575637224180, '2', '2019-12-06 18:30:24', '2019-12-06 18:30:24'),
(128, 78, 79, 1, '', '<NAME> accepted your friend request', 1575637250447, '1', '2019-12-06 18:30:50', '2019-12-06 18:30:50'),
(129, 79, 78, 3, '', 'You have received Bro invitation', 1575637314447, '2', '2019-12-06 18:31:54', '2019-12-06 18:31:54'),
(130, 79, 78, 1, '', 'you have received event invitation', 1575638109320, '2', '2019-12-06 18:45:09', '2019-12-06 18:45:09'),
(131, 77, 0, 1, '', 'Your event is approved by Admin', 1575638157848, '1', '2019-12-06 13:15:57', '2019-12-06 13:15:57'),
(132, 79, 78, 1, '', 'you have received event invitation', 1575639341412, '2', '2019-12-06 19:05:41', '2019-12-06 19:05:41'),
(133, 79, 78, 1, '', 'you have received event invitation', 1575639410904, '2', '2019-12-06 19:06:50', '2019-12-06 19:06:50'),
(134, 41, 78, 2, '', '<NAME> post on your event', 1575639800423, '2', '2019-12-06 19:13:20', '2019-12-06 19:13:20'),
(135, 4, 77, 2, '', 'Billi post on your event', 1575639819219, '2', '2019-12-06 19:13:39', '2019-12-06 19:13:39'),
(136, 41, 0, 1, '', 'Your event is approved by Admin', 1575641120591, '2', '2019-12-06 14:05:20', '2019-12-06 14:05:20'),
(137, 81, 0, 1, '', 'Your event is approved by Admin', 1575645265233, '1', '2019-12-06 15:14:25', '2019-12-06 15:14:25'),
(138, 78, 80, 1, '', 'you have received friend request', 1575645667011, '1', '2019-12-06 20:51:07', '2019-12-06 20:51:07'),
(139, 80, 78, 1, '', '<NAME> accepted your friend request', 1575645672104, '1', '2019-12-06 20:51:12', '2019-12-06 20:51:12'),
(140, 78, 80, 3, '', 'You have received Yellow Event invitation', 1575645768199, '1', '2019-12-06 20:52:48', '2019-12-06 20:52:48'),
(141, 81, 80, 2, '', 'Terry Last post on your event', 1575646097942, '1', '2019-12-06 20:58:17', '2019-12-06 20:58:17'),
(142, 81, 80, 2, '', 'Terry Last Liked your post', 1575646102325, '1', '2019-12-06 20:58:22', '2019-12-06 20:58:22'),
(143, 81, 0, 1, '', 'Your event is approved by Admin', 1575646405501, '1', '2019-12-06 15:33:25', '2019-12-06 15:33:25'),
(144, 78, 80, 1, '', 'you have received event invitation', 1575646814237, '1', '2019-12-06 21:10:14', '2019-12-06 21:10:14'),
(145, 81, 0, 1, '', 'Your event is approved by Admin', 1575647248738, '1', '2019-12-06 15:47:28', '2019-12-06 15:47:28'),
(146, 78, 80, 3, '', 'You have received Deftsoft Eve invitation', 1575647384799, '1', '2019-12-06 21:19:44', '2019-12-06 21:19:44'),
(147, 82, 80, 1, '', 'you have received friend request', 1575648051799, '1', '2019-12-06 21:30:51', '2019-12-06 21:30:51'),
(148, 80, 82, 1, '', 'Biwi Login accepted your friend request', 1575648072945, '1', '2019-12-06 21:31:12', '2019-12-06 21:31:12'),
(149, 82, 80, 1, '', 'you have received event invitation', 1575648127377, '1', '2019-12-06 21:32:07', '2019-12-06 21:32:07'),
(150, 78, 80, 1, '', 'you have received event invitation', 1575648128466, '1', '2019-12-06 21:32:08', '2019-12-06 21:32:08'),
(151, 80, 82, 1, '', 'Biwi Login accepted your event invitation', 1575648151032, '1', '2019-12-06 21:32:31', '2019-12-06 21:32:31'),
(152, 78, 86, 1, '', 'you have received friend request', 1575715639500, '1', '2019-12-07 16:17:19', '2019-12-07 16:17:19'),
(153, 86, 78, 1, '', '<NAME> accepted your friend request', 1575715644964, '2', '2019-12-07 16:17:24', '2019-12-07 16:17:24'),
(154, 85, 0, 1, '', 'Your event is approved by Admin', 1575715703080, '1', '2019-12-07 10:48:23', '2019-12-07 10:48:23'),
(155, 78, 86, 1, '', 'you have received event invitation', 1575715878014, '1', '2019-12-07 16:21:18', '2019-12-07 16:21:18'),
(156, 86, 78, 1, '', '<NAME> accepted your event invitation', 1575715900473, '2', '2019-12-07 16:21:40', '2019-12-07 16:21:40'),
(157, 88, 0, 1, '', 'Your event is approved by Admin', 1575718160011, '1', '2019-12-07 11:29:20', '2019-12-07 11:29:20'),
(158, 78, 87, 1, '', 'you have received friend request', 1575718443954, '2', '2019-12-07 17:04:03', '2019-12-07 17:04:03'),
(159, 87, 78, 1, '', '<NAME> accepted your friend request', 1575718449838, '2', '2019-12-07 17:04:09', '2019-12-07 17:04:09'),
(160, 78, 87, 1, '', 'you have received event invitation', 1575718635421, '2', '2019-12-07 17:07:15', '2019-12-07 17:07:15'),
(161, 87, 78, 1, '', '<NAME> accepted your event invitation', 1575718647464, '2', '2019-12-07 17:07:27', '2019-12-07 17:07:27'),
(162, 89, 0, 1, '', 'Your event is approved by Admin', 1575879201686, '1', '2019-12-09 08:13:21', '2019-12-09 08:13:21'),
(163, 90, 12, 1, '', 'you have received friend request', 1575884867908, '1', '2019-12-09 15:17:47', '2019-12-09 15:17:47'),
(164, 12, 90, 1, '', 'Deck Last accepted your friend request', 1575884886293, '1', '2019-12-09 15:18:06', '2019-12-09 15:18:06'),
(165, 12, 90, 1, '', 'you have received event invitation', 1575885162734, '2', '2019-12-09 15:22:42', '2019-12-09 15:22:42'),
(166, 90, 12, 1, '', 'Quality Assurance Chhv accepted your event invitation', 1575885247685, '1', '2019-12-09 15:24:07', '2019-12-09 15:24:07'),
(167, 4, 90, 2, '', 'Deck Last post on your event', 1575885375793, '2', '2019-12-09 15:26:15', '2019-12-09 15:26:15'),
(168, 41, 0, 1, '', 'Your event is approved by Admin', 1575894515369, '2', '2019-12-09 12:28:35', '2019-12-09 12:28:35');
-- --------------------------------------------------------
--
-- Table structure for table `oauth_access_tokens`
--
CREATE TABLE `oauth_access_tokens` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(11) DEFAULT NULL,
`client_id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci,
`revoked` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `oauth_access_tokens`
--
INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES
('0170e6a045a6856c4564f2719d96aca8be93773713c034ed99d3b9e32f4f77cd984f50eae209c192', 61, 2, NULL, '[\"*\"]', 0, '2019-11-05 02:21:20', '2019-11-05 02:21:20', '2020-11-05 07:51:20'),
('02c22fd86c983a013b37700091286ef8b5bd408d47319bc37ebd5a52feff424bf6c600d12167b603', 5, 2, NULL, '[\"*\"]', 1, '2019-12-05 04:20:16', '2019-12-05 04:20:16', '2020-12-05 09:50:16'),
('03104f4fede57322148125e346c72b2cd5f085790d0e1e6a48d04483d98d9e66cf29a2fb7ec396ec', 5, 2, NULL, '[\"*\"]', 1, '2019-12-05 04:43:36', '2019-12-05 04:43:36', '2020-12-05 10:13:36'),
('03a3bdc5cf65ba805f7d4d557482078f98612d82316d0206ade2bb99ce2335e936be56029e092932', 5, 2, NULL, '[\"*\"]', 1, '2019-11-07 02:06:55', '2019-11-07 02:06:55', '2020-11-07 07:36:55'),
('05d9af5bc1a76c7790e8766237558e91c264c92b12894eb68e4a3f908dc735ea6ed5e987dfd3438d', 5, 2, NULL, '[\"*\"]', 1, '2019-11-08 07:43:40', '2019-11-08 07:43:40', '2020-11-08 13:13:40'),
('060b2d9fa523ae61c730488e6e1ef7ff1b068e68f16bb9b2b55cdded382e8402d4114262a94eb9db', 5, 2, NULL, '[\"*\"]', 1, '2019-12-05 01:24:12', '2019-12-05 01:24:12', '2020-12-05 06:54:12'),
('065d4962af18bb2ff5e68428e0b4fa7d83434323244fedcb7feac1c036967fe8db740a3122549fe4', 5, 2, NULL, '[\"*\"]', 1, '2019-09-09 01:58:28', '2019-09-09 01:58:28', '2020-09-09 07:28:28'),
('0694153ae16f467327b67ca1cbb8e1a67b4495981db19823f6c581357ebfc0e7b3536f45bc0c97e7', 23, 2, NULL, '[\"*\"]', 0, '2019-10-04 05:26:18', '2019-10-04 05:26:18', '2020-10-04 10:56:18'),
('07f2e0ac49259160de3a284399397af8e540ec16fe2ab4376e2dab2552a10fc49ece5c5e4ae36b3a', 76, 2, NULL, '[\"*\"]', 1, '2019-12-06 05:47:51', '2019-12-06 05:47:51', '2020-12-06 11:17:51'),
('0855db29d7a9eafdc093a0b597cb2baf733e4e05590cc568e9df5500eb76b2e809efb70c04592bd1', 80, 2, NULL, '[\"*\"]', 1, '2019-12-06 10:18:30', '2019-12-06 10:18:30', '2020-12-06 15:48:30'),
('097d02b14651f26bcbe45bd29c3e7967c847ead6577d9108d58370ca9b16750a2b0ade79f03dbf1f', 72, 2, NULL, '[\"*\"]', 1, '2019-11-13 05:35:38', '2019-11-13 05:35:38', '2020-11-13 11:05:38'),
('0b1624cd17ef872c96715e9309215d916250ef3d91a918cf2afcec2dad6b0617f16a2107f524d1a5', 66, 2, NULL, '[\"*\"]', 1, '2019-11-11 03:53:16', '2019-11-11 03:53:16', '2020-11-11 09:23:16'),
('0c6784cecad36c3bf7948dd81a5f58d89f7478fd6764167798ac160ee5726204166335e3b63f4c6e', 5, 2, NULL, '[\"*\"]', 1, '2019-12-05 01:24:13', '2019-12-05 01:24:13', '2020-12-05 06:54:13'),
('0feb6292ba4874f248d485da37c3336979fa2798a375642da694701e67b2cdf9a90a9bcdd99c25b7', 73, 2, NULL, '[\"*\"]', 1, '2019-11-14 04:40:59', '2019-11-14 04:40:59', '2020-11-14 10:10:59'),
('10cffc1d4f390d127b29d8ba0d2312a20023cb8a8537f5f6080fe58182598a98922301bb40aaffbc', 5, 2, NULL, '[\"*\"]', 1, '2019-12-05 02:11:08', '2019-12-05 02:11:08', '2020-12-05 07:41:08'),
('10f5fa895e4380e83fee42faa5c5a428d7f1454842586ecb5cfe3baabd2cd682b567b429452a9d38', 70, 2, NULL, '[\"*\"]', 1, '2019-11-13 07:21:29', '2019-11-13 07:21:29', '2020-11-13 12:51:29'),
('119ab74afb715da241a6dcfa72226bde31f3442b4231e49d30727110948f79879ed01ae074b0394c', 32, 2, NULL, '[\"*\"]', 0, '2019-10-04 08:44:39', '2019-10-04 08:44:39', '2020-10-04 14:14:39'),
('11f9d1d8de2a82a6dce111d8c56063d56f20543b7adf778bf8bdc1fde1b03da70995509d313034e5', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 04:53:08', '2019-12-05 04:53:08', '2020-12-05 10:23:08'),
('<KEY>', 31, 2, NULL, '[\"*\"]', 0, '2019-10-04 08:42:05', '2019-10-04 08:42:05', '2020-10-04 14:12:05'),
('<KEY>', 5, 2, NULL, '[\"*\"]', 1, '2019-12-03 00:15:40', '2019-12-03 00:15:40', '2020-12-03 05:45:40'),
('12af07ea5f7a71c354babdb3d11c4de97f687ded96374bcca20f88891f16eb07d49f1eccb931400b', 41, 1, 'My Token', '[]', 0, '2019-12-06 06:35:06', '2019-12-06 06:35:06', '2020-12-06 12:05:06'),
('1410ee796396133e2ab8a57020610749cb732f3bdceaa179a16217f0fd1a1766feb5b2cc5389270b', 3, 2, NULL, '[\"*\"]', 1, '2019-12-06 04:55:06', '2019-12-06 04:55:06', '2020-12-06 10:25:06'),
('14272ab4c4fe2a56283bbca5f91e7cc87429ff5b6dcae909842422d8a902e0a7d21e29075c4ab2e1', 4, 2, NULL, '[\"*\"]', 1, '2019-11-29 08:04:33', '2019-11-29 08:04:33', '2020-11-29 13:34:33'),
('1503bab3ab1f1a6c3832d6a25678d04c963326c045303af5657e8ea3e5d956414903e9631725796a', 3, 2, NULL, '[\"*\"]', 1, '2019-12-06 00:57:43', '2019-12-06 00:57:43', '2020-12-06 06:27:43'),
('161c5caa435f2d63e4ebc84daece2e5eb7fa7c47014d9e90cc2c8c09f640f86fd5b5b1382afbca54', 17, 2, NULL, '[\"*\"]', 1, '2019-09-17 08:41:02', '2019-09-17 08:41:02', '2020-09-17 14:11:02'),
('1733e06e5c8054119a24abf60152b382d03582138a396bb62819f0ae0e42751738d70b98379fa8ec', 90, 2, NULL, '[\"*\"]', 1, '2019-12-09 02:05:31', '2019-12-09 02:05:31', '2020-12-09 07:35:31'),
('17b5c9ee21b4e29673faf873618982ec2d3eb239fa7b707d7fcc8e9a71357406e977ec4de614ef9b', 42, 2, NULL, '[\"*\"]', 0, '2019-10-30 08:18:11', '2019-10-30 08:18:11', '2020-10-30 13:48:11'),
('18496f1818d7d4f1cd2569d2146c252ed3dd02a4d7986b99cda43b7507920cd248baa60b6503abdc', 80, 2, NULL, '[\"*\"]', 1, '2019-12-06 10:28:42', '2019-12-06 10:28:42', '2020-12-06 15:58:42'),
('192709971d643148263a802149940c6a341c0d83644ad3fcb75e91e667246c38fad39bf8bfb5126a', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 05:43:25', '2019-12-05 05:43:25', '2020-12-05 11:13:25'),
('1b2baecb075ee3bf797e477ac1afba0fd82271f42cd8d22c6e0ea4b9b3a00edf41f5d052bad2e90a', 69, 2, NULL, '[\"*\"]', 0, '2019-11-13 00:13:04', '2019-11-13 00:13:04', '2020-11-13 05:43:04'),
('1c22a3e8deec0f702b8be6dfb2c87cf138b43a4e4cf44a7d54cb8830e88fb82800fcb9b21f263a59', 5, 2, NULL, '[\"*\"]', 1, '2019-09-09 02:26:09', '2019-09-09 02:26:09', '2020-09-09 07:56:09'),
('1c9ae669725089bff4c446bbb2aba0521a4c44153da52185df02b7bcd642c1ed9226fd186885377a', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 04:55:59', '2019-12-05 04:55:59', '2020-12-05 10:25:59'),
('2018c021d0963c7ad3adb2dbbcf7c8779bb62414426a686838b87293124d4acbbbe9e8daf75a2b3e', 28, 2, NULL, '[\"*\"]', 0, '2019-10-04 06:37:25', '2019-10-04 06:37:25', '2020-10-04 12:07:25'),
('205612724c696e29b8733701068b28104aa52c1a527178b28931a05cd165cdbe711e9ae10e919c2d', 47, 2, NULL, '[\"*\"]', 1, '2019-10-30 08:50:06', '2019-10-30 08:50:06', '2020-10-30 14:20:06'),
('2154892b2ee853ebc8b5c87f73392227f95c3c3b567ca4aa1f4bfa24400d3897dfea0c52d87bd737', 70, 2, NULL, '[\"*\"]', 0, '2019-11-13 07:28:36', '2019-11-13 07:28:36', '2020-11-13 12:58:36'),
('2294e70fe87b04143f346f34d6bf8756ca74a171ff5920e0666f1bc040e0455e1547fc5ebe25cc0a', 64, 2, NULL, '[\"*\"]', 0, '2019-11-05 03:56:30', '2019-11-05 03:56:30', '2020-11-05 09:26:30'),
('23b5e13e142fc29313d68f9d2ff3c1cccb447b8deb389b3f4ab2518a2399758829065b63f74c39a2', 5, 2, NULL, '[\"*\"]', 1, '2019-11-29 07:42:02', '2019-11-29 07:42:02', '2020-11-29 13:12:02'),
('243e8aa265e57176b4ad1dac24ab03828fa49da5068b469522443e7969c67035ec10736b6d952f44', 5, 2, NULL, '[\"*\"]', 1, '2019-11-08 04:32:36', '2019-11-08 04:32:36', '2020-11-08 10:02:36'),
('24b9cf0f6cdf1cda098be894566634bf39aefa6b89d9a46ea23f385707692ef5c4ac0377f6a2644d', 76, 2, NULL, '[\"*\"]', 1, '2019-12-06 09:02:17', '2019-12-06 09:02:17', '2020-12-06 14:32:17'),
('24ba68bb08cbfec9d772405928bede05c200577242bac14295d2af431d26dfdd1312e060705b22a5', 4, 2, NULL, '[\"*\"]', 1, '2019-11-06 23:53:12', '2019-11-06 23:53:12', '2020-11-07 05:23:12'),
('24f6f62422d4686b1a915a8bdfa12bbebc63057667c5066ff0cbe6ddbf991883085a2911ee1a647f', 66, 2, NULL, '[\"*\"]', 1, '2019-11-11 03:54:54', '2019-11-11 03:54:54', '2020-11-11 09:24:54'),
('252aa32272b880b9c1404f4abbffb9ef0d59c130b1e3ce7720a2923255c93b5ae0156265d6bea014', 17, 2, NULL, '[\"*\"]', 1, '2019-09-17 08:42:04', '2019-09-17 08:42:04', '2020-09-17 14:12:04'),
('258207fe0a4f2ac4905453f600b673273c89eceaf9a7dab6e4aceac06bad4965a1097378e631b523', 82, 2, NULL, '[\"*\"]', 1, '2019-12-06 10:30:27', '2019-12-06 10:30:27', '2020-12-06 16:00:27'),
('25d51e83f2d83a149a48f21754c2c46abbcef6a9fac8c1655010b1262d71fd4d7d8d80b9b8e850c0', 5, 2, NULL, '[\"*\"]', 1, '2019-11-08 01:11:36', '2019-11-08 01:11:36', '2020-11-08 06:41:36'),
('29fdb41eb6badbd40464f3977649532a564ac3aa1203b74f9881940631aac5e878a29ffab18b30a0', 38, 2, NULL, '[\"*\"]', 0, '2019-10-30 04:04:29', '2019-10-30 04:04:29', '2020-10-30 09:34:29'),
('2b3cbc74bdd6deb1c529dfed78556b60531f0e52e381f65162f6a0ef0885c4c61907753a4d692356', 67, 2, NULL, '[\"*\"]', 0, '2019-11-11 04:47:32', '2019-11-11 04:47:32', '2020-11-11 10:17:32'),
('2bcb707fab369db57a7944a90f560592fb14732f44ac250cb7d59881dfd28250cc2da6fe1a63f96f', 76, 2, NULL, '[\"*\"]', 0, '2019-12-09 06:12:05', '2019-12-09 06:12:05', '2020-12-09 11:42:05'),
('2c902c8ae1d3f0fd230fbf950afb3b8a44306a111813d0ab91ea283de31929de276d0c6d28e02852', 19, 2, NULL, '[\"*\"]', 0, '2019-10-04 03:53:10', '2019-10-04 03:53:10', '2020-10-04 09:23:10'),
('<KEY>', 41, 1, 'My Token', '[]', 0, '2019-12-06 06:10:57', '2019-12-06 06:10:57', '2020-12-06 11:40:57'),
('<KEY>', 53, 2, NULL, '[\"*\"]', 0, '2019-11-04 23:12:51', '2019-11-04 23:12:51', '2020-11-05 04:42:51'),
('2ea0f9c2dd95ff9fa69ad0c8af6b48fc0eee989106e96f39f92134bff0f91547ab970f68016c681e', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 04:53:06', '2019-12-05 04:53:06', '2020-12-05 10:23:06'),
('2f47fa8c0f1548826011ca31b157fdc513cf5661bdb3ffc2229d774b091a3a32ac02da67809f69f9', 4, 2, NULL, '[\"*\"]', 1, '2019-11-14 05:51:05', '2019-11-14 05:51:05', '2020-11-14 11:21:05'),
('308183d2c16258d21180c579db24206319e8250ee5648cae38748db4b2baaa82581b7c43fc4c5a13', 4, 2, NULL, '[\"*\"]', 1, '2019-11-07 00:20:02', '2019-11-07 00:20:02', '2020-11-07 05:50:02'),
('30ca77d04d984e7b08ad6b0dfe0503ceaa7bc2c0ac4ea5925f4efb7e0594e9dfac08cc8083239552', 4, 2, NULL, '[\"*\"]', 1, '2019-12-02 06:15:36', '2019-12-02 06:15:36', '2020-12-02 11:45:36'),
('31a425fa73588f2f26ffcd9216f7c01983628a4f4ba421b45accb6234eadeeea58fec6c7669a0b3c', 86, 2, NULL, '[\"*\"]', 1, '2019-12-07 05:05:29', '2019-12-07 05:05:29', '2020-12-07 10:35:29'),
('31c79c67db29e1a5a2c7f7d36d47f15fbb3d41bbbb2b461c67615c369f0f612c959e8917be392bfa', 84, 2, NULL, '[\"*\"]', 0, '2019-12-06 10:55:27', '2019-12-06 10:55:27', '2020-12-06 16:25:27'),
('32d42fb6130b3a6c0a955770029b031767427f93ed12601b2d32eb55dc4e49471ccb82b8a50b8e70', 66, 2, NULL, '[\"*\"]', 1, '2019-11-11 04:02:22', '2019-11-11 04:02:22', '2020-11-11 09:32:22'),
('32f6918b50c27796ed6e3e6a2c4d01109d8b80c144c303fbe82aa81b0ead31602c5110043c66dba3', 5, 2, NULL, '[\"*\"]', 1, '2019-11-14 03:35:56', '2019-11-14 03:35:56', '2020-11-14 09:05:56'),
('3460049051a5981f5ddb59d46659030874ea9499191c8c86029c9b7b0c30b51bcabda0eb38bfd37a', 71, 2, NULL, '[\"*\"]', 1, '2019-11-13 05:29:40', '2019-11-13 05:29:40', '2020-11-13 10:59:40'),
('3533c33f2ac94e816788a5fc6fdbb427b42c789cd56b14182db4d2e39f8195f48c24464e1b5c61db', 56, 2, NULL, '[\"*\"]', 0, '2019-11-04 23:29:17', '2019-11-04 23:29:17', '2020-11-05 04:59:17'),
('3590d7c11c2e20ccb80a4045ebbd32f48b85f37b7917df4d30a2f027131708b17f21e720329b21d8', 77, 2, NULL, '[\"*\"]', 1, '2019-12-06 07:35:33', '2019-12-06 07:35:33', '2020-12-06 13:05:33'),
('35f805e52f9ae3af95d8035f7a374c966ba59f6c6e1d1abbc6a4df725c41909968af12692282070d', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 04:54:50', '2019-12-05 04:54:50', '2020-12-05 10:24:50'),
('379695b913fe88d3160c63984bfe5bb5b414bf806a94659e353491de2debb4a551c705158780ecd2', 4, 2, NULL, '[\"*\"]', 1, '2019-09-09 01:42:56', '2019-09-09 01:42:56', '2020-09-09 07:12:56'),
('38ee1edd1a8dc6a1738b6b3516f11fc00a2286fa54d181b9e0bc0513232d1c7a5cc65ee26bdf22a4', 9, 2, NULL, '[\"*\"]', 1, '2019-09-09 23:05:17', '2019-09-09 23:05:17', '2020-09-10 04:35:17'),
('3a0d379ba157f502c09b3e9009718373a2d074d69e860350bf211355b99c5724170931e410332dc2', 50, 2, NULL, '[\"*\"]', 0, '2019-11-04 00:23:47', '2019-11-04 00:23:47', '2020-11-04 05:53:47'),
('3bf850aff4bc351d748f3426d2224428c30c56925f1bea8dc83b8d8a5c9bea0c0d34d126b0dcce0a', 13, 2, NULL, '[\"*\"]', 0, '2019-09-09 23:36:11', '2019-09-09 23:36:11', '2020-09-10 05:06:11'),
('3c0b04f85756e9f62fa87d9f17b5603396ab6a01a9ba70413988a8657ae20a69417a323d1af628b6', 4, 2, NULL, '[\"*\"]', 1, '2019-12-03 02:29:56', '2019-12-03 02:29:56', '2020-12-03 07:59:56'),
('3c88f8b22d78244ab2e84816f44295ea6ce43ba680083e3ad57fbf01bf4fd85796ad808a4b1f314a', 46, 2, NULL, '[\"*\"]', 0, '2019-10-30 08:50:23', '2019-10-30 08:50:23', '2020-10-30 14:20:23'),
('3d698e7888440416a83a4943889284edffe00b6a2a6d7b062ffee7d91b61039948c5c3e9a9a6781b', 80, 2, NULL, '[\"*\"]', 1, '2019-12-06 09:39:59', '2019-12-06 09:39:59', '2020-12-06 15:09:59'),
('40ecbebf97353b72cec7e0edef9bc8922ff069c298b26b8e5c4c6f33be94131b8dcfb3a422fb673e', 80, 2, NULL, '[\"*\"]', 1, '2019-12-06 10:12:30', '2019-12-06 10:12:30', '2020-12-06 15:42:30'),
('411d407c7d56b62dfee6ef5475561dd209c75f934b6353db3b506ecfcfcc4f30b947a74d01aaa0f8', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 01:09:30', '2019-12-05 01:09:30', '2020-12-05 06:39:30'),
('4121270c54cbd37a414629444a9285650fdc9872196cc605d35e02ccdfcf20f70d431f2fe78b9abb', 85, 2, NULL, '[\"*\"]', 1, '2019-12-07 05:06:02', '2019-12-07 05:06:02', '2020-12-07 10:36:02'),
('41b103585d3e35a7444dd8ad725f20c9b9c363ccc46863d48bd9dbd8d00bd0a68264442574f4e19a', 88, 2, NULL, '[\"*\"]', 0, '2019-12-07 05:56:05', '2019-12-07 05:56:05', '2020-12-07 11:26:05'),
('41d1bba3f1daefca8fdb333c8d5d47f68cf96fbc312e526e4e35f58c6d4bf4438d5530e63e0583ba', 85, 2, NULL, '[\"*\"]', 1, '2019-12-07 05:07:53', '2019-12-07 05:07:53', '2020-12-07 10:37:53'),
('436f7f3a89f7ac07e42b675e3ca05f5f4246e1e3df3619dc56f74af83db59e73b1e15cd03b7fe71e', 76, 2, NULL, '[\"*\"]', 1, '2019-12-06 01:11:32', '2019-12-06 01:11:32', '2020-12-06 06:41:32'),
('44842e1f01ee9da879e33f5070cbe9f5877291d40eb47ec16747cf23960f136244fa2a6f15b18386', 81, 2, NULL, '[\"*\"]', 1, '2019-12-06 09:40:12', '2019-12-06 09:40:12', '2020-12-06 15:10:12'),
('453e65d8ba2282e1f46002716441204eb4c2de6b46cfcaf1e3666f91d1e2570240fa840f7c73f670', 85, 2, NULL, '[\"*\"]', 1, '2019-12-07 05:10:53', '2019-12-07 05:10:53', '2020-12-07 10:40:53'),
('49fe443479ccd0bf47d68fe66a75481abd404ca5595147ca7029c044acb987c768f87b866908de35', 3, 2, NULL, '[\"*\"]', 1, '2019-12-06 05:00:19', '2019-12-06 05:00:19', '2020-12-06 10:30:19'),
('4d81f6040a31d3928d00ffbe84fb2fc8e2da6e3b192773d81471fee2cd55c5d1c558ab9b198d7843', 5, 2, NULL, '[\"*\"]', 1, '2019-11-07 05:32:57', '2019-11-07 05:32:57', '2020-11-07 11:02:57'),
('4e4450420f32ca91d55d3bdb77529b00d7c5ad3643ed37305c69e840af04c241955110aa3b67a8ca', 87, 2, NULL, '[\"*\"]', 0, '2019-12-07 05:52:58', '2019-12-07 05:52:58', '2020-12-07 11:22:58'),
('4f5c7c6824cb8490648e14c55945c9c7f306807275455a0fde85bc9fedc3153162280ad2322280b7', 4, 2, NULL, '[\"*\"]', 1, '2019-11-14 06:02:45', '2019-11-14 06:02:45', '2020-11-14 11:32:45'),
('50dee8f4562a5d94be6c5b2b8a299490f9349ce89272e99e494cd54293218cb6569beeb3bfbb2a75', 15, 2, NULL, '[\"*\"]', 0, '2019-09-10 01:06:07', '2019-09-10 01:06:07', '2020-09-10 06:36:07'),
('536ffe64ed1b94a32a5e8d26065576e15e267a3d75c86535af7fd98740bda6f006b9a93e27e73b48', 66, 2, NULL, '[\"*\"]', 0, '2019-11-11 04:51:50', '2019-11-11 04:51:50', '2020-11-11 10:21:50'),
('5406afbe702934e4461ad8857a0893d6b947079b756e8d2434c636d2586c4382d46f85d978c6af9f', 80, 2, NULL, '[\"*\"]', 1, '2019-12-06 09:40:58', '2019-12-06 09:40:58', '2020-12-06 15:10:58'),
('54e80d2d989208ddb8206fe9c1a05d77671a6f03db8c3a0321a8837905842dd1fa92aec6b77ed6ae', 68, 2, NULL, '[\"*\"]', 0, '2019-11-11 04:48:52', '2019-11-11 04:48:52', '2020-11-11 10:18:52'),
('5582f41265e16e309ae82ad620f244b326f257de2b6700b0fb7a3656493d7184e515f5fe5be211f5', 29, 2, NULL, '[\"*\"]', 0, '2019-10-04 06:40:17', '2019-10-04 06:40:17', '2020-10-04 12:10:17'),
('570a60872f1563279d8a6554b3c51a28165e761397921b1c786a4c2afb7149b4f365e4e62e4f86b1', 43, 2, NULL, '[\"*\"]', 1, '2019-10-30 08:02:13', '2019-10-30 08:02:13', '2020-10-30 13:32:13'),
('5ad4bd0d3e36370df0bc1eb4f0caadc6526a2d3cb33881bbbfebd84a560675874a0eb9a74afd3ea2', 3, 2, NULL, '[\"*\"]', 0, '2019-12-09 06:53:24', '2019-12-09 06:53:24', '2020-12-09 12:23:24'),
('5ce06bd17f21ad8aec1e97359cf62eac325bc16cd337e66077c9f0aef62fc2aa55cfba4dd7c7d365', 3, 2, NULL, '[\"*\"]', 1, '2019-12-06 08:36:51', '2019-12-06 08:36:51', '2020-12-06 14:06:51'),
('5edd0c2531928f7a25679531d60dfdbbda168618ca56c2ac647283dc9c914824048697678300f208', 69, 2, NULL, '[\"*\"]', 1, '2019-11-12 23:53:23', '2019-11-12 23:53:23', '2020-11-13 05:23:23'),
('5fe2fdc374878b3f9bdfc85b97bdb7bf4d7fac3ed24ca06204ee433d8f133811a5fb8c463c28ce8d', 5, 2, NULL, '[\"*\"]', 1, '2019-11-07 23:54:23', '2019-11-07 23:54:23', '2020-11-08 05:24:23'),
('5ffdf42b65b23699b7b12dc43d9353dec753e1de036fd9a85b0abfe8841630a68926eafb6c93c68d', 70, 2, NULL, '[\"*\"]', 1, '2019-11-12 23:29:49', '2019-11-12 23:29:49', '2020-11-13 04:59:49'),
('60b944b4066936a1206be1efd9540c65aacd9d102c8adb9ef39dc025d712d5dc7c7b12a980905ad1', 78, 2, NULL, '[\"*\"]', 1, '2019-12-06 09:50:49', '2019-12-06 09:50:49', '2020-12-06 15:20:49'),
('61413964108a2cb8a8f864d2edd452cee93708b039ee322b8f167ac90c590f0e932164bd0cbb6f38', 71, 2, NULL, '[\"*\"]', 1, '2019-11-13 05:28:57', '2019-11-13 05:28:57', '2020-11-13 10:58:57'),
('621a993fcb96eb3a8eed2cfe6845f1d3b896e86066564ed2da5aeb6952a61a5d960c0316534cc37d', 49, 2, NULL, '[\"*\"]', 0, '2019-11-04 00:13:55', '2019-11-04 00:13:55', '2020-11-04 05:43:55'),
('62ca1388d13a98a7ff3aee201892c453224d0d494618492851627909b3c50b876a2856c412aac7e4', 86, 2, NULL, '[\"*\"]', 0, '2019-12-07 05:06:27', '2019-12-07 05:06:27', '2020-12-07 10:36:27'),
('6328ee0a552b9b9f6a388daa7318210c5d48ad683cb5f73de249ded8b33e97e63cb4223e02a413ca', 7, 2, NULL, '[\"*\"]', 0, '2019-09-09 05:13:02', '2019-09-09 05:13:02', '2020-09-09 10:43:02'),
('64acf031390f8110bc3c6facd3b8fd0a80f67c5e0f17c0374862e421d9405be70ec92dee386e4956', 5, 2, NULL, '[\"*\"]', 1, '2019-09-20 02:05:35', '2019-09-20 02:05:35', '2020-09-20 07:35:35'),
('6585bb313db9153a98d23504877e12bb35d1ba5810ba3ce199a863eb3a45fe644547e17c085f66bd', 43, 2, NULL, '[\"*\"]', 0, '2019-10-30 08:56:56', '2019-10-30 08:56:56', '2020-10-30 14:26:56'),
('65e9575370befbe5bb0bab62e8f65fd698b63328eab31050dc53489c2a185ca1913ffe108a765381', 4, 2, NULL, '[\"*\"]', 1, '2019-11-14 05:09:45', '2019-11-14 05:09:45', '2020-11-14 10:39:45'),
('66feb28edbaac0f05d1905fef7e3cc6ea6ba7dcbf2ec1131a160dff017ba57191d1965bb2f257d90', 3, 2, NULL, '[\"*\"]', 1, '2019-09-09 01:35:02', '2019-09-09 01:35:02', '2020-09-09 07:05:02'),
('670d17446f510be7c0d3def972c1de262eb4678dc0eb543ab4c9f35f6125c4f1792ba6e0b07ae744', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 01:23:53', '2019-12-05 01:23:53', '2020-12-05 06:53:53'),
('67de655d48d1ad62a012cbb8243980dd368354bb93a30c5c8cfa35c6656666d297cc7473dcaa07b5', 69, 2, NULL, '[\"*\"]', 1, '2019-11-13 00:11:25', '2019-11-13 00:11:25', '2020-11-13 05:41:25'),
('68bc9f2d12e2cce851154eeeee469858d70e1a13f756b1b2014939edf1240c9bb678e533b7998d26', 5, 2, NULL, '[\"*\"]', 1, '2019-11-14 06:02:59', '2019-11-14 06:02:59', '2020-11-14 11:32:59'),
('696eb2b7d98cb135ef6fbc7124ee9eff3832d819bd6adc8b3c5cc34f82512078188df1bc807aeaa5', 81, 2, NULL, '[\"*\"]', 1, '2019-12-06 09:41:02', '2019-12-06 09:41:02', '2020-12-06 15:11:02'),
('6a98fe6719d6447e247b1f8257dfa7687c7b23ebe6e593f13afe930ec1f78094fdc6ddbc17ca06f1', 41, 1, 'My Token', '[]', 0, '2019-10-30 12:53:46', '2019-10-30 12:53:46', '2020-10-30 18:23:46'),
('6b3728d247920e8e728ae251d0b2505219537cecc894ab41ed527827df29f049abeb8eba0961207e', 5, 2, NULL, '[\"*\"]', 1, '2019-11-07 05:25:36', '2019-11-07 05:25:36', '2020-11-07 10:55:36'),
('<KEY>', 12, 1, 'My Token', '[]', 0, '2019-09-10 05:06:05', '2019-09-10 05:06:05', '2020-09-10 10:36:05'),
('6cea187c5e7dabaa880dbcb16ddd548d57090867238559710864ddff1db21758f12719d5975d8615', 77, 2, NULL, '[\"*\"]', 1, '2019-12-06 06:30:12', '2019-12-06 06:30:12', '2020-12-06 12:00:12'),
('6d3b1f04a70aee270bf68bc03118650df5f589d58adc6941d7a0a8527cb220a0af70eac19c3efe22', 40, 2, NULL, '[\"*\"]', 0, '2019-10-30 04:07:18', '2019-10-30 04:07:18', '2020-10-30 09:37:18'),
('6d52b1816020c3d862416ff4067ccf9ada26034dfc01a556fff452dbcf1c2444dd6ecba9c5df69dc', 54, 2, NULL, '[\"*\"]', 0, '2019-11-04 23:26:50', '2019-11-04 23:26:50', '2020-11-05 04:56:50'),
('6f892d202b2d8d8451b1ff936609e571e6faba843a8c5960c74dc2440a5e601a77319f8e9a67040c', 5, 2, NULL, '[\"*\"]', 1, '2019-11-13 07:05:21', '2019-11-13 07:05:21', '2020-11-13 12:35:21'),
('6f9d989dea8ba8af0fd8824a3d4e22a3ba8104b4b592aa7a9f26f77e2a66dfed69b102acf377a219', 71, 2, NULL, '[\"*\"]', 0, '2019-11-13 07:49:33', '2019-11-13 07:49:33', '2020-11-13 13:19:33'),
('6fa787a30932a26ec54b05d4082e38cef49edd43575396f42118b0c0964b856d99063ab960862095', 58, 2, NULL, '[\"*\"]', 0, '2019-11-04 23:38:16', '2019-11-04 23:38:16', '2020-11-05 05:08:16'),
('70a1c509916c86133986a52b537e975c1d99703b13c94d34053d6aa97727d998047e75e43dd5f5f1', 41, 1, 'My Token', '[]', 0, '2019-12-06 06:12:26', '2019-12-06 06:12:26', '2020-12-06 11:42:26'),
('71e8af1522485022a9883dc30b118260658c758b213ee6fab751b6b447a5a2537a1dcbd18cf1c5c9', 37, 2, NULL, '[\"*\"]', 0, '2019-10-30 03:58:19', '2019-10-30 03:58:19', '2020-10-30 09:28:19'),
('730c75adb41601540dbda4e9a2b7dd985d74ec524c4a9a76ccff79cdc19da84b732d0303c60628ea', 74, 2, NULL, '[\"*\"]', 1, '2019-11-14 04:42:51', '2019-11-14 04:42:51', '2020-11-14 10:12:51'),
('7366400fa545ba3d8c3831a299f398d19718464a9489a43b7973e07330f1248366f65c5926b5e481', 35, 2, NULL, '[\"*\"]', 0, '2019-10-04 08:59:47', '2019-10-04 08:59:47', '2020-10-04 14:29:47'),
('73c79f5e0b4cafa2293745eca8b55fe20d77dbca5047754985e339d32f4f9f8a084df70af590f98a', 55, 2, NULL, '[\"*\"]', 0, '2019-11-04 23:27:47', '2019-11-04 23:27:47', '2020-11-05 04:57:47'),
('754b709cb2065db1e8c17ac50cdff5802b6d1c21dd3b3bb7e3a8ce24776e28b8a601fb6fad4ad240', 79, 1, 'My Token', '[]', 0, '2019-12-06 12:59:40', '2019-12-06 12:59:40', '2020-12-06 18:29:40'),
('75c659f15e0b659ebf2e20ee757919bf5726dc89a1278616c650b3d0c070425a5f3a840c3702eba8', 5, 2, NULL, '[\"*\"]', 1, '2019-11-11 05:27:07', '2019-11-11 05:27:07', '2020-11-11 10:57:07'),
('7928c8d29ae30016ba051d04a4d19ef3dc2ada86614289aa4ef714a2810ff353a65ec61b6d0b35f4', 5, 2, NULL, '[\"*\"]', 1, '2019-11-07 01:01:06', '2019-11-07 01:01:06', '2020-11-07 06:31:06'),
('7977d4a2e937e07a62941619920a0516631257d8865a471be1c69d94dc89ce31126e80a3b0abd8b8', 5, 2, NULL, '[\"*\"]', 1, '2019-12-05 01:57:11', '2019-12-05 01:57:11', '2020-12-05 07:27:11'),
('7995b9813a814e3aafc2935f3f250b183aeb804f9bc1cc305dfa590876bb96913719d2fb43632ab9', 74, 2, NULL, '[\"*\"]', 0, '2019-11-14 05:00:06', '2019-11-14 05:00:06', '2020-11-14 10:30:06'),
('7a7a19fbd409a56f08c06690b29473dbd3639d43c4a7839b0c92c5981eeeb820cd33d22296006dc0', 4, 2, NULL, '[\"*\"]', 1, '2019-11-29 07:37:58', '2019-11-29 07:37:58', '2020-11-29 13:07:58'),
('7a8ce406c82a785ad38bd6dabb50e7157dfa21b1ec4ab17e17c00d12ff4365a37a2d5ad71b4a0505', 87, 2, NULL, '[\"*\"]', 1, '2019-12-07 05:48:20', '2019-12-07 05:48:20', '2020-12-07 11:18:20'),
('7b1476afdcb93883f951a8f4a539151ceda736d0287577e893217718930d361757472838b52154d3', 77, 2, NULL, '[\"*\"]', 1, '2019-12-06 06:31:14', '2019-12-06 06:31:14', '2020-12-06 12:01:14'),
('7bfd053678ded5136da425a2c5aae96af51f176086e21fbaecd3c50717cf429f46f342df114fbc49', 65, 2, NULL, '[\"*\"]', 0, '2019-11-05 04:01:59', '2019-11-05 04:01:59', '2020-11-05 09:31:59'),
('7c34855bb8ab97bd32eaffae319b9a4c63ff22d29f381e4b8db45e566248edc5c6332523578a2045', 74, 2, NULL, '[\"*\"]', 1, '2019-11-14 04:41:45', '2019-11-14 04:41:45', '2020-11-14 10:11:45'),
('7ed8ceaa2ec3708ecbcafe7bb9ec48dc2ce6f69ab35f997bc8f031e6b0d1237f82aef6f15cea0c18', 20, 2, NULL, '[\"*\"]', 0, '2019-10-04 03:54:40', '2019-10-04 03:54:40', '2020-10-04 09:24:40'),
('7f5866e98fe3ceba3acc206c799b3b59b0dcdb40656a087fe030cce80b63fa0385bd95da6a362511', 5, 2, NULL, '[\"*\"]', 1, '2019-11-08 07:38:07', '2019-11-08 07:38:07', '2020-11-08 13:08:07'),
('800d95a73d759eaf8e6b9e74fd9330a785a728a5823b0854eaae4a769ea5c7b88c3922c10a4643ed', 80, 2, NULL, '[\"*\"]', 1, '2019-12-06 10:37:32', '2019-12-06 10:37:32', '2020-12-06 16:07:32'),
('80b0fb577e4b9a6ab39f65fd6aea612060301573e2bcbe783cd7ceb71f505ce452e0bb356fff6dbd', 73, 2, NULL, '[\"*\"]', 0, '2019-11-14 04:57:32', '2019-11-14 04:57:32', '2020-11-14 10:27:32'),
('814ab0fbbcfad4e572d88d75249342c6ec8e5647b0056e19d43b866688c4a5b1364de1c2779c1caf', 78, 2, NULL, '[\"*\"]', 1, '2019-12-07 05:20:32', '2019-12-07 05:20:32', '2020-12-07 10:50:32'),
('81c9d3600e65e1cbae68a31623e55eef1afde9d0584f7f8ef8bbde0382c0835bc89168ebf7602c15', 34, 2, NULL, '[\"*\"]', 0, '2019-10-04 08:49:59', '2019-10-04 08:49:59', '2020-10-04 14:19:59'),
('81ee7e00584308ae0f8a10cc9aa8c65be797c44df38196d98ef96ee0335af76abae67497e1c37423', 76, 2, NULL, '[\"*\"]', 1, '2019-12-06 01:08:24', '2019-12-06 01:08:24', '2020-12-06 06:38:24'),
('841182b58b94582ce4a355ec6c97dcf20540bab908b69b58682dbfa063ad2aeaf726b2404c601492', 5, 2, NULL, '[\"*\"]', 1, '2019-09-09 01:59:02', '2019-09-09 01:59:02', '2020-09-09 07:29:02'),
('84aa52338178fcdf10f49af82bcbe441f8ab19c9af007e116a3f66c950570a892edf4aa634dabc55', 4, 2, NULL, '[\"*\"]', 1, '2019-12-02 01:40:12', '2019-12-02 01:40:12', '2020-12-02 07:10:12'),
('851c8a5d779d3a5468555b467378573d119445579c3a575c7ca9bb4d8bd94822240954c318c56948', 5, 2, NULL, '[\"*\"]', 1, '2019-11-08 04:32:35', '2019-11-08 04:32:35', '2020-11-08 10:02:35'),
('8652a734d1c1fcfac681ed75720cfa1eb69448960abffecb669f0c4db31d58927dc56cd6497e0fb8', 5, 2, NULL, '[\"*\"]', 1, '2019-12-02 04:55:08', '2019-12-02 04:55:08', '2020-12-02 10:25:08'),
('8762b356747dce121340170ac18cc309e9a17a3619745939da782181ebc9cf6e7c4e2e2392d7c19f', 41, 1, 'My Token', '[]', 0, '2019-12-06 13:55:28', '2019-12-06 13:55:28', '2020-12-06 19:25:28'),
('87e04d00211db6a38ebdc16e9755e6c20464a3e9d70a7b4682b2e97e061b0b223d3da6d3f4a880f9', 52, 2, NULL, '[\"*\"]', 0, '2019-11-04 00:47:04', '2019-11-04 00:47:04', '2020-11-04 06:17:04'),
('89fc5f9fbd330addcc0f95380d8439c524d1a9c776f435b1aca51c1e069e9ec4d8d56e3e667a5da3', 4, 2, NULL, '[\"*\"]', 1, '2019-11-07 00:51:51', '2019-11-07 00:51:51', '2020-11-07 06:21:51'),
('8a1b780b8a8d2ea3e526b527d138f6e7ddb3a01092cf0ca1477ab5fca2348c781e0714c706dcdc23', 63, 2, NULL, '[\"*\"]', 0, '2019-11-05 03:49:31', '2019-11-05 03:49:31', '2020-11-05 09:19:31'),
('8bccc7121b0dae8c7dce39a4b148f6da18699267a30942be9a7e4fbe649e8a2eed59b2413f0c6231', 3, 2, NULL, '[\"*\"]', 1, '2019-10-30 08:06:19', '2019-10-30 08:06:19', '2020-10-30 13:36:19'),
('8df4f6bba45f90de14fa8174413cd1771415473fa4fa9dbc7a569299fc5a099eebf18a8e5fd6fa85', 22, 2, NULL, '[\"*\"]', 0, '2019-10-04 05:24:22', '2019-10-04 05:24:22', '2020-10-04 10:54:22'),
('8e34439e1383d9facb83a95c3959fb6c75bb6a53a4d30616ddae5747fb9a7285b8b44a8124d0fb55', 72, 2, NULL, '[\"*\"]', 1, '2019-11-13 05:33:16', '2019-11-13 05:33:16', '2020-11-13 11:03:16'),
('90b7f277f6363912a793a5879ed120e4f3ee3c06363179e0311a63726234733ba14b333647048187', 14, 2, NULL, '[\"*\"]', 1, '2019-09-10 01:05:39', '2019-09-10 01:05:39', '2020-09-10 06:35:39'),
('9110eb4abd5ae588a5237a5b0d25e4604b3ce779273006161df2ef9b0aa5a07059e796cb900ac0c0', 3, 2, NULL, '[\"*\"]', 1, '2019-12-06 02:59:55', '2019-12-06 02:59:55', '2020-12-06 08:29:55'),
('93b36a5f63de9a96b8260f98335cae6d3fcda7f9ae7a553bbfc920a96e940ee231eecfe49a2deb1f', 5, 2, NULL, '[\"*\"]', 1, '2019-11-14 05:45:24', '2019-11-14 05:45:24', '2020-11-14 11:15:24'),
('<PASSWORD>', 41, 1, 'My Token', '[]', 0, '2019-12-09 12:26:53', '2019-12-09 12:26:53', '2020-12-09 17:56:53'),
('946761d4ecb5d1911c0071dd49ceba57af0bf2ddccccfd2453bb032b799028123d4d37222a02163e', 89, 2, NULL, '[\"*\"]', 1, '2019-12-09 01:53:18', '2019-12-09 01:53:18', '2020-12-09 07:23:18'),
('953ceb8850a11c10e827f2ee79bffa92d9fc3b5f80f6591e5271b88cc64890773cebb4d089741ecf', 47, 2, NULL, '[\"*\"]', 0, '2019-10-30 08:54:47', '2019-10-30 08:54:47', '2020-10-30 14:24:47'),
('9574ef2e39d28c8ee5620725616129a393d5aec0e9ffdafe1b68dffed40b9429cd42012a892d932b', 5, 2, NULL, '[\"*\"]', 1, '2019-12-05 05:40:47', '2019-12-05 05:40:47', '2020-12-05 11:10:47'),
('96c388a5cc8218128d70a968714bc04fab23e99c9d781184fce9d7237e64d108aa4531d33212667b', 39, 2, NULL, '[\"*\"]', 0, '2019-10-30 04:04:46', '2019-10-30 04:04:46', '2020-10-30 09:34:46'),
('9761928b13f1bbb065b7c6d9e5dd66732237cea0933ad5f419d73b9a973d2334ce9dfcff7e784f09', 81, 2, NULL, '[\"*\"]', 1, '2019-12-06 09:54:09', '2019-12-06 09:54:09', '2020-12-06 15:24:09'),
('981bd29b5daf550895895212696410f89b1cd6b64c507121f4fe7296494c5cb56046fd499938df50', 5, 2, NULL, '[\"*\"]', 1, '2019-11-13 06:42:24', '2019-11-13 06:42:24', '2020-11-13 12:12:24'),
('9852731dd5ead7e3cddc2f35a829de2cb5f363cc17e250ccc313b58f65149ab4216632172fbd691b', 5, 2, NULL, '[\"*\"]', 1, '2019-12-02 03:40:44', '2019-12-02 03:40:44', '2020-12-02 09:10:44'),
('989c45336ee025927866c8e4342b767c94d03f4eb6e3f9a161c0143a32f17631c36a7218b4275177', 5, 2, NULL, '[\"*\"]', 1, '2019-11-14 04:59:21', '2019-11-14 04:59:21', '2020-11-14 10:29:21'),
('98a2ee20688038601a8239ebff03784c823f03d20e2a3e2ac0cf1686616fb2a33490e695b01d4e45', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 04:49:47', '2019-12-05 04:49:47', '2020-12-05 10:19:47'),
('9918396e2d6874a3478de422ac7458c1ce451df246e9cbc48166959d16d77b6df591d8ddff6d6f44', 5, 2, NULL, '[\"*\"]', 1, '2019-11-07 02:42:21', '2019-11-07 02:42:21', '2020-11-07 08:12:21'),
('993adf91da35e9c5e998fce37621adce07881c822bf44e25368cd1fae559ca1c0cbb592eef555033', 27, 2, NULL, '[\"*\"]', 0, '2019-10-04 06:36:58', '2019-10-04 06:36:58', '2020-10-04 12:06:58'),
('99c3ef7ccb4cde7d5990d8c75fe0d3a3548194214df116a92f4dbbc027c1280b10aa8dd7fd111069', 4, 2, NULL, '[\"*\"]', 1, '2019-11-14 05:08:38', '2019-11-14 05:08:38', '2020-11-14 10:38:38'),
('9a3888456c4da62b368fffed90a805ea51a1a575289635b245a034b7f3510a4651d3682dbbc1864c', 4, 2, NULL, '[\"*\"]', 1, '2019-11-14 03:27:10', '2019-11-14 03:27:10', '2020-11-14 08:57:10'),
('9aa6c296ade93e44fb2a5a205afc081088022d3c3ff13c3bd459b0b405259b66c77078eb3b4efc22', 46, 2, NULL, '[\"*\"]', 1, '2019-10-30 08:49:49', '2019-10-30 08:49:49', '2020-10-30 14:19:49'),
('9aa98b9097715bf1bf7504a6620608a59b5aaaecb4dfd65043dab7d0a1fe7526b2f5c5e3d0e52b03', 68, 2, NULL, '[\"*\"]', 1, '2019-11-11 04:36:02', '2019-11-11 04:36:02', '2020-11-11 10:06:02'),
('9b292246605e1fb9eebe8aced50b6f90a239e2edbbc64d669c137e4d54686accb3dfc32dd9627f10', 4, 2, NULL, '[\"*\"]', 1, '2019-11-29 07:49:30', '2019-11-29 07:49:30', '2020-11-29 13:19:30'),
('9c0ad230947ea25115b9dfe63d927f941978b7327151558da7bccbe8a51d484907c301e388ee70cf', 4, 2, NULL, '[\"*\"]', 1, '2019-11-07 00:27:03', '2019-11-07 00:27:03', '2020-11-07 05:57:03'),
('9c18391ffd519c4aea07c88f19402bc8021c4332c8222ee29bea3831c6faf649e4536422ab497566', 4, 2, NULL, '[\"*\"]', 0, '2019-12-09 06:53:23', '2019-12-09 06:53:23', '2020-12-09 12:23:23'),
('9c4abe14a3e67c9d4bab48d2a82d1dd86d628fb1c11a80d6c542915f81537741bc4cd3584df31cf5', 4, 2, NULL, '[\"*\"]', 1, '2019-12-06 07:18:27', '2019-12-06 07:18:27', '2020-12-06 12:48:27'),
('9cdba49ce54adf6bd58f359b9141f786d8488b02e61c6bd4e703b0d3d7604ddea13d0713d02a79b1', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 04:44:36', '2019-12-05 04:44:36', '2020-12-05 10:14:36'),
('9edf96b1dd87069f9e94bd15cc7048bde5703e116f2873b5d0d6b418e202d40ce4e0d241cab772e5', 70, 2, NULL, '[\"*\"]', 1, '2019-11-12 23:28:52', '2019-11-12 23:28:52', '2020-11-13 04:58:52'),
('a045217e81a92434710e9aa87ac852aeb030c2a4e461a58171013ff553ab672408fee7968daf6540', 69, 2, NULL, '[\"*\"]', 1, '2019-11-12 23:28:53', '2019-11-12 23:28:53', '2020-11-13 04:58:53'),
('a196af92fb6b786f2afc313145e2bc3636b41e5e0256a8cfb896eec74f3a1a20987a48f51dd92252', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 01:33:41', '2019-12-05 01:33:41', '2020-12-05 07:03:41'),
('a23c400aeed035d1ab4e92b81e7722937b4ab174fe312fe59625bfb4f0c0b1d932cd2a524258f63c', 10, 2, NULL, '[\"*\"]', 0, '2019-09-09 23:07:27', '2019-09-09 23:07:27', '2020-09-10 04:37:27'),
('a2c7bf5e886041782965d379acb0dfa4f10a327199476dc34d06295f94551c8cefd77380e3b19ce7', 4, 2, NULL, '[\"*\"]', 1, '2019-09-09 03:25:10', '2019-09-09 03:25:10', '2020-09-09 08:55:10'),
('a37d940f475ec89789b5347b9a52a345f37320a6956b9dd367e4a27f311f16827d5ada08d57725e8', 62, 2, NULL, '[\"*\"]', 1, '2019-11-12 23:42:58', '2019-11-12 23:42:58', '2020-11-13 05:12:58'),
('a45c3d82eb090055356eb057a970446a7c269c5f7f4a5dab9df5e36ab07e5637e9c5fe78bbe0d0ef', 41, 1, 'My Token', '[]', 0, '2019-12-06 14:08:11', '2019-12-06 14:08:11', '2020-12-06 19:38:11'),
('a45ed2d2d8961e3603a1c807532eb61a1590bb4078343a05b2159631021d0ba95dd0609ade4ff332', 57, 2, NULL, '[\"*\"]', 0, '2019-11-04 23:30:00', '2019-11-04 23:30:00', '2020-11-05 05:00:00'),
('a49673e204662bd5a9b7ec31814c787e64ed5ee7989d924ba8efc0931abe4a9e20618d80b8c423ab', 12, 1, 'My Token', '[]', 0, '2019-11-11 10:23:04', '2019-11-11 10:23:04', '2020-11-11 15:53:04'),
('a686540c988784320205d1179295f50b4447bc4cfc049b9171a3deb9f8101900f62054dfd592e6c8', 85, 2, NULL, '[\"*\"]', 0, '2019-12-07 05:19:13', '2019-12-07 05:19:13', '2020-12-07 10:49:13'),
('a89fe168b628de3579251222cd529947adaf5a38525884ca4bd917ee85de8d17eecae635db3aabda', 3, 2, NULL, '[\"*\"]', 1, '2019-12-06 06:01:53', '2019-12-06 06:01:53', '2020-12-06 11:31:53'),
('<KEY>', 80, 2, NULL, '[\"*\"]', 0, '2019-12-06 10:58:21', '2019-12-06 10:58:21', '2020-12-06 16:28:21'),
('aa026b728d3d1d4c7360fc9752c86b0c1950c0f50ea53053096dc8e2854eef2231a4e76d597ac80a', 33, 2, NULL, '[\"*\"]', 0, '2019-10-04 08:47:07', '2019-10-04 08:47:07', '2020-10-04 14:17:07'),
('ab868e1caeeeb4c3092124cc758a6ba047b198893eb59cdaa23a5fc61d980d6ee2fd4956bb21245c', 62, 2, NULL, '[\"*\"]', 0, '2019-11-13 00:06:15', '2019-11-13 00:06:15', '2020-11-13 05:36:15'),
('ac39d929d8f6817d8ad4e87901990b65d9055c952e1524b485e011fc0e37548ad74aa50fa8eb47dc', 12, 1, 'My Token', '[]', 0, '2019-09-10 05:05:45', '2019-09-10 05:05:45', '2020-09-10 10:35:45'),
('ac41abca8321c9086af4baa427118aa061e3b3e9541de62bf8b877c42b06b0f7a46240b4b74f7c1c', 67, 2, NULL, '[\"*\"]', 1, '2019-11-11 03:59:20', '2019-11-11 03:59:20', '2020-11-11 09:29:20'),
('acc395c1955f796aa3f3bc69219daf09b611fe2d2629a2bf89ac611b28d2b8d9d8917d90a209538e', 38, 2, NULL, '[\"*\"]', 1, '2019-10-30 03:59:26', '2019-10-30 03:59:26', '2020-10-30 09:29:26'),
('ad8eb22a234f8fe8b849393fdc4461ff33780c4a9b5aea7bf07196d4435c904ba974a70e81511408', 75, 2, NULL, '[\"*\"]', 0, '2019-11-14 04:48:54', '2019-11-14 04:48:54', '2020-11-14 10:18:54'),
('adb0ca11fc0bdad204e7ee0f0cbd86cdeceb6699d2419772afad3825bdf2e0d33679a38d7847c375', 5, 2, NULL, '[\"*\"]', 1, '2019-12-02 03:34:13', '2019-12-02 03:34:13', '2020-12-02 09:04:13'),
('adc40860e437ab6fa6e47949b699c16be84ca163b47cb2e4a8fac08ecfa49fef83da2765cbf00f33', 4, 2, NULL, '[\"*\"]', 1, '2019-12-02 02:01:24', '2019-12-02 02:01:24', '2020-12-02 07:31:24'),
('ade9b8a0daeefa058b326e5f0b99e69f6f1e36ee6b67bc81ba82e746b7f760b6576378e2f4ac1b1c', 4, 2, NULL, '[\"*\"]', 1, '2019-11-14 02:20:07', '2019-11-14 02:20:07', '2020-11-14 07:50:07'),
('afb0dddb6b267daae9727f909148f5eb87622cfaddbcdb9c626ce3f3efff81dd4daec2d80b097b7a', 83, 1, 'My Token', '[]', 0, '2019-12-06 16:23:33', '2019-12-06 16:23:33', '2020-12-06 21:53:33'),
('afb7d46c7c7ee7a193da416becdd29b5087ce05d7ecbfdb91525bfa3df5fb829f5ee457511f5ce55', 5, 2, NULL, '[\"*\"]', 1, '2019-11-08 02:24:31', '2019-11-08 02:24:31', '2020-11-08 07:54:31'),
('afe330ec9f4f2fe1c0bc628143c01cc2999842e937fda7a06044027ba0d815ac7e28bdbf34b7214d', 5, 2, NULL, '[\"*\"]', 1, '2019-09-20 02:09:29', '2019-09-20 02:09:29', '2020-09-20 07:39:29'),
('afe468b684a10d48c0e4f75f1891939d2c447a0c1f67ee612e82cbe3fbf106f3b9765140faf7dfee', 36, 2, NULL, '[\"*\"]', 0, '2019-10-30 03:54:44', '2019-10-30 03:54:44', '2020-10-30 09:24:44'),
('b12e4a91125e33adbf329dec1dd38424f59780bbdb754513e3c19a9a06ed72183ee6fe1fb8d732c3', 4, 2, NULL, '[\"*\"]', 1, '2019-12-01 23:25:17', '2019-12-01 23:25:17', '2020-12-02 04:55:17'),
('b1c8d191d680dfc50fc487a1c09c67671672ddd204604072b3a87929f3c832b9719f15d8d78c2065', 5, 2, NULL, '[\"*\"]', 1, '2019-09-17 08:43:24', '2019-09-17 08:43:24', '2020-09-17 14:13:24'),
('b23531f727c42511a9140af8e56f8edb7f50ab0e448935b43289d451178f76636cd79392af22f928', 44, 2, NULL, '[\"*\"]', 0, '2019-10-30 08:14:56', '2019-10-30 08:14:56', '2020-10-30 13:44:56'),
('b27715deecfc39a06ac8caaed7645688156b2fa740fd8f3dc59511efad6b6173268b5d666c2e00e0', 16, 2, NULL, '[\"*\"]', 0, '2019-09-10 01:20:38', '2019-09-10 01:20:38', '2020-09-10 06:50:38'),
('b32ea6e2b53f096dbb0021bbc1b4b837d71b5b06ef93ab09a8a5d73198a2af54df8b1d6d85a4d70a', 3, 2, NULL, '[\"*\"]', 1, '2019-10-30 07:17:17', '2019-10-30 07:17:17', '2020-10-30 12:47:17'),
('b418a291f2fd675c81478dea07b2ccc76b7f4d21e2cd4bf0b0471af8b9ace82d3c8ed77a88f8df5d', 11, 2, NULL, '[\"*\"]', 0, '2019-09-09 23:32:41', '2019-09-09 23:32:41', '2020-09-10 05:02:41'),
('b41c1c66092738fe41775afe75400e5753fbbe3a787a6abb05978ffd3cc419f7be35461fff540ed3', 2, 2, NULL, '[\"*\"]', 0, '2019-09-09 01:28:28', '2019-09-09 01:28:28', '2020-09-09 06:58:28'),
('b478bc24964134c33b5869b3e18f997f59f58c7173a210729e5060cad77dd696dd15795033937d79', 48, 2, NULL, '[\"*\"]', 0, '2019-11-03 23:48:51', '2019-11-03 23:48:51', '2020-11-04 05:18:51'),
('b47c5981bedd507946d825d8d083f0396b8746b60769fcf8af81d1ba72c3895f66e7f611ee5f6bed', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 02:39:11', '2019-12-05 02:39:11', '2020-12-05 08:09:11'),
('b4b0f97f770163ddcc62a532e210a5c4aa0be93e93e9e1d8d5f3ecbd507f45ca6e8cc889e8c01f8e', 90, 2, NULL, '[\"*\"]', 0, '2019-12-09 02:06:08', '2019-12-09 02:06:08', '2020-12-09 07:36:08'),
('b4e8142796146a90c21a4241f821cd4393e56fbd70d7f1ad7ee6cad49b98524bb6009b631653449e', 5, 2, NULL, '[\"*\"]', 1, '2019-12-05 01:33:27', '2019-12-05 01:33:27', '2020-12-05 07:03:27'),
('b584f205d8ba6adfe14d73eb19516eb654944e82360919bca850107974a87c36d6cb075f8fb4876a', 82, 2, NULL, '[\"*\"]', 1, '2019-12-06 10:29:52', '2019-12-06 10:29:52', '2020-12-06 15:59:52'),
('b5868517382c5e5526e389a43acab64e73d80ae467ef4e3bf7fca07f0e2b5c08ae09c3d41895a6e1', 21, 2, NULL, '[\"*\"]', 0, '2019-10-04 05:20:37', '2019-10-04 05:20:37', '2020-10-04 10:50:37'),
('b9108ae65924bbf3261318bc0c0c21e4948e040f2b612cde8e34762718a40787259ba05d21ddb466', 5, 2, NULL, '[\"*\"]', 1, '2019-11-14 03:41:10', '2019-11-14 03:41:10', '2020-11-14 09:11:10'),
('bdcad42c3726870a4e371d286546709fb1288c78e6866bb6c311d3a69cef521d59f0ee9cae19943a', 81, 2, NULL, '[\"*\"]', 1, '2019-12-06 10:14:59', '2019-12-06 10:14:59', '2020-12-06 15:44:59'),
('be1a28ad39bfcedd6e510846243d0c0b37874780df9252a9c1de6970dce55cc48669c2f8e91b1dae', 66, 2, NULL, '[\"*\"]', 1, '2019-11-11 04:48:48', '2019-11-11 04:48:48', '2020-11-11 10:18:48'),
('be2804e89865c5944176c333018a16697fac9d30ee93fa70d5e9e5c74eaac8bc906fdfa2201baf48', 3, 2, NULL, '[\"*\"]', 1, '2019-12-06 06:00:43', '2019-12-06 06:00:43', '2020-12-06 11:30:43'),
('bf5f97649e4a4981612c9005db05723a9e61b8291960780b8f6db549489530caa5668c91b279d9d5', 5, 2, NULL, '[\"*\"]', 1, '2019-12-02 03:27:34', '2019-12-02 03:27:34', '2020-12-02 08:57:34'),
('bff283ac830b57c9f5d0c4a48980be7dc0eae0655ab04df7b011d1106d6b6e5e3bd8d653ef3e802d', 78, 2, NULL, '[\"*\"]', 0, '2019-12-07 06:07:21', '2019-12-07 06:07:21', '2020-12-07 11:37:21'),
('c08bdcb1d98f808748fbe45526712a14ea6bb2e29aaa5787ed553f6f18640617d3095a5dfbbb43ea', 42, 2, NULL, '[\"*\"]', 1, '2019-10-30 08:00:28', '2019-10-30 08:00:28', '2020-10-30 13:30:28'),
('c12ed627afd66908272aa6f9a5a6821358b13237c8ad628cb6b1cd3287e9b386f8bcc23ca716a457', 85, 2, NULL, '[\"*\"]', 1, '2019-12-07 05:05:27', '2019-12-07 05:05:27', '2020-12-07 10:35:27'),
('c38ace94361ed83af21ce1240a5c1121e21ddf5b678cf2c6380d1acd29b334df5a05647854212cd6', 5, 2, NULL, '[\"*\"]', 1, '2019-12-02 23:56:06', '2019-12-02 23:56:06', '2020-12-03 05:26:06'),
('c5788119e8976fcc36736fad4bcf2a53c152c486cf2b3ba06ed9593336102e9641300bd0b31e8078', 18, 2, NULL, '[\"*\"]', 0, '2019-10-04 02:19:10', '2019-10-04 02:19:10', '2020-10-04 07:49:10'),
('c579d4b8b60fe9b92b7a55d5a5083a209871978691ffdeb4d25490f29fef6118d719eadb3946f017', 5, 2, NULL, '[\"*\"]', 1, '2019-12-09 03:10:47', '2019-12-09 03:10:47', '2020-12-09 08:40:47'),
('c72bfd8c435b56092edfa01839738d605c3d99bb08538b6355dd5f7125f75492836603e25a39baed', 4, 2, NULL, '[\"*\"]', 1, '2019-11-07 00:23:58', '2019-11-07 00:23:58', '2020-11-07 05:53:58'),
('c7327f4858cd9049b5021a0f5df0ad45e3f8caa5b42708a03bb6208404f71d28da18eb50dc00a92c', 5, 2, NULL, '[\"*\"]', 1, '2019-11-08 07:44:09', '2019-11-08 07:44:09', '2020-11-08 13:14:09'),
('c74d028a2d7c85cfb7ef1465f44dc1ce8d858d507206f16c4e1a90eb74e1e7e7e14dc5fde75a752a', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 04:21:44', '2019-12-05 04:21:44', '2020-12-05 09:51:44'),
('c7aeec24e719144b010d0337297da2c6c70e4c916d70d2eadae57909f76c542d5c6e33ecdff35b46', 4, 2, NULL, '[\"*\"]', 1, '2019-11-07 23:40:38', '2019-11-07 23:40:38', '2020-11-08 05:10:38'),
('c801c0a611834e829ac33187dc3ab8b6be0a2f7de97dc7c287dddbd57fe1c4a225202d81f7b9c8ef', 51, 2, NULL, '[\"*\"]', 0, '2019-11-04 00:44:18', '2019-11-04 00:44:18', '2020-11-04 06:14:18'),
('c887fb1e4f6fd25db1afdccf2ba863404728e89fecc349915c7d1a5bcba30756313be9fbc073903d', 47, 2, NULL, '[\"*\"]', 1, '2019-10-30 08:51:00', '2019-10-30 08:51:00', '2020-10-30 14:21:00'),
('c8cf4f1a6975fafbffe53d50267d67fdaf1e6bf74164e791cc1beb1c3edc7da01412b7ffce0dcd3e', 6, 2, NULL, '[\"*\"]', 0, '2019-09-09 05:12:54', '2019-09-09 05:12:54', '2020-09-09 10:42:54'),
('c9c2bd3c1c24d97da0e3c12e1fd2d98f34852a7b8c3ff60f95871b2680ba3ea0faaa454a431d9a9c', 5, 2, NULL, '[\"*\"]', 1, '2019-11-13 08:04:07', '2019-11-13 08:04:07', '2020-11-13 13:34:07'),
('ca8221185b3a062ecabbbd0880b6c5e32f67e7bcdb30a6ad0e6f7b74d3b12f72ca061908a60f2498', 68, 2, NULL, '[\"*\"]', 1, '2019-11-11 04:36:26', '2019-11-11 04:36:26', '2020-11-11 10:06:26'),
('ca92abf4f751939ed5f2678517be52daa1b1192d8d5f7eda2e2c510ee93db53d40bcd70db731aff6', 5, 2, NULL, '[\"*\"]', 1, '2019-12-05 02:03:35', '2019-12-05 02:03:35', '2020-12-05 07:33:35'),
('cb025b458f36578802aa5d40c7469b9a59de3d85b80f8af1f42d26887e7a10b8f93f56c80f6b6432', 77, 2, NULL, '[\"*\"]', 0, '2019-12-06 08:18:09', '2019-12-06 08:18:09', '2020-12-06 13:48:09'),
('cb59039624fa91bc52f71223ee8dc3d3c1181fc075c188fe38990fd583d50219fb7f9be364141fce', 73, 2, NULL, '[\"*\"]', 1, '2019-11-14 04:43:04', '2019-11-14 04:43:04', '2020-11-14 10:13:04'),
('cc5ec428c358eee9fea000716c60c876f950fc31dfb5b5f0db1f4cdc07ba1cde1c539e75be2f3aca', 80, 2, NULL, '[\"*\"]', 1, '2019-12-06 10:38:22', '2019-12-06 10:38:22', '2020-12-06 16:08:22'),
('cc8da58202796c1baa68704897864399c74a5176cea6035782ab288a8c9f49c01287661417e214f2', 4, 2, NULL, '[\"*\"]', 1, '2019-11-11 04:09:18', '2019-11-11 04:09:18', '2020-11-11 09:39:18'),
('cdb748b578cada1df537d13b95f10b202ae54766084cbe09f2168f26afdaa68cd833384775a038cc', 44, 2, NULL, '[\"*\"]', 1, '2019-10-30 08:14:16', '2019-10-30 08:14:16', '2020-10-30 13:44:16'),
('cf97a9aab195647b12d1d6b181b442144be4b7545841ff08a13f3443be73d642460c428a411a18a8', 5, 2, NULL, '[\"*\"]', 0, '2019-12-09 05:48:14', '2019-12-09 05:48:14', '2020-12-09 11:18:14'),
('d04d345aa97bab2699cea9d512266c8b3de2dd9bf3dde47a0ccf8fdd2b3e4d3f076d430f33966ce8', 24, 2, NULL, '[\"*\"]', 0, '2019-10-04 05:54:25', '2019-10-04 05:54:25', '2020-10-04 11:24:25'),
('d1c3e5e45207b818d97b9cddcd5c002352832e632f33e0095f69018cf08907bf2b6fcc553561fcc7', 4, 2, NULL, '[\"*\"]', 1, '2019-11-14 03:24:33', '2019-11-14 03:24:33', '2020-11-14 08:54:33'),
('d24c48a77d97430e9f962a6f4efeca32fe3dcc25376ca52328017dfe86e6c0536b169713830b415a', 59, 2, NULL, '[\"*\"]', 0, '2019-11-05 02:04:28', '2019-11-05 02:04:28', '2020-11-05 07:34:28'),
('d353536e45c361a9c0c8d7e60c85b18ec604d14c964d2aba19121cf102aab5cde27277d98072993a', 5, 2, NULL, '[\"*\"]', 1, '2019-12-09 03:16:55', '2019-12-09 03:16:55', '2020-12-09 08:46:55'),
('d3549fe9ccca35d9c01f21aa80eee59e06d2e1c58ed3b6fa9ba9d606ad17a8441cbed8f55c10b6ec', 69, 2, NULL, '[\"*\"]', 1, '2019-11-12 23:27:45', '2019-11-12 23:27:45', '2020-11-13 04:57:45'),
('d436947247eac16fe6bdd6d35f3d39f28465cd576f927a3dc4fd253a18f01d0f7245e1399f7c93e2', 71, 2, NULL, '[\"*\"]', 1, '2019-11-13 05:42:00', '2019-11-13 05:42:00', '2020-11-13 11:12:00'),
('d6604971574fac5691372fbb1658502b11227e08b7c3a649ff2dd2ed76aaf4559b5bb6bdf43ddd61', 4, 2, NULL, '[\"*\"]', 1, '2019-12-03 00:34:15', '2019-12-03 00:34:15', '2020-12-03 06:04:15'),
('d6cf511f56746010bbaed27dd835a29084b92c9e6168cdf0b01fbf407d6e2952c1d56d3ba7d93b71', 66, 2, NULL, '[\"*\"]', 1, '2019-11-11 04:01:57', '2019-11-11 04:01:57', '2020-11-11 09:31:57'),
('d6eccdb9d9fbd8b8783d3626bcb4f3812f78c00edb21ec334a1022ec7d574a96eeb01fd49afd1392', 42, 2, NULL, '[\"*\"]', 1, '2019-10-30 08:02:33', '2019-10-30 08:02:33', '2020-10-30 13:32:33'),
('d710fd7cb12dd3261304cfa41ee02256c31a502567aff6abd8a98bf1405f2adaf154b7809a375be2', 5, 2, NULL, '[\"*\"]', 1, '2019-12-05 04:55:41', '2019-12-05 04:55:41', '2020-12-05 10:25:41'),
('d75de4252649175f6b57c83d68608584443470628f7e2592f5455135dd16c4aad622feef16f38c96', 5, 2, NULL, '[\"*\"]', 1, '2019-12-09 03:17:32', '2019-12-09 03:17:32', '2020-12-09 08:47:32'),
('d77d338f08ed8de3607dec70afc375bd51fa1be12a91e764814b65dc3296c0cb95ba34f6445cd5c4', 4, 2, NULL, '[\"*\"]', 1, '2019-12-09 05:41:19', '2019-12-09 05:41:19', '2020-12-09 11:11:19'),
('d8689e8381dece439f6f99a152c0c9abd503a7ac52f9cc7a855203f571c656b527cfa497ec96903b', 89, 2, NULL, '[\"*\"]', 0, '2019-12-09 01:54:38', '2019-12-09 01:54:38', '2020-12-09 07:24:38'),
('d8e0effa9e78f7be2dd4770a27617faa09683f76b2b8ed9212b823a077effd38146e9ba4d6d0c54e', 76, 2, NULL, '[\"*\"]', 1, '2019-12-06 05:46:49', '2019-12-06 05:46:49', '2020-12-06 11:16:49'),
('d91ae233624676c923eeb17fc48fa38ae81162f314e696ca085c0f4e9f2628f9c7d7da89f41c6aa2', 83, 1, 'My Token', '[]', 0, '2019-12-06 16:21:51', '2019-12-06 16:21:51', '2020-12-06 21:51:51'),
('d<PASSWORD>', 83, 1, 'My Token', '[]', 0, '2019-12-06 16:13:32', '2019-12-06 16:13:32', '2020-12-06 21:43:32'),
('db87392f968e6a9b9a49e3180bcfd8777de100bbaadd9adf26617e4739bf6ef1ebec26c9d7c9bf12', 26, 2, NULL, '[\"*\"]', 0, '2019-10-04 06:09:37', '2019-10-04 06:09:37', '2020-10-04 11:39:37'),
('dbf923a20d726cdae279dea1d29378bc58ae014f40b1ce07e43801e5654cc79511522bf3aa47adda', 78, 2, NULL, '[\"*\"]', 1, '2019-12-06 07:08:18', '2019-12-06 07:08:18', '2020-12-06 12:38:18'),
('dd8fa27d891e097159a8594fd53e6ed393f24b92c21aabb62eefed19f4638b8854a9504d5e72502e', 5, 2, NULL, '[\"*\"]', 1, '2019-11-11 01:52:09', '2019-11-11 01:52:09', '2020-11-11 07:22:09'),
('ddb853b94d3354eddc7231ec3fce20c230da231fa8ca6cd17bae53e212825cbc8a57b55e86af8097', 4, 2, NULL, '[\"*\"]', 1, '2019-11-07 00:17:14', '2019-11-07 00:17:14', '2020-11-07 05:47:14'),
('de1ebae1c6396cb9e928e627a1d8adbc6ad404e1d1a63f06b0dea88c2045237a4358756c9bc4d57e', 60, 2, NULL, '[\"*\"]', 0, '2019-11-05 02:13:43', '2019-11-05 02:13:43', '2020-11-05 07:43:43'),
('de9b08a075af3c18dbdcea60d6b44fcfc794a77718a252232535d71642a3fa6652f61231b934ef66', 76, 2, NULL, '[\"*\"]', 1, '2019-12-06 09:59:54', '2019-12-06 09:59:54', '2020-12-06 15:29:54'),
('dffa0070920a6dd8932f8cca653e614ea878b49c0106e39749d0ea8b255e2409cdb26ef0de781fb8', 5, 2, NULL, '[\"*\"]', 1, '2019-11-08 02:01:39', '2019-11-08 02:01:39', '2020-11-08 07:31:39'),
('e0bed7cf530a14a1c0d78376ada56e01651dade88132935892753707b6dca104a2796d2f726ee8f0', 67, 2, NULL, '[\"*\"]', 1, '2019-11-11 04:00:09', '2019-11-11 04:00:09', '2020-11-11 09:30:09'),
('<KEY>', 69, 2, NULL, '[\"*\"]', 1, '2019-11-12 23:40:25', '2019-11-12 23:40:25', '2020-11-13 05:10:25'),
('e3a2e97ccd006b65c225a2ad8fce4afdbbc6d8f26cb741f29f38f25a803daf825cfffa1baaf3a2de', 4, 2, NULL, '[\"*\"]', 1, '2019-12-03 02:33:54', '2019-12-03 02:33:54', '2020-12-03 08:03:54'),
('e3c3472b496be8e413e6babbc52ff973ccf22f7a772026cb4a1e1c558489a365e2e13147988cf134', 45, 1, 'My Token', '[]', 0, '2019-10-30 13:51:05', '2019-10-30 13:51:05', '2020-10-30 19:21:05'),
('e4c1dd07cd771b10f2bf22c8c6ed7966ee98b878cb25abdb2aeba9580b2879003a7bf9b7c54cf5aa', 8, 2, NULL, '[\"*\"]', 0, '2019-09-09 08:34:41', '2019-09-09 08:34:41', '2020-09-09 14:04:41'),
('e5088a81b7ecc644e57702e4a9c02a56f6c539f13a8cfd0ba8d1f92937120483db7d402ef254e9f5', 81, 2, NULL, '[\"*\"]', 1, '2019-12-06 10:23:01', '2019-12-06 10:23:01', '2020-12-06 15:53:01'),
('e5d19789a2a3086ef01cec9133337edb8a88599e37deb232b982a883a0c6622de32537407c7a9f9b', 78, 2, NULL, '[\"*\"]', 1, '2019-12-07 06:03:40', '2019-12-07 06:03:40', '2020-12-07 11:33:40'),
('e60094600c5ec25faac1b03df5b1248b8d6f92a750de5c6aa5e3d90d899d6067e9145994e5b2286b', 4, 2, NULL, '[\"*\"]', 1, '2019-11-07 02:02:07', '2019-11-07 02:02:07', '2020-11-07 07:32:07'),
('e72f333fe5d0c34ef807c1dd6b70e9e71deac4cae005bc33bc1c0f7dc0d8b5ed33f4c7f305900189', 5, 2, NULL, '[\"*\"]', 1, '2019-11-08 04:30:23', '2019-11-08 04:30:23', '2020-11-08 10:00:23'),
('e7897ccf2954d479ba3a01b5d7a97fa252583001b02680199abc8e1f458a3414b45be6783df19e45', 82, 2, NULL, '[\"*\"]', 0, '2019-12-06 10:31:09', '2019-12-06 10:31:09', '2020-12-06 16:01:09'),
('e895c1c3be9ec290dd88805ada8748e055f83936d4af6d04439f24a963802835987428230702f8c1', 5, 2, NULL, '[\"*\"]', 1, '2019-12-05 03:01:38', '2019-12-05 03:01:38', '2020-12-05 08:31:38'),
('e916340bfdef063de945c3044bb0b7056505b35cb9e9926be966a257e8c9c045c189a0a82c5c85e0', 78, 2, NULL, '[\"*\"]', 1, '2019-12-06 07:07:07', '2019-12-06 07:07:07', '2020-12-06 12:37:07'),
('e9478b72b21df4c385487eaaf2cfeb401a54d4aebeff13bc11d6efe4357f036737b4570c76bcafe2', 4, 2, NULL, '[\"*\"]', 1, '2019-12-09 03:05:12', '2019-12-09 03:05:12', '2020-12-09 08:35:12'),
('ea15cf2ba52dba594468c5c823156c9ac79024978fad2450263df1a050592e581112d0c06e354d28', 17, 2, NULL, '[\"*\"]', 0, '2019-09-17 08:42:48', '2019-09-17 08:42:48', '2020-09-17 14:12:48'),
('ea9c64d054e75ebe1018aad5bd8475b78082d24b8746ab0e0d167d2da4bf44a26563cd983e7aae90', 75, 2, NULL, '[\"*\"]', 1, '2019-11-14 04:48:10', '2019-11-14 04:48:10', '2020-11-14 10:18:10'),
('ee0c0b73e9ff1c54e05f2d2964675be39953009b8f9743503f8a7af6c61b7d801fa2cbb748e44fe6', 30, 2, NULL, '[\"*\"]', 0, '2019-10-04 08:41:52', '2019-10-04 08:41:52', '2020-10-04 14:11:52'),
('eedde4a871a3470533d1e8fc6735060d8a50e17fd25bee587fc2e1d04ef5fbbf3837bbb4f62e9c53', 12, 1, 'My Token', '[]', 0, '2019-12-09 09:46:47', '2019-12-09 09:46:47', '2020-12-09 15:16:47'),
('f008972629e0e15cf5772c882390a61510cd02fd4a5918b7889ca20c3a83d353178070732415fc57', 5, 2, NULL, '[\"*\"]', 1, '2019-12-06 07:18:40', '2019-12-06 07:18:40', '2020-12-06 12:48:40');
INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES
('<KEY>', 79, 1, 'My Token', '[]', 0, '2019-12-06 13:49:16', '2019-12-06 13:49:16', '2020-12-06 19:19:16'),
('f12bbeea2084fb7381ff0db08814b28b39b7899cde9ebe9c2ce4f1ba09bc8f9b59c7949880435c9e', 78, 2, NULL, '[\"*\"]', 1, '2019-12-07 05:15:15', '2019-12-07 05:15:15', '2020-12-07 10:45:15'),
('f1558b5ffb2d4014b84c0415323d72b3cd905137e281ac8e54a3a20e11673ec45cebe0d395580c0b', 9, 2, NULL, '[\"*\"]', 0, '2019-09-09 23:28:57', '2019-09-09 23:28:57', '2020-09-10 04:58:57'),
('f201749dc1f899c903f3dee07a575f89bb4f04160bdfc45f7dcc08f5c9616ba594eda7da99150281', 5, 2, NULL, '[\"*\"]', 1, '2019-09-17 08:37:28', '2019-09-17 08:37:28', '2020-09-17 14:07:28'),
('f4dd460894dae1266efdb45bf47cc77ae96f78451a1c29f20351d69cee8eb0ec1a86d0943a2e0725', 62, 2, NULL, '[\"*\"]', 1, '2019-11-05 03:48:29', '2019-11-05 03:48:29', '2020-11-05 09:18:29'),
('f567657f3760496569e5eadb6adbe359e11cedb899beff01fccc7bce3736fdb794a6d3bb860719d4', 66, 2, NULL, '[\"*\"]', 1, '2019-11-11 04:06:26', '2019-11-11 04:06:26', '2020-11-11 09:36:26'),
('f7c867015591838528c8e131b630f31a947b00ebc695fcf04e91d4f85baf224b740c50112fa07026', 4, 2, NULL, '[\"*\"]', 1, '2019-11-06 23:48:55', '2019-11-06 23:48:55', '2020-11-07 05:18:55'),
('f925d67141c84a47a582261cd834e70363c9b876e949016a8fb8a667335f2ed4121f1f5c2580cee0', 81, 2, NULL, '[\"*\"]', 0, '2019-12-06 10:39:45', '2019-12-06 10:39:45', '2020-12-06 16:09:45'),
('f9a8ad88798baefc2fc9781a3a17592bbda9a6e4c63eabd2fb3d210f3402bd758b84edd81d168230', 4, 2, NULL, '[\"*\"]', 1, '2019-11-06 23:49:10', '2019-11-06 23:49:10', '2020-11-07 05:19:10'),
('f9c80182e4e383d65f6decc8161acedc463c9d307c0b02bcac75386d8603209312fe94e37dbb1908', 25, 2, NULL, '[\"*\"]', 0, '2019-10-04 06:00:28', '2019-10-04 06:00:28', '2020-10-04 11:30:28'),
('fa18a3619910119e8aa181477875f83196cf1534f8c1c55ef00959173a2d4c52ea613938687d3c83', 88, 2, NULL, '[\"*\"]', 1, '2019-12-07 05:50:41', '2019-12-07 05:50:41', '2020-12-07 11:20:41'),
('fa42262913f6d6d25d0c8a1f8635718d90c47929a03aee219abe6f6d3cf03c5a885fb4dd5b44c4d0', 5, 2, NULL, '[\"*\"]', 1, '2019-11-29 08:00:49', '2019-11-29 08:00:49', '2020-11-29 13:30:49'),
('fc6bdf75058e6b185633074b98eec005f2df889795e4e286cb341ff3fcf21a6d4a2011347c006ce3', 14, 2, NULL, '[\"*\"]', 0, '2019-09-10 01:31:24', '2019-09-10 01:31:24', '2020-09-10 07:01:24'),
('fc7a6cb394129bd610af1008cc959293f6b1bb614c2e5c31b68383acd63117a2be7dcd8deeb39dc2', 71, 2, NULL, '[\"*\"]', 1, '2019-11-13 05:37:03', '2019-11-13 05:37:03', '2020-11-13 11:07:03'),
('fccb6c87791bb14ec685c1ea3445c17793405431c7179337d8116166c0c51c13f593b1e14dd94ae8', 4, 2, NULL, '[\"*\"]', 1, '2019-12-02 02:10:48', '2019-12-02 02:10:48', '2020-12-02 07:40:48'),
('fe5fa2b497f217023da1cbdc76587b9bedc4fd0c18a088d7b1d5380d359ef6578f9a1460d96e923e', 4, 2, NULL, '[\"*\"]', 1, '2019-12-05 02:03:56', '2019-12-05 02:03:56', '2020-12-05 07:33:56'),
('fe91315824291e85dd98e5fc06938d2e0fae9fadce4a6bab2ec63edfe36448bf7eabf0bf50a88ea1', 5, 2, NULL, '[\"*\"]', 1, '2019-11-08 07:45:31', '2019-11-08 07:45:31', '2020-11-08 13:15:31'),
('fe9c75d015b964d713af7c8910662a9a7682f20f6383855607d1f171a252a2d72001f8d4dcdec601', 43, 2, NULL, '[\"*\"]', 1, '2019-10-30 08:04:28', '2019-10-30 08:04:28', '2020-10-30 13:34:28'),
('ff2fb20bab4405882fddf1330a22e22a3d1f975ecb931e554704e261cd2e1af4c2f6bc22d3a3bfed', 72, 2, NULL, '[\"*\"]', 0, '2019-11-13 06:59:30', '2019-11-13 06:59:30', '2020-11-13 12:29:30'),
('ff3a1fcb5deaa9e0374eeb219ece469cc3705cd31cdee4b8dc543bd896ff56cfb39b7a183d0b6f93', 5, 2, NULL, '[\"*\"]', 1, '2019-12-02 06:07:45', '2019-12-02 06:07:45', '2020-12-02 11:37:45');
-- --------------------------------------------------------
--
-- Table structure for table `oauth_auth_codes`
--
CREATE TABLE `oauth_auth_codes` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(11) NOT NULL,
`client_id` int(10) UNSIGNED NOT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci,
`revoked` tinyint(1) NOT NULL,
`expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `oauth_clients`
--
CREATE TABLE `oauth_clients` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(11) DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`redirect` text COLLATE utf8mb4_unicode_ci NOT NULL,
`personal_access_client` tinyint(1) NOT NULL,
`password_client` tinyint(1) NOT NULL,
`revoked` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `oauth_clients`
--
INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`) VALUES
(1, NULL, 'Laravel Personal Access Client', 'ozFdy7JJiTKfN9THodPECeys5nnR2qfdsdsrHNXY', 'http://localhost', 1, 0, 0, '2019-03-19 03:47:38', '2019-03-19 03:47:38'),
(2, NULL, 'Laravel Password Grant Client', 'uu6k1kweRMo201y8HGjQbSV5xBYFUnA3MBYlK4OD', 'http://localhost', 0, 1, 0, '2019-03-19 03:47:38', '2019-03-19 03:47:38');
-- --------------------------------------------------------
--
-- Table structure for table `oauth_personal_access_clients`
--
CREATE TABLE `oauth_personal_access_clients` (
`id` int(10) UNSIGNED NOT NULL,
`client_id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `oauth_personal_access_clients`
--
INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES
(1, 1, '2019-03-19 03:47:38', '2019-03-19 03:47:38');
-- --------------------------------------------------------
--
-- Table structure for table `oauth_refresh_tokens`
--
CREATE TABLE `oauth_refresh_tokens` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`revoked` tinyint(1) NOT NULL,
`expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `oauth_refresh_tokens`
--
INSERT INTO `oauth_refresh_tokens` (`id`, `access_token_id`, `revoked`, `expires_at`) VALUES
('<KEY>', '35f805e52f9ae3af95d8035f7a374c966ba59f6c6e1d1abbc6a4df725c41909968af12692282070d', 1, '2020-12-05 10:24:50'),
('00a9576f0bdf36ce73374c1b59adadb41ab3401ce709aaec97926c5cd5b37dff243e16c010f2e668', '<KEY>', 1, '2020-12-09 08:40:48'),
('<KEY>', 'f008972629e0e15cf5772c882390a61510cd02fd4a5918b7889ca20c3a83d353178070732415fc57', 1, '2020-12-06 12:48:40'),
('<KEY>', '<KEY>', 0, '2020-11-11 10:17:32'),
('047f58f0f8a82a247fd1258a2eb9eda89456587924f5ac12bbc832cb702e199f19dcd8d3f7e144fc', '3c88f8b22d78244ab2e84816f44295ea6ce43ba680083e3ad57fbf01bf4fd85796ad808a4b1f314a', 0, '2020-10-30 14:20:23'),
('<KEY>', 'd6604971574fac5691372fbb1658502b11227e08b7c3a649ff2dd2ed76aaf4559b5bb6bdf43ddd61', 1, '2020-12-03 06:04:15'),
('<KEY>', '<KEY>', 1, '2020-09-09 07:29:02'),
('<KEY>', '<KEY>', 1, '2020-10-30 12:47:17'),
('<KEY>', '31a425fa73588f2f26ffcd9216f7c01983628a4f4ba421b45accb6234eadeeea58fec6c7669a0b3c', 1, '2020-12-07 10:35:29'),
('0b8845e550322a1fe19d4bec52493518104039caa4b78246d5998ccdf869e012b5c27cc8ad863a98', '9761928b13f1bbb065b7c6d9e5dd66732237cea0933ad5f419d73b9a973d2334ce9dfcff7e784f09', 1, '2020-12-06 15:24:09'),
('0be8f8af79c5e475a680f3d3d02b273625def449456c826752748c247915d184e84d9e104436b1b0', 'a45ed2d2d8961e3603a1c807532eb61a1590bb4078343a05b2159631021d0ba95dd0609ade4ff332', 0, '2020-11-05 05:00:00'),
('<KEY>', '1733e06e5c8054119a24abf60152b382d03582138a396bb62819f0ae0e42751738d70b98379fa8ec', 1, '2020-12-09 07:35:31'),
('<KEY>', '<KEY>', 1, '2020-11-13 04:58:53'),
('<KEY>', 'f925d67141c84a47a582261cd834e70363c9b876e949016a8fb8a667335f2ed4121f1f5c2580cee0', 0, '2020-12-06 16:09:45'),
('0e889de52b9862bbc09a900193f11f0fbb044e5f57d9e573a7ee1a5c9ddecd6252f29feb0555851b', '453e65d8ba2282e1f46002716441204eb4c2de6b46cfcaf1e3666f91d1e2570240fa840f7c73f670', 1, '2020-12-07 10:40:53'),
('0e9153a1decb9eaaacc8e715d301d9ced65566a185a5378ac90cb33ad33a261e7a15e7db3a07a001', 'de1ebae1c6396cb9e928e627a1d8adbc6ad404e1d1a63f06b0dea88c2045237a4358756c9bc4d57e', 0, '2020-11-05 07:43:43'),
('0f8f197e5e46ddcd1bc9eb119479b3e25b6e165a9e3294313395eb5793e4af951f1ff9b1fe415b7d', '9cdba49ce54adf6bd58f359b9141f786d8488b02e61c6bd4e703b0d3d7604ddea13d0713d02a79b1', 1, '2020-12-05 10:14:36'),
('1213f8eb42784fa63d5abe394650fbe514b2c2a1072c3a2256a8446495f870f0356f4fe18a2ddf89', '6328ee0a552b9b9f6a388daa7318210c5d48ad683cb5f73de249ded8b33e97e63cb4223e02a413ca', 0, '2020-09-09 10:43:02'),
('<KEY>', '4e4450420f32ca91d55d3bdb77529b00d7c5ad3643ed37305c69e840af04c241955110aa3b67a8ca', 0, '2020-12-07 11:22:58'),
('1296b09c78b6cf1f374574043480f41e2b4b10e77c03965d0dc7e1c26ee931cccd4f1c8c23270a96', '2294e70fe87b04143f346f34d6bf8756ca74a171ff5920e0666f1bc040e0455e1547fc5ebe25cc0a', 0, '2020-11-05 09:26:30'),
('<KEY>', '89fc5f9fbd330addcc0f95380d8439c524d1a9c776f435b1aca51c1e069e9ec4d8d56e3e667a5da3', 1, '2020-11-07 06:21:51'),
('<KEY>', '<KEY>', 1, '2020-11-07 05:19:10'),
('<KEY>', 'f4dd460894dae1266efdb45bf47cc77ae96f78451a1c29f20351d69cee8eb0ec1a86d0943a2e0725', 1, '2020-11-05 09:18:29'),
('16744b1d2936759199370daf0bec1afe6b7dd8141f211ac6a4a840f8e5a85c0e9437df471d17a2d6', '252aa32272b880b9c1404f4abbffb9ef0d59c130b1e3ce7720a2923255c93b5ae0156265d6bea014', 1, '2020-09-17 14:12:05'),
('<KEY>', '8a1b780b8a8d2ea3e526b527d138f6e7ddb3a01092cf0ca1477ab5fca2348c781e0714c706dcdc23', 0, '2020-11-05 09:19:31'),
('<KEY>', '05d9af5bc1a76c7790e8766237558e91c264c92b12894eb68e4a3f908dc735ea6ed5e987dfd3438d', 1, '2020-11-08 13:13:41'),
('17ea6237f7093ec1ae07f7e3e652ba7bc5895184e0e707656ec8eec8144b21001e22e4539ea50e74', 'cb59039624fa91bc52f71223ee8dc3d3c1181fc075c188fe38990fd583d50219fb7f9be364141fce', 1, '2020-11-14 10:13:05'),
('<KEY>', '<KEY>', 0, '2020-10-30 09:28:20'),
('19208fad94f746f2faad409d78b579d227012fdc5a2d50b23240c7ea35c7e1eece48a89f4d9c2c30', 'd8e0effa9e78f7be2dd4770a27617faa09683f76b2b8ed9212b823a077effd38146e9ba4d6d0c54e', 1, '2020-12-06 11:16:49'),
('1929e2f8ae07d2377819114bd8724c0677c48aeed5e4824608b53ed9b4f5be9c379b2845a02d09d0', '<KEY>', 1, '2020-12-05 10:23:08'),
('<KEY>', '<KEY>', 1, '2020-09-09 07:12:56'),
('19f6b925a27991ff834266fa189b34b86d6c6f2a1a106f36e62220a0024d337652f18c0a1cbfa5df', '<KEY>', 0, '2020-12-09 11:42:05'),
('1a3bc04e3b0b689717d837866b71f85a59c31cda42b0bb47ad80cecc67a21e69741ea82befe0c393', '2ea0f9c2dd95ff9fa69ad0c8af6b48fc0eee989106e96f39f92134bff0f91547ab970f68016c681e', 1, '2020-12-05 10:23:06'),
('<KEY>', '814ab0fbbcfad4e572d88d75249342c6ec8e5647b0056e19d43b866688c4a5b1364de1c2779c1caf', 1, '2020-12-07 10:50:32'),
('1bac7e822987e4fa1f8e9a79216d17efd930e897f019cb28a8bc3ed76ffb1df439412f657080f9cc', '621a993fcb96eb3a8eed2cfe6845f1d3b896e86066564ed2da5aeb6952a61a5d960c0316534cc37d', 0, '2020-11-04 05:43:55'),
('<KEY>', '730c75adb41601540dbda4e9a2b7dd985d74ec524c4a9a76ccff79cdc19da84b732d0303c60628ea', 1, '2020-11-14 10:12:51'),
('1d4ad164122804de7759b62618b8efe007f43e5648b095115acea2a752bb2be9ce1de9265a02cd3b', '9c0ad230947ea25115b9dfe63d927f941978b7327151558da7bccbe8a51d484907c301e388ee70cf', 1, '2020-11-07 05:57:03'),
('1df502bce958a4c142c51267ce22f1c0e973d3395a01cb96155857780d90c2f84786c48e70247d45', '<KEY>', 1, '2020-10-30 09:29:26'),
('1e4c5fdcf99c95e23291e14579727f772ef15c3648722e241a072b70786ff6ba65548694d24287ef', 'd04d345aa97bab2699cea9d512266c8b3de2dd9bf3dde47a0ccf8fdd2b3e4d3f076d430f33966ce8', 0, '2020-10-04 11:24:25'),
('1eefa758b61c475438fd1e5ed12ede99654aa20b252a4363aa2e3ce4fa74b5e7c44564e447b3fcac', '<KEY>', 1, '2020-12-05 06:53:53'),
('1f58b2e4653ee12bcdf7c0833523dbe086d707f362a0e3234c218263ad7e4ac8d8d2d5c5aed369b8', '29fdb41eb6badbd40464f3977649532a564ac3aa1203b74f9881940631aac5e878a29ffab18b30a0', 0, '2020-10-30 09:34:29'),
('<KEY>', 'f567657f3760496569e5eadb6adbe359e11cedb899beff01fccc7bce3736fdb794a6d3bb860719d4', 1, '2020-11-11 09:36:26'),
('<KEY>', '993adf91da35e9c5e998fce37621adce07881c822bf44e25368cd1fae559ca1c0cbb592eef555033', 0, '2020-10-04 12:06:58'),
('2105bc0400a25e9dcf59abadea05dfd098bd6b57e0941b3863488151dd34d28caa824ce312c79720', 'd436947247eac16fe6bdd6d35f3d39f28465cd576f927a3dc4fd253a18f01d0f7245e1399f7c93e2', 1, '2020-11-13 11:12:00'),
('2199bcb4e0454040dd655862c80b2c8e50ed42f113a701f6e477c67bbeb466af9cc8b3102e1af70f', 'b5868517382c5e5526e389a43acab64e73d80ae467ef4e3bf7fca07f0e2b5c08ae09c3d41895a6e1', 0, '2020-10-04 10:50:37'),
('23d136aa292f5ad0e56e96cd940a742318c60e657d6b5e95092262a1e312c1d3b528e827df306c7d', '<KEY>', 1, '2020-09-17 14:13:24'),
('<KEY>', '<KEY>', 1, '2020-11-14 08:54:34'),
('2433e1ad6f239a4df53c44d4a4f084a536c7694b0259c8a7159514810b055b339e227bb903eac9d3', '9aa6c296ade93e44fb2a5a205afc081088022d3c3ff13c3bd459b0b405259b66c77078eb3b4efc22', 1, '2020-10-30 14:19:49'),
('<KEY>', 'c5788119e8976fcc36736fad4bcf2a53c152c486cf2b3ba06ed9593336102e9641300bd0b31e8078', 0, '2020-10-04 07:49:11'),
('<KEY>', '87e04d00211db6a38ebdc16e9755e6c20464a3e9d70a7b4682b2e97e061b0b223d3da6d3f4a880f9', 0, '2020-11-04 06:17:04'),
('25f1c4e7453e85d4480350e00570f7ed2d1a9056fab074e7df303c767375c24c9ffc8b8f15c7b5e5', 'c08bdcb1d98f808748fbe45526712a14ea6bb2e29aaa5787ed553f6f18640617d3095a5dfbbb43ea', 1, '2020-10-30 13:30:28'),
('<KEY>', '<KEY>', 0, '2020-09-10 04:37:27'),
('<KEY>', '17b5c9ee21b4e29673faf873618982ec2d3eb239fa7b707d7fcc8e9a71357406e977ec4de614ef9b', 0, '2020-10-30 13:48:11'),
('<KEY>', '7977d4a2e937e07a62941619920a0516631257d8865a471be1c69d94dc89ce31126e80a3b0abd8b8', 1, '2020-12-05 07:27:11'),
('27b40306ddbeed691520bdc8d2dd583591cf3e2c3ae54d54f3c63a746e3765fb47d6ef55ba7cccbe', '800d95a73d759eaf8e6b9e74fd9330a785a728a5823b0854eaae4a769ea5c7b88c3922c10a4643ed', 1, '2020-12-06 16:07:32'),
('28d95fc2cc2c65c97ac03e2c895224c2216151f14c0c7ff01523dfa8f3f607eab87f32369718cd07', '54e80d2d989208ddb8206fe9c1a05d77671a6f03db8c3a0321a8837905842dd1fa92aec6b77ed6ae', 0, '2020-11-11 10:18:52'),
('2957092a507a617f146576a36c5ecf10a296992b479baf5454c25e9d5145b511f729d78c19245e70', 'de9b08a075af3c18dbdcea60d6b44fcfc794a77718a252232535d71642a3fa6652f61231b934ef66', 1, '2020-12-06 15:29:54'),
('299c8cc59b0d95401f14c98b4e6593246de3b4e45e1392a75b1ac79da46902a1664f87951682adb8', 'b12e4a91125e33adbf329dec1dd38424f59780bbdb754513e3c19a9a06ed72183ee6fe1fb8d732c3', 1, '2020-12-02 04:55:17'),
('2a0a718d60ebed9faeb0ad0b2fe7e87cfea867f8a2d1b0f1b565ff36605f54184e1d87b520e2192e', '<KEY>', 1, '2020-11-13 05:10:25'),
('<KEY>', '7b1476afdcb93883f951a8f4a539151ceda736d0287577e893217718930d361757472838b52154d3', 1, '2020-12-06 12:01:14'),
('2c6631d7d371d70341a5fb1653e2e68df2342f2d6cc84eae745493a46272af5f877f7617f6cc0621', '<KEY>', 1, '2020-12-06 12:48:27'),
('2c8004a3a7b87b20a839dac83560f9c72bdebd7f2ed5d120fa77f4b04dbd51e8d83320728c2a4d96', '38ee1edd1a8dc6a1738b6b3516f11fc00a2286fa54d181b9e0bc0513232d1c7a5cc65ee26bdf22a4', 1, '2020-09-10 04:35:17'),
('<KEY>', '7c34855bb8ab97bd32eaffae319b9a4c63ff22d29f381e4b8db45e566248edc5c6332523578a2045', 1, '2020-11-14 10:11:45'),
('2e9074b1ace1082ce738646f76d5c10c264f6b80e91ac25bffd3d68ccae14495f22bb9eb6347e886', 'e895c1c3be9ec290dd88805ada8748e055f83936d4af6d04439f24a963802835987428230702f8c1', 1, '2020-12-05 08:31:38'),
('2f6c1b9eeb28d968cdbe1313068ad8afa605924ba9a76f5a3375fd727c89ebf3865c9e51d7756aab', '<KEY>', 1, '2020-09-17 14:11:02'),
('2fb3599717e6f6605a6194208534912797610aa289b9046dcc43225aed25171da7b4063179dd171c', '<KEY>', 1, '2020-12-06 13:05:33'),
('305b31d0b06c4eeaeaff0246fb3b91158633e767ca21a071164de94f7715bd8f4ac29b45b2256713', '<KEY>', 1, '2020-11-13 11:03:16'),
('30be6064cad691a09299db83efd1178e4a4f2595a442a139ef0228610d4bc21f00f02e9e8fd2b5bf', '81ee7e00584308ae0f8a10cc9aa8c65be797c44df38196d98ef96ee0335af76abae67497e1c37423', 1, '2020-12-06 06:38:25'),
('<KEY>', '<KEY>', 1, '2020-12-06 15:11:02'),
('33a97cb6a3951466b92fc4e9fa3deea5cbe05b57f827f04612fa9e94f53c00ca899035ad489a7daa', 'bdcad42c3726870a4e371d286546709fb1288c78e6866bb6c311d3a69cef521d59f0ee9cae19943a', 1, '2020-12-06 15:44:59'),
('3418923202d9d768e195b2a21c648741313d4fae6ef36c7430a667dadbc14ac425f7548e4e031ce3', '<KEY>', 1, '2020-11-11 09:31:57'),
('<KEY>', '6d3b1f04a70aee270bf68bc03118650df5f589d58adc6941d7a0a8527cb220a0af70eac19c3efe22', 0, '2020-10-30 09:37:18'),
('35d6d3b9f09a9bf2adf54ddc589986c7aea0ce4f5f13ff19bf8996bd03974d9603cd2358f137eada', '60b944b4066936a1206be1efd9540c65aacd9d102c8adb9ef39dc025d712d5dc7c7b12a980905ad1', 1, '2020-12-06 15:20:49'),
('35f4f93ff5de98058e873c3243a7fb0319b6d75160c0ad2c516c303ed217dd80fde23479060f6fbb', '<KEY>', 1, '2020-10-30 13:32:13'),
('<KEY>', '5edd0c2531928f7a25679531d60dfdbbda168618ca56c2ac647283dc9c914824048697678300f208', 1, '2020-11-13 05:23:23'),
('<KEY>', '<KEY>', 1, '2020-11-08 13:14:09'),
('<KEY>', '205612724c696e29b8733701068b28104aa52c1a527178b28931a05cd165cdbe711e9ae10e919c2d', 1, '2020-10-30 14:20:06'),
('37c802206f50a9d74a060c2036dd5c8c16ff7437371d810776e0168bd725e6dc5c3c1fdec058ea21', '129e10a539cbc232c30f5a7276debb36165f4608c50592a9ccb5acf47d0619ed9d877c4753298d5d', 1, '2020-12-03 05:45:40'),
('37ee0ec97e81d8bad97a34ec51d40fe169ed2423a2d78341770697c33d4821a6c8c90e2a6a4f6dd5', '6585bb313db9153a98d23504877e12bb35d1ba5810ba3ce199a863eb3a45fe644547e17c085f66bd', 0, '2020-10-30 14:26:56'),
('397ace53a24fe1911d0530ba3a827ad6eb6ad1e5e516e08c87a2c3652af2de2ea135ad5713cfd2cf', 'e4c1dd07cd771b10f2bf22c8c6ed7966ee98b878cb25abdb2aeba9580b2879003a7bf9b7c54cf5aa', 0, '2020-09-09 14:04:41'),
('3a3cde4748e2b6def01cf12859af875708d7aa1e0e0eaca8c505843e331d34c09ac6480c718b3479', '50dee8f4562a5d94be6c5b2b8a299490f9349ce89272e99e494cd54293218cb6569beeb3bfbb2a75', 0, '2020-09-10 06:36:07'),
('3aa655d7c636efaa3ee6b89d6b3bc8154acca3dd34a0f6f528be13ddb3e7c482af09e50ccc219451', '0c6784cecad36c3bf7948dd81a5f58d89f7478fd6764167798ac160ee5726204166335e3b63f4c6e', 1, '2020-12-05 06:54:13'),
('3c3f95ed8fdf00f38a04f9ec1b41c260dad10d4370862b1e63daea37b7aed4c4a995822d32728ab0', '<KEY>', 0, '2020-12-06 16:28:21'),
('3f04cbf4aa9031d29003530488c069ef37ba0b9c132fc82e5f66d0e003a50454f09e5f1a4cc4844a', '40ecbebf97353b72cec7e0edef9bc8922ff069c298b26b8e5c4c6f33be94131b8dcfb3a422fb673e', 1, '2020-12-06 15:42:30'),
('<KEY>', '<KEY>', 0, '2020-11-05 04:56:50'),
('411bdea1380419f7c3c78c74998cfb2d9a4855e1dfccfc4cce4bfecc2db344ea2d79b7c0e2abe8b6', '<KEY>', 0, '2020-10-04 14:19:59'),
('<KEY>', '<KEY>', 0, '2020-10-04 11:39:37'),
('<KEY>', 'c7aeec24e719144b010d0337297da2c6c70e4c916d70d2eadae57909f76c542d5c6e33ecdff35b46', 1, '2020-11-08 05:10:38'),
('<KEY>', '7a8ce406c82a785ad38bd6dabb50e7157dfa21b1ec4ab17e17c00d12ff4365a37a2d5ad71b4a0505', 1, '2020-12-07 11:18:20'),
('<KEY>', 'b47c5981bedd507946d825d8d083f0396b8746b60769fcf8af81d1ba72c3895f66e7f611ee5f6bed', 1, '2020-12-05 08:09:11'),
('<KEY>', '65e9575370befbe5bb0bab62e8f65fd698b63328eab31050dc53489c2a185ca1913ffe108a765381', 1, '2020-11-14 10:39:45'),
('493c67c974965737eec266e778f2139ff781b62c2843ee885342ba13e6613922857e684dafc7086f', '<KEY>', 1, '2020-12-07 10:37:53'),
('499432ce99412245bab939df83670a43a1bde40b36eb732b2a8804c954588abd7c63fe2b0ede27e6', 'ea15cf2ba52dba594468c5c823156c9ac79024978fad2450263df1a050592e581112d0c06e354d28', 0, '2020-09-17 14:12:48'),
('4a0a77f10f5b5515cca48d4081150849a0f527494ba4d6ab2a4b1a7d879e5c18a840eb7d4d697aab', '<KEY>', 0, '2020-12-09 11:18:14'),
('4f8a2344444fc84ce0077a562c89ad67de37283d9eb369671a8d9e3479666ebd766b0b33ae64bca3', '436f7f3a89f7ac07e42b675e3ca05f5f4246e1e3df3619dc56f74af83db59e73b1e15cd03b7fe71e', 1, '2020-12-06 06:41:32'),
('<KEY>', '<KEY>', 1, '2020-11-07 05:50:02'),
('5223e832ff16bcc20368daadab6f26a1540cc1745152edf4bb01f7bed250acf32f44e45919b053de', '96c388a5cc8218128d70a968714bc04fab23e99c9d781184fce9d7237e64d108aa4531d33212667b', 0, '2020-10-30 09:34:46'),
('52789056b1e29a4038522f592b0b938d707b2b1e3e9947724015dc14fd1f4821d45211e1d74dac74', 'd353536e45c361a9c0c8d7e60c85b18ec604d14c964d2aba19121cf102aab5cde27277d98072993a', 1, '2020-12-09 08:46:55'),
('<KEY>', '<KEY>', 0, '2020-12-09 12:23:24'),
('<KEY>', '<KEY>', 1, '2020-12-05 10:19:47'),
('53db73df28b8be34853d5a15c9164ee2b1ad4adeb10c690735321d43f02d74219dfd846261572d06', '9edf96b1dd87069f9e94bd15cc7048bde5703e116f2873b5d0d6b418e202d40ce4e0d241cab772e5', 1, '2020-11-13 04:58:52'),
('54d3ff240eecf68af8402b2e5586e47c66423d7f6fcd2de27122a00938877af46bf0dc3ac335c718', 'e0bed7cf530a14a1c0d78376ada56e01651dade88132935892753707b6dca104a2796d2f726ee8f0', 1, '2020-11-11 09:30:09'),
('559ac91d1dcf2ae27be81a728e5ed6af7bea3b87a62d756f21561093612aec573f302e3fdca7cc6f', '<KEY>', 1, '2020-12-03 07:59:56'),
('<KEY>', '<KEY>', 0, '2020-10-04 10:56:18'),
('<KEY>', '2c902c8ae1d3f0fd230fbf950afb3b8a44306a111813d0ab91ea283de31929de276d0c6d28e02852', 0, '2020-10-04 09:23:10'),
('57f25ead704721ee251e0020f6947cda95577918a8f40a989e0198e4e905d100932f3e26380b4985', '<KEY>', 1, '2020-11-13 12:12:24'),
('<KEY>', '<KEY>', 1, '2020-11-14 09:11:11'),
('5928454c0078bf313e0d2389c9897026eed0a07ac119a18e32b81879fa4f2c03aac42e13ec319f4f', 'd77d338f08ed8de3607dec70afc375bd51fa1be12a91e764814b65dc3296c0cb95ba34f6445cd5c4', 1, '2020-12-09 11:11:19'),
('59dbf7965280039e59b18ded7962cd86bbf627e0ddedb9b5bd67ec056474ac4ccfa9d6c6e826a51d', '07f2e0ac49259160de3a284399397af8e540ec16fe2ab4376e2dab2552a10fc49ece5c5e4ae36b3a', 1, '2020-12-06 11:17:51'),
('<KEY>', '<KEY>', 1, '2020-12-06 10:30:19'),
('5b94f41456d4c40741c36325186d73f1d354a1c0bca501814de807299bd2709e735deaf4ad42bc98', '6cea187c5e7dabaa880dbcb16ddd548d57090867238559710864ddff1db21758f12719d5975d8615', 1, '2020-12-06 12:00:12'),
('<KEY>', '0170e6a045a6856c4564f2719d96aca8be93773713c034ed99d3b9e32f4f77cd984f50eae209c192', 0, '2020-11-05 07:51:21'),
('5e6af953c6da800da9491e7d8770d3ba5189dfe0c76e785d3ee81596c7f644f9f77ab255b68b7fc4', '<KEY>', 1, '2020-11-13 04:59:49'),
('5f2ce91205dc66ab73e4021ce09b7a90c8ea1164d14c412be3ce147a07160c87dd23d4fe7a8f7e47', 'be1a28ad39bfcedd6e510846243d0c0b37874780df9252a9c1de6970dce55cc48669c2f8e91b1dae', 1, '2020-11-11 10:18:48'),
('<KEY>', '258207fe0a4f2ac4905453f600b673273c89eceaf9a7dab6e4aceac06bad4965a1097378e631b523', 1, '2020-12-06 16:00:27'),
('<KEY>', '<KEY>', 1, '2020-12-05 07:03:41'),
('61eb67eaadd81e6166ae3dd8d29ce14f9de841ae7a0110c4959f83d30f4f96a06b33b2108168ed0e', '64acf031390f8110bc3c6facd3b8fd0a80f67c5e0f17c0374862e421d9405be70ec92dee386e4956', 1, '2020-09-20 07:35:35'),
('<KEY>', '<KEY>', 0, '2020-11-05 05:08:16'),
('669821d714cb414d0a9e781ccefdcba9b66a7c7e8615667afd7a960ced3959946017b671088d33b4', '<KEY>', 1, '2020-11-14 11:15:24'),
('66f509c0ce886cda27243a4837730c4ffd286b4d02747c3a90e02fbd004c5e113544fa5ffa54d4fc', 'b478bc24964134c33b5869b3e18f997f59f58c7173a210729e5060cad77dd696dd15795033937d79', 0, '2020-11-04 05:18:51'),
('<KEY>', 'b41c1c66092738fe41775afe75400e5753fbbe3a787a6abb05978ffd3cc419f7be35461fff540ed3', 0, '2020-09-09 06:58:29'),
('69a7726139fc9c01476f2fba15fb806f9fe20867e970f67e810048432898ed116e59a9406b685201', 'ff2fb20bab4405882fddf1330a22e22a3d1f975ecb931e554704e261cd2e1af4c2f6bc22d3a3bfed', 0, '2020-11-13 12:29:30'),
('<KEY>', '73c79f5e0b4cafa2293745eca8b55fe20d77dbca5047754985e339d32f4f9f8a084df70af590f98a', 0, '2020-11-05 04:57:47'),
('6a738e9014cf2eb99d1f073ae4e2d07c7afa844168312576dcfcd2eebd6ffa7c6957202ab51e9665', '536ffe64ed1b94a32a5e8d26065576e15e267a3d75c86535af7fd98740bda6f006b9a93e27e73b48', 0, '2020-11-11 10:21:51'),
('6c19700ff29dff3966b1d87176610c1a1d2dd9e6a7d538c647c0b575acecbdaad2d23311973555d4', '7ed8ceaa2ec3708ecbcafe7bb9ec48dc2ce6f69ab35f997bc8f031e6b0d1237f82aef6f15cea0c18', 0, '2020-10-04 09:24:40'),
('6cf1447548833889dc04760a5a0f845d4fdfcee047cd335032f4b70f97efbe588eedb0a51f00d4ed', '<KEY>', 1, '2020-11-11 10:06:02'),
('<KEY>', '<KEY>', 0, '2020-10-04 14:17:07'),
('6d7292d2fe1920c3ddcda339331bff45b87e13d125fb37797d444b52eb0731c102e2adf03e521cbd', '<KEY>', 0, '2020-10-30 13:44:56'),
('6e074992d7b2c8e44c1ad5fb34b4aaf1a5da2fca1b94f9ad30c92de773254469bb756cafd1ba7e67', 'ea9c64d054e75ebe1018aad5bd8475b78082d24b8746ab0e0d167d2da4bf44a26563cd983e7aae90', 1, '2020-11-14 10:18:11'),
('<KEY>', '5406afbe702934e4461ad8857a0893d6b947079b756e8d2434c636d2586c4382d46f85d978c6af9f', 1, '2020-12-06 15:10:58'),
('6e9c99657e8834ec414056ea02a759f0dfb9bd78b3670fd1beb048a029ef9876052323bf71ac66eb', 'ee0c0b73e9ff1c54e05f2d2964675be39953009b8f9743503f8a7af6c61b7d801fa2cbb748e44fe6', 0, '2020-10-04 14:11:52'),
('6f01a9710409340fd3856ff1fe89396e45f632327379aaea23aeed9c38889ac6a0773f6a1c34718f', '<KEY>', 1, '2020-11-07 11:02:57'),
('6f424cfe5aec7a0face72768b6a1e4295842eb02251e8bf05158e54b20ea666f573005eb4cde1f4a', 'c38ace94361ed83af21ce1240a5c1121e21ddf5b678cf2c6380d1acd29b334df5a05647854212cd6', 1, '2020-12-03 05:26:06'),
('<KEY>', '<KEY>', 0, '2020-09-10 05:02:41'),
('<KEY>', '6f9d989dea8ba8af0fd8824a3d4e22a3ba8104b4b592aa7a9f26f77e2a66dfed69b102acf377a219', 0, '2020-11-13 13:19:33'),
('70c29a4cf4544366fcb8953cc13e0eff7372cdcaf4808089344f4a9d775952cd91d50dabdecd6e56', '<KEY>', 1, '2020-12-02 11:37:45'),
('71605f35aa00a7270fcbe6b5aff7775683e1432b94294f7f79f96e659d1efe34f8572822811f184f', '4f5c7c6824cb8490648e14c55945c9c7f306807275455a0fde85bc9fedc3153162280ad2322280b7', 1, '2020-11-14 11:32:45'),
('716dca2acc6f4d3112e88803dbb675eda18d22635b6abfb4ffb5e58da52fd5bfc6e5e769c7679d04', 'd8689e8381dece439f6f99a152c0c9abd503a7ac52f9cc7a855203f571c656b527cfa497ec96903b', 0, '2020-12-09 07:24:38'),
('739d4445e55b89fe788011f50e0cde3fb6514d0d6463b544ad763f15d1d6a92ea5ef3fe3c9fc8710', '8df4f6bba45f90de14fa8174413cd1771415473fa4fa9dbc7a569299fc5a099eebf18a8e5fd6fa85', 0, '2020-10-04 10:54:23'),
('7631876c007d583c899bc01da4e33b878ed91de5ebb431ee3a4df94090752c0eaf19fe0c067978d7', '67de655d48d1ad62a012cbb8243980dd368354bb93a30c5c8cfa35c6656666d297cc7473dcaa07b5', 1, '2020-11-13 05:41:25'),
('<KEY>', 'a89fe168b628de3579251222cd529947adaf5a38525884ca4bd917ee85de8d17eecae635db3aabda', 1, '2020-12-06 11:31:53'),
('<KEY>', 'cb025b458f36578802aa5d40c7469b9a59de3d85b80f8af1f42d26887e7a10b8f93f56c80f6b6432', 0, '2020-12-06 13:48:09'),
('7b30bd07dbf6484e6022ca73b15ee3bbd2a2cea4d92939957c9651d86b96bccd244df0d27783fa2d', '<KEY>', 0, '2020-11-13 05:36:15'),
('7b52a555c00b010ce21351ef1fa2fa669a3a400c8c8e7a11f0482730a5533f01a4eee379a085a764', '1b2baecb075ee3bf797e477ac1afba0fd82271f42cd8d22c6e0ea4b9b3a00edf41f5d052bad2e90a', 0, '2020-11-13 05:43:04'),
('7b850b2438a8c4fd6f47d833e1d0941d8d4a4edf2494ca427a161ad12e1dc209acc69d01fb024663', 'adb0ca11fc0bdad204e7ee0f0cbd86cdeceb6699d2419772afad3825bdf2e0d33679a38d7847c375', 1, '2020-12-02 09:04:13'),
('7bbc8a7f9707e01c3d20a12374dd35eba8a36a31d577542ea9762169927206f1ef56150aa08c3fac', 'afb7d46c7c7ee7a193da416becdd29b5087ce05d7ecbfdb91525bfa3df5fb829f5ee457511f5ce55', 1, '2020-11-08 07:54:31'),
('<KEY>', '30ca77d04d984e7b08ad6b0dfe0503ceaa7bc2c0ac4ea5925f4efb7e0594e9dfac08cc8083239552', 1, '2020-12-02 11:45:36'),
('<KEY>', '<KEY>', 1, '2020-12-09 07:23:19'),
('<KEY>', 'fe5fa2b497f217023da1cbdc76587b9bedc4fd0c18a088d7b1d5380d359ef6578f9a1460d96e923e', 1, '2020-12-05 07:33:56'),
('<KEY>', '<KEY>', 0, '2020-11-14 10:18:54'),
('<KEY>', 'c74d028a2d7c85cfb7ef1465f44dc1ce8d858d507206f16c4e1a90eb74e1e7e7e14dc5fde75a752a', 1, '2020-12-05 09:51:44'),
('7e6fab66574501727339f2c9cde5e7ab8f059f69f5dbef56258bad1b863e19a577e87eff594b5f1c', '9918396e2d6874a3478de422ac7458c1ce451df246e9cbc48166959d16d77b6df591d8ddff6d6f44', 1, '2020-11-07 08:12:21'),
('7f3ec67061f7ce7ef36294a1b7194ca7c417f312039e16579030b41d9b4495ad4a089f943d6f4048', 'afe330ec9f4f2fe1c0bc628143c01cc2999842e937fda7a06044027ba0d815ac7e28bdbf34b7214d', 1, '2020-09-20 07:39:29'),
('<KEY>', '9a3888456c4da62b368fffed90a805ea51a1a575289635b245a034b7f3510a4651d3682dbbc1864c', 1, '2020-11-14 08:57:10'),
('8061edf2223205ebcb17267034a945ee498126e534d6304b028de4a139106267e2434c3dce71a9a7', '<KEY>', 1, '2020-10-30 13:36:19'),
('81d4e01637aeda32c31d6a43445ac78f3e7eedcacc357a0ebe0767f6c4aa3263ae3f8467eb57ff21', '<KEY>', 1, '2020-11-07 05:18:55'),
('82432e3e11387050739104e27def2ebd8e082cfdee2c2aadb2e318179cfd8af53c54dae487c6bdd0', 'e72f333fe5d0c34ef807c1dd6b70e9e71deac4cae005bc33bc1c0f7dc0d8b5ed33f4c7f305900189', 1, '2020-11-08 10:00:23'),
('8277244b11ef2da52b587ff9073cf418df6792ec12d6205ef88b61ba08d61e2b93a5711d711bfdf7', '<KEY>', 0, '2020-12-06 16:25:27'),
('<KEY>', 'd75de4252649175f6b57c83d68608584443470628f7e2592f5455135dd16c4aad622feef16f38c96', 1, '2020-12-09 08:47:32'),
('<KEY>', 'a686540c988784320205d1179295f50b4447bc4cfc049b9171a3deb9f8101900f62054dfd592e6c8', 0, '2020-12-07 10:49:14'),
('845bce0715efe384ab0e74f3fd51a146e755a6047e3181dd81844f63e3514eb113fc5706c2b6cda7', '<KEY>', 1, '2020-12-02 07:40:48'),
('<KEY>', '<KEY>', 1, '2020-12-05 07:41:08'),
('<KEY>', '7366400fa545ba3d8c3831a299f398d19718464a9489a43b7973e07330f1248366f65c5926b5e481', 0, '2020-10-04 14:29:47'),
('<KEY>', '5582f41265e16e309ae82ad620f244b326f257de2b6700b0fb7a3656493d7184e515f5fe5be211f5', 0, '2020-10-04 12:10:17'),
('86295139aea4fe3314229f5b980fbef4c0517a2b13b0ec56532f0e725d2e62ff1c5ad455b6db8b8d', '<KEY>', 1, '2020-11-11 09:24:54'),
('<KEY>', 'fc6bdf75058e6b185633074b98eec005f2df889795e4e286cb341ff3fcf21a6d4a2011347c006ce3', 0, '2020-09-10 07:01:24'),
('<KEY>', '3d698e7888440416a83a4943889284edffe00b6a2a6d7b062ffee7d91b61039948c5c3e9a9a6781b', 1, '2020-12-06 15:09:59'),
('<KEY>', '243e8aa265e57176b4ad1dac24ab03828fa49da5068b469522443e7969c67035ec10736b6d952f44', 1, '2020-11-08 10:02:36'),
('8b6ecaf1625a3a3c64c9aef576ad93a9dcf8f95a4dbe1a86fb9356f9fb711ee3be9160203a9b7d21', 'a2c7bf5e886041782965d379acb0dfa4f10a327199476dc34d06295f94551c8cefd77380e3b19ce7', 1, '2020-09-09 08:55:10'),
('<KEY>', '<KEY>', 1, '2020-12-06 14:32:17'),
('<KEY>', '03104f4fede57322148125e346c72b2cd5f085790d0e1e6a48d04483d98d9e66cf29a2fb7ec396ec', 1, '2020-12-05 10:13:37'),
('94385357dbe02d39c0955428db3becec436478cad12bba68b4171a7396bb936c8b21aa2a2e052a2c', '5ce06bd17f21ad8aec1e97359cf62eac325bc16cd337e66077c9f0aef62fc2aa55cfba4dd7c7d365', 1, '2020-12-06 14:06:51'),
('<KEY>', '<KEY>', 1, '2020-11-29 13:30:49'),
('<KEY>', '<KEY>', 1, '2020-12-02 08:57:34'),
('<KEY>', 'ca92abf4f751939ed5f2678517be52daa1b1192d8d5f7eda2e2c510ee93db53d40bcd70db731aff6', 1, '2020-12-05 07:33:35'),
('98287d36ce12fa49c5b191a147e24baf48a231f27b2b62ce7fc914387846e1a89af2549d420268f3', 'cc8da58202796c1baa68704897864399c74a5176cea6035782ab288a8c9f49c01287661417e214f2', 1, '2020-11-11 09:39:18'),
('99533f2deaf96d834d55f0a8f6753bed607706dbe20d68b7f33f23f5d1759b11311793400445c329', 'bff283ac830b57c9f5d0c4a48980be7dc0eae0655ab04df7b011d1106d6b6e5e3bd8d653ef3e802d', 0, '2020-12-07 11:37:21'),
('<KEY>', '3a0d379ba157f502c09b3e9009718373a2d074d69e860350bf211355b99c5724170931e410332dc2', 0, '2020-11-04 05:53:47'),
('<KEY>', '<KEY>', 1, '2020-12-05 10:25:59'),
('a3e55f3ad2d6a7fcd13163523a2c193454eb1ea759ea20c5fa20c67e5b145c2f8124b6d97a2d374e', '<KEY>', 1, '2020-11-29 13:12:02'),
('a58441f7235ccaf33476d9ada803f09ee8500500411359fafc0b30d33cce938e42ac9271c3ffed32', 'c887fb1e4f6fd25db1afdccf2ba863404728e89fecc349915c7d1a5bcba30756313be9fbc073903d', 1, '2020-10-30 14:21:00'),
('a73e47e9581a7d6f00b4a20880b28edf9da339033d16cc482dcead83e1424822a64ebcabddd76a74', 'dbf923a20d726cdae279dea1d29378bc58ae014f40b1ce07e43801e5654cc79511522bf3aa47adda', 1, '2020-12-06 12:38:18'),
('<KEY>', '9574ef2e39d28c8ee5620725616129a393d5aec0e9ffdafe1b68dffed40b9429cd42012a892d932b', 1, '2020-12-05 11:10:47'),
('<KEY>', '065d4962af18bb2ff5e68428e0b4fa7d83434323244fedcb7feac1c036967fe8db740a3122549fe4', 1, '2020-09-09 07:28:28'),
('a8bd94e3ceeedcf374d0f4944bbb9f202eb25102c2c671ca01cbe2b134e92eeb5909a929ca62676f', '75c659f15e0b659ebf2e20ee757919bf5726dc89a1278616c650b3d0c070425a5f3a840c3702eba8', 1, '2020-11-11 10:57:07'),
('<KEY>', '<KEY>', 0, '2020-11-05 09:31:59'),
('aac6699053c4faa03fe1f012af9931e61dcad1ae9ec6a737158f0683d917f58160657d4823b941b2', '<KEY>', 1, '2020-11-13 11:07:03'),
('<KEY>', '<KEY>', 0, '2020-11-13 12:58:36'),
('aef53edd646d402ee98506a8fa2b4dd7f7da6bc9386691a25548855ed4f4b410abf3cc4955075f62', '6b3728d247920e8e728ae251d0b2505219537cecc894ab41ed527827df29f049abeb8eba0961207e', 1, '2020-11-07 10:55:36'),
('<KEY>', '<KEY>', 1, '2020-11-07 05:23:12'),
('af271a9628a1884680d5698ef41b90984ed6ab63be7084c7ec3e05857e67ad8e027aa496bdb9b639', '953ceb8850a11c10e827f2ee79bffa92d9fc3b5f80f6591e5271b88cc64890773cebb4d089741ecf', 0, '2020-10-30 14:24:47'),
('af74107dd2f40b31529dba224c5e94c9aceda635785c930c94dc4a7055dfb9433160a04e69422ccf', '<KEY>', 1, '2020-12-07 10:36:02'),
('b0209d7c2292af9acb88ef24c5d1010d55a273b534349b607b97c90fa0d038659f9e506326d5aa14', '10f5fa895e4380e83fee42faa5c5a428d7f1454842586ecb5cfe3baabd2cd682b567b429452a9d38', 1, '2020-11-13 12:51:29'),
('<KEY>', 'e5d19789a2a3086ef01cec9133337edb8a88599e37deb232b982a883a0c6622de32537407c7a9f9b', 1, '2020-12-07 11:33:40'),
('b2412c4c75ec25dd7048ea31b2b5f43cae5f327d12019b5facb945a5cca20d7390160ed45dd5a8b8', 'b4b0f97f770163ddcc62a532e210a5c4aa0be93e93e9e1d8d5f3ecbd507f45ca6e8cc889e8c01f8e', 0, '2020-12-09 07:36:08'),
('<KEY>', 'd3549fe9ccca35d9c01f21aa80eee59e06d2e1c58ed3b6fa9ba9d606ad17a8441cbed8f55c10b6ec', 1, '2020-11-13 04:57:45'),
('<KEY>', 'be2804e89865c5944176c333018a16697fac9d30ee93fa70d5e9e5c74eaac8bc906fdfa2201baf48', 1, '2020-12-06 11:30:43'),
('b4182b9ea40f149ff3d8e219a3f8368cdea0c72d274aab58db14695e659e9fd40f1d6916e6dca229', '<KEY>', 0, '2020-11-05 04:42:51'),
('b4d39db9e8d198197c647bd305b4db5e08cd52268be10bae3a6c92ef4a96ce1119c519eeb645a323', 'cc5ec428c358eee9fea000716c60c876f950fc31dfb5b5f0db1f4cdc07ba1cde1c539e75be2f3aca', 1, '2020-12-06 16:08:22'),
('b593e07bde8d8364c953106cdb32bffbd799ebffcc204130132a29f7c7c51f184d4978d594123775', '<KEY>', 1, '2020-11-13 13:34:07'),
('<KEY>', '<KEY>', 0, '2020-12-07 11:26:05'),
('<KEY>', 'ddb853b94d3354eddc7231ec3fce20c230da231fa8ca6cd17bae53e212825cbc8a57b55e86af8097', 1, '2020-11-07 05:47:14'),
('b83d32139477cc14bfb576d1d8e74d1bdc55ad62cc1655adad266017e12a88c6901b7b344a19aec8', '99c3ef7ccb4cde7d5990d8c75fe0d3a3548194214df116a92f4dbbc027c1280b10aa8dd7fd111069', 1, '2020-11-14 10:38:38'),
('<KEY>', '<KEY>', 1, '2020-12-03 08:03:54'),
('bba727e7f960232b56a3312ac04f0dc99189b922be8f38273ab07acf094f4e88350ff6f1eeccd586', '9c18391ffd519c4aea07c88f19402bc8021c4332c8222ee29bea3831c6faf649e4536422ab497566', 0, '2020-12-09 12:23:23'),
('bc09a25ae96b721740bcc3bd5087f65743f40c2a6f0dd0212ff420d8cfa89ce09234028144c35816', '90b7f277f6363912a793a5879ed120e4f3ee3c06363179e0311a63726234733ba14b333647048187', 1, '2020-09-10 06:35:40'),
('<KEY>', '<KEY>', 1, '2020-12-05 06:39:30'),
('bcd60c6292f6ad0a31f3a4baf342f4449f50250b5027575fe99e9b6ef97b1932231e1f23addfa88a', '<KEY>', 1, '2020-11-11 10:06:26'),
('bd8658d64d70a40fe48d5ab3bc48a192ab96435d56ee76783f42558fab4470107ee71d44be172c48', 'd6eccdb9d9fbd8b8783d3626bcb4f3812f78c00edb21ec334a1022ec7d574a96eeb01fd49afd1392', 1, '2020-10-30 13:32:33'),
('be14159a447706a47cd2d15ac4243301636e6b38a9eac77d44106161ca4b2fb8187f1c2e66cc918d', 'b27715deecfc39a06ac8caaed7645688156b2fa740fd8f3dc59511efad6b6173268b5d666c2e00e0', 0, '2020-09-10 06:50:38'),
('be2538665664ce446386f1c62b3021ed9e7348738c6866f795303cab934e7555dd6af6c545cbc60d', '<KEY>', 0, '2020-10-04 14:12:05'),
('bf104a599d8f285a36ea9f8cc80ea1b13815d26693c9b79bbed02fbbf5593321044dee27d8f9aebd', '84aa52338178fcdf10f49af82bcbe441f8ab19c9af007e116a3f66c950570a892edf4aa634dabc55', 1, '2020-12-02 07:10:12'),
('c1d71026dd14d203406f9bb1ccc28956016e99c55e5a8c5aadcdce3776ee30997e00d5622a7e8365', '097d02b14651f26bcbe45bd29c3e7967c847ead6577d9108d58370ca9b16750a2b0ade79f03dbf1f', 1, '2020-11-13 11:05:38'),
('c230ea4ad940d9284d4dccf635eed5600c224f2b8c0bae264381a29574ed6eaf667fecb1a178f937', 'f1558b5ffb2d4014b84c0415323d72b3cd905137e281ac8e54a3a20e11673ec45cebe0d395580c0b', 0, '2020-09-10 04:58:57'),
('c37b5a4394382527c31f0b66c1ed1982cb9a690f0a7f2fa451d948bc89f18b4442bc2f101718f779', '25d51e83f2d83a149a48f21754c2c46abbcef6a9fac8c1655010b1262d71fd4d7d8d80b9b8e850c0', 1, '2020-11-08 06:41:36'),
('c5aaf54616115021a91ddda3db4a7039618a717072841f439813fbad1a9be7dab36e4be5f78bffb8', '0b1624cd17ef872c96715e9309215d916250ef3d91a918cf2afcec2dad6b0617f16a2107f524d1a5', 1, '2020-11-11 09:23:16'),
('<KEY>', '<KEY>', 1, '2020-12-02 10:25:08'),
('<KEY>', '<KEY>', 1, '2020-12-07 10:35:27'),
('<KEY>', '<KEY>', 1, '2020-11-08 05:24:24'),
('cc1aa2c5ab68ede6b7b0defedacce073d3ce906d5bf769bbf7d43e042cb9c874424fd4be8ef7badb', 'c801c0a611834e829ac33187dc3ab8b6be0a2f7de97dc7c287dddbd57fe1c4a225202d81f7b9c8ef', 0, '2020-11-04 06:14:19'),
('<KEY>', 'afe468b684a10d48c0e4f75f1891939d2c447a0c1f67ee612e82cbe3fbf106f3b9765140faf7dfee', 0, '2020-10-30 09:24:44'),
('<KEY>', 'ade9b8a0daeefa058b326e5f0b99e69f6f1e36ee6b67bc81ba82e746b7f760b6576378e2f4ac1b1c', 1, '2020-11-14 07:50:07'),
('d3c297c612410d8cbc323c92c0121f7b55fc57824308e9be021028ac8b46bf6cefdf2ef67939b660', '6f892d202b2d8d8451b1ff936609e571e6faba843a8c5960c74dc2440a5e601a77319f8e9a67040c', 1, '2020-11-13 12:35:21'),
('d418566c049800b7776882af0d5675b47f64d11e59eaebb321943cae3d0f8ff7e372c25783ff83a9', 'd710fd7cb12dd3261304cfa41ee02256c31a502567aff6abd8a98bf1405f2adaf154b7809a375be2', 1, '2020-12-05 10:25:41'),
('<KEY>', '<KEY>', 1, '2020-12-05 09:50:16'),
('<KEY>', 'c8cf4f1a6975fafbffe53d50267d67fdaf1e6bf74164e791cc1beb1c3edc7da01412b7ffce0dcd3e', 0, '2020-09-09 10:42:54'),
('d9f72741e643d81689ff2c120bedc594dd1dfa4f92550669f02ed0e8ec8e9788d04abf6fca31e155', 'dffa0070920a6dd8932f8cca653e614ea878b49c0106e39749d0ea8b255e2409cdb26ef0de781fb8', 1, '2020-11-08 07:31:39'),
('db2ede2a0991e6a3bcfc7ec8aa466997fba18ca4f270c40373aebe2871cc65811281dab4e6370779', 'a37d940f475ec89789b5347b9a52a345f37320a6956b9dd367e4a27f311f16827d5ada08d57725e8', 1, '2020-11-13 05:12:58'),
('dc82d57ad090844241d40be3398aa5dd0c0ae2104dded1da1d8d2065482df1a830d7e9f82782653d', '7928c8d29ae30016ba051d04a4d19ef3dc2ada86614289aa4ef714a2810ff353a65ec61b6d0b35f4', 1, '2020-11-07 06:31:06'),
('dc8ff1dd0232a150ab990a257fe07a0e911861b003399a1aa5866237768bda8b038d6ea3e08d6b98', '14272ab4c4fe2a56283bbca5f91e7cc87429ff5b6dcae909842422d8a902e0a7d21e29075c4ab2e1', 1, '2020-11-29 13:34:33'),
('dd6dd8aeea517d0d0e714b9c63271c8a876725706b5bbdabe7d5f3bc0b21b8dfe3d3797d2b4f7983', '03a3bdc5cf65ba805f7d4d557482078f98612d82316d0206ade2bb99ce2335e936be56029e092932', 1, '2020-11-07 07:36:55'),
('dd770865c53bd2177ab43933be6f0fca47e9ab85fd36de1e02cd26f89532c414a885f10bd7ffe2a9', '2018c021d0963c7ad3adb2dbbcf7c8779bb62414426a686838b87293124d4acbbbe9e8daf75a2b3e', 0, '2020-10-04 12:07:25'),
('dd7f355cb04117010b2de14959d9e50e01056ee81267aea7715275451ddf04fadc6213768d01bb7f', 'f9c80182e4e383d65f6decc8161acedc463c9d307c0b02bcac75386d8603209312fe94e37dbb1908', 0, '2020-10-04 11:30:28'),
('ddde8d49642db2041c392cd6eae0e42510320dd64b92179cd72ac791df41da16b1f5b8e18c21f178', 'e7897ccf2954d479ba3a01b5d7a97fa252583001b02680199abc8e1f458a3414b45be6783df19e45', 0, '2020-12-06 16:01:09'),
('de2d87ebca55255ad352214db3b2e7d1852826ca9fccfda5c4e71ab1b5e27756e0772ad8606ecc1c', '<KEY>', 1, '2020-12-07 10:45:15'),
('<KEY>', '44842e1f01ee9da879e33f5070cbe9f5877291d40eb47ec16747cf23960f136244fa2a6f15b18386', 1, '2020-12-06 15:10:12'),
('<KEY>', '1503bab3ab1f1a6c3832d6a25678d04c963326c045303af5657e8ea3e5d956414903e9631725796a', 1, '2020-12-06 06:27:43'),
('<KEY>', '<KEY>', 0, '2020-11-14 10:27:32'),
('<KEY>', '32d42fb6130b3a6c0a955770029b031767427f93ed12601b2d32eb55dc4e49471ccb82b8a50b8e70', 1, '2020-11-11 09:32:22'),
('<KEY>', '9b292246605e1fb9eebe8aced50b6f90a239e2edbbc64d669c137e4d54686accb3dfc32dd9627f10', 1, '2020-11-29 13:19:30'),
('e168752691d4bed55f6467f4802b8a41d0bee2d62f014cdc69e45ea9e061994930ee95ce69e5d9a9', 'e5088a81b7ecc644e57702e4a9c02a56f6c539f13a8cfd0ba8d1f92937120483db7d402ef254e9f5', 1, '2020-12-06 15:53:01'),
('e46d964e2827302a13fa72910d713d67f27f112d0bfea6afa6a5ca16dc24cdc25c4227dd985dbb3b', '060b2d9fa523ae61c730488e6e1ef7ff1b068e68f16bb9b2b55cdded382e8402d4114262a94eb9db', 1, '2020-12-05 06:54:12'),
('e65e8a807608610d4b377ca82fd7d92700e95692b632db86a2d995f98e79afb21f6b1c683a0f16e4', '<KEY>', 1, '2020-11-08 13:08:07'),
('e728d8715ca9fe2243d476bb7b53d6438287ebca6d4ad222f855e439eece83c8f58853bfccb84c27', '32f6918b50c27796ed6e3e6a2c4d01109d8b80c144c303fbe82aa81b0ead31602c5110043c66dba3', 1, '2020-11-14 09:05:56'),
('e8cf87641c7a53665921cccf1bff4b1386685a17e3d9c0e17dc381d2a95088dea29e149dca118b9b', '851c8a5d779d3a5468555b467378573d119445579c3a575c7ca9bb4d8bd94822240954c318c56948', 1, '2020-11-08 10:02:35'),
('e95c7960d89e74e8fdddd4e7c6ab825b4f588228f66d583346511cfd0ce5d8717c7ee290838cdaf5', '<KEY>', 1, '2020-11-29 13:07:58'),
('<KEY>', '<KEY>', 1, '2020-11-14 11:21:05'),
('<KEY>', 'd24c48a77d97430e9f962a6f4efeca32fe3dcc25376ca52328017dfe86e6c0536b169713830b415a', 0, '2020-11-05 07:34:28'),
('eb6e06c134520c915539e2986a73d7ba73a0c658a07f43216e12c55169d16a63e6e1ebcdf0dcb6fe', 'adc40860e437ab6fa6e47949b699c16be84ca163b47cb2e4a8fac08ecfa49fef83da2765cbf00f33', 1, '2020-12-02 07:31:24'),
('<KEY>', '<KEY>', 1, '2020-09-09 07:56:09'),
('ec413c00350fee0c96c20e32ec1eb7a7e2b4ce76b6d1afae290738ad8475a021866e78f675436d0b', '<KEY>', 1, '2020-12-09 08:35:12'),
('ecb6e131ed78302a0a8f07c8cb79d96851ea2f69a5125a9d9188a411376a43c3106daf3342821617', '119ab74afb715da241a6dcfa72226bde31f3442b4231e49d30727110948f79879ed01ae074b0394c', 0, '2020-10-04 14:14:40'),
('ed270b149e875a69bb0556eada81aeac9211168cce4803c43c5fdf1ea2fa4eb07ea606de8f5acada', 'dd8fa27d891e097159a8594fd53e6ed393f24b92c21aabb62eefed19f4638b8854a9504d5e72502e', 1, '2020-11-11 07:22:09'),
('<KEY>', '66feb28edbaac0f05d1905fef7e3cc6ea6ba7dcbf2ec1131a160dff017ba57191d1965bb2f257d90', 1, '2020-09-09 07:05:02'),
('eea8281ff64df10f1afd0bcd59d82048348fd825a80ba0a7f61a5b788f281dbee5ce07b3a552dc98', '<KEY>', 1, '2020-11-14 10:10:59'),
('<KEY>', '<KEY>', 1, '2020-10-30 13:34:29'),
('<KEY>', '<KEY>', 0, '2020-09-10 05:06:11');
INSERT INTO `oauth_refresh_tokens` (`id`, `access_token_id`, `revoked`, `expires_at`) VALUES
('<KEY>', '<KEY>', 1, '2020-12-06 08:29:55'),
('f16d79c8be9efc88ec59e0a553324098d6c78c0f7c48350dfae40aad739d1c1680973cf89f8798ca', '<KEY>', 1, '2020-12-05 11:13:25'),
('<KEY>', '<KEY>', 1, '2020-11-11 09:29:20'),
('f1d4ae3fdb10af537d9714388745abf831d594499195c92ea17df0cd8e2075213548f82d513e2e79', 'fa18a3619910119e8aa181477875f83196cf1534f8c1c55ef00959173a2d4c52ea613938687d3c83', 1, '2020-12-07 11:20:41'),
('<KEY>', '<KEY>', 1, '2020-12-06 15:59:52'),
('f37dbcde7f4b9dad1528d02d7989492aa025aa3caf4c4ff461a576c437e47a3b5ff7adc1ca05d271', '62ca1388d13a98a7ff3aee201892c453224d0d494618492851627909b3c50b876a2856c412aac7e4', 0, '2020-12-07 10:36:27'),
('<KEY>', '<KEY>', 1, '2020-12-06 12:37:07'),
('f4aa57d245bb1301f0c795335f887e71e44edf29ec52346409eb142fa47e812ad9294c173b2e1de7', '<KEY>', 1, '2020-09-17 14:07:28'),
('<KEY>', 'fe91315824291e85dd98e5fc06938d2e0fae9fadce4a6bab2ec63edfe36448bf7eabf0bf50a88ea1', 1, '2020-11-08 13:15:31'),
('<KEY>', '<KEY>', 0, '2020-11-05 04:59:17'),
('<KEY>', '<KEY>', 1, '2020-12-06 15:48:30'),
('f9867110f04a74cd5a0cc6efa15cadb3b2cdecdf0229e98bde2dd77e9975c4d2a1f871cd6be857e0', 'b4e8142796146a90c21a4241f821cd4393e56fbd70d7f1ad7ee6cad49b98524bb6009b631653449e', 1, '2020-12-05 07:03:27'),
('<KEY>', '<KEY>', 1, '2020-11-13 10:59:40'),
('<KEY>', '<KEY>', 1, '2020-10-30 13:44:16'),
('fb71b5e7f3fb29adff4672755123fa7154702b376980f3d9c1a5edae6500b4e31ab382580a1b5831', '68bc9f2d12e2cce851154eeeee469858d70e1a13f756b1b2014939edf1240c9bb678e533b7998d26', 1, '2020-11-14 11:32:59'),
('<KEY>', '<KEY>', 1, '2020-12-06 10:25:06'),
('fbde8f1d8923c2e0e433420a8ad26da1847065b1c07c1a16328a2423d9181055e1127039ac281710', '<KEY>', 1, '2020-11-13 10:58:57'),
('<KEY>', 'e60094600c5ec25faac1b03df5b1248b8d6f92a750de5c6aa5e3d90d899d6067e9145994e5b2286b', 1, '2020-11-07 07:32:07'),
('fd1c96ea28d48f149cbd8a8e56a4c749f4eb52e29d8b14aae3d705a279be6ad247da14815135cf73', '<KEY>', 1, '2020-12-02 09:10:44'),
('fd23d4469408ad9b6276f118c074e63eaa134209a8ab79c4de29a2ed7c94c118625e74347b92e096', '<KEY>', 0, '2020-11-14 10:30:06'),
('fe1d49a13d5417c997c9de196101b172a23bc789e06b9396675d2343dbfee1ad6752f5c6c4919d5c', '<KEY>', 1, '2020-12-06 15:58:43'),
('fea2d00e04a0a34124290e9c42fe7a00dd748c824584c7be53866f7a1fdcf053dcdeba60386577d2', '989c45336ee025927866c8e4342b767c94d03f4eb6e3f9a161c0143a32f17631c36a7218b4275177', 1, '2020-11-14 10:29:21'),
('ff1dec053ba5c0c63d01ea23519639823d9ca977d152d004547d47a8e5a1b3db96423bdbc00e25e4', 'c72bfd8c435b56092edfa01839738d605c3d99bb08538b6355dd5f7125f75492836603e25a39baed', 1, '2020-11-07 05:53:58');
-- --------------------------------------------------------
--
-- Table structure for table `offline_guest_users`
--
CREATE TABLE `offline_guest_users` (
`id` int(11) NOT NULL,
`sub_event_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`ticket_id` int(11) NOT NULL,
`qr_image` varchar(255) NOT NULL,
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `offline_guest_users`
--
INSERT INTO `offline_guest_users` (`id`, `sub_event_id`, `event_id`, `user_id`, `ticket_id`, `qr_image`, `created_at`, `updated_at`) VALUES
(1, 406, 32, 44, 562827, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1572443504.png', '2019-10-30 13:51:44', '2019-10-30 13:51:44'),
(2, 1049, 64, 5, 223500, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575540838.png', '2019-12-05 10:13:58', '2019-12-05 10:13:58'),
(3, 1049, 64, 70, 528294, 'http://1172.16.17.326/sim_new/storage/app/public/qr_image/1575540844.png', '2019-12-05 10:14:04', '2019-12-05 10:14:04'),
(4, 1050, 65, 3, 188590, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575621014.png', '2019-12-06 08:30:14', '2019-12-06 08:30:14'),
(5, 1053, 68, 79, 489498, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575637308.png', '2019-12-06 13:01:49', '2019-12-06 13:01:49'),
(6, 1049, 64, 3, 560650, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575638367.png', '2019-12-06 13:19:27', '2019-12-06 13:19:27'),
(7, 1082, 74, 80, 190252, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575645757.png', '2019-12-06 15:22:37', '2019-12-06 15:22:37'),
(8, 1082, 74, 78, 413436, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575645762.png', '2019-12-06 15:22:43', '2019-12-06 15:22:43'),
(9, 1083, 75, 80, 508597, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575646502.png', '2019-12-06 15:35:02', '2019-12-06 15:35:02'),
(10, 1051, 66, 76, 642915, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575646647.png', '2019-12-06 15:37:27', '2019-12-06 15:37:27'),
(11, 1085, 77, 80, 410449, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575647373.png', '2019-12-06 15:49:33', '2019-12-06 15:49:33'),
(12, 1085, 77, 78, 290056, 'http://192.168.3.76/sim_new/storage/app/public/qr_image/1575647379.png', '2019-12-06 15:49:39', '2019-12-06 15:49:39');
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `post_list`
--
CREATE TABLE `post_list` (
`id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`text` longtext CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`updated_at` datetime NOT NULL,
`created_at` datetime NOT NULL,
`post_media_type` int(11) NOT NULL,
`post_image_url` varchar(255) DEFAULT NULL COMMENT '1 => Image, 2 => video, 3 => none',
`post_video_url` varchar(255) DEFAULT NULL,
`status` int(11) NOT NULL COMMENT '1 => active, 2 => unactive',
`submit_by` int(11) NOT NULL COMMENT '1=>admin, 2=> user, 3 => Organizer'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `post_list`
--
INSERT INTO `post_list` (`id`, `event_id`, `user_id`, `text`, `updated_at`, `created_at`, `post_media_type`, `post_image_url`, `post_video_url`, `status`, `submit_by`) VALUES
(1, 1, 3, 'Test testtt', '2019-09-09 12:54:15', '2019-09-09 12:54:15', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/rYKQMpuvBtZoq54yMYIq.png', NULL, 1, 2),
(2, 7, 3, 'My Post', '2019-09-09 13:20:41', '2019-09-09 13:20:41', 1, 'http://1172.16.31.10/sim_new/storage/app/public/post_media/gO2qjKrIM08g68Ign3Dm.png', NULL, 1, 2),
(3, 8, 3, 'Dummmy', '2019-09-09 13:26:42', '2019-09-09 13:26:42', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/sWxbOO8jTO0os45uoLQl.png', NULL, 1, 2),
(4, 9, 4, 'New post', '2019-09-09 14:28:57', '2019-09-09 14:28:57', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/s60BR4A8pPQ6AXRzdBL7.png', '', 1, 3),
(5, 9, 2, 'Test Post', '2019-09-09 14:29:15', '2019-09-09 14:29:15', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/C1mDX0Ncg71Z1suISUtY.png', NULL, 1, 2),
(6, 11, 7, 'dsff', '2019-09-09 16:17:51', '2019-09-09 16:17:51', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/rjC5RlG0yP9y6xuWkgZS.png', NULL, 1, 2),
(7, 11, 7, 'sdsd', '2019-09-09 16:17:58', '2019-09-09 16:17:58', 2, NULL, 'http://192.168.3.76/sim_new/storage/app/public/post_media/hCyS6L3ayNzr1CoboohO.mp4', 1, 2),
(8, 12, 7, 'jhdfjdhbfjfgbjfdgjfbfghdfdgfd', '2019-09-09 19:35:39', '2019-09-09 19:35:39', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/qVLIfDOR9pmTZSJ3SPeY.png', NULL, 1, 2),
(9, 12, 7, 'jjgfkjfkfhkfjjgf', '2019-09-09 19:35:53', '2019-09-09 19:35:53', 2, NULL, 'http://192.168.3.76/sim_new/storage/app/public/post_media/Mm2EnPKeFWmP5ChzpAU3.mp4', 1, 2),
(10, 13, 8, 'frwefwe', '2019-09-09 19:45:11', '2019-09-09 19:45:11', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/5f2NkslSzYrFKxzDeRPw.png', NULL, 1, 2),
(11, 15, 9, 'post test now', '2019-09-10 10:15:24', '2019-09-10 10:15:24', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/hVj7M7gwwVrfuaUYCEhf.png', NULL, 1, 2),
(12, 17, 13, 'dsds', '2019-09-10 10:45:30', '2019-09-10 10:45:30', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/3FLjWBpUMSoz3QKe3gTF.png', NULL, 1, 2),
(13, 19, 14, 'sssss', '2019-09-10 12:11:59', '2019-09-10 12:11:59', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/OkWUBLg45T4IhpaVawBX.png', NULL, 1, 2),
(14, 21, 5, 'Bxbhdhdj', '2019-09-20 13:13:17', '2019-09-20 13:13:17', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/pTxPyb0S72CALKLgMIqS.png', '', 1, 2),
(15, 28, 21, 'hehehe', '2019-10-04 17:06:44', '2019-10-04 17:06:44', 1, 'http://192.168.3.76/Motiv/storage/app/public/post_media/oueB8JyQjJ3DhJ9NRxk1.png', NULL, 1, 2),
(16, 30, 31, 'tes test test', '2019-10-04 19:54:05', '2019-10-04 19:54:05', 1, 'http://192.168.3.76/Motiv/storage/app/public/post_media/XcZneDPNiIuOIPbuvKFD.png', NULL, 1, 2),
(17, 32, 42, 'Delta user', '2019-10-30 19:14:05', '2019-10-30 19:14:05', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/VXYIfnwymZ4MKB1kfjLf.png', '', 1, 3),
(18, 36, 50, 'ererer', '2019-11-04 11:28:06', '2019-11-04 11:28:06', 2, NULL, 'http://192.168.3.76/sim_new/storage/app/public/post_media/rNxAuTa15OKfdZN4daFg.mp4', 1, 2),
(19, 37, 48, 'rererer', '2019-11-04 11:39:42', '2019-11-04 11:39:42', 2, NULL, 'http://192.168.3.76/sim_new/storage/app/public/post_media/WTYqsuPZnjTK9SzG8ujM.mp4', 1, 2),
(20, 37, 51, 'post deep', '2019-11-04 11:47:14', '2019-11-04 11:47:14', 2, NULL, 'http://192.168.3.76/sim_new/storage/app/public/post_media/s0dn3oaIR0IQX59l9BkQ.mp4', 1, 2),
(21, 2, 2, 'wdd', '2019-11-04 13:03:52', '2019-11-04 13:03:52', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/CUdfpuN7v67lhbdDrHqE.png', NULL, 1, 2),
(22, 42, 54, 'dfdsfd', '2019-11-05 10:59:30', '2019-11-05 10:59:30', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/gaTMHICU5IfQJjgknu3W.png', NULL, 1, 2),
(23, 42, 54, 'sdfsdfsdfsdfsfs', '2019-11-05 10:59:45', '2019-11-05 10:59:45', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/xfs3hQI7QbahdTJsyDxK.png', NULL, 1, 2),
(24, 2, 2, 'wqwdwqd', '2019-11-05 11:09:45', '2019-11-05 11:09:45', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/glWk3LKxmZomM2yAlyi0.png', NULL, 1, 2),
(25, 2, 2, 'dqwdwq', '2019-11-05 11:23:55', '2019-11-05 11:23:55', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/uP9JAjp6Io9LmBGzT9Qj.png', NULL, 1, 2),
(26, 5, 2, 'wdwqd', '2019-11-05 11:51:51', '2019-11-05 11:51:51', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/HhuX61Wgp3T1dWHzKKLd.png', NULL, 1, 2),
(27, 2, 2, 'ewfwef', '2019-11-05 12:11:08', '2019-11-05 12:11:08', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/YPAHmq6V4JifQyMfbESo.png', NULL, 1, 2),
(28, 2, 2, 'efwe', '2019-11-05 12:12:27', '2019-11-05 12:12:27', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/4NFnCdy7cXws9wDAkrMF.png', NULL, 1, 2),
(29, 44, 59, 'cvc', '2019-11-05 13:14:04', '2019-11-05 13:14:04', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/Sh1MhYhWNueSuqVmjNC0.png', NULL, 1, 2),
(30, 44, 59, 'cvsc', '2019-11-05 13:14:15', '2019-11-05 13:14:15', 2, NULL, 'http://192.168.3.76/sim_new/storage/app/public/post_media/rAiT85rmBAjalLvF87nC.mp4', 1, 2),
(31, 9, 61, 'New post', '2019-11-05 13:23:03', '2019-11-05 13:23:03', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/WqbiInj6okrQxJB7Y89a.png', NULL, 1, 2),
(32, 9, 2, 'q', '2019-11-05 13:26:09', '2019-11-05 13:26:09', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/wCh5nTAJqPkaQ3dk1URz.png', NULL, 1, 2),
(33, 21, 58, 'mmnnbbbbxvfvnhhhhhhhhymmmmmmmmmjjn hhhhhhhhhhhhhthythvvvvvggggyvgggggtttyyt mnnnnnhgddddfgrtrhsdgsdgsdgshdsn fgggghhhhvsdsdvbsvdbdvsdssdsdssssdsddhgvvvvvvggggggnnnnnngtttghhghggg', '2019-11-05 14:47:51', '2019-11-05 14:47:51', 2, NULL, 'http://192.168.3.76/sim_new/storage/app/public/post_media/D1ysjRQZALYy35oW4QwH.mp4', 1, 2),
(34, 36, 58, 'dfdfdfd gffgfgcfdgdgdgdgtdetretetethhgjhgj gggdgrderhfhfhfhgfgf4wsr hggghgh trtetrerewezsf bhgghfhdtdtrfd fgfhf', '2019-11-05 14:49:43', '2019-11-05 14:49:43', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/fadQU579pKRpcqaRYTNN.png', NULL, 1, 2),
(35, 47, 64, 'sdsds', '2019-11-05 15:01:03', '2019-11-05 15:01:03', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/rf9W7yqyekgoAC5IYda5.png', NULL, 1, 2),
(36, 47, 63, 'uhkh', '2019-11-05 15:02:02', '2019-11-05 15:02:02', 2, NULL, 'http://192.168.3.76/sim_new/storage/app/public/post_media/GHIxBWR0QDiYbYvlOqSH.mp4', 1, 2),
(37, 48, 64, 'xsdsds', '2019-11-05 15:17:24', '2019-11-05 15:17:24', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/yZwi9CxRmusZHi0G0asg.png', NULL, 1, 2),
(38, 35, 5, 'Hdhdhhsjs', '2019-11-07 12:05:01', '2019-11-07 12:05:01', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/bmNEVs8gpuhfwTKs9XxL.png', '', 1, 2),
(39, 35, 5, 'Gxhdhd', '2019-11-07 12:05:36', '2019-11-07 12:05:36', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/Iuz2O97C2emoPJRJ8VuR.png', '', 1, 2),
(40, 53, 66, 'Tester', '2019-11-11 15:28:57', '2019-11-11 15:28:57', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/s0dmbMDiwEPPh9d1bmBv.png', '', 1, 2),
(41, 62, 74, 'Cbbj', '2019-11-14 15:56:27', '2019-11-14 15:56:27', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/xRfTeBsEFEyuLLqYbxxQ.png', '', 1, 2),
(42, 65, 5, 'Beast', '2019-12-05 16:42:26', '2019-12-05 16:42:26', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/0kurJHd3f5fp0BGft6PJ.png', '', 1, 2),
(43, 67, 77, 'H hush subs I', '2019-12-06 18:04:06', '2019-12-06 18:04:06', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/jk7Xqage29G26pc0rVrn.png', '', 1, 3),
(44, 66, 78, 'Ohh oh', '2019-12-06 19:13:20', '2019-12-06 19:13:20', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/fozXdI6R5Rk91Vbdoqbp.png', '', 1, 2),
(45, 63, 77, 'Ichcigchijg. Gig I', '2019-12-06 19:13:39', '2019-12-06 19:13:39', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/Q4YCBgfFuTsNQiV3Q9Sx.png', '', 1, 3),
(46, 74, 81, 'Ugcugcguc', '2019-12-06 20:47:02', '2019-12-06 20:47:02', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/SHjj12cdGBYBtypcQQrg.png', '', 1, 3),
(47, 74, 80, 'Hdjgtdjhfxkfh', '2019-12-06 20:58:17', '2019-12-06 20:58:17', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/0JHvk8CnnVmA5FWNwCq2.png', '', 1, 2),
(48, 22, 90, 'Hffj', '2019-12-09 15:26:15', '2019-12-09 15:26:15', 1, 'http://192.168.3.76/sim_new/storage/app/public/post_media/5tyvWJMTuPOi3zhIMB6M.png', '', 1, 2);
-- --------------------------------------------------------
--
-- Table structure for table `public_interest`
--
CREATE TABLE `public_interest` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`image` varchar(255) DEFAULT NULL,
`updated_at` datetime NOT NULL,
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `public_interest`
--
INSERT INTO `public_interest` (`id`, `name`, `image`, `updated_at`, `created_at`) VALUES
(1, 'Animals', 'public-interest-images/animals.png', '2018-03-30 05:43:13', '2018-03-30 05:43:13'),
(2, 'Art & Fashion', 'public-interest-images/Art & Fashion.png', '2018-03-30 05:43:30', '2018-03-30 05:43:30'),
(3, 'Business', 'public-interest-images/Traveling.png', '2018-03-30 05:43:39', '2018-03-30 05:43:39'),
(4, 'Comedy', 'public-interest-images/dancing.png', '2018-03-30 05:43:47', '2018-03-30 05:43:47'),
(5, 'Charity', 'public-interest-images/Charity.png', '2018-03-30 05:43:56', '2018-03-30 05:43:56'),
(6, 'Community & Culture', 'public-interest-images/Community & Culture.png', '2018-03-30 05:44:29', '2018-03-30 05:44:29'),
(8, 'Dancing', 'public-interest-images/dancing.png', '2018-05-02 10:08:32', '2018-05-02 10:08:32'),
(9, 'Education', 'public-interest-images/education.png', '2018-05-27 19:48:37', '2018-05-27 19:48:37'),
(10, 'Festivals', 'public-interest-images/festival.png', '2018-05-27 19:49:54', '2018-05-27 19:49:54'),
(11, 'Film & Media', 'public-interest-images/Film & Media.png', '2018-06-06 07:22:02', '2018-06-06 07:22:02'),
(12, 'Food & Drink', 'public-interest-images/Food&drink.png', '2018-06-22 13:02:48', '2018-06-22 13:02:48'),
(13, 'LGBTQ', 'public-interest-images/LGBTQ.png', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(14, 'Performing & Visuals Arts', 'public-interest-images/Performing & Visual Arts.png', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(15, 'Photography', 'public-interest-images/photography.png', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(16, 'Reading', 'public-interest-images/Reading.png', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(17, 'Religion & Spirituality', 'public-interest-images/Religion & Sprituality.png', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(18, 'Socialising & Networking', 'public-interest-images/Socailising.png', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(19, 'Sports & Fitness', 'public-interest-images/Sports & Fitness.png', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(20, 'Talent Shows', 'public-interest-images/talent shows.png', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(21, 'Technology', 'public-interest-images/technology.png', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(22, 'Traveling', 'public-interest-images/Traveling.png', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(23, 'Video Games', 'public-interest-images/Video_Games.png', '0000-00-00 00:00:00', '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `repeat_intervals`
--
CREATE TABLE `repeat_intervals` (
`id` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `repeat_intervals`
--
INSERT INTO `repeat_intervals` (`id`, `name`, `created_at`) VALUES
(1, 'one_day', '2018-04-06 09:54:32'),
(2, 'weekly', '2018-04-06 09:54:49'),
(3, '2_weekly', '2018-04-06 09:55:02'),
(4, 'monthly', '2018-04-06 09:55:21');
-- --------------------------------------------------------
--
-- Table structure for table `subscribes`
--
CREATE TABLE `subscribes` (
`id` int(11) NOT NULL,
`email` varchar(255) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `subscribes`
--
INSERT INTO `subscribes` (`id`, `email`, `created_at`, `updated_at`) VALUES
(1, '<EMAIL>', '2019-09-10 10:22:23', '2019-09-10 04:52:23'),
(2, '<EMAIL>', '2019-09-10 10:23:29', '2019-09-10 04:53:29'),
(3, '<EMAIL>', '2019-09-10 11:32:25', '2019-09-10 06:02:25'),
(4, '<EMAIL>', '2019-09-10 11:32:51', '2019-09-10 06:02:51'),
(5, '<EMAIL>', '2019-09-10 11:34:54', '2019-09-10 06:04:54'),
(6, '<EMAIL>', '2019-09-10 11:36:59', '2019-09-10 06:06:59'),
(7, '<EMAIL>', '2019-09-10 11:37:40', '2019-09-10 06:07:40'),
(8, '<EMAIL>', '2019-09-10 11:38:03', '2019-09-10 06:08:03'),
(9, '<EMAIL>', '2019-09-10 11:38:20', '2019-09-10 06:08:20'),
(10, '<EMAIL>', '2019-09-10 12:09:24', '2019-09-10 06:39:24'),
(11, '<EMAIL>', '2019-09-24 18:06:19', '2019-09-24 12:36:19'),
(12, '<EMAIL>', '2019-10-04 12:48:03', '2019-10-04 07:18:03'),
(13, '<EMAIL>', '2019-10-04 16:36:25', '2019-10-04 11:06:25'),
(14, '<EMAIL>', '2019-10-04 16:36:39', '2019-10-04 11:06:39'),
(15, '<EMAIL>', '2019-10-04 16:36:50', '2019-10-04 11:06:50'),
(16, '<EMAIL>', '2019-10-04 16:49:10', '2019-10-04 11:19:10'),
(17, '<EMAIL>', '2019-11-01 14:58:57', '2019-11-01 09:28:57'),
(18, '<EMAIL>', '2019-11-01 15:02:22', '2019-11-01 09:32:22'),
(19, '<EMAIL>', '2019-11-01 15:06:40', '2019-11-01 09:36:40'),
(20, '<EMAIL>', '2019-11-04 11:37:14', '2019-11-04 06:07:14'),
(21, '<EMAIL>', '2019-11-04 11:50:33', '2019-11-04 06:20:33'),
(22, '<EMAIL>', '2019-11-04 11:50:50', '2019-11-04 06:20:50'),
(23, '<EMAIL>', '2019-11-04 11:51:15', '2019-11-04 06:21:15'),
(24, '<EMAIL>', '2019-11-04 11:53:18', '2019-11-04 06:23:18'),
(25, '<EMAIL>', '2019-11-04 11:54:07', '2019-11-04 06:24:07'),
(26, '<EMAIL>', '2019-11-05 10:57:46', '2019-11-05 05:27:46'),
(27, '<EMAIL>', '2019-11-05 14:54:58', '2019-11-05 09:24:58'),
(28, '<EMAIL>', '2019-11-05 14:57:25', '2019-11-05 09:27:25'),
(29, '<EMAIL>', '2019-11-05 15:01:35', '2019-11-05 09:31:35');
-- --------------------------------------------------------
--
-- Table structure for table `test`
--
CREATE TABLE `test` (
`id` int(11) NOT NULL,
`name` varchar(250) NOT NULL,
`email` varchar(250) NOT NULL,
`phone` varchar(250) NOT NULL,
`password` varchar(250) NOT NULL,
`profile_image` varchar(250) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `tickets`
--
CREATE TABLE `tickets` (
`id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`ticket_title` varchar(255) NOT NULL,
`ticket_description` text NOT NULL,
`ticket_amount` double NOT NULL,
`ticket_quantity` double NOT NULL DEFAULT '0',
`ticket_status` varchar(10) NOT NULL DEFAULT '1' COMMENT '1=>available,0=>closed',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tickets`
--
INSERT INTO `tickets` (`id`, `event_id`, `ticket_title`, `ticket_description`, `ticket_amount`, `ticket_quantity`, `ticket_status`, `created_at`, `updated_at`) VALUES
(1, 2, 'qq', 'fqwqwf', 100, 100, '1', '2019-09-09 07:15:31', '2019-09-09 07:15:31'),
(2, 4, 'qwq', 'wq', 100, 100, '1', '2019-09-09 07:27:35', '2019-09-09 07:27:35'),
(3, 4, 'err', 'qwerty', 100, 100, '1', '2019-09-09 07:27:35', '2019-09-09 07:27:35'),
(4, 5, 'Test', 'testtt', 100, 100, '1', '2019-09-09 07:31:20', '2019-09-09 07:31:20'),
(5, 6, 'dqdqd q', 'd qwd qwd', 10, 1000, '1', '2019-09-09 07:33:36', '2019-09-09 07:33:36'),
(6, 9, 'Test', 'Testttt', 100, 100, '1', '2019-09-09 08:57:05', '2019-09-09 08:57:05'),
(7, 17, 'Add', 'Add', 50, 10, '1', '2019-09-10 05:08:57', '2019-09-10 05:08:57'),
(8, 20, 'as', 'sdd', 12, 12, '1', '2019-09-10 06:53:01', '2019-09-10 06:53:01'),
(9, 23, 'dqwdw', 'wdqwd', 100, 100, '1', '2019-10-04 06:56:13', '2019-10-04 06:56:13'),
(10, 26, 'qwdqw dqw', 'qwdqwd', 100, 100, '1', '2019-10-04 09:26:35', '2019-10-04 09:26:35'),
(11, 28, 'Tick1', 'wedwe', 23, 23, '1', '2019-10-04 11:35:22', '2019-10-04 11:35:22'),
(12, 29, 'tic', 'erwr', 30, 20, '1', '2019-10-04 11:42:59', '2019-10-04 11:42:59'),
(13, 31, 'TIC', 'dfd', 25, 25, '1', '2019-10-04 14:32:08', '2019-10-04 14:32:08'),
(14, 35, 'Ty', 'Uf fixed ', 50, 50, '1', '2019-10-30 14:24:43', '2019-10-30 14:24:43'),
(15, 36, 'Tick 1', 'dghwjdvghdvsbgdvs ndvghngdvwd bgfdgwd bgwcdfgwcdw', 60, 9, '1', '2019-11-04 05:47:18', '2019-11-04 05:47:18'),
(16, 37, 'Tester', 'This is a tester ticket', 200, 20, '1', '2019-11-04 06:01:01', '2019-11-04 06:01:01'),
(17, 42, 'Ticket1', 'dsghdshdvbv gbvff', 600, 30, '1', '2019-11-05 05:28:17', '2019-11-05 05:28:17'),
(19, 48, 'cool', 'cool', 100, 10, '1', '2019-11-05 09:46:11', '2019-11-05 09:46:11'),
(20, 48, 'ccol', 'sdsdsd', 100, 10, '1', '2019-11-05 09:46:11', '2019-11-05 09:46:11'),
(21, 49, 'dsdsd', 'ssdsdsd', 100, 100, '1', '2019-11-05 09:49:45', '2019-11-05 09:49:45'),
(22, 50, 'wefwef', 'wefwef', 100, 100, '1', '2019-11-05 12:44:18', '2019-11-05 12:44:18'),
(23, 52, 'Weekly Vip Tickets', 'This is a weekly event', 10, 10, '1', '2019-11-07 07:35:08', '2019-11-07 07:35:08'),
(24, 55, 'T1', 'Tedvahs', 10, 25, '1', '2019-11-11 10:08:24', '2019-11-11 10:08:24'),
(25, 56, 'Ticket', 'Gxhchchc', 100, 10, '1', '2019-11-13 05:04:33', '2019-11-13 05:04:33'),
(26, 58, 'Ti', 'Hchc', 100, 10, '1', '2019-11-13 05:34:00', '2019-11-13 05:34:00'),
(27, 59, 'Xhgx', 'Bvxhxhxhhd', 100, 10, '1', '2019-11-13 11:06:14', '2019-11-13 11:06:14'),
(28, 61, 'Bxhd', 'Gsgx', 12, 12, '1', '2019-11-14 07:51:20', '2019-11-14 07:51:20'),
(29, 63, 'Tester', 'dsfgdgfdg', 12, 10, '1', '2019-11-29 13:10:42', '2019-11-29 13:10:42'),
(30, 64, 'Vip Ticket', 'Ticket for notify', 21, 10, '1', '2019-12-05 07:24:02', '2019-12-05 07:24:02'),
(31, 66, 'Test Ticket', 'Jljljkljlk ', 250, 50, '1', '2019-12-06 06:14:27', '2019-12-06 06:14:27'),
(32, 66, 'Test 2', 'Dfgdfgh', 300, 50, '1', '2019-12-06 06:14:27', '2019-12-06 06:14:27'),
(33, 67, 'Ticket-1', 'Hdjdjd s ene e', 25, 10, '1', '2019-12-06 12:03:52', '2019-12-06 12:03:52'),
(34, 68, 'To', 'Bdbdb ', 25, 5, '0', '2019-12-06 13:30:05', '2019-12-06 12:13:18'),
(35, 70, 'Ti', 'Hdbs ', 25, 25, '1', '2019-12-06 13:15:49', '2019-12-06 13:15:49'),
(36, 73, 'Test Ticket', 'Test 1', 200, 50, '1', '2019-12-06 14:04:56', '2019-12-06 14:04:56'),
(37, 73, 'Test Ticket 2', 'Ticket 2 ', 100, 50, '1', '2019-12-06 14:04:56', '2019-12-06 14:04:56'),
(38, 74, 'Ticket 1', 'Ticket description for ', 25, 100, '1', '2019-12-06 15:13:29', '2019-12-06 15:13:29'),
(39, 75, 'T1', 'Test', 25, 100, '1', '2019-12-06 15:33:18', '2019-12-06 15:33:18'),
(40, 77, 'Ticket One', 'Testb', 50, 100, '1', '2019-12-06 15:47:07', '2019-12-06 15:47:07'),
(41, 80, 'T1', 'Hdhdhhdhdhdh hdhdhd hdhdhhdhd', 50, 10, '1', '2019-12-07 10:44:16', '2019-12-07 10:44:16'),
(42, 82, 'Ticket 1', 'Cigkhc jciycyci cigcig', 20, 20, '1', '2019-12-07 11:28:49', '2019-12-07 11:28:49'),
(43, 84, 'Test', 'This is a new test', 100, 25, '1', '2019-12-09 08:07:27', '2019-12-09 08:07:27'),
(44, 86, 'Ticket 1', 'Hdiden', 200, 200, '0', '2019-12-09 12:32:01', '2019-12-09 12:27:58');
-- --------------------------------------------------------
--
-- Table structure for table `ticket_transactions`
--
CREATE TABLE `ticket_transactions` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`sub_event_id` int(11) NOT NULL,
`transaction_id` text NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `ticket_transactions`
--
INSERT INTO `ticket_transactions` (`id`, `user_id`, `event_id`, `sub_event_id`, `transaction_id`, `created_at`, `updated_at`) VALUES
(1, 5, 2, 2, 'cEB7qdTGSzcy5aCrMZeHUdPJURdKLz7MUfoHSNsNTBC7B2KYtQEr3HhO', '2019-09-09 13:27:54', '2019-09-09 07:57:54'),
(2, 12, 17, 273, 'gSXJDGyX1NxZEmtdCv4XZ2gvYw6kgICdFVHCo4y2Cm5ySbpfbBNnTIhO', '2019-09-10 10:42:13', '2019-09-10 05:12:13'),
(3, 14, 20, 277, 'YiFByYQ9o6okJ9XsHPJhiAR4EuKoxJB9KLTn2tSaPcNMaT3ksGBazHhO', '2019-09-10 12:33:50', '2019-09-10 07:03:51'),
(4, 5, 9, 209, 'Mu0EchMpyrS3Q1lxX4pDT6XXdSf4qxnvN6Es5hImd3eHBtrF3S3LJIhO', '2019-09-17 19:45:35', '2019-09-17 14:15:35'),
(5, 5, 17, 273, 'kCIWp1y7d3sWSQe0PiwazfsDkkKan3yLOLy4IUouLn1ZL9buDquMGMhO', '2019-09-20 13:11:10', '2019-09-20 07:41:10'),
(6, 47, 35, 456, 'y39lD42ONYf8j9L9mhEahKUGUYcsEbzUFPsh4ABCGagpsK98guUOqLhO', '2019-10-30 19:55:44', '2019-10-30 14:25:45'),
(7, 66, 55, 910, 'y9eIxwFhblkWih9Yc8NPCO3mSZHdqj3HZQziAIKwOFpxcoX7vvMu9HhO', '2019-11-11 15:49:44', '2019-11-11 10:19:44'),
(8, 70, 42, 604, 'StSUsnqoLqJIlea2kNyyGD1e9O4z2t9hRdUsPBx9HHptk71cwq5UvLhO', '2019-11-13 11:11:02', '2019-11-13 05:41:02'),
(9, 70, 56, 960, '0SE6RvQe9Xy17iE67CN6uyBtJHKMqvsKRzKd2UmAHHhCEyC7FnvRGMhO', '2019-11-13 11:11:48', '2019-11-13 05:41:48'),
(10, 5, 63, 1046, 'gQynFTI3XVzRYqacc8ZjWG1qarRtPg72pmbSw6UXRL2KN5JHMEx25LhO', '2019-11-29 18:42:54', '2019-11-29 13:12:55'),
(11, 5, 37, 509, 'O7MvFpRDUkj45aKdpDybdBykJeD5zQudWTocsn6be8fpjnsq68sw9HhO', '2019-11-29 19:02:22', '2019-11-29 13:32:22'),
(12, 5, 64, 1049, 'ISRPrdlRyZb7vMSuXbnIBXdZmXzF16t7gphQTQ4B7qTZU8iD9ytuTIhO', '2019-12-05 13:02:07', '2019-12-05 07:32:07'),
(13, 5, 64, 1049, 'mxX65duuWW9MCxYll60znrkW0iaUtXOrZLo6L0RY6mlt6AVw08DStHhO', '2019-12-05 13:11:47', '2019-12-05 07:41:47'),
(14, 5, 64, 1049, 'mXo5fWDVJh91J1O8AYrmgEu7XkBDskH3XbQkuvl6kwAUFf5HLKMj1LhO', '2019-12-05 13:13:56', '2019-12-05 07:43:56'),
(15, 3, 64, 1049, 'sOg4tz7559fZYBn4ONQBg7msBabm2mNnr8pzKLcSTNlWqcMusQp3oHhO', '2019-12-06 12:03:05', '2019-12-06 06:33:05'),
(16, 3, 66, 1051, '86myNl8pscBfYIkmYlwPICtQq8HuMoS86hB0hMCVkoFMfkipdi5IrLhO', '2019-12-06 12:04:23', '2019-12-06 06:34:23'),
(17, 76, 66, 1051, 'iRWdHvn2IPN2OOeRe0zHGb1lmTZC4hyk64ne5auaNBwSRN7aNwGfOIhO', '2019-12-06 16:54:30', '2019-12-06 11:24:30'),
(18, 3, 37, 510, 'YG3VOfXJc6npJyvzgW9Iy27MzzzHdksAyDSdhlyr3qeDg0z69wzk0LhO', '2019-12-06 17:02:24', '2019-12-06 11:32:24'),
(19, 78, 68, 1053, 'gq1QYv9vdFa68iaud4S2TaOLlOfDA8sj3MMNdQ7X1eFOqfcH0JFKHMhO', '2019-12-06 18:24:42', '2019-12-06 12:54:42'),
(20, 78, 68, 1053, 'mxrwrP4gV6xhzKkdjAqPPhnV7DTbVNnOAzlC7C6mlQkQQnZCWLVKqLhO', '2019-12-06 18:49:16', '2019-12-06 13:19:16'),
(21, 78, 68, 1053, 'SliQjYb6aRAWytYPyBya452sgGUW6XvPmpo7cSJFAX1X9IvDCr0DrLhO', '2019-12-06 18:50:46', '2019-12-06 13:20:46'),
(22, 3, 73, 1081, '6JcRtbpkFBMRsdqq27dB7ChunXQ7tGalP4x23cTPScrKbZD11jL8BMhO', '2019-12-06 19:37:40', '2019-12-06 14:07:40'),
(23, 80, 74, 1082, 'mjKpQ2nhkOPHV1wj2pUnYZpnF2JNhjJlqgewCEJOGle75HThzgjrjHhO', '2019-12-06 20:49:19', '2019-12-06 15:19:19'),
(24, 80, 75, 1083, 'oy1JhLW2WoUZRgdidxXoxEmzgNwZsvHCvgQeUegzwH0tDD5uLq1l0LhO', '2019-12-06 21:04:21', '2019-12-06 15:34:21'),
(25, 80, 77, 1085, 'ijVo1M2mDjZyzAHg0DlHbg2z5qvNWNI0vwnw9yPYmghf7PXVbfYRvLhO', '2019-12-06 21:19:19', '2019-12-06 15:49:19'),
(26, 87, 82, 1090, 'CvL606R0HTxGd81bKjyzCXEf7mtXYxIMb6f3Gq9zsU4QufSa01iLHMhO', '2019-12-07 17:01:03', '2019-12-07 11:31:03'),
(27, 87, 35, 461, 'ufAiQJgHrwseylN8qfrzUmmi5Qp8e3vMLMoP2Teu77Z7fl3VE7pbyHhO', '2019-12-07 17:05:53', '2019-12-07 11:35:53'),
(28, 90, 84, 1092, 'ixsknSLpS664XMmjoH1wFVJnM5HvqF7byAc4Y0httWKNSzCGgMdsTIhO', '2019-12-09 14:36:03', '2019-12-09 09:06:03'),
(29, 90, 84, 1092, 'IIwzO02cefvsGbp2ZXnAAKnvPRo5gQg9Hq5sOW17hTIddouAD0BOKIhO', '2019-12-09 15:12:11', '2019-12-09 09:42:11'),
(30, 5, 37, 510, 'OD2oCGztAmf8bnQLvlBa8XOYRTk9PkaUN0FmdB6Ld6WxvnqOY3sQJIhO', '2019-12-09 16:48:54', '2019-12-09 11:18:54'),
(31, 3, 86, 1188, 'ejYNVND2jCIhMqeEs4FYCMMJIu6u9uEq7abz02MQaLG3uGcJ8Dh0iHhO', '2019-12-09 17:59:20', '2019-12-09 12:29:20');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(10) UNSIGNED NOT NULL,
`refferal_user_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '',
`role` int(10) UNSIGNED NOT NULL DEFAULT '2' COMMENT '1=>admin, 2=> user,3=>event organizer',
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`visibsle_pwd` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`social_signup_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Normal' COMMENT 'Facebook or Twiter or Instagram',
`social_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`image_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`device_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`device_type` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'A=>Android,I=>Iphone',
`phone_number` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`age` text COLLATE utf8mb4_unicode_ci,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`music_interest` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT '',
`public_interest` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`refferal_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`about_me` text COLLATE utf8mb4_unicode_ci,
`blockStatus` int(11) NOT NULL DEFAULT '2' COMMENT '1=> block by admin,2 => unblock',
`status` int(11) NOT NULL DEFAULT '2' COMMENT '1=>active , 2=> waiting for email verification, 3 => Delete',
`age_status` int(11) NOT NULL DEFAULT '1' COMMENT '1=>show,2=>hide',
`notification_status` int(11) NOT NULL DEFAULT '1' COMMENT '1=>on,2=>off',
`stripe_customer_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`is_deleted` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT '1=>no,2=>yes',
`email_verification_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`reset_password_token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`refresh_token` longtext COLLATE utf8mb4_unicode_ci,
`firebase_token` 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;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `refferal_user_code`, `role`, `name`, `user_name`, `email`, `visibsle_pwd`, `social_signup_type`, `social_id`, `image_url`, `device_token`, `device_type`, `phone_number`, `age`, `password`, `music_interest`, `public_interest`, `refferal_code`, `about_me`, `blockStatus`, `status`, `age_status`, `notification_status`, `stripe_customer_id`, `is_deleted`, `email_verification_token`, `reset_password_token`, `remember_token`, `refresh_token`, `firebase_token`, `created_at`, `updated_at`) VALUES
(1, '', 1, 'Admin', '', '<EMAIL>', '123456', 'Normal', '', NULL, NULL, NULL, NULL, NULL, '$2y$10$XhHUXBAbxaxm5l2X6WLbruOrAmCHBCSPcniCPCkYW3b9N0ea6Liei', '', NULL, NULL, NULL, 2, 2, 1, 1, '0', '1', NULL, '', 'Moy2IOdF6z96OggpX061xpUsykTWkkaNkuGhXDjFe5XpLB2VqAhHRwZ48r0G', NULL, NULL, NULL, '2019-12-06 06:33:23'),
(2, '', 2, 'developer delveloper', 'dev123', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/2_kce97fVLd8VLS2mSRz2a.png', NULL, NULL, NULL, '20', '$2y$10$kL2Q9YPHNDVPCTN5lezbrOtrBpUXffGKemR.etLVA2x.ksbKGO.xK', '', '', '2ZX5', 'Dummy Text', 1, 1, 1, 1, '0', '1', NULL, '', 'H4L5vB8pyPS0hpxzOqVhZUQlOizLhP8vUhyletKc14ii8Qbfi3j9MXvRUIXZ', 'def50200a8ef76285c673636fb8fe02bcb488b2380fa5270827488a979073936353576bde63500c529f27d49967cc45ce7a1e59332f02b02c70934674a5f24b6550a69573a612a8f462347fd53df55e88d765977b9aab0f91ab39c8fc99314cf8a281a7b1e074c54c71a6acecea48df9713239e9c5bf250e806aa1b674260129d826208c7a16af8cc583094cfdbc6fc099bf84bf17562b8408e0bfd774e55844cf5b3aa1c70606a267b9d81b41dda9f15b9e007a74cbb9a27818b904e2e057932b4239f69454f7900ef06ff7d11014afb97c3c01cfae376f14cac2bfaa6f7845fa04259a6efbca7c072fe0856dc77bc13336c3a6e1be86bc1c373d360ede8fddd9748c3d890486d6bd1742cb633ca79af97854242a494ffc80ebac662f2612bb52294b3a29138456f909871ac57da85aa2eaf78f8d2d108403bf3d728cfcbade009d3497be5e2fa62119e0a97ede76cc924e525601d252e80b7c679b5f799921ad63d759', NULL, '2019-09-09 01:28:28', '2019-11-13 07:10:24'),
(3, '', 2, 'User userr', 'user', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/saQrEe9brogQbueuTGEe.png', '', 'I', '123456789488', '0', '$2y$10$X5y.aClWaTvl3BxNb1buhe/IGbWoGiqn5d.PESGSj/qMSxM4Bhe0C', '', NULL, '3JT8', 'dqw wq qw w', 2, 1, 1, 1, '0', '1', NULL, '', 'cWtznLdhPqLnrh6WEtuRhhF1AYMGZD4pyZdxsUkwzxfQLY0XMsWvvMqVRwWS', 'def50200fadd73b5f77e87d576d921ad6f56a1204a4cc193c2d522fc5f44d996e2dca19ed857490cc27323160a293cecbe2633baadf541c697722587e1b3157d23714fcfba6ebf18106449ceca9104433e578e379289ddd5a046fd3a884b01e1bad1307c884fa50add0c42f9b11498a7237223e9c1ffcd85cc3f08781cf07c3dbb453d647f42cd02d377237dbcfba948fa364b0cd3987351e97acdebe213603b2de1034de9d3e65c6786c30f9f5cc7ffa9ec55af79be08d888376e173b58725f90989bacdaa91f52b7bd52c0f3e9188132967e6e7060894b8064db7580d859a0ddf29a2d1b4ad6359209b78719285d8afdb9c6062508ac38ffa29400090f6a191f84164c21b6cfacfe7e8dca1366e89b10dba0567cfddaae11213b975ef322d4ee98be50d71d97c3e6d227d7b852f463cc25f9c9f0c359d8956156d330e8e07f26de3a9074ce6154efc4825e5f123e9032c916cfceb18f8871150447ee7e99ec49b53fe2', NULL, '2019-09-09 01:35:00', '2019-12-09 12:23:25'),
(4, '', 3, 'org', 'org1', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/4_SxpspQCGYGIGFGGS7kPI.png', 'etvKNxszCso:APA91bHpHI2blyk12iC3t1jzbPspCXr3R5ajt4ZYTygQnDmBdLMHhkn1L6nIDYE2roGuY7TvsLyr-suEETAk9S6pP5t3agmLBeqhR05-vtJydgn296f5iIX3dBPQF2sutc6vD7fIpXQO', 'A', '8894058891', NULL, '$2y$10$fNE2eBrwY6nEY42Ip5Zqa.ktGADWuu7TMm01fhf34aPaA3YwHzntC', '', '', '4IJ8', 'q wdqwd qwdq', 2, 1, 1, 1, '0', '1', NULL, '', 'ZGG2C2OZNQebYKId55IQKOqYImZQzzXKJjcIN4porJgpD2D6mjaDTKkoDKYU', 'def50200e1c3dc11ee82102dafcdc45d759b852842a1e840d23c0a7315931d327f6a940415ddfa059b4c9491abbb4840baf65933b339b7abe397498003bcaa0b10d05d3ea4fb86fe26f42f80da1c31a159c8d7f155f18331b50d62813f416a333aa3f5b4ea98dbb0b49da3590ae4c173b25d8fd89f61c6161492929799833caabea5828b700ef6d4ac3611ebafd6903cde478b99e6236bc45f1d99247eca735c30bc29695c7710a4f13ff73cf9d38f89f21b6baf9c04d80632d862cf1a6176742d32131996b5f3214bc568cba67bfcf087074e86182fbffe1e81c3a2b65f667809d370fb111861823c703fe90815b2926b64d719dae829d0ca37652c45eeaf951e9073491d28e5f4f3ccf429dbc4c6ee40bd25b3e15e54535c23105e98f4494fec6a3e01c6e8cd8338494a00f0da33dd4a566b69690e65d58e853fa99033b1cfb8ca33fd5d71c2538b2b586bee8d6098c14e712fe3a4b310f265f91259e9a8f36bd2f3bc', 'etvKNxszCso:AP<KEY>', '2019-09-09 01:42:56', '2019-12-09 12:23:23'),
(5, NULL, 2, 'Cley', 'User1', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/HP09jpv3b5QFzWhWhWXv.png', '', 'A', '1234567890', '09/09/1998', '$2y$10$2LqoEm2WiiIKynnLvdDwa.zJg8lcqYGx2oD8dRCkfDEtd6NlKOZzS', '1,2,3,4,5,6,7,8,9,10,11,13,14,', '1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,', '5AP8', 'Hi im user 1', 2, 1, 1, 1, '0', '1', '', 'eBGX1Kh9t17x78EziPpBH30GY8Q8XFFaVcEoPilg', NULL, 'def50200e1d26bcef230ea38fe93ebd987b711d9dd1ed7ffcd023ca2f19a0d0b7bb64c821c31d13e4657a7598aff3a4f0976aa0e58e7dde58bcdee760f0d7e4076429facb6f385c1d7a8fffffce7828682c86d25f1f4e2e1b092f269c6b7942f19e4001baa8178ed2fc20ed1f0d5e868576bb683857eaa3919bdf941ad897c1745112c97baafecca973bea2890244e5a479002f993ca8da4c6829e029ddc96bc4f157588f32eee66fd736068dddaaa552bc0a3fdd9228d0f6d2470981249cdbcab33d6b7402044d3d6f5b4c3c838861b992f56326a43dc9eb24f62db4c82cd68cdc587d20309f5a6a5c598b6b6df7766ae4b42aee61011d9da09ae1f789b7a8816ad78c3fd095f0cc58a16e0c6dab353c347dbf2adf5d2d4b0e7024a3e880b804f654ed0ef3a11ff114f00112461d5058b49a6f1ea8da5fb5abbbf73c3b086692de33ce0cdc3bb59ab470305127ca3c6e635a6fec52a9b6bde5053c1aaad833a5ee95a61', '', '2019-09-09 07:28:25', '2019-12-09 12:23:13'),
(6, '', 3, 'bolo', 'bol123', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/wBMDqDKshuQzKjVoac6p.png', NULL, NULL, '5674545000', NULL, '$2y$10$gsDAxgwA8FxD4Sv60NVgSeyd9zDqtnTWMQo9tvUfH24IcYtkmp9tO', '', NULL, '6MY3', 'This is a bol organizer and i am here to create the events and you can buy the event aand join it.', 2, 1, 1, 1, '0', '1', NULL, '', 'sC6YjiV5mcb5gIteptb0RTlBaRzkU7nOLYK2AOEto3VF7aKhzBo3msFnhzVY', 'def50200a6332c1d826ae7e793ac4c18f044e36711784db39107094a1d7f5195ef7d7d186ddb6a5f5fdcdb62c5b8c45b6456ed1792eb4c336fdd01ba8d8e0134f25473489de16a94de26a9320cda467029e5997e75cca804f986a8f46bae588b43e3dea8216e7e2fd7e03070cd9769c950f4303f4dd4987bd8cb352b4411bb9a13fbdba9a4ea5140c96149f895fb133384837713b41147d5c914f7312ebaac3447f8c1b3fcae312c46259cc1665c6bc58c05178016d67e3282be62f7c6dc60be9793b4ed1d9885bf4762b542f2fefa91473d07b3b1392435e1a3466dac01987076e108bc1d33f3fdb406a4fdff932920f19dcb041d8f6d18d59f2997b5a768049b118b9b6be8c6f7cf9c17154594143ab4a40f5a99cd32818651fcf60682e852a96adcdb962f2da515bb0646a5f4071a58d33c52ed3cd492842346696b48df552e1e0bdc0502cee92573171c5b51dca90e384575a810cc4ce9c6cdd2f38a8525909b1912', NULL, '2019-09-09 05:12:54', '2019-09-09 05:16:52'),
(7, '', 2, 'Kah ani', 'kahani', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/SnBwWpBRaPNTMtYmRYsi.png', NULL, NULL, '+447894563214', '0', '$2y$10$rDaqol4UvpPhBjGlr/4CTer8nEed3Ligm51RLVerfBROpi6Q.gSOq', '', NULL, '7EQ3', 'dshcdbsjcsz hdsbvsf hjbfdf chfbdj jhdbfvd fvhdvb chbvdjhbd dvvbjhvb vdhfbv b cdnhxbc cbjxch cnbhbcv jhcbjxb', 2, 1, 1, 1, '0', '1', NULL, '', 'MWTMyXLqQfK1S8OPSuMXm81FBZ0Ist3BP15QCetF2OxdIsqaqPnGkgXCK35d', 'def50200318b07048608460859ecde87f7653e4028f15b4b23583ad59c041a8aa80804a07f9828e361d5bd18b20c54d7836910c330af273b0fe79987d8927e8d6a82d74b3b9e7d248add6cdffdaa7808ad7acb518cec614eced4377db6ccc1e34f2da168744c46c1abadb9a45d94cf250b4b320e31926652c83b09e7b0ee548e496bacda8ee42318e46fccaa92baa1d4e7afe59537df3a5d2450914263f7758839142a319245fa2662e0386bf0628aae3c06b19abd5d324dfb2fbf4f7eb9bb9e541e0eee7c9caa3f2cc3b3a6ec21bbb5d58b9379040174821067b146b6b839b4558dd5f42d462e9432d92b8aa30851569c997bc3e5a37c806161b970e8b82308503eced08250dfab9fece104e288e75a1026f0005eac6fd618f2a8ab8e673d26f47f0f906e770080f9a761c2ad4920536d128eaf123b933a37cd4a0fb0538ed01f081a2c958d2355f4b65bfaadcbb462065ac8952b2f56be116ceee9240301875b95d4df', NULL, '2019-09-09 05:13:02', '2019-09-09 06:14:51'),
(8, '', 2, 'full stop', 'fullstop', '<EMAIL>', '123456', 'Normal', '', NULL, NULL, NULL, NULL, '0', '$2y$10$N9CWJLE77OwseSxVfr5Tn.ctj1ieetJvjt/.Y2rShNFyNCSZ4LvNu', '', NULL, '8MO4', 'fdsfsdf', 2, 1, 1, 1, '0', '1', NULL, '', NULL, 'def50200c20ebce96f732ac48bad5e8766b5993b57777d5667e77f6ee01b07c03e923c76170f9a2dc55cdd1a0d144c3f4e68aa4c6c4f821729b410a0aa6cabae8b2db5ea0e8af31aa74a4ccb86eee7fc6dede18bb812f3c5fbb27c93d49ed7fd15c58cdca7bd2bd09221fab963001d8a57b8e0661719908dfd8e9e633eea397fd1da565ecada32d33adef0a2b99592aec97152a776471c33b312f3c5b9d59c069f4eb33fd539647f144a247e23f1410a8f82c523f94b8c3f9a7c9fa5656da430feae048c3dd5f63fdb2c45a8444a1dc3e4bfa43d12ca8b22f795cef041403631633474eb632952d59915cf5e09b8520009e16d3ce564b2986ceae855ca62c01f268e40c47d2bae918c7efbeb97d789e6cb8f8fdefef139778d585bf65366ba5bd9b1c12411424b9df05cacb44d1bb2dac0fa09ed99ed844ce35f69c3190522a853523addbecac7027614a097155dbf22ab9432eb52d324a5a3ae3e7b981b1d1aa89d8dac', NULL, '2019-09-09 08:34:41', '2019-09-09 08:35:11'),
(9, '', 2, 'pea peaa', 'pea', '<EMAIL>', '1234567', 'Normal', '', 'http://192.168.3.76/sim_newstorage/app/public/user_images/9_0E7iAAisEWKJGURx5PIi.png', '', 'A', '', '10', '$2y$10$GtkadnJadtjBu9U0/4IR..K42zTL6IIBQa5cZoA9I/ZaUt66jfGqa', '', '', '9XY3', 'test', 2, 1, 1, 1, '0', '1', NULL, '', 'VYqJ5ibEaompdhDUk7fqO4nT4N3Kp90D4IlnhEcmqtCPbg5xvwIdNcOoMVO1', 'def50200d7c9378b6356900338f8fd355ce9e40f4921f7ae882060901d85a967e7344c3cb0f5d277914f6b11f7bc441a30d9bc32a07210a5ce98fc266041ec4d58afb4c9bd30a8ec7503fc5b59ca2096939fe4f9b2f55064a2e414b1fd1ef5206950a4d51b1a00b5b0340d7ccc4283d34d9d0e2c489e4948eb934e82b74b155e1d1ab74f5304c4abb089448dcf5461155ff1e1046c8338dee9a7e967bc893ce3167fa69c7fc6f1515aedf468d314a942bb791965bbe5e2d04c357aba435d4c08117008053e4c44ced920415028dbf6a78dd0004fe45aa447640496e54b010307a8f2b3868d0a6b31713051218a0b9436022a18a197575628b6fcade927e2866e97cf1033716b6da47884c21349f210959afb88accbc54271315a6e04904298f1ca9ba0afb3bf2c44ceba6a7338a3a4042fa6de6ca1304374a53e5c4947a9535b929a0b5201f875ffcab23d5f621b58864fb132966e45e1bd3e227df4fd6f7de80f1d5d39', '', '2019-09-09 23:05:16', '2019-10-07 02:00:12'),
(10, '', 2, 'editer', 'editer', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/vkKeJH2XnYrEwkvz6Do1.png', NULL, NULL, '+44123654568744', '0', '$2y$10$/aC6rvW1UrVJuMuAbVfsZ.Sa6Aiug4KpfqkcItL8ZNUCcFTWoPZDe', '', NULL, '10BR2', 'hsnhsfhsfhsnhsfhsfhsnhsfhsfhsnhsfhsfhsnhsfhsfhsnhsfhsfhsnhsfhsfhsnhsfhsfhsnhsfhsfhsnhsfhsfhsnhsfhsfhsnhsfhsfhsnhsfhsfhsnhsfhsfhsnhsfhsf', 2, 1, 1, 1, '0', '1', NULL, '', '2glBDcM3mkj2kUPZpGYKslJzvq8Gy4cCWKrXrJzdr01wMR80IBGtA64s04ll', 'def5020073e10712ac9925fe7452c16223e0f56a64c8ffc7379f82eb39a498292b50acedfe5283854b930107d59a7d3db6a6a7b00ddde7fe5087a3f24090787d9bb5f5e391419954907ce532549094e3e25f16f9bb59e97a4c82724c67537969dd4933c7f21337c83e4f64cbfa7dc166f3e033cd18636fe02ce7efb657f74267ba137dbf7da86ecc47bba7241b262e9cf093a775d13e857a939f4ccf074467468af97781df5a15d723ea6804b0e94952099fb086420c1deac1190f3d7438d2f69908702b43548d3811b50fd2fa26e7782c909f80c4af339bcfd54c070f8ba35837453381a5be8d9bc28e7bf96b235bb8696f89ffc2b03c796e9d549187b520767a71821898e21b7c7858cdb8664ed1c3cec2433a9f9d7e1ae9a17924aadf8a1c205cc55d28859347f724ccdd6a8be81b25c0ab9ea3380e8ae3e93621790950944459364252a0a0b4e624f2ed7b08a524f5e6a52b967c6a6dcb8500b803fc0bcb5859dcf881', NULL, '2019-09-09 23:07:27', '2019-09-09 23:20:38'),
(11, '', 2, 'Mt yesyy', 'mttt', '<EMAIL>', '123456', 'Normal', '', 'http://1172.16.31.10/sim_new/storage/app/public/user_images/j9flhNyJumVVEK5cWrTr.png', NULL, NULL, '7845223698', '0', '$2y$10$i2XHbPBk7jYiSfT84SibDuMs1qkeaLJ4a9mOaYFclwXTRxgEGKGqq', '', NULL, '11UV0', 'qdw qw dqwd qw', 2, 1, 1, 1, '0', '1', NULL, '', NULL, 'def50200a7f5e653d9fcf7eb3d2a8eb0012170a1b5bc7f63408d286768f73dcb1ffaeef5b52927a9384d9259fc37bebec55eb7183f43d42200348d3a3894c5fca4f82b3bdfb90a1443a4d7faeddf7237acb03dd2b1cdd8fa324c339de32df740c3e590643f5e1ccfcb219eb5acf04a5c2432f4e34fc1b91908483d747ec97a27232e34857c90113bf5b822f14aeda7f8a80a2b5bcb64ef982ca177314b0d09452ea3f2ca31f918d7ca595906c28e9b08255a6a3feef8ca3f6a46221f32b1dcf1a07dee5f9e2360fcd6697c7b5cc172e319bc53b08906b886440640f58c831e56a4aee71863943b34bc3bd424ca6f23d2a21a9402faa69e776eabed22ccc9f1ace0e7404add4e4f387a98a399e83dc76235889c8b5581514f0b6e14391047d81a83953faf3ed4a034020d72fc702446cebcdf051b31d2c26fcb8b3bcf63367df591f6fe79fbef24332018639cc246454f49491f5b44119708f1dab88586b527b645ef096824', NULL, '2019-09-09 23:32:41', '2019-09-09 23:33:00'),
(12, NULL, 2, 'Quality Assurance Chhv', 'Gii', '<EMAIL>', '', 'Facebook', '253765555513200', 'https://graph.facebook.com/253765555513200/picture?width=200&height=150', 'fqr1Vw_NqPs:APA91bHxc4BI5rl4GQxPjWbBGMsEhQ5uZ_VUxtxQghxg8-_Jyr6G_-FP1Eszms6PB6ISmbVb7F5k2R53wetRLFBFtt2tpeT-g7k_hTxiH3o-pwczCA81T0qEnX5cFsUdDOQamfaY-j_0', 'A', '', '09/23/1993', '', '1', '', '12HD2', 'Test', 2, 1, 1, 1, '0', '1', '', '', NULL, '', '', '2019-09-10 05:05:45', '2019-12-09 09:46:47'),
(13, '', 3, 'Org1', 'Org1', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/UQCeKE2FlbSjY2YyYd4z.png', NULL, NULL, '+441236547896', NULL, '$2y$10$SV8.0Jxd9mVFTfoIzIn4fuN8V45c4Re4BUteANdXStc55mMgsnxgq', '', NULL, '13GB9', 'sadad', 2, 1, 1, 1, '0', '1', NULL, '', 'sbUs7ltC7X5RfxULQcgAEjMwAssMm7DA2ioOMIerpGxkneJKidf1zWfwiqkz', 'def5020096082fb294f6b5b497ee7bd3e0aad6c98e2d41e2836dedfeb8621f714cd71ceb6c776a706d87e3bd9abccd0ef6da880efbdf3ef572041eeb39697cc53ed3589dce6e645776b14f0ccda92e78c2db536630acc539e81730052389cf8046bd0e3f20c678ca81ca42c8bcbd4d232a93409bd73ea1ff0431afec35778c674bf0c0df8907bb71388783eedffb7353798f780743759c79159c04f0477196671b51feaa957977ce0d0f542b01fde3c39e7279be8f2b5942c1d122e312b5f0e61927a34f69300c0034518d341424107e96dfb9fec0ef3a50e9cdd36572724bff714629dd94d80905af14d1393da650657dd18d10aa7a1e04c212bfb4152334be05c29d27a06e44af08df22135c3b0de471f344d8289d30156d0c75d11ad053670886b4a74aa09234c023fc69bafe19690dcd10e66043ad0eeb9d9892d32e3b677131407f49abde8d50251dd8261b55923343c9b9327852b0780ef2e46c761b675f705c014b', NULL, '2019-09-09 23:36:10', '2019-09-09 23:36:36'),
(14, '', 2, 'orange orange', 'orange', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/tBqVNbLeyW3hhVFxm09l.png', 'cav6CAZpk2Y:APA91bGXVOQzZRji-RWo8h1JQU4PSdLCJqvxzIBMOuDXtaoB4pSW49CTbUPTheZRfLxH99oCcDv98dXD-Z9j7SiF9SmWlQRbkq4QsJ49iYDHSopWXcXV5T1v-MSqH4SgeGiHlWyKdXAw', 'A', NULL, '10', '$2y$10$zGJdQpU3RIY5HHCvoWjm0uiAh6Y1F89xM8E85hcFhmE1RA1Gd2FK.', '', NULL, '14TI8', 'test', 2, 1, 1, 1, '0', '1', NULL, '', 'magvvd0qW7zBJrkDJrYj9sbR3RHjJmRoWgPl1emPeeLpNPlwJqh1QAT0uckA', 'def50200f409c6c5802b0646820649c6378d9d283dc2cfbcec9db3522b6b6ce9d7f19a8ec25709f6175acf5f7f14d116fa5bfef1498c574e6d1c324e5c866fae1472be36e5ba224b864a713005ee48aebd595e0d6b92c77411820a5ead7b5f347ae98cc47975f1bb8e628c75adc16a66d8251d7fed81d9c03ce2c493c846c3e311ff0bf19c97e31c389fb76e820ba8690c718dc1405b73188183c74f342e81ded9d9ee2721bce2b2504ab0028403d5f98870ab3fd7abf879f9b428ed377661361bc91361e310c868e5d8790fb5e521f92f84c400dda453a3a8e14bcceadcb79dea488a225dda950fc1d622a2b721679107a40175499b98fe76e70cfcfa4cd67706747bf3a8213483d6945f06f8888e31464bf530308057b15f89f6e650e58e928bf1ec734c661fd79a3d17281713a84ee1d0744dda9ef4f6d01b88faf01e8e91146f7c45c19f52bc5970c8b97287de57ad31bab65d390b650b44a69363fd98790a6f0b77d5', 'cav6CAZpk2Y:APA91bGXVOQzZRji-RWo8h1JQU4PSdLCJqvxzIBMOuDXtaoB4pSW49CTbUPTheZRfLxH99oCcDv98dXD-Z9j7SiF9SmWlQRbkq4QsJ49iYDHSopWXcXV5T1v-MSqH4SgeGiHlWyKdXAw', '2019-09-10 01:05:36', '2019-09-10 02:37:46'),
(15, '', 2, 'Desk top', 'Desktop', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/SybNStGkAItGM6w56Fr5.png', NULL, NULL, '+441236547896', '0', '$2y$10$5HhDi.Gzx82rPZkYCuCGCeF8BPB1r4LnzclRM3geeLgTiZGGCq9S6', '', NULL, '15OK4', 'sfgddddddddddddddd gvcghgdv sdsdsdsdsdsdsdsdsdsdsdsdsdsd', 2, 1, 1, 1, '0', '1', NULL, '', 'bDtR2cnNJYEcbEdsDJy5qB87dz0gW9QUmrJXwEZlEU2JiAdjVWb9qGYsbpsR', 'def502004c052bce8aa4bee04ac56590188e13595e3a95f67deef82d34f41587116958262b0a0ed7ab6cb9dd8db31616fabf6cb36fef8b53642405d1413840b5d9563385ff030f01729ad9e09f525c0651b7eae2566323d52341f89a7f68ae6333dbceaae820770a28fd35c0f9f3dc1df5f094f79efb6dae45ec6fc4c46903efcf161e6cd98b978f8fc5a05d4c01403b01300b3d8dc6db55249f6c0d09103766edd17fc6cd4f7bf27145704eeb6aa5902b560f488dc9cbd5c27ed273a8d14529fcd769a94e2ce3cc0465d888eb6e272aa57e15c70d2a0349fafe910840a70ca8da99273df1ad635e1b39c46c1c4615c7d1e8e4a7b893180c9141f70b39596e735deaca17faca93a0b7b476eed97c00299fbc211099d4348e111db93f1acab1dd14e142ac8f0765fcfaa3ea4be3440a75e52bfecdb078f36c60fa539f604fc85f86ac6c7e52fae80895c7d3559bef6f1845aca0743174c524b3c6defeb64277f962fcea7a96', NULL, '2019-09-10 01:06:06', '2019-09-10 01:06:49'),
(16, '', 3, 'lost', 'lost', '<EMAIL>', '123456', 'Normal', '', 'http://1172.16.17.326/sim_new/storage/app/public/user_images/OdCOOlrPO6OfzIwDDSBt.png', NULL, NULL, '+441236547896', NULL, '$2y$10$9eW5G.dcHs3PSiIp7hTrDONMEJTCjxN9m.03Ui5isgG.1p.U5KGNa', '', NULL, '16WR4', 'dhgdshsdgshdeytywew wedwgdhdshdshcgdc', 1, 1, 1, 1, '0', '1', NULL, '', 'TDuNudBn0LkxFsI4FOcEv1E5gotZEq9xDY8d8J7YJxTPzYej85bLusGVW7PY', 'def5020077e50423d79480f44382438027d88dc71c3b12793289d2ab6444d1bb4235cc8fafab76a051d489d9fb5039b2bf1611c7199c20f02bc1596d6d7fed850d55f9f4c8b6c0581399a0c96d568ffd40cbc6caba86c3584195393a5d1a9671e12e1511a8c49aa9569149496c7f2ba05809e434aac896521095863bff9893daa57816e099fe802c958a4e9f53211f0300a5c78a7254d7eb36b6da534890d3083043722264e93f795f73bfa7d5569b7a8519fc1a9e8e7f1b65708c3bbd52c2dff30ee45f0044cfba4a50fddf7b868d9f5aa08c472913e3b644b947755c3e1430f77d544559b1d8fccebc79f4de33437517d58c11fe5894a92352718c7ca0f84e929eec7a5bf7d650a6df1e35153f238e9c1c81911ac5bdcc0e1cd2e506cdfa6b0cb6b7b218d8a8336dda9def6d6c2547070d2dbdfbcd60b8f5b71ad0e21ec676ccc6b75456352784d97f5d68936f50bceeaa1547ef842fc6955d38fec92b949a00e7bf012b', NULL, '2019-09-10 01:20:37', '2019-09-10 02:39:11'),
(17, NULL, 2, 'User5 User5', '<EMAIL>', '<EMAIL>', '123456', 'Normal', '', '', '', 'A', '', '09/10/1975', '$2y$10$omAmnnWBzWkG5XcOhPINjeZASO2pEJTbFJkefEUhOsQwK2CT9RrAy', '', '1,2,4', '17TK3', '', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def50200b90b59da9e952803d0e4ef173f2d0ef86b33f6718cf17e859a04197dca22e681eb1c8bfeb3fec51538b12b7f8d55662c6836133b40667a5dcc280676fe243e3a0fd5e6dbc07a2773d8c47031f224697e4423a508177797002381bd8200ff5c7e157739c88965300dbadfd390473d463f72acfb6b0ea616e74f77d2837318e0508fa29703b26b6a2faa3e703d5c10079b404cc3cb23fef8ebf0da4c57038bd498139ee9c167d79c40c92959574b277de0ad617a81f8dad3e1758c9c27c82f8591c4ee2a73112128a7ce6837e9083c5ff1fda0cb82911b6e89f0e824f65508ccd62f96d80e9334d308dc5e84861f9c77e7a3f33eef388ec35a5134eeeb56ce4baaaaa78ef5688e3ad980481fbd16e025588202265163da7f514628023bd7397e4089b68d0c5edad9996288e3db2c8be892d1c411630a87a7a2b1c456a3195791ac38edc746ca515f6c743328207302050be5ddf50c92507260d8a70a127fb3ae2d8e', '', '2019-09-17 14:11:01', '2019-09-17 14:12:58'),
(18, '', 2, '<NAME>', 'preet123', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/Motiv/storage/app/public/user_images/GgayCVJTQ5JXez4VLXyq.png', NULL, NULL, '1234567489', '22', '$2y$10$VFvwl1FiM67Dlh465GekwOspbDwRInDn7ZdqbDDgNJxPwZRVD50iS', '', NULL, '18IK5', 'wwed qdqwd', 2, 1, 1, 1, '0', '1', NULL, '', 'rNOv84YbXBERLriZvu6GYtUNHniaGKl6gysOzNOM0gkFyHWFDovcz0oq1C27', 'def502001e8fdf7ef0425e8d179f1d1f68ca336237159b80827b16d5aecb383929754315c0d020e199d328fe0a1e95de6536d3d852f0bb535de3b0b083f1327ff768b55a2be3f5e1ace06ceeb1f71e20d2e8ca9e59603408762dc3fca469a49e3ca1c51b36793660410ddfdafa5b19e0c78c35a4ca227f4d2366e7597c80cf92c2f20f242bab490ccb9505440dad9dc3832342bbd6d298cf13562c9e3acdf8fe386371549e870927b273be779532bbae11ee7136888264edac73d62b5ea0d6dbea43b02f1209355689587e2693d108b07101ec455a7050cb5e9005678ec3c957abc73a5e1050cbbcf633bb0b302b1966a598dca8f68d950b84a47b0ab6dcf401d98beee7589c22924f1834392222566fec785fd14ba11f926a3d3d603034fc391731b1549bf02dc7a44a702274b4c488e1c9cf7b6b006779bb931e366f2dabc31809c34e454b5f773b494d78937653d6c8df130854ec52873e2a276b2f3ecaf3385e848af0', NULL, '2019-10-04 02:19:10', '2019-10-04 02:19:43'),
(19, '', 2, 'nas ir', 'nas123', '<EMAIL>', '123456', 'Normal', '', NULL, NULL, NULL, '785445544555', '24', '$2y$10$SoyJlmwTLEY48KaKCrxtaOa.AKrb8OAo8g7VLMj9/0Mlfh.jsRLS.', '', NULL, '19HG7', 'qwdqwdqw dqwd', 2, 1, 1, 1, '0', '1', NULL, '', 'O4vjdKQgCH6JIcYqbFfXiiVXm98hit6Wwgm4uYnjD2I4dxjJOlGvjVhACIjP', 'def502007a5071dea73fe9c45c1b384c5e949796b6b0bcf2069f32e7a6c484f7de8529666bba879a3647302da7998635f27b1ca81b33f86bbcb6bb0f1e8933dc4c420a7043e63c1228999bd1aa96fa7235a4ee0ccf146e35d9dc0e86c6ecb4d06d0a5eef65280b7f907e6dd6e2d899b100499e837400e4e5b0154b651b0890924b1a141b82da7440741d768d0afb1c19b15c84c411b68d60919bd5ed319e1f4dc5bd7856d2c1d3fc52f7c45090fcc5d76adb6fefeb1917daf2361378297bc33a4c6bcf4fadff30b9d7567e356836e80a05530dbb738b77ede12d5bb8cff665c6777c61231e1930c827083308458db432c67672896513866dd1e00d82158f418ee69ce7485a4fdaa31c58eca168ca01f88de8a7ffe9985c124b0a52a48e9d657fc682eea7bb43736935455c64886f88d1d537ab1136cfe73e35788d9f434b5cfa9c9b382c8f3b5855911d069959c019eb1dc96ab61017b004334865f183a1a3ada64fbb1c5c', NULL, '2019-10-04 03:53:10', '2019-10-04 03:53:34'),
(20, '', 3, 'My', 'my123', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/Motiv/storage/app/public/user_images/OrT7JeW0uOfwRyzDWCxA.png', NULL, NULL, '7984545545', NULL, '$2y$10$meeLYPQPUrQriEn2nZkGkO5080ALYtsbOg5u2oaOfNGTMfcD.FSl.', '', NULL, '20ZB0', 'q qwdqw dqw', 2, 1, 1, 1, '0', '1', NULL, '', '1loSWNOiTH6uDJ0jmsXae8LJcuyeqX3mZMSZabsKGmcCUDZaaAbfOzMzBjpO', 'def50200b67dddaacd2738b6c4668ff7949e9a9a43aa5fb321439027a390262debc7d04972349ef6a08b673de6cf6f2b5c962098f1a1170cffe935775130ed3b54f9f4dad1a58aaac02e459b2196b4085d27c935cbf77b5ad7b7b4c97fe679f4d33f978ac37bb5feb3081e8a077f2c972086bc3641a64c0451e27e72682fb0d9ed1d0c44d3556352701066bcbd347f4f64df7070c7795d4eba300a6b8376d17069be814e0c14a260adc9e3ded72344db6b20ea79c5f352201c807b84de677a2faa1289a5b77dcf8d450278961463cfa38d13cfe522518097b01589662fc1ddbf9ad04153d21a317944dc053a56aa9708ecd8fac6be2c0c08a4c7970409f715d8955b05d688277433860e9829abcc6fa575b6baf2b84b2df9109fedc3888257c32720721bf4447c1f464bfb999c26e060306ccaf950ae3eaab97ea2da557700226090d760d57454cb2aa7edb35808e0c8a7c3ee146ccb85b425f19daf35ddcf5e779ca9c98d', NULL, '2019-10-04 03:54:40', '2019-10-04 03:55:23'),
(21, '', 2, 'sun shine', 'sunshine', '<EMAIL>', '123456', 'Normal', '', '', NULL, NULL, '9988645987', '20', '$2y$10$WjhdRwqlFwica7esc1UzseUCcWmjUr.Zmi8hCKdJPubwy9xS2nLGS', '', NULL, '21TP4', 'test', 2, 1, 1, 1, '0', '1', NULL, '', NULL, 'def502003035659bdc301061208913719ac32d37542e1ab61cb6095008b9da064f07373de776170005668eefed2036b3d4eda8ac82562a92cd1a055eb8c3cb05bd7b2875bfbdb447d0e77170e551286d801aca2d29bd89335516c65b9322112069ee799ebefa0d42d068a3701d52613899fd4c2a924a9c8caaaada3eb7aec06aa5474748701e10917396a45bfa8852289fcb89fa0a7049b9093a299f159dfe58fd1cd504a37b01a4037642c5680d58a4f3b0e31e5f7d56b2172223a6da183b8f54421e266a93c79a7b7399703ccc7d7936817f3b2c6d4e3a898ba365f52fc9596419211519bf56911b13609a6def5c3d5c70d1ff7621a4cee95004082f2fc9965c59c14a1806dbf321daf1454405927b117ffe72b3ea49d90ad9a5ee4139b76f1d0be5ceebc7350ce9ca3121119874572385e7510b88f04acfa5d755b22d7223608486608feedba28aa43e9b0ba0f4bf7015a01e3fae152200bde3c3a00b56aa416cb58ccf', NULL, '2019-10-04 05:20:36', '2019-10-04 05:52:18'),
(22, '', 2, 'sun sine', 'sunshine1', '<EMAIL>', '123456', 'Normal', '', NULL, NULL, NULL, NULL, '0', '$2y$10$8Itwm8qJZC0kwHOy/YsIh.CghpiN3CDyK.ZyUW3j18h1i4.O69Jou', '', NULL, '22QS8', NULL, 2, 2, 1, 1, '0', '1', '<KEY>', '', NULL, 'def5020004b5330a597f9c1ce74d1e736f6337bd9219d5ef044e4227bb5430456cafd6d0dfcb9cc9b781e3898137cdd791bd60da3a875d228a5443cd80cb0621882e5b1876096b130e5adc403051e74968c334c25b7009258f56359e0110281c3229e793f05dac8e6f8a652763bf15105371f16a2da9696851a5b1c0b0abd4e32f4bb06de520cd50a707895c79421790655d24dceb2e73d4e380af91a397fb873d17bb2be32344289a607b72aec7cbb593ebcc7505d5e0b6065d8ae29eb502367fccbe0811c2cfb76375617dadc85f8e8f64dce20f07ae935377575e5845891cdafd8f3e7e0458505cd764eaea0e3fd394a922ed42bb9e1ac4c779d76c08daf5b560c68f599868adbcd5b6351895e25d21bf9f3ac3b2a6047acb57340d3299092cee3d1a3876044318f11c2f76be01ee47552c0bcc30bc66f746f034b62dc308c52c5753e7ab51209952c18bc858ccdb790b4c24f03df154931d295118941c1e24048521e2', NULL, '2019-10-04 05:24:22', '2019-10-04 05:24:23'),
(23, '', 2, 'wewerwer erwerwe', 'ewrwe', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/Motiv/storage/app/public/user_images/G5BaAfrhk4e5a9cGvqPV.png', NULL, NULL, '1234564788998', '0', '$2y$10$fshGaL1n9n8Bhj8ofpKuFeN/pXJ1eUpx9CEl6NYuKiGCPaEekJxAO', '', NULL, '23HF7', 'qwdqwdwq', 2, 2, 1, 1, '0', '1', '<KEY>', '', NULL, 'def502006bd5015b5929864fb54b236333cdc4c4b17a0e97956ddb3994c233a3e580082936d26a2a111e450f1eaecacd08cbbadd876e3be3e6ee3a255c7585e2cf06e1653f6b5645ab290f94803d4cdced6c9a22d2ea1a498b3f38075756fc107679f14981e87ed375dde975f650af238d6a3fde16b9baf47ea5a4e4fddf27d503f9d3aedd1dc35fd18cc37c6869961eaf0eda4c835236b8ef710bff7b145fdf47ce46f26511a9a5ddd1ac2f30f7742e0b6500908ab08a31c72b9eed6819e31938a7ac4098fce81286e739b9352e0747aed7bf8c7a2dee32b908899348313b5b2209529ab5f6e4fed2d836f9be4e66466735c4a76160843420061bfa2a0b4b6053e1d5f40cdbd76e54e15c5db0072cae189d43d6756551f6869c12fd8303195b8c70c79f8815f5d5f5cd807646508f19c775da2ffeb457868a53866422042f590255aed96ad5b34142a8b39f9b0cde56253dab67d40c507336dbef9d51e70f96df5867facd', NULL, '2019-10-04 05:26:18', '2019-10-04 05:26:18'),
(24, '', 2, 'Fish Gen', 'Fish', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/Motiv/storage/app/public/user_images/F3MNN4CxCF85fid9o923.png', NULL, NULL, NULL, '23', '$2y$10$4KTlf0FTvVwak.oWdlE9Yu.Q9exHPrXpN0RvPjgi1ATjd3tyTQKZu', '', NULL, '24DI7', 'ghfvdfdfd', 2, 1, 1, 1, '0', '1', NULL, '', '37vykNQ6a8z7QRxrrqCB8zODaGzfQ2bNY7P7Af2g0X1BzbTYt1UQIAtGnjYo', 'def502001a54ef51028f79015b42b111922038918d7a3561c07d49ea7f556a88a6089a8568d631ea18fa09b1e84857bc4afe2141e0879cf9da2b67492be2d00e98d161dd43298353593d4b8f099d84ba0753bb15575af7ce01ccdf06864da516ce8b6af6a035082e53927a92397c678ea87e8977c912d3697351a9b0a2c369a591f11ab7b233111f02a03538fd5a778a3ef5ab5c68f39bf27cbbcd690266aa8f2dba31d3a08cba0f84b02e825355e387096a994e19ad9f1ecd935082edcc2f6b05299aaaa227ac178f878496ad0aad5dff987fae88b71c89c7e8021d1515c12208077eadc3c3de0a77e5fc7f4048aa75b38dbb72d63cd47b496cea892e3dfa9c24c032f97da1973c49b2af1d29d2ac6d3a7c1ef1311e1dcf32dd47e206a44272f7ba2f479bb7198b6f5367f8ad65dcd3b1dd4f105fd2690ee80d350ef5a3ae420e41488c8213c6ffe01fb42e7cbbe890b1d6705dadbeb4cb9eff2fe671de4f4f44363839eb', NULL, '2019-10-04 05:54:24', '2019-10-04 05:55:35'),
(25, '', 3, 'OrgFish', 'orgfish', '<EMAIL>', '123456', 'Normal', '', 'http://1172.16.17.326/sim_new/storage/app/public/user_images/25_qnYr7Tcy9HUNG24HBWiF.png', NULL, NULL, '756656956565', NULL, '$2y$10$kgV2qgK4hDJwrOpJ1gfX0.GaYSoKalxWDdGN/Vfls/iRH2eyx0nom', '', '', '25AS5', 'dyggggggggggg', 2, 1, 1, 1, '0', '1', NULL, '', NULL, 'def50200bef3af8ecec9855258c49d603692f302f4a76435ded07651aa3dac4fe80ba77e496fb871a8e591f46a9c6472db303d845e740d28fb5990eb2b145859a98604ebfb593eec83b5909f01c2523e7d8991de5ac6acd37cc7593818331c1907904c31ec972118872353e816d46ab214cb3786d3ea6fcc0fbd0fd074bc72a83abdfd7499782d6e78f6bbafcdc75552ed58040186c74970c8ae88f07b749ddb334b95a795d2074f5a0765ee612b8521290df301bac80aa4cf6fdb2fb468720f4d63a0153a47e7236529d692b9737419d77132ab997cefe9ce77b52e050d89d01176fe95016ea305a05759bd1e701861983289f0249ceb2aa1e3327ee5c931dd3d57f8e7f8206d3999b56b06aa714779e007ad3bc456e0d1850476d05edb6dbaff29a0e10ab04b95d2bbbd3abf63f65958d89bf5c22ea4cbaa84cdbff19a20f83d8b52cd52d385c09947ad893443ce6006458ee8051b624baaa5225465fcc209225d93819e', NULL, '2019-10-04 06:00:28', '2019-11-04 01:25:16'),
(26, '', 3, 'Orgn', 'orgn', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/PKtDpnmOYrcGOQ5ypvVh.png', NULL, NULL, '1234587798798', NULL, '$2y$10$SZ4/a4d.VZZL3auW21BZVOJoD26J.BVPgoAxHw3hxCcHLUgjtb3/m', '', NULL, '26BM7', 'qwd qdq wd', 2, 1, 1, 1, '0', '1', NULL, '', NULL, 'def50200166b3f44c699704bba09236baa1f85710e1ab5b779a987a07881e1e09f9370d64b7b12cdb1bf56671acddab0eac40ce08319fbddf330b508428b21b49ded12cdee0908e9bf8274b61333939af9ff0d66c90224471fbd6074a8fb8828f0f11358ecad3c879d13f8a12de569d8ba4d4fbb6e98eff844eb0bc1d8b03c05897dec13b7e771e23e664312ca62fa3eae61d5cc2af357ed123a249dadc6f126d55f58ddb2634c74730ebb04e1e5eabe6575e825aadd19971d788f4aad0212911fe7cbf3e21f23e00c86106806f40c65235a243257a5a0edd1b6d0ef47b74518eeb24f597b0d3e1ac73f0073b23805c9e7ecae9387c1fef0217b9f4cfe1116bdeb5aa83ab169bd48a3dce549ea32834fb3fb7886df3a4342bc728a4598ea693d6cd0d6610d0694e1696206e59a5559be9f8f44427d394cad57f854bf8a75c7b9d546ada8498606f3f87c7fd433663646edb63ca0fe2dc97a859371dba07055e0411a5b75a9', NULL, '2019-10-04 06:09:37', '2019-10-04 06:10:00'),
(27, '', 2, 'wwqwq wqw', 'qwqqw', '<EMAIL>', '123456', 'Normal', '', NULL, NULL, NULL, NULL, '0', '$2y$10$V3h08tP6sPXK16xksvCpD.w.KfdWriVQBXeKg24P6zv3879JLuS22', '', NULL, '27US5', NULL, 2, 2, 1, 1, '0', '1', '<KEY>', '', NULL, 'def5020023b076a37b0b338e730318752c4dffbd921072335861497238a8d5f482ec2213fdc8bad63d43a4b158dda9af131e2abbc2320a04c47fe3477edc813be42cdec0e024ff188b23a9517ec8eb1256dfead1a0a5f6c3155b251379f52b002bce32039372218d34694ad6c14a46128b6a05611d99dc95476e9bad7341731630d87bb987ab093c699bcd100a8f93340799950f1940dc4d28764ce7a2642d902f8d816c27e0e739042a5dd4bd34979b210af8de597e84a2ce739f82ce3413fbb10f08f534845fe300eeac8451f25aff5a7f87f3c0d9ead27e0fe4d5af73a3bac0a408ba2848aa8e5f5b2adc70c2027a43a3aceb758bf0e2a6c52103b085fff653d447afafb9998ee290a21c6a5e6c4ff016dfd8fe08b070ec5b5974d6e9b6f20c4c4d52bcf2373b171f6b55fb88cd525cab94e32f324da44bc0cc682338fad3172c11a6d13c8cc872b270811b1640ee25a982789997de24a24e0c9718fd4babdba830eb1b', NULL, '2019-10-04 06:36:58', '2019-10-04 06:36:58'),
(28, '', 2, 'wqdqw qwdqwd', 'wdqwdqw', '<EMAIL>', '123456', 'Normal', '', NULL, NULL, NULL, NULL, '0', '$2y$10$RwljT8gAnJhFbIpql0O43u1ycYK7GJgAbNIOceTQJZIfLfMP8HLXa', '', NULL, '28EQ2', 'qwdqwdqwd', 2, 2, 1, 1, '0', '1', '<KEY>', '', NULL, 'def502006a87284838fadca85a592e4aba9ee376e5f3b2cda5d4826d0e36ed6b47015cdde8800252f9253b93fa9acaef9b272c00332c5bd682de4907534ff30df7bf4c78c0c0243fe3a42d517dc1eded7a4b9ae962a9b5098b3e425d8e870ea56ea33f3b5b578d723446071a695cf140577191e16224c9c92593775a2614b2b0f54463f3b54647e07f05c694c3c5953e83d71f3da449558cae51df825ea3aab05262547c8c536fb2498ac0594614889d832a8375fd6f9caee1652ddb86410d8f2a48b5832732fd4965ee1e9e437cca48f759ef8c3be8e19d08ea0b63eef0d36eebf1a9922d0e681f2b5af58b13debfcad4a4bd46e0cab6444a8bd81dd6b1cb1ffc692cdfea339c75823135d7389d487c6ee282979e1b1130613b51b934a390b91137fe784180a3a90013fdc113e45cad3397475b6dbf4ffbafcaae48e4ebfac9359a37b02dadc9bc2eb11955205a06e3f66789e00b19f1ffb0e89825f3238b57e929db043c', NULL, '2019-10-04 06:37:25', '2019-10-04 06:37:25'),
(29, '', 2, 'qwdqwd qwdqwd', 'err', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/Motiv/storage/app/public/user_images/qrSdcfjLhD88KhrOxPdm.png', NULL, NULL, NULL, '24', '$2y$10$Q1mJheGKUEMo6Nc6Q4FVteMWZvgQFlCQoihUfgcoYGDI.fuDR7sMa', '', NULL, '29ZZ6', 'wqdqwdqwdqw', 2, 2, 1, 1, '0', '1', 'eyJpdiI6IkN0UWo5TGRKYk0zbDkyZllyOTk2K2c9PSIsInZhbHV<KEY>', '', NULL, 'def50200858876ae08bb21a7b81d52f3fd405804cb45ace7d1e4d4072ec03bc7ee4be461db56510b488ad9f8fca50ff2e539e04a5d083aefe4d968da4f57f81530e43ef9748df751951d9ebdc00721a8bb8b3ffe597e24cd33112f4250e0ef7cf48878769f142e275105f9056dc9aa62b326370654f29b6121db07b309ecdb9516adf78c7776290e20a92ae05883e184902cfbd97c6e1b2a1cc56c6a4f0b59ed70cae3e9cd6f1ace881bd4ff870f7320370dd394d41888767bbac325a88a87c919cf4bebc5c020f918dd4bf5233ec8bdfae6cc944d8776e5644e4436112d56cd7efa8087d30d5bf7aa4d79980d37e8f89fd2fe3ddd5677e1f62f983523f55e56d2cc8c7fb430276a4229e03f123996ad79d3ca027ad39404c7e58a3e4f491d8ec7f16d4daea2acaba9ac01ac83cf7528dd6a6089b0aa9273702f24eec7c2416688cd75aba18117826c56c8b3d445f7b880b6a3444acd11983b048884bd18e9432650323136', NULL, '2019-10-04 06:40:17', '2019-10-04 06:40:18'),
(30, '', 2, 'sign sign', 'sign', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/Motiv/storage/app/public/user_images/pf6pe68LSireDl35wL8X.png', NULL, NULL, NULL, '19', '$2y$10$TguzFY6NU3uGnbWCAaHakOOF0J50k0A8F1/gANitb1iO5Ng6iOShS', '', NULL, '30TZ3', 'bcvbvbcvb', 2, 2, 1, 1, '0', '1', '<KEY>MGM3NTBhZGM3NzVhZjY1MjRiZjM2ODRiZWY0ODA0MSJ9', '', NULL, 'def502001d38aef40519dee3e340dfaf0baffa2a2e81ca5b111f0591f2e7588eefbb4ffb40234bfe14bf5db44ecadcd5b02159bc734d17f11c7ed688ff3308147489ea3077a77c9ab196cf564792cea5a889f793bc7a1d1ab8c0ecbc57e327823f49cf9450d22bf234b994ba0e15205fb38cf086f15607dd72a804b0efb6581d59e25ada3a327c301c828e662d9722c33792fdbf6d7ae22ca853c5ff241a523523a52b003951a08671e19ba3cb7fff4e530e8218971ba7a045b3bb6360e52b712927ef393f7b3270fefdcdf69f82107cbbcbedaa4f6805bf212983786bd640a701f536e2bc261390f0672db36a880b521ddbb17cf66a4fa8ea26b1dbb62019e672039b6f35873755111bcf72268e8bdbbde833fa3bfac8576ab748661972dc929274258f10af65e4386c5e1474328d5a24b9c0d2075f414f16ad9c1f4fd7958766d4b6df2fac59e59fd4d131b965e2e10e0b8dc39139a6e5db569539bc4c11330ff4535371', NULL, '2019-10-04 08:41:52', '2019-10-04 08:41:52'),
(31, '', 2, 'kerala kerala', 'kerala', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/Motiv/storage/app/public/user_images/vFxfpQ7yV23AZmXy2uwB.png', NULL, NULL, NULL, '20', '$2y$10$piaUchWU2YrrBNMrZQxDPeVPckrO0woxaetUjREJNjMt6BhXe6J1q', '', NULL, '31NQ5', 'test test test test', 2, 1, 1, 1, '0', '1', NULL, '', 'E6TFzIJuC8N2AneOYnStFGazDyCzsLPIk6sd7rnGSGCnPGOYHmVYo8AjoNud', 'def502009bd7acbf12b03b75a3a9648e4d0caeaa3ed15d2b557cdee38ecc17e20cb4766158cd3843302067d342ed22b2b4ac9f8748a01ebca10db53bc9ac8a9213eec8827ceb2bbb3ce2e77aa8cfac6007f54b80000ea0be3fd146b4ec892158c82183e98cbe6bcec749ca49764470edd85b0f0b38b97c4819a1b534170069ab5aa8fb1519d9eb80f00cb44c5b559b6024b5ff0dd908276207f3060008c84eb551a4e3e8462d93c01b0fac051ac11d1a459c71fb90fcd3665fc9d1c307ed060c453da8111e76955f3d089e3faf8a30e2f879bea0e955104f5125b222a78ad58e76600162f89db8cbc50ad589c6b4d21238b6c23986bd3b761b288e3b4d94a9aa8c68a0a164812d5da0f7c51d35aa9f253950a5d404827247f1f7db3c3d537c405298628a06049ecf200bf6ca60ff845463b688070011e83f4fd0f8ef3c35c19d75e2b3205a69a9b87885b843acfc5cf868d3b23d1bd9e9bd636847e7eec82201f224747652', NULL, '2019-10-04 08:42:04', '2019-10-04 08:49:44'),
(32, '', 3, 'Lost', 'pol', '<EMAIL>', '123456', 'Normal', '', 'http://1172.16.17.326/Motiv/storage/app/public/user_images/dHCBOeltlBJ59auIYzpD.png', NULL, NULL, '1234636334', NULL, '$2y$10$mTUgGQiyUbCSDbGFw3r2teB9rkGkA0G.evxbGLeh3ZZ77R3l4e1MK', '', NULL, '32NK7', 'gdfgg hfgh', 2, 1, 1, 1, '0', '1', NULL, '', 'kP7gXdfhx9pKFkUdeCtb8sJDSGcJY0UpIUB1aWP8AuVS3ZBZrUGZsfLIOgL7', 'def5020021909bf97a7441f9ab8c6600914bb69e1668cf977e6afe64cbeda141c19349437ff29377582386e3f0d2fd2c8e4a68ddc16601ca05d3d9aadb1adba61bb5203f654c8acd75451b00950f27f4dd421c075eb900a14e121ab175375e74d4559081a5ac4f837bbd74a5664fa24427f05bbd57d29cb018cd6fe7ee6f2fa7b70d9112c7612fef71b008676e47f9f2622c15d26700caec4e231385117d4f9085436da2af4710a1bc9657201c82b93144dc8ce195fc77b112ad90362020b2777d4abea1cfc1b1a31ac2c67015402885f8a093f67e25dbe574f4262867d033c7cefef6510608787d3a813d3a5f00fc4508f8b84a01392d3395f1335ce658d3ac6b3d6ce4299201cfe1da250ec047d42d435c1bdb47c65a51b0f11900e1ac9b607c636a5b8ee65a51bed9d423ce101a163027cfa41b3b4c909274af9d92af731cbfcaed154711bee40383def5fac54d0c1177ae6b2db020fd06e333133d6412d962abf839bc', NULL, '2019-10-04 08:44:39', '2019-10-04 08:46:21'),
(33, '', 3, 'fish g', 'fishg', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/Motiv/storage/app/public/user_images/LvkIyPSv6UKXETjxSSOj.png', NULL, NULL, '9877475487', NULL, '$2y$10$jcWcyGpIS5WHsZX6/L.CD.XT7vGlH.xrUfAKor2eQKhjtuGoPYgke', '', NULL, '33WZ9', NULL, 2, 1, 1, 1, '0', '1', NULL, '', 'HvITUvmHrmkcGc342nZ2P5BomMieLKjscFuGkdSjkFxa32Vuc9X0wuJCkRZw', 'def502001425fdd7fb348da2e95c00761db3ab306f975c979301bf7fa8ca61fc26709d8204c3f4fbef8e7e0fea9b5c97c4046e2cea6048e98e7e6294234469fcf917c324e9f08761a583f310cce88f19da2c69a7ce705a0223d3dad62a6d767c46b69af85a6081935542850330311bcbeecd85eed6f7837916062a24a30d336ebe6c0afefaebba67f6adb8c8a25e2115cc4b5e4795ae5a42663206b4ec53316b13ec0fd9db59e929672f609198251179afeac193139dc20c1cc39a39f133f6459becb2816a217d3834b0f762d1fc489b0ec63ecf0bf4c7131b86ad1719090efa9481386d44ecc758c2ac8d1a7cc8c6433b452060cf410620d0e9f386372bd1969f3661e630c02d571fff7e64660b1b93c55ced36977ffef813a03dce2f25dbe02b2353f66cf503b62a298bea135a41dac5a6947a46f122c2e9fbc3ea1775b0c0766f5a19292841262de714a9af4187e0470f89f11c2101c3429ae465eace15a655bfa21e46', NULL, '2019-10-04 08:47:07', '2019-10-04 08:47:58'),
(34, '', 2, 'pol sdss', 'polee', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/Motiv/storage/app/public/user_images/wbYWhXAHO2grfksJglp2.png', NULL, NULL, NULL, '29', '$2y$10$QKuNqu3vRKHQ.bNPU608wesguXYiCsfm.iBVAX8rk4echtOUAqa.K', '', NULL, '34TS9', 'sdsdsd', 2, 1, 1, 1, '0', '1', NULL, '', 'dNB7kWco0WPnENwYXmaLqSYTve1W5T3hV3NaNytUXX2UqKoK5arH4xs7Hz6y', 'def502007af281af76b89f847e8e312172e7f5ed511cae96c7898f29058a13ea5c735e0cbe52c76a93280eb6f3760f19bace4b36b48dd2dbd10af720038845cfbfbfb41a9323d24a209e017c182c63788097c107020c4b8a55e5e2eff822121cfb85aac0615bdb3451334290310f83099da5eb8064a13609f45e58dd7a78f2ea225b78815ad8c2a3e074049a14828a34556d27e32f4916191c5e24a431044e407b276f6266036dc6371a79a37fd3cf474dc5fa525130796edf2c36471f7cce5c1dd203f619668867ac62c5e8dd5bd72ed9d17f38d0fcec714080273883894af6a24e3ff491b42c44f54aaae31c9b519aed54a9325667b68b3a9d65f3b2a7d530ce99f9049e47f529b6089b3ec73342c28dee4e8414b1f926a58782db67ee59152eaf89fb468415d4b671aa7259f3aaa89b2db8d7d8f4a3cf279d579ea501a8d02f96b1d9f5b50268f1381524ec5360f5015e48db6cb0f137ca13504b5efd9360b7f4ae9797', NULL, '2019-10-04 08:49:59', '2019-10-04 08:58:59'),
(35, '', 3, 'hel', 'met', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/Motiv/storage/app/public/user_images/es6fVbZGtaEwSxvW7itk.png', NULL, NULL, '324343435545454', NULL, '$2y$10$erw0ASNSNmOLJz/MrvfoKewHV.6ZrcMuBdbgWqNa20O9Y4sWSygSe', '', NULL, '35BM6', 'efrefre', 2, 1, 1, 1, '0', '1', NULL, '', NULL, 'def50200a6200337e7b5bbb732725ebde2400a6ff28eb7888dfa94f54b0866c410272e256be23214236a5566adcdc7efa81af772f59f7b8f47d0d6efc8aa39ea9c7eb272263cd5680875baa4e5f724d80eb92c90aaa8f996b45e2bfe913938915fbd220d7157266c393dbd4cefafc19e28fa07a8b0e7d3bea50f3bf8a83a5f66106ca5e1b629a9cc67617f3565e4b551aec0e6b3e86883476cb25a65d344bba4291285c549d2671aabd8c74ef0595b09ed51f9a9a46f615a996b145cf4db9ee56968f1ce7ad63a47d76009a67707be43dbe8b1a8251f391f1fe35944e70669fdcb0dce40fb458d281b44f120607b9b1347ffb39931e1167c9794065616721fdf35989e4415160bbe403f3d71c974596c07ca25e52306580778863eb10f629b7f318cb7a7e60eb8436d760f08a7a155e5a69333bf9f2fc3d6fc60654c11b6d86355c80526ef160743b382f4a6bfa224fb5aaa2b8a0ef84e20ab25ae4e2b30c8984fa9b0e859', NULL, '2019-10-04 08:59:47', '2019-10-04 09:00:44'),
(36, NULL, 2, 'wqdwdwqd ', '', '<EMAIL>', '123456', 'Normal', '', '', '', '1', '787787887887', NULL, '$2y$10$M3e/c0kfWCrrRa4mIU8jAu7uEjE4N2aVPC8PQJHZh1oo1atR.QJeS', '', '', '36JN4', '', 2, 2, 1, 1, '0', '1', '2QuASjog0LblETGsnmFJEhtaLggWvr6G80ETXOdV', '', NULL, 'def5020026f32daf9e902706b91a5dcec27d4f10b0b68a320bdeb72e5af10d3467d8e16f2fc2fd848a3df9e226af1d97f3c233085e5e6623fbf311c11cd6aa3844a880240e52cc4f5ab992ef020ab50e0ae297f7ed9ac389f7a945b551a7b1d75ca2f830dcdb73211d49c08836d58fe4e1af9daa8501e57232b2136b4a4e60858909edae30966b5da9a3c11ca6588e8df5f650f5d14ff1336cfde93fd9377f317d5c604a25a170d60536846ef5f5137fdbd96ccc8bd87cb941075d5c3b0b61f1879490f7ea83f7b69a2d9d51a33221136a94077e2922d7b25aa4bf2fc67d9cc11b2cd6bfd657deb795facdb324f0452731a52b72840b3b345a3df3d855b1ffb6aa726831e740ef2f95f345a43f3a547f4d5cfd0e29a3d7cc4dbfb5d98d44ad159e0fab998bc5a3b5fa77c59b4e0c672cd7b070cd1301a47a6c3f928688b947f6321f4c74cc9c1a377577bc1c3d1cda39da99372328a0c8f6e596088bbc8ccaaa49efb4509f', NULL, '2019-10-30 09:24:42', '2019-10-30 09:24:45'),
(37, NULL, 2, 'wqdwdwqd ', '', '<EMAIL>', '123456', 'Normal', '', '', '', '1', '787787887887', NULL, '$2y$10$/OT6LwqdpRXibrheQYS9R./cgd/O2N6JAvwmw47P/oCCfOzyIzzii', '', '', '37AX2', '', 2, 2, 1, 1, '0', '1', 'yURDaouAseOaJPyre821i0iBAETDlp0Uos64myGD', '', NULL, 'def50200587dd3b7b5db82c791b0b7cad0edd650c6f3620f2214de3a4e784fe13fedba428aa4897b2713ba4a8b239fe472491f0fc335ed154411d85c7c77cc1ab3a378de4894dd5383e87ca39c2e3743bda804e8d984da8a2341f348915952c26a79f9188df208191bfbba7cb7a86519c211813b6aaacbeba7161f5e593ff8bb62e6de7fb2fcb1e47dcff0f2fa5bb533c12210f7ff5d8017e38dbd9fd79527a1de0832c294fe3d121fc6b4949cfd200449cdeafc85297b8fae1bfbe89a935643b7f37751bd3ace9549a435c76f6d46dd79eeec2f45c32d917dc01a5ae5a973286b19ff6127a0566446fafc981ecf0cbef4109ef82eb488ed3a63d719b7348f515119a75a03e964a864a9b7dfc9627cb2f62843a4e96241e5b8eba142f48ae44d901406c511b4d59607ae3bbea2dde899bfe8b787a6647efdea2927832660bbae4c31f3a57b0f961f1add6e4dfe510517df641da54e787427403bbc5e144ce733daf3c22d0b', NULL, '2019-10-30 09:28:19', '2019-10-30 09:28:20'),
(38, NULL, 2, 'wqdwdwqd ', '', '<EMAIL>', '123456', 'Normal', '', '', '', '1', '787787887887', NULL, '$2y$10$HCtzR90fgCJ.knhVy4xLMe9pIrmoo9ux3cNEk5YKV/t8xwhOAa5OS', '', '', '38IC5', '', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def5020018496e3876d3fe42026a59bc7c9d60a4582484d38ed2aa174b31b78add0eca3eb54ec153154674353670daeb8b5a6a785697d763ab82a607066076216be682534ce400b172afc3c508ba5f2a37022f4c1e0a722b7f7a3228ed8780a125e4ca1050fa2b920c37d240df118844e89adf89a74b793b12d95b5ecb7f958169131e353156cf100134b6a497b01a8396268d400f1322ec900398f735224ef605bbc4305cffc2cd45081ee54ce89ca2d653d6e2c9db28a05a52ee2115a83910194b0cfcec2299dd6c9a119afb04b4b45ffd69c984b46604ff1c0ddcfb3a4e5f600ff944f175d721a24c94da756d39bf8998bd7971dc66e20432503fd4978a41984886fe41abdef82cdeafbb5516138f4dfcee55e6c45c009190f2cf0ef78c63183511c20ca7413e4512c031be79dba4dc29efa344e1ed9fb5b2653feb6ffd8facfff44f57bf5278e2c345757aedd0147ceb459bc7295a6a1d63019539ed5f9723e95d065b', NULL, '2019-10-30 09:29:25', '2019-10-30 09:34:30'),
(39, NULL, 2, 'wqdwdwqd ', '', '<EMAIL>', '123456', 'Normal', '', '', '', '1', '787787887887', NULL, '$2y$10$s9DZTgiy6Ld7rhqkgzXhN.IBCfgqrC9A8WMZE7jD/ZrtImtz1rWly', '', '', '39ZW5', '', 2, 2, 1, 1, '0', '1', 'U9jnSnttO6GHyapArxuUzfYuJ6E0iLrVre5WlAuR', '', NULL, 'def502006ff46783254cae4bcab42cc75995a844562bccc12886df67a4e76a05e3cf5887d2fd04772d4f40818ed24bc00d5d60e298a4087c7795f405f686939e755a52d9c43d3dc07829471f26ab48dfcd5f0c8518a187f0d8a0d1f59574d7d9f04a12b522c464334a490743f48bd8bff0820fa7abede148710f058c593ac4aa6a69e38a651f99d4dfc545a30686aa0f87009e394ca21104ff3a970fa5fe3d07cc1e58f0770a028e1f1054c6aa9a62e78bdc7946bcce770d58b985e341fc448e9e9ad15127839af942543065e817134af0c4ef49f7d615f93adcce05674b54652c5eaea8dfb25bc9f0e207852bbf6dbde4f8aa66c6c91fdb7819c083b35f959f1a3e667f0168696d8e6bab13de6884fb1d70ea749cdb40f7ae2a3fa97a5886f124bb49209cd59e2cbb781e64bafc7dca5c2a30963e9791a5ce2c81d7cc3686120b4bfd98fcdd0e03c2ed264f181737de9eb7910c614d21bab4e1c9e70f80b52b14efe47fc6', NULL, '2019-10-30 09:34:46', '2019-10-30 09:34:46'),
(40, NULL, 2, 'wqdwdwqd ', '', '<EMAIL>', '123456', 'Normal', '', '', '', '1', '787787887887', NULL, '$2y$10$K11H5TLNcGdBLLvM4eNUXulpKuhx80EptCmwqtTqqTRkSW.cVTSBy', '', '', '40LM0', '', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def5020037b05662db565691be59e8de6696dbf7c9388bbdeb1a8bd57ec459f7c97bf4759ea8a5ff9cf1287384d2d2e4018bdb1939ae0488fd7ddad118b0e3a6709bab86ae984c7afb2a10f3054bbf29e3c705a4a41977cd730c72d590a3e3d831886af27dae7a391ced19a72871cabf42a18c9084b11db596a12720112574394b2fe03fb7c02ba41127505cf7fe921976f712e3002f99a7312a1337c99568596fd0bd508d3d50291f1c07c36dc9019cf074c918776ec582b6482bc8c36618287ff7310de9cc863fd3cf359bf1ebd9e5e849518096614b883e01dc89af55314247068ff17d1531da4c1cea11c9cf278978e5673d96c5cf97c633127547800182cc0000013097b76e90062da15a03eda1f68338ea4c10fb1fb4b33287ae7bbc7cfb1e5cc60422364f17b7be024fc6a958aee51087cf10b305530e4cc6dc11ba307cddbed5bbc6704f6603b70014dcdd57bb7896366f6ed00c40b1b84b10cf882f7b0bb6cbac', NULL, '2019-10-30 09:37:17', '2019-10-30 08:14:34'),
(41, NULL, 3, '<NAME>', 'manish', '<EMAIL>', '', 'Facbook', '1978473698843540', 'https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=1978473698843540&height=200&width=200&ext=1575032006&hash=AeTlszaH53H8zxqo', '4CCA56113DDD3B020248DAD35B22D3B083722829122C113DB065348CEA66BC3E', 'I', '85866602068', NULL, '', '', '', '41AS3', 'Cnncjvvjvkv', 2, 1, 1, 1, '0', '1', '', '', NULL, '', '', '2019-10-30 12:53:45', '2019-12-09 12:26:53'),
(42, NULL, 3, 'Delta g', 'delta123', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/gVetHPEsf20oCDrBnjkC.png', '', 'I', '545455454545', NULL, '$2y$10$I.AIsGTZuMzcrTTKQFTfpeUwId97X1Ngq87rBP9PqB3jqyIoGE2gW', '', '', '42JH9', 'Hshshshhshsh hshhs shhsh hshs jdjd sjjs Hdjdj jdjdj Hdjdj jdjd Hdjdj. This is delta hchchc', 2, 1, 1, 1, '0', '1', '', 'lKuLQ1owlrUQVr277ILCfBOUANjsviUHiBCHAOfD', NULL, 'def5020024c51562b24a4a92652ba5f8d79541340d4f58969cf662ec44087d8daafd54cbaa9f442ceae0fad013f7943371b966c2fb9106dccb25186fc0f35ea0bb7d7224db08bd6cebb227bf60deeb98dfff2d6a934c542b3f1625c38bf3e48697e2586f0b8b9b547c6a66b4c36f44f7a840ddafb5fb6919b91ab47078c7c7a29deddd403a02d7196e44ae2d843c90671c2f9d84348065533f9e6877de24cde6d8f41026e911f21bb2952503fc704fc08e127fc4ddaffa7224da999989eb97dabfe2240ac5053be637bb73d183f2d4d1d92fb8947c7dc61008b5b0b75b4c89e8be0d7feed1980086098a4704d837a48b5ede7397676ac7aa9d2455e165acb3858196d6d19277f019f5259526467c2bdcdbcc12fc7c263866ba454f60bf1a98a9fdd9076955941ea8c6d491b91809787b2724af4b8606968108a6d2c0c34feab76e96240a628f3fa1f8ae8c21cd08882465166f61eb778203bff62db2d8130271a8bd68e6c9', '', '2019-10-30 13:30:28', '2019-10-30 13:49:40'),
(43, NULL, 2, 'Useroctb In', 'bzkb', '<EMAIL>', '123456', 'Normal', '', '', 'D886389C189A98473583DBA3AA7BB4DD3B044DAC0240604CFB5A7DD7D211A9E1', 'I', '', '10-30-2002', '$2y$10$QQgCNzb1LzOxVFShbsGwHOX7UU0i83T6GPODqRC1Ckc.QFsic/8qC', '', '1,2', '43UU4', 'Gi gix', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def502009b5d832824223e26823b9f0698bf8c026543f7fd79829bd0f1c006ad9a7a3c9adacc2389dc803a8508479df7434264575266e4eabefb800147bca9951bc6051154ad63db0e60bd77ebe5b6011c4aa842cf3dfec0d7eab1765789eca4169cf73a72d4be9a8a4dc180fe591e3d3cb09138e6b59908c968bab4caa8b1850fed7924feed217975658deace03e4ba1a51e6ccd029bc376b00ba441b87ac1b2669b365979301517825ff954f78a69ac38bfafd4009f4e715fda1dd4e0e49d0dd794e2de5889f474bc7d55b502d4f9fcfdd3c279106fa37b9ee8c8c8bcee450382585a98378900d45915f01beca11c13a4c9199c1fcbf96051f6adb0a235276227733af5bc9db0100b3e4d2ba88ce4e01188c4897ea423173f77574da6980d479040d875e0156b2dbcaf1eac12d64dc15b1c4d2227870ba0cfb341a4707c3441c6af3fb66a2c768e7ffca95bc3964b101501e4e514947171788f5a7030b8bd096b5efbf58', 'fnToyd-<KEY>', '2019-10-30 13:32:12', '2019-10-30 14:26:56'),
(44, NULL, 2, 'Mouse Mouse', 'mouse', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/lwBdxVYnlSYsakhne4gW.png', 'D03CA4CA26881BA809C698BE8DC137CBDB1FB087E0071264A4BE3D7CEC528140', 'I', '', '07-30-2000', '$2y$10$YTCdE9dKy4AM1uSAcSyMCeldp2uL/TIiPFWrlPmFhVWDnAwaTIaHW', '', '3,4', '44NX4', 'Chug', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def50200b241b118804e237647506f367947f519b14ee087d5dc7e1aca1dee40b07954d3f901d8d773302c027207883512e479af08939d85e805461db997b8f7dfe1ed38e7af444d5fe99b6477bba03f813dd5b030d9935d9dde6ea7f0840ea83994858070924b801b7b5e1bc271ac5e3080cf1c40c63176dd476587824509aade904f2b74277e027b38da139a16aa3ac8f093858ca4569eb77b9beacdf0cd020744978d89ed4a56353fd6e5f85b79397d574fa45f79c60c4aaae60c24b12ff1d87b73f6428ed74761a235017c9f398fff23fb15e14a043cb7a1e298eb1357590ad6001845d12d5af3407cc6e817506fad7dabca9024295811af922fcb0f1972b76021da8cb782cefc2528d327a45334d1806d7367b7517880e31667b7fcc5267d37e61b66a40b09f201b215ed63736641e7e79ebbaa018e1f5795b9e826f8461c1dcff3367402724a377ad339bdf4ebac3568cb0bceaf7b9ae8e37fe790cf49c640b44954', 'fz7FDqKFaxU:<KEY>', '2019-10-30 13:44:16', '2019-10-30 13:44:56');
INSERT INTO `users` (`id`, `refferal_user_code`, `role`, `name`, `user_name`, `email`, `visibsle_pwd`, `social_signup_type`, `social_id`, `image_url`, `device_token`, `device_type`, `phone_number`, `age`, `password`, `music_interest`, `public_interest`, `refferal_code`, `about_me`, `blockStatus`, `status`, `age_status`, `notification_status`, `stripe_customer_id`, `is_deleted`, `email_verification_token`, `reset_password_token`, `remember_token`, `refresh_token`, `firebase_token`, `created_at`, `updated_at`) VALUES
(45, NULL, 3, 'Quality Assurance ', 'fbuser', '<EMAIL>', '', 'Facbook', '121667232056367', 'https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=121667232056367&height=200&width=200&ext=1575035426&hash=AeRHd5RHHH79AmcA', '', '', '85555555555', NULL, '', '', '', '45VA2', 'Gghhh hhh hhh', 2, 1, 1, 1, '0', '1', '', '', NULL, '', '', '2019-10-30 13:51:05', '2019-10-30 13:51:20'),
(46, NULL, 3, 'Yut', 'yut', '<EMAIL>', '123456', 'Normal', '', '', '', 'I', '53538535888', NULL, '$2y$10$3L1Mo5gZSn32p.mN07uJ..1Qa4hg0.FLSjIGi5xKwggy1SctV7jYu', '', '', '46VO1', 'Ifcicgfiig', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def5020050bd9ba06f854004f3060e5a9c667dbb070935fa488f65ff0adc74cbfe3bbe1c42b850aeb1f49de0b10a7a3270a6a6dd13b7af503cd93388059e7bbf833132ac9127a49a344e5fcc39269f30f4249ac24302d3090c210bf4cd942a4f5685ec19673f81cace8c6249b4e189701e006ca75d5cbd07f1322c3e3346da298b87e0bb808b93e7a47c547599f87717dd39771d7994a9628cc6457435587452056bdc37a7e98195ef3a1372b50342b3cdb7a3954b89e7b3bb956e1c0909ecf8cb7500fc0b74e5f3f702d3319e9e7f67560b86151dea10ef12da88006bc261672c7bddce547d33394c12aac6d13f42ba21107917115645103d84020e20f5ef1dfdb4c061a8ac199962957c44673a6b74a6a448fd965bdbc652c45a7230792c3b9f8f3558b3e48fdb314339584f41b51ef817f91ac29bd220f002bb1790dd53088bedf8e60b27a7a080c9cd3197b77cba75a72d28f565b991fe72af5f903f630992a0904714', '', '2019-10-30 14:19:48', '2019-10-30 14:26:29'),
(47, NULL, 2, 'Bottle Bottlee', 'bottle', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/bvLFIypCbzo3OqOtClTx.png', '', 'I', NULL, '10-30-2000', '$2y$10$rLLf.9iOE/0.Rc7BsFISXuw8HrPa.lwcw8xU9DT0WV2xprLDB53Hm', '', '3,4', '47AT6', 'Bxbx', 2, 1, 1, 2, '0', '1', '', '', '<KEY>', 'def50200f99b3bc42f8218ec9b6d48db3cd2fa1b287f21cccea4d630ad211fc7a6ab5b29607282e4d66582c163f4da1dfacc072c6ef9ddec8c797113aa983bc4a5de171ab6c52ff2d7dd68d07cbfe3cfe8dd1852927a2b2d83e0ee018387bd30e6d8c9b319ecd49690fb21bcd0b50bcee5066820266c65e34456b0dea3316e4c3b4646652acd3737d9f7fcafcbd0dbc82e8400708171c7c23e3999016db885fb7c4777e3e4cdf2df5f9323b873087c821e09008d207bd804a9ca354e2dbc6cea146461787494e36e5f02c2fb1714a779bb26a6d5821880c106881874975a9fa1397ea407657fa2201f553914454a393e2d22978336374754976dddb25dac3cedd7b40b007671e666acfc4df4f39e19f8d52302a3fd26aaade658957ad20c4c16e1e286f5c870618bd436eac3e17f6dba4aa23b1856e74b482887f458e7433ff77acbbd6533086f01379e62ea0a119d00d7e0a94a744420721b8a28d0abfe5491b81aeca8db', '', '2019-10-30 14:20:06', '2019-11-07 10:55:14'),
(48, '', 2, '<NAME>', 'Peter', '<EMAIL>', 'qwerty', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/onFpeY2xdKyMlGENlE12.png', NULL, NULL, '727437647787', '23', '$2y$10$zW7L3cHHikhO0hX9p0.AdOgcpiGG0ysyiGaDZrmEuKq/cYjQMJ7tW', '', NULL, '48HD9', 'fgwhefwfewghds hydfhgdfws jedjwdgews jgdhsdesw hgfhsd hgfdwsdgs', 1, 1, 1, 2, '0', '1', NULL, '', 'jAtUAaoLifzsmsu0Wj00KWxmmbMPXuMUq2JddarFdzzU1t1VEifJH2vMs2Qw', 'def5020019e2d3e47f27b2003af8fa7bc4ce5a039372f1b2e998d6219ad03dba6d2ed6f599636ab54f650c1f3581852bd0bb122886a3d00dec9b48500f8474f1036d4990e248ce690869122d2c605d5630affad1d8c210125fd0ad6fc569875f681d58138699962f580fe3f7a123647d9da5b3f886d2aba9062e71827b2a72a35cdee74900b3f2bcddd8994a751d1d14a821415dbf4d7c2590bd411faf58f04498bf441e0149777a397210447244c93de1d30006a9951c50a849fc3608468998f498881cf8ecb57325e9e6346dd590447897ce0f7de36796c9643e78c62c1bf3dd578c610d7832cd415725a7c9cf8201330ef055a932f3a3f17045baa14b0bb0b72d8f07577819587c12b3ecbe4762457ef2afab2e8df023a2c4b8d9855b86a71218ed06362187a3597c9ed6293466134e40503db1d64032ec47aede86839538baf2fd1f08efc34b00817545d1a8a8dff124df2ca9381dafdc303fdd0c1f10af6a474b9ead', NULL, '2019-11-03 23:48:50', '2019-11-04 01:03:27'),
(49, '', 3, 'john', 'john', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/eo16SQN6XnHNhaarEW3v.png', NULL, NULL, '+115454455545454', NULL, '$2y$10$siKDY/iDWJjjJeuojcf6YOWiws0qRpi.tMtL6JRgFvSeUMPtz6QKO', '', NULL, '49RC7', 'eeererererere fgfgdffdfdfdf erere tgrgtgfg ffgfg gfgfg fgfgfg fgfgfg fgfgtfrg trtrfg tt yth hhgng kehkedbfj mjhbdbfhfbdd', 2, 1, 1, 1, '0', '1', NULL, '', 'mnHkxTPvFqM1LbzE7QWnMOc3VBjQ9YxaaJnv1RpjhnvpMthBxzN6CrXtOMsy', 'def502009807b4af2c9325e75153eb1471a7c212fa9e8f012aca3408298ee85427756362a6fab502c0014251412a5d505e6920e84203483fc88723df03c54c2ddd95f124c5c7a16587f1eab536f6afefe14428b4d03c0d490638f98b759eb041829a3227586e43ccf3e5df3e47edf2c4290ee369a331519a160210867bf04c15c3381b9e2d3368af320c898bf44e244be52f4445810831cf8527ea9860880130ad8157be82db570717639713c2c79a1cf6e7a8ccffcf9c122d8727c3213516db63cf01758fb9577c706762204d561be33a459b886d0322c6c268d056321d88ec726791e1930e1d1f72f00ca13e117f5b9399ac5b0f51232fce4f7868d7efa506259c5385d885d320f696fddbdd392c26018588d7c5063383a8a6d9233584a7b4d83add7ae3ca317c3bf6e24dec96ebd2b8ef94461ac2eaab3a4c5fe6a2b9a372264ce5596d6045bfaf5c629d59adc8e097cb387b3c53345029e897a962b4398a502a424e7e', NULL, '2019-11-04 00:13:55', '2019-11-04 00:14:36'),
(50, '', 3, 'Allieeeee', 'Allie123', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/50_x6h3K1gJDWSHMKHHHqUY.png', NULL, NULL, '787984540398', NULL, '$2y$10$ppbfXbzbMl87vlEcwt/yP.KV101gimjkrOBO9rmKQmrSbUqbaxfnK', '', '', '50GR6', 'This is a new sim user. This is a new sim user.This is a new sim user.This is a new sim user.', 2, 1, 1, 1, '0', '1', NULL, '', 'GlP3Z9Gc6GqKEjsTHl4lD5GKIuYk0VutePgofQ0gEin8s3HDSi4PIXuXHymb', 'def50200c90c9230d1c37918f50344fafda1a4118d6e35d916b7326fd4fc26783fca2e9debc17c2aa63693913549446ad32de538e0f61c704fe5e3d9849bb2cfa1504c30cad434751855d9433e17ca96764d39608c188ff35ef431debc281b1ba3ccf683a19a009d9fe94139412575ecf5ee2bbb5b6c61f7c066caa68586d6c0223a2ef33ca28ebfe57d098a32ff2633513b3e6e01b8e102c553c3e1b8547f6216e4fdedcb93f168c3c19a48443115c71531ad32add0fd4f410e73f13e4d7300142515c40d56d7c2f2c2bbab20b4392093be9de76449edb83aaa666f8648a22d27c8004fa941244c410deac41fa5e2f0a87eea64d241d40a039e460652899b3c28d6000a2cd4728726f99ed2f188a94fe72b573dbe05ac129aa6f969f557ca269cfd98a39633b6987495e786afee1036dcb48269489c470ede0171ad242a8aba14701c9fc608e940f3f6f503adb2de044b77fc58c56466ab7e984271d9ae610d6d444bdc4b', NULL, '2019-11-04 00:23:46', '2019-11-04 23:25:11'),
(51, '', 2, 'yellow yellow', 'yellow', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/b3AJXKmpYGJcqiZ4I8b9.png', NULL, NULL, '9876543188', '10', '$2y$10$xOWvVrO2Ic7blbWZcqLjOuqE65Bu7MYyqjzgOYZakF6KAnsLKtanW', '', NULL, '51YY4', NULL, 2, 1, 1, 1, '0', '1', NULL, '', 'UMgiv15gDidu5P33BJncgJzJrXuFTKxO88L9Ym7affSVySkxzlVxus6G1wlR', 'def502009551b83b11aa9f3af4835a29bdd912ed173f831f457f4243db7d07509507ff335ad92202ed8fe476998716f6e03181b6763ac1bfdf4d0406f4a16a679b0642f8e18d946352ce9283bf748e1b7d7b9e57914238d388e9a21bdef917e122249e1b78882784d090310d4c32839cb8a3fa49c71b9b1e0f802c272099b6250f35dd53bfa4cd7cb0438da4547e863ac2f58517cd1b2ca8d31e98fa6a7a9168329284f466b1e56f8fcc3b597941847d97d6f61dc6b36fb591c5bd1617680890c671daa2c82ec3efa4b20047935cc0023bf9d9954b2c77834bf9a286faf6d0ffd758e512da3f9524f6d1f750ffce47a74dac48dff78a5c3d5f10c8cae60b0e7ce665bfe9fc3c6e773f020fb6a6ef6dafa3c5bf85a54af4ce93eb90d3ac1034afc3feeb1d18b4ac0d59072a4dacf032e89ac3fc67e30a43d46ec0ae729cdf52e39fbb48a6c9e9be6596961483c72b877529b9432f0e09aeb53e2a6ddc51adc68ffa2c7a3988', NULL, '2019-11-04 00:44:17', '2019-11-04 00:44:50'),
(52, '', 2, 'fifth fifth', 'fifth', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_newstorage/app/public/user_images/52_nszz1YvpFXXTpcKQgZY7.png', NULL, NULL, '', '33', '$2y$10$aPETvd3tVZgNK3TlhYFh2eJtnNKhCCBc1jnPjs031hwQEioPglGJi', '', '', '52AQ8', 'ghchggdgdgdfgdgdgdfgfgbfgffghfhfghfhfhfghgbfghfhfghljhkljhfjhjhlkbnfghkljfhljdhkdlkjhdlkjglkjgdflkgj', 2, 1, 1, 1, '0', '1', NULL, '', 'iTBYe7cV1tt9cDtveuK5f3QbX4NfELN4A5kbQVlrCWtHJ49sBiNiK1UU55cr', 'def50200686f2f55388fb8996b072ad96eba39c431914f878f5ce353430308b0854088083e01af447dcd69c15a3209b285123854e8420e24da443ec7ed93860146d9bcb4e8f403b64f4db3c7f83d0f9016a34c8bb1a413733c51458c9fa806189a7496f341ced3cb98134ca20e7361f9912ace4700c73a70cdf0371e53eaf872d5054f5c5fcaf8331e00dc2513f292aa8290df2457d239622eecded7862fb495b130cb81a7e177c75205633b2bb64409489b2cc4fe880da792839b3cb8c471a1145fe11e4edd73b2e52d744b761e4b72cc5eed4b0819445f9ab51fa02290e1dddec8305125a79f3380ade9ffda030925736ecd32e3e161d76e140b326a015180ce53ed4ba84738bdab728d170ef4dd53cb1c2c8deeecaab834e36611d50619c3f072a3db6208aecb65ebaa8fd48d7b74c6923972ad7d6e808b5abdfd94df19362edfbef33c2a9ce8c23e5405682f207e1688936a85e98bcb942dcc219931fa0dff2034d300', NULL, '2019-11-04 00:47:03', '2019-11-04 01:00:59'),
(53, '', 2, 'ring ring', 'ring', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/53_RguTOjAGcU7GIQJaWWgF.png', NULL, NULL, '43453435345', '20', '$2y$10$MQLbt5HzpwZ9jVTKqyIuPO.jWUR8FuGl4bJlFVu/8GCDdnJPN2uN.', '', '', '53SR0', 'fdfdsfsdfsdf', 2, 1, 1, 1, '0', '1', NULL, '', 'rUxDrWP94rt0gAeCnUKWJ0oDwHbnIy3SgVnftQeLe5a75WqQvWLoww7Q4enS', 'def50200e827eed2f0140a821de00c63d00133a06c2ac09dacf3a4e485a4de1395458dab19c14aebbcbcf1605587766f763584830b0944a49dc5a4d618b417933041916c39d2a04f9086c53d4b69000564219dc843e36bd0713d37bc3d271c88bda361ac2cad21c96bd5179e759e74e2055b1837e3eee5a7c526dfc87c4433e862f1d4a72fa12864ee024b9511af8bd703e0ac52e03039ebdd5a18c43b42eff9767c3b48294e393587f52c6cd3e60181b74eb0640f258947e47733ae0fd399a98b7707f9af608a75ff2dddd53023db8727baf82e309f1268487c456bdac003f8083a66f5a839e7489f6b03b6c8ce88663cfdce355ec9a1f6ca4b32a7b382bb3cd20a50bc0923dcd6e570fd95295a805f9baa1884315c82bf41357b444aa15d07fa26d4369f84e0a6b9fdf6a7cd131e406640e41db0a6cbd72fff1b688ac904c387e7d8e6d8d6ac2cd8332eab99f6f2a55e2e912341e3f10320c5884021a6d9805b78bcc061', NULL, '2019-11-04 23:12:50', '2019-11-04 23:18:19'),
(54, '', 2, 'unicorn test', '<EMAIL>', '<EMAIL>', '1234567', 'Normal', '', 'http://1172.16.31.10/sim_new/storage/app/public/user_images/Xo8zSCciEKuVSxxSBsCO.png', NULL, NULL, '98783743874', '9', '$2y$10$7k7LatGHKhEmPaIX6jJTkO4QKwKNYUtYsubvLO5pmLsV2DeBlV8t.', '', NULL, '54AG8', NULL, 2, 1, 1, 1, '0', '1', NULL, '', '0Mk4woaMg8rXy97VAJZhT0WYkaUTKcSEh1jIiTv4RRKdreYq7HX5CwcUoykH', 'def502004db552155fcfd880cf39210c62d57fa71be02b29ae2b482ec893079bb01cc8e7d9c7847ea3429e9f7cf1892ecc6667126064165259b538548de4b6b32118c3f98fd461bbf726b3f67b1e803ee896eefcd86925a83d8d8ae0cf3f109ef837edb8a83763ca4358ed7429fc71c27967abd103bb03fbc42864ab1c9924cafeeceecac66e39089264090919cd61e303988eda81e695b62de2434673dca6fccbb604931c9c50053094745068a70299bb23debbfb71e22e24b275e7ada225a3c4abe3d3ef1160a3b89707d2120214f299c299124e95bbb27595f2c088f66588b410ac418a746d21ac3df56e3c586c4bc67ddbf607d3239070a826e38361df2c34b35dc3fce59df080a3d290349dbf61a947501abf361535112cb89fffc3b5fee3e1a4d6e835fd4e6b1cbadb4e2cfc62fad1cd6a9e8c8ff1f4d125b40e0ccc01de42e7dce05bc114db077450f53a7d69ffcaf7fcd9d32ee7f76509b62cf4dbbcdf82cf33c0', NULL, '2019-11-04 23:26:49', '2019-11-04 23:56:12'),
(55, '', 2, '<NAME>', 'ojasvi', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/sflwU1MiSqoVM9PwxeJ9.png', NULL, NULL, '6347347367346', '25', '$2y$10$W93Jp5JKQU8D7w.haDaxeOShlO5ELm0yZheMkjEsIGiE3bozLoBiW', '', NULL, '55GT5', 'fdfdfdfdfdfdfdfdf', 2, 2, 1, 1, '0', '1', '<KEY>', '', NULL, 'def50200a655f0e52d6de15834f1f82bf4f288b45118828dafe3d36a16868c3dc000065e6267bd6044ceb1daea8c780f46c5709ca049678e2572526ad904dfa1c9af68b4a6fb30022315c0bf5d8fa127be4a720136ecf64e736bcd1625a42ceaaac304849eebb7fae31c1345f0cec514cec2acf8d63c2c0050f600ecbde4a171a5a6451f29badf20f8550fe91f355371bb89f2b7659c9943229691f39c6be203513a81d3798c3bf2492a7d4d3d4b0f756eaf477ad0f041927ec3c081227145bb2c150951dee41867e9399fa343b3d71d47aa33515bc5afc03c32b9d76b8e157f07d6d8fa25098729e98bf2a3ab7cdb8079501868bbf64695dde1bd4d6d6eb2b9983d31a1d868809203cb56bea3a75c51e3b96088e869f8a05d976a66dfcd75c02ab30aa0bda6575aac5bf1296b65557a0852784f22ace753ffa86040f202d86ce93bea4d895be6d22bc531d22476a6dbd738fcae3b5b168c98fea45cf1ce9e92f64d0869ec', NULL, '2019-11-04 23:27:47', '2019-11-04 23:27:47'),
(56, '', 3, 'org', 'org', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/56_EZVU9gmPgNJvHn6Vy1XU.png', NULL, NULL, '9823984293', NULL, '$2y$10$Nz5ZNe3/mAAIFhlI6n4RSuN9UhIP01YOcmGRvtFb6wK7BZyF8wWk2', '', '', '56ZG0', NULL, 2, 1, 1, 1, '0', '1', NULL, '', 'PA17mFXMqpTaEbbTEMkkvzPWsiHQz7Ml6hJrsIb8XoeKrmgi2BrHgADgZNNi', 'def50200856e19e705cc8cfc59e5b87633d127361164f7a0494c6595f338cddc2e08b6039ec2154b5052ccbbeb63dfd9f71c49c36a8db45f42e7ebb53087f588d4790b1594f3709b6aab45bd4fe5b6073bfdeb3f7455832af0ebeb6d852901e892d487c3eef246d9300f3c0e4f64091c590914ef23f1da9782aacd19b36d2e241f23e06c539de0d4ba4ac1ed3a880bde1ac5f17bc4963354e340feeafcf37874c92dacaac70ed8185d816967338184a365176991df0784f8c715957785613b5e95d5eddb934168a9061041fa7c541b06ffb846e797babbeee6a9e44d4e84086a365790ea2770c67da50561e1d8d8edcd93d74a715ce965d03a3853bbb4892b2b0785171fb6ecc92aba63193861950570eff82197248282c113fc64b57eb8535bdca641323ec4556834001d14e3db1613bc17bf22f5e573b2b18be5b2b2b11ed4bb3fa2e06937b3e302a35cf7b803e7db5cef59bd784b7614028527dd92545ebe296f171dd4', NULL, '2019-11-04 23:29:17', '2019-11-04 23:30:23'),
(57, '', 3, 'quillflash', 'quillflash', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/57_yEGnQeavdA6m4XBOyrF3.png', NULL, NULL, '894797484454', NULL, '$2y$10$dgWdWSqv3UTy/O4dLrunj.95TsoDHPHPOgDay.RnLlyAB/kIFbmBi', '', '', '57NU4', 'sjjdddd jdfdjfdfdj dddddddddjer iuhebrebc jdhsjgdowiew djsdsjdghsjhgd shdsdsds hkfcbreree jbjbfdbfdjfhjwedw jasajhjsha j', 2, 1, 1, 1, '0', '1', NULL, '', 'GAOZiDlDuogBgSdj1hplN8lomxfh1x2aSYUHglGCw5zckSfCNL5bVUTdnZZu', 'def50200f9970188e8fa43c4b4eb26332c04132ba50fc0986a5e4a7d43d8305c7aa5e11e4ebe3318061a0b482d06e0edcf555feb87b6e195674d0606bb008d3a401658d4c911947e1e871e88fd6353891fa708ebcc31cc5dc9a5b07d24c7a73b8fa232b13b7088c03f6bf4054fb67d1df106bbba9adf4a0d8f7fafd37e9b63738a7e6740b19316c183cb1daadc19f9da708b4354502d54b47a4b20134092a2276b28cfc1ea4232aa381970b7d20dcca1c191213ddf6ba7b6aab45c15cc1361a41482762c0f548fa3ddfa820283f0b718f36174c601263b43d59957a9e31e606a737650e9d3b8dfdecf6a3fc10c46bbe5b7cca2df02ef8df34c0069603a33235d85692eb0d2121f3b9bf25d4143f5efe1096e4963bb55cd92c739a734d8643fdb52f925220239bad61bb79e3421625c9be2f33e588b9bdcdd718cadcf6ea380c8f68c980d9a520b7d8da12f650298e92e3e5ee38c4fccd3a884c479be0da01fd455ec856f00', NULL, '2019-11-04 23:30:00', '2019-11-04 23:49:09'),
(58, '', 2, 'Huda bHUDA', 'huda', '<EMAIL>', 'qwerty', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/RrmFxpnqXJfc40MTFxRg.png', NULL, NULL, NULL, '10', '$2y$10$jdEsd8ydiuHkP2hiM1mEJ.fiH47/fGwk8IQKesrdG6PiUaTI7XVvG', '', NULL, '58BC6', NULL, 2, 1, 1, 1, '0', '1', NULL, '', 'bnh2wfP5U0S3H4BuRA46C7LFnKFZnrIgHoT5LqjBiiYlUAOCIrb1eRH5z5vV', 'def502009a68c01a96042ced76a18c60b7c6ac8b70c96c7eccfa5a0b1a9f217c9da48f8aa01b7ef47f3068dec9ca4a2aa7a2205ce906aa87d2277903c5c64157c024977b930c09b60ffbeb779991a8afb91a4d3fa1b166c00e9298bd55ba7b7cecde11914dc4f12d86dc417a685937b0a0146bb1fab0f75570e7e878ef2c6cd64009346ab84a371078bdeacdbcdbe5657054a93e9fff0e2729cbf5e3399c3a879790525884c565a8fa085d47c809754807049392f0eeca1a1cde7ef238b0524aac31e0295ddd396060d4d969418fe2925e0ae3f83aaa6cee7590db39dd48bd946ef88deb2901f38ed47f40a4de3b1131f66c67a5d7e7264bc3feb483611ee4a9a1755107074b50964658bd782145d8bafcd7ede1c8e0505ff43634d28dd4119796423f753373709fdd12c4d257ab86db9f41530b94efac3204d8b5536802ba90859795419f8860cc028b3254784bcbd0caec0ee6ea17fcd17a09f949d35c2b680d68833903', NULL, '2019-11-04 23:38:15', '2019-11-05 04:10:23'),
(59, '', 2, 'list list', 'list', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/sZKluFjqEiIIQtbLtwJd.png', NULL, NULL, NULL, '30', '$2y$10$8ZssxVXLREoR38.7Zx9Z9ONLHCtOS4a31UCLCWC5beA49jAyQkgCe', '', NULL, '59IA6', 'vdvsv', 2, 1, 1, 1, '0', '1', NULL, '', '6COAGmc5rF3cQuReGjB92VV9ZtFoznZm23sgTTjHnJzkq6ce6BfbR96gGhSi', 'def502002fd2d5bc09b94929ef1efdf5024939f27cc40c29e6c70610bb1cdea4757558783b1fdcbec4197db81256648c6bdf819625f26df6d648f66d3433a71d7139b6103faaf7b104e15b54f57c7873e0c6bd07c8a58874909805249f5d387f1ee2d8186280eae33347482c44f242ce35bc4fe061d694e7863c044ae1531608820f5dbc03fd16735e3529615216fdef6272aa6e489327ac3e9cdbd8287fcf7bbf8c5d0d5ca050cb3ccc34c8bf99c8355b5f0cc3b4d2a0f90f36f60dc2370c8f5db29f24527be61d8d4223eee5ae0e07a695ab00517a656b90d6f4cae12545160680ab80e015b582fc9fe4f8a8ab07757c8281bf6433024910afc60aa2b88a2983a4d40fd671802021cc31f33eb8eb023376762bed2e560c07c0c838922ffe7b44c904f10f7eb0a48eb99e8bd54adff7fe7da5153681e2f8c2633c68c8b329dff57c3f844def8dbf767d1a69e9f2c2abdfb16f4170f66edc770729432a5b924f2c33f25c1a', NULL, '2019-11-05 02:04:28', '2019-11-05 02:04:46'),
(60, '', 2, '<NAME>', 'David123', '<EMAIL>', 'qwerty', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/Yd7iT6D4G2xMv7ghqpoC.png', NULL, NULL, '4565651221', '10', '$2y$10$7fxdKMDEErq6mmtaHPl2SeLWBN5NLGvx5eDtts/ilU3q57FyIjiqu', '', NULL, '60PL1', 'This is a new user.', 2, 1, 1, 1, '0', '1', NULL, '', 'xSsXGAgMXNJN19CLPmR9CltqtBzdcISAXhyxTbCFaaGktkLp84d7rgaqRhDk', 'def50200434766f298f53cf2dcad9761f26f2dcb8ca447f4043913071379c943c94d0b56757e10f7221732812d1f370c5ce952053970c205c1ee6622f10fd3d35659a19802487b1fcf57aa7035678c3a12b669b2519a02d99cf566a1a5a20d7a4d87091ba7e6fe8605f653f9070b08f6f05cee3a4cc8b873c72a05628b21407d051b7f8288096a2bbd3742edf07f56ea93b31058a8913e54ff0a922b33928a9c185ed595f5103be6db58c76d15f359bbbccfd874c96142b5e282196503828b759f694b95689ef80636c0dfcec4baa5795b2965fbc8484c4905d9695b45c98f5287553fb8b2ecaab635a042626635a0a6e8508e9fd94412a0ae4e975f2b1fb45db3abc7c5735afa44fa6cca92bdd8f6577effc8dc468324b3c35cd5ff8871cfb1593c920c979921316a1408f0abd52a7f1caea72e1da018598eb0c4065a048d4f09dab72ee214a992611a05a18733c3e19ae8a71a4520712eb1260f43cd1e0935fa49599932', NULL, '2019-11-05 02:13:42', '2019-11-05 02:14:02'),
(61, '', 3, 'DavidO', 'DavidOrg', '<EMAIL>', '<PASSWORD>', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/61_EBxZKJhrEJsg2wSVUnAg.png', NULL, NULL, '4456656565', NULL, '$2y$10$4SBnXv61h.Nov19266gyruuVMcSto.8VKY1mW0Uv6jhbI0R/jheTK', '', '', '61AE3', 'This is a new organiser.', 2, 1, 1, 1, '0', '1', NULL, '', 'h56B2wXuxUx4QAMkUz0LMYrJpuKvthvdua40gRVoC9Ww6SOtIah0d0jqR26H', 'def502002673bc175f730a9af251bbebb6664e66864bf8a1d807e893a68eb0f13230ff65dce8c267ba9035b7b0c10d51cf00de5f84b7767e0cf08cd4972a98eeb2422ae87a46d1840d230201c176fd35b419f1e8a72bb4814ed13f79a837653f0d5d07521f169e949f6ab8840074e503c1dab20b2d4fa34a345122c6fadfa9d8ccb383d66876b2e7d76a6303fc0103cb32c8709f630e058699cb0086e9f19c5af9e4dfb28124553c1e270b87c19f8084428958e5c0f4c6f228614e8b574fd7b2b3ebedc1f401f1cb210d46ad01442f381ea64dd5cfdf20da82acb37358335c00f3d75135400889d905b4474df8e7303cb5519223735211bde2f2358f75a41f3e9e3e58465c87a5002aca962f5f7796d74729943e139b9df9f505a46524ab7f63935a539ac917c0e47f029c1a552dc891a740a2ae7d178bff945ef84a30331b89f4c76388ea108f2e2474bd9234c8eeee1405ce908f90470f9fa0ca9476121826f4e373b731', NULL, '2019-11-05 02:21:20', '2019-11-05 02:27:03'),
(62, '', 2, 'Tester Cool', 'tester', '<EMAIL>', '<PASSWORD>', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/STbcl2C318DUiOIi2pYF.png', '', 'A', '8985445540', '10', '$2y$10$kmwo713dg1igtf48mO78jeU2bKVbp6ZIjTPdylI.PvqGzBBQmk8BW', NULL, NULL, '62QN0', 'This is a great thing.', 2, 1, 1, 1, '0', '1', NULL, '', 'BYPQnoiZXidjxqNSeWfKcq4sAI0AcwbUUR0BFtUVNE1ABMpwTNeAetO5fimH', 'def5020028153bb8c4bd2c39b5bd94be0d61801f92c80ce6b139d500d13c9a63981590183df748238523c2e61b6067cfc6269f9bbee519ea161c5d9d29cc124c73b811ee3e05512ce348fb9bdc9b1d3ed6f2c98350c3ea931931ca18e9dc752eade7425c47bf804aaa001dee0bb20f49a23fe1b6235d52592708ab2bf01b324b6b98ff3cca086d39ca04957b403015c8e0f4c55d96586c1928bf3eeac27b6fb6781e6adf18825097ddc874fe838761dfa627aa6a633147cb7bc748aeea6f712df9b637129983dab68f4e11872a3177ebf30f0d153dd8827a4dbabefed02575733a1da7d5dfa0a1cb33fec30f1778f24d0c16a9894aa640a9ada3cf6a00ac19e229fa4d31cff30e8823341d57dcc2dc4051d4378115a1216e54bce567e6e503268080deec35003535f4ae60e63187c4ebfa94197466ad3e29b6d49b7a152b276e6a3f359808243f52a067f6625755ef562c777499139626788b32ddd3cbf404ed8052bf615a', '', '2019-11-05 03:48:29', '2019-11-13 05:41:12'),
(63, '', 2, 'horse horseeeeeeeeeeeeeeeeeeeeeee', 'horse', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/pPJfFAieq6qUBb6nPFNA.png', NULL, NULL, NULL, '40', '$2y$10$QH27a/x07tH./ZSkl2xzAe585wSiE8ZF.GhitoM9vKahkq5x9JEhC', '', NULL, '63BA2', 'dffsd', 2, 1, 1, 1, '0', '1', NULL, '', 'tDGc723o6aM4phDOo8QLJGl0y9ARawEqMotv4IO2icanVpkzvm6ljlCseEaV', '<KEY>', NULL, '2019-11-05 03:49:31', '2019-11-05 04:10:49'),
(64, '', 3, 'Tester Organizer', 'TesterOrganiser', '<EMAIL>', '<PASSWORD>', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/0e7A87Qdzka0PmpKDEt5.png', NULL, NULL, '44545665641', NULL, '$2y$10$14RozsDpyovFKStU4NGVXOoMEdw6Kv.e9dft54.NSl1U3vgAsVtce', '', '', '64NU8', 'This is a new test organizer.', 2, 1, 1, 1, '0', '1', NULL, '', 'VTrUJkk1ZmSqzT2wf7PEWBkLAuV0LqpuffDEmGEHhh5riakqZq17m8x5rhIZ', 'def50200e4f4f1d4415e6785ebe6c9e1784427121cde5bfbd92c159c475c27f3251d69c417f6aa68c2a0dfe3786de47b97f59e11b4d4fb7be1092481760ded621d0d4d7e8c396ba57ca1616dfb65d54e29a309ff126020f9a15ce445b5806d00cb6baaa275a99a676f507753b781204f2c75f642ed645809ca9413c360939e990979394df6cb316e834e89a97fcaf83cb27dce7164ba415d0c335446ce98b455215634911e0f98b87d39eb191d4cb51f343108b157974d5e7ae29dac486e9bedba0fa89b0cb234083d87bb71769124f3cd7e3c5137a2562a08d521bbc4a2f0fa4678374ae1b8857bc3be0dd5d9d47a942ac8b352ad58799edeba63b9ab25738d27f3b5ec9f272fddff54e5fdfc3d0ee6608808aa2af932bab39f9747ab0ab4f610bdef0e270ad152d1f1defce09dfcdcb673c3ab32e33ea32992770e963515342a888ee26915e082debded62f4f4cde2777256bf109d10cf8219fab21184e4ef5a664ef602', NULL, '2019-11-05 03:56:30', '2019-11-05 04:12:10'),
(65, '', 2, 'ring ring', 'ringtest', '<EMAIL>', '123456', 'Normal', '', '', NULL, NULL, '9839728372', '9', '$2y$10$8sJutM1dbjoDA.iBCOBOF.LSatGDtU17ivcN9ighQyKD70IGhCMZa', '', '', '65PH8', NULL, 2, 1, 1, 1, '0', '1', NULL, '', NULL, 'def502009e59b55d20da6a59ce94417efe2828e3d996cfe481d59ceb2b2edf6b8fc8cd59a268930bc13c91fedf197848632effd5580595ca8c8b39acc8108d0bb62294a599376b9a8cf7d3eb348df210741f7ce477284f545d6ec285a3b10af985a4635cf13f9e08da3dae8db2a73311f9f16825a6ff142ecb1459cf88c90cae678a39870a9d7a0a99a5facba8bf54bbc8501be6a7367da9c15c6cf6e29b26ce19717f3545280c6be63ad907cb0c846a50a035064435c72a8a686163fcace92eea9b8e6d03ae6ac84f0724b1d5ace9954654b8c9d920d78b4bd3a7d9007336b8681fa8c8f6606d06328628b003795e171e5372de53c37cd3c7f67e22429444d9463855285e5d565b7a8d72a30f03104d98527a208f324fa18fdc379856a3f33c3c782a435d6a2c4bb3aaacfd9de95aaaabfea8617f6623a674a47b0a9e3d728e22826a0a8829a67fd1cce5e7d272dae233f53aeaf0509ce7b39461de870bf522930cf42e6d', NULL, '2019-11-05 04:01:59', '2019-11-05 04:09:37'),
(66, NULL, 2, 'Android Tester', 'Android Tester', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/ZScX50uG7h0Y438ubtEg.png', '', 'A', '789456280000', '11/11/1989', '$2y$10$QWcv8mhZsWiqVMgJQmG59OrzdQq6lMZJklEYH2ucAYsj8UFS3OX5i', '1,2,', '1,2,', '66ES0', 'This is a Android Tester.vhdhdhdjndnndndn', 2, 1, 1, 2, '0', '1', '', '', NULL, 'def50200a3be9c7bdc22af6662f6baeee0c77017f5ad71e7b16d03c52e23c6a841aaf6442952f2a730482e6b4705c3b036a7283fde408d60fc72d2d5adfbfb66536f9c5b882b5bcd16842f86c367fc27ad3263fca722a499d22bfaf2b318935311917c54083243859d96ecb424b4477f9d581bf7b5c09a6b89fc2f9217878c836306583e7077342d904743f5ba462b859cd4a2d9526f40c2a983a71bef93ce5d007be3aa584301c59f4e4e88ec7d9381e898f2eace25f88dd27bd9d019485e34e860284efaa8eadffef3ef9dac43b9bebe1cb2bcced9117b811cc6042c2143bc1290b49842cd01b40f6c96a6021efab8705f88451799d98b83eacb52847e195ca1988daa5587add33a3e1df938110e8f61d35fc27cf2ffc5425015f356ff13822afdc22b394efba1937ba0dae4363cd8a366d568d05dadbce316349ec1961aec1dff8f4c7563750f021b6153b11d490c05071f7196d9ef89ebd678de60c60349f29647bdd9', '', '2019-11-11 09:23:16', '2019-11-11 10:22:06'),
(67, NULL, 2, '<NAME>', 'Hippo', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/nc7o0Bz2kv2kOtAk4PgX.png', '', 'A', '', '11/10/1977', '$2y$10$3N/3oAm7KyWXlurQLSn2kOTzMhyk6hFR3EP8V80bAGlzndAC.QXmq', '', '', '67LZ8', 'Test', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def502008d80fc822036cf72a1e7cc125b7f43d9fd4ed27114d0648ffb7f4f683af5def9b5621a88592925bb34ccbb682435f4192203f1aeb2bdec84abbcd4acff31fd19324305068a30f51e64fbc351494e2c2f442e2b8329988efd7d9ff470242e824980ef5e7d82f7b12990e78dedcbdf88092891d6a0ab5be84d318d8302c0619838729ea79e4be515f0b445b32fe8bf21aef2fa2bec3d0141decd1baa1b0e7f36621a4e3a28350be0f8384bd40e9a7f920dda60c7b7351a8bb213ac4595faf7936c60fe73c77deb1a10eb5d5c3ea4c5f794285bdce07902e7e3fcc818ee63839fb4e0d8afc0043d349145f24bc6b7dd1bbdccc70de5432d79c1be45be0d12ce0fe43d8d893f2f71e3173c243e65ef67cfe2d9e80c7b13b1b6ae5de01c59aeb24885a6a6228e86e28514c8c4c388695a811927d432931f9b6e69f655d7bcabbd47af95204a6457880e95dc799ab113ff3159fb4b316b1434ae2118752e9c99e57b330f', '', '2019-11-11 09:29:20', '2019-11-11 10:18:44'),
(68, NULL, 3, 'Nio ', 'Nio', '<EMAIL>', '123456', 'Normal', '', '', 'cAkEIX-XBYE:APA91bHhLs33DRtagR3dbi2YHB5x1SQ_-V0VwWWVGdW0phNVBpKR6JW5zbPkAZfJes6MN7VqR94fkNSGmXcTT6MeR9JHJZfGUESLSFVidJ7jh7WS9kXC9xQiWwHAYH07IBJRTioujVac', 'A', '987645434318', NULL, '$2y$10$6kj8inZzIAvf2z5vLYQfu.ovkeJXyTChn3p2eDYHZ2lB4TvcKGj52', '', '', '68HP4', 'Gababsn', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def502000fba4bd30227fd95d34e3fc094c2d9da9e22c24f5054e7c4661b3eaae1671b072b298ebec495c98c2deeac0587c76911fe06884167a88d9b48b717e3b4c7c6d8c4b26bf2e0741540e014d69a2fe9520e9d5c7144fc62d92ff583a1d941b384cd6c1281e0fd51593f3a0446aa02b0557409c0f5eddc1da775d9e452c97132260c978592526cdd97c4470b0d6c76eae6feb2f19c4c52c4df96f51cad87e8b8aa618bd352a48924e89c4e6dba035b9f6e25ffddd2c0fbe8496480d4e5c8ae731715e06f636595115a9ea778fe134b451a35f15a10e7805f62c8cff953c548785fa97f0c4b158b088a38665f37b5f3c4a5da1344a658c8bd7438f429cb20977b0a8ec6c1f88edf1ca8f598a7bce3822ec423e2713670e9487712e82779dc2d177b6c87d419cfb583b45d49542180fa0fae9409d544f3bc2796db3f90adaef21e6a1b7ddef563c1f9bc26f8167933756c727d5afece59f0ec5328a62f4dcd7179fb40a4', 'cAkEIX-XBYE:APA91bHhLs33DRtagR3dbi2YHB5x1SQ_-V0VwWWVGdW0phNVBpKR6JW5zbPkAZfJes6MN7VqR94fkNSGmXcTT6MeR9JHJZfGUESLSFVidJ7jh7WS9kXC9xQiWwHAYH07IBJRTioujVac', '2019-11-11 10:06:02', '2019-11-11 10:18:52'),
(69, NULL, 3, 'Bett', 'Bet', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/yfgZ25f420zjeJvfxTGy.png', '', 'A', '258435483855', NULL, '$2y$10$GP13mg3cMs4JM8tcUCS7Oe8wAHBQGiz0WSQ0DrGyBkDGtMY4zMn8i', '', '', '69PC1', 'H chcufufugfufughvycyc', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def502002a825685803d4be9d9187ddc97458744fabd06d552b081016ee71a14c9c9ec741fefeb4937b8a009e97c9fd0195e479b5738dbe41a006be19ed2207ac0bbfa2d441e942faa4d6ee66e6e2c04c2b43f7576b81aaf53397baefd0f1fb5a0fb63e8c65f80538fcce32bed753557694aa893a77d890814d10a5b242ac4d6079ae55a61a2d7e577a7ff52274abe892f7731cab08ebf6c42dc794d9fcfec7b76ec4bd7392301222b9b6e14440b834c9fe1fd747eca49d401ce418fa2259d2c332786c2f14da5c2b7253844b35637d1b0e33ffcbcfbec1cbbd0e713eabe6ae993fa6165c6025b9c3c8b96dd085cc359287c4b7f8f05aa91bcab83d4f491f545821763b78d459fc2f66c1fe1718177592978a71ea20b5f91366936d8566ba07221ef022f4bfe695ee74fafa97bd2aa7e8f7298a7e839c066ce7786c4558310f7bfd7f39992fb376a0b4f30c71d3d1dd4cbe552dd58571396b3a18a3775144fcc22914b9da5', '', '2019-11-13 04:57:44', '2019-11-13 05:46:43'),
(70, NULL, 2, 'USER 180', 'User18', '<EMAIL>', '<PASSWORD>', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/8mziNSJzbIT5yBg2aqFI.png', 'czQFuBRxmM4:APA91bGigde7aR-mA2sZ3JYrjUKiXsFxsRzFa8W0kAB59pUvtoDPGCfr0MkoOuxVAJqRvbBXVjXk4RG_1n2UG4-PIhZH6XyZ9B0EBJxfodC3q87YsgDGTds1jBq8DUVbA5AnqmrbNiav', 'A', '+41258583866', '11/13/1996', '$2y$10$Jq4i/kGCy1KrTQkShFLVrefAiwYVS1qeSLotcbzjw7iD6uPu4NYNO', '1,2,', '1,2,3,4,5,', '70OD8', 'Test', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def502005788a2f6e499d49d1a89f3fd7ae3db15c38766df3810df8986708727dd9eba31a9be798522341e6a94de0e6ab2e31cdbd6d6ef7e270cde72d68d22ea52956493388c8b20967367c58dcbd613ce997ba13cfd5017c39de3afecd4806d900eea048d1cff97bd1c3883db70003657e02a9a58936ec777a4d799a21d3318dcf47caa8721b5dede019d9d09df92e54b4a5de9ff723cf1d6a93874a366133a530815264c70d5315f8e6ca244cc781d74dfa749ce32d2b53e1618fff3aad43b02efe78e639344b5a83a36b9dfb82ddd010a000cfc5953bdee99a868ba83d969be61ff2ba5ea8bc49bb8e557a7f0685c6bedf0af3222960e2ae21a7b97e36b31a1d2812fe464721977928b7b0fbb03ec497334d90692c9fc34d340f5ecb633779db83165f83b48af2ad5f06a01419fd0f2dc3b797b02a62522708d2137e7d09641dd6a839f73d385eebe84809ae52c3ffba04b71415e8e92a476a642e694b4c273ea3c7831', 'czQFuBRxmM4:APA91bGigde7aR-mA2sZ3JYrjUKiXsFxsRzFa8W0kAB59pUvtoDPGCfr0MkoOuxVAJqRvbBXVjXk4RG_1n2UG4-PIhZH6XyZ9B0EBJxfodC3q87YsgDGTds1jBq8DUVbA5AnqmrbNiav', '2019-11-13 04:58:51', '2019-11-13 12:58:36'),
(71, NULL, 3, 'Sevenn', 'Seven', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/qSYayxL32jvGqBBUNyUR.png', '', 'A', '95656859975', NULL, '$2y$10$XPKcCDloTDrnIxHL1ZTVPe0KCXTuEGdLfB9gwAJLitspjZxc25F1S', '', '', '71TN5', 'Dbbxbxxb', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def50200ef3786655bbd69fb4a936c55e8f7fc9baac0548788ab6ceba8ceb6d10c127c37920502cf8fcfe516d5d3c18a106ac11fe7b4327125da470c6b0b3dbe32b0836a1dafb8da2e44d6bacd8026596b579431f92336530bd1b14efd0743f1c121ee4b76b3c9b4da8a83fe0a67c0fe19edb5731a2c7096758be3f81ae85655b0ebb0d8b43b137681f107f9159f5913358b9f560165d070a7491bbac0f2e1bd3628e5f384c570147b544a859e481582cd6ce4b5623687938f9a78136160f77ebebf41d654affc49eea6e9c1501b4a96e6145c5da3741c82010aa90511e0c21e3a0ae9319d5b851b01b54f040dab10654b6bea6377a7463c2b5f725419b03c6d72eac986af1dc192931593033fb1b8331f9dd91219aef88f6286be542d7ebea6875a4cbe4f6f850aa3c571d6647cedb799ffe2b044ffabf86ee68905a46e745c05c922bac95de85ce4fb450954c138562d64ca742320ffcb121a96d4e3d96deaa623929aa5', '', '2019-11-13 10:58:57', '2019-11-13 13:33:50'),
(72, NULL, 2, 'Eagle User', 'Eagleuser', '<EMAIL>', 'qwerty', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/UmUR4MCOm3ScVsN93zHg.png', 'dXxOXnHBXZk:APA91bHqp1FXulvfS9BNfbiONqs_YpKZaB9wxqI5YN7g2dZM-D-LGb3URrSRxCWQMXA4o-6mCy6ocEc9carNOMzY_kA29psl-h_pgCvI0_au0mTnYTIQPN-YdXvcl_SMM4L1UVcPQIPY', 'A', '68888885558', '11/01/1996', '$2y$10$ThrCbm6AyT9kqXWW7Nf8S.C4VwN2DbmA1REcoIZ1mRtkZKYxIls7S', '1,2', '0,1,2', '72VX0', 'Tester is here to test events.', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def50200793536a6f0be12f1f4b6eaa0c59c3c9ed05e21f9972da4623bf6c7bfbaef35b0920698bfd47c992d1fe08ef6c94c374b48220e0b08320d14b35f8f44f5084293ef63feb434444d872f7506aad689c7add3b0cf7d920da40d6da2e728b1ac006389757b4ff0b35c8ab42d7a3f1e16825530fceecfb4f7450f9fe566cb568bb6e789b8a037dccf4a25b240dcb661cecb57ca9a71041b52121aa61f3fce23c45ab8091052571f30040ed246662e409d2f3d9a5e5e68f8e7070ac745bba23f7ed1109d9d2c51ee3a93ebd3449f748f2935137d18d66d808863f8e4f2534cde0403a758fc992087123cb44053eb4422e42724c98fb8d3c1f867a2ac8875ef67c026f933b367f4cd7914ab7ea85f68ebf99dbae6590cc0a12a43105d13771c3230f26e81edcf54a9aba930a7367570280443be946fe647378a7caae2272a77ad7c23d5da7580818a43381b2d0e7fdf1bb4555259e67efe8e2d3ed50dde29bd5954b292cd', 'dXxOXnHBXZk:APA91bHqp1FXulvfS9BNfbiONqs_YpKZaB9wxqI5YN7g2dZM-D-LGb3URrSRxCWQMXA4o-6mCy6ocEc9carNOMzY_kA29psl-h_pgCvI0_au0mTnYTIQPN-YdXvcl_SMM4L1UVcPQIPY', '2019-11-13 11:02:19', '2019-11-13 07:08:03'),
(73, NULL, 3, 'Live Org ', 'Liveorg', '<EMAIL>', 'qwerty', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/KTVhKDe1Kc6no9X1piaT.png', '', 'A', '949656565665', NULL, '$2y$10$ZhzQPRPxRN0sQ2fGzivA6OkJXFY4OHwfIXGS/v5sZTqRIJqz.GuR.', '', '', '73IG5', 'Ghfhuhvv hdhhd dhjdj dhjd djid djjd djjd djjd djfj', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def502007cf1bbd802f94eed05c16e717e2696a8c882386949935c62d552f5e2fadac176894b67910c4703c7a3e65b91161180cab93dbe7657aa552f83dc2b8c300e22f070136d3fb545a278fae11bdfad1b435a94516d801f4fc72d15fa75a52fe0cf9f8bd6ae71b126be1642286d3e36c419871d08bbf9448cf0bc31a1ad6af94f2bd4dd61fe6bd2f5722cab7bbb5b6de8c9579625778e22920fc2bce1a597cc7e83cbf8d34f6d81ad3a68ca8e4f3140274065ab46b21fe2aa419a7314ebe14ab43cc6139fe387ed9b3002f1340c83cc5a1bb3969bacaa5fa46d6e344cd02254b19accddcd985bef545f3f0803a8fe511a397866f2a85df33ad4c6d4e33e923d6f685443c51c5df328112747e1087ae570efb609397cd58f9db9a945abaf9b982c7d85adb875b461a75c923f11e70af7a447620cba4f04732695dede04f57804867a4d20f04075efd838c5ef2ee7405e81a5103bc81540f7715a947240dada5a6c3a0f85', '', '2019-11-14 10:10:58', '2019-11-14 10:29:54'),
(74, NULL, 2, 'Live Test', 'Livetest', '<EMAIL>', '<PASSWORD>', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/BwQ2fJMCb9Z1IWiZq6QB.png', 'cfsAgBz5ozE:APA91bErN_gN5cduDc2oYh4fgYGD7KLmHPo4JCFQ8jlWIpOaMW_z4loHX1DrpGicHbIdhuLkY8Ncl1ELYLvB6IQkl5SyDTt7UAl2_o3q4Gr6_oYAE1zbglJyvQaa3RdgEMrmfZd0eIVS', 'A', '88856888886', '11/14/1998', '$2y$10$pMDe60QMANB/rIAnERPDFuWTirlcxiMhlSKvD10PsffKCNk3JVrMK', '1,2,', '1,2,3,', '74AF3', 'I am a new user', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def502004f2f8c1ed36c2473222fbec06ded93269ab8dac88f97fd14738737170d87e06a33ff0038d2d4eb5438f4dc5de96d01b7043f083373f3ad31ede3d20947cfe6757d3cb934d24f7e341c3eaedff6f8cc9cd85cd44d5c7880c33cdbccc6bd72755a8a6201456ea6c7357cfc423c5aa4d9815a4995c024b5cb4fcfec2dc9c5ce7130ce64a9e044f086d0b11bd98a89504d58d9402ed08b2c035b62679d8de8738389c128b20f28c9bf7fb6068ff9ecd81dccdca70a31925a33b98049898410d9e42b316357d086b8caef23a5ae615ac78dc4154d4ca8d66ebfadecf6b2502f8d767b72194ed69c7742ad365db02d13092e3a2e161b919c45a4a9acbe5d1ad9ea0fa98cde1f78610551bb487e5d260930959365808b064e214defdfec103308bb08fa7deaf97a30ef3ec28ce0293b64768f9afb5aed92cd53ace3a411a15bc9e4f6d5a7d9d98963580f0f1bbeb3a977a79dcf15865785badccc671ac17b85ac48aa1026', 'cfsAgBz5ozE:APA91bErN_gN5cduDc2oYh4fgYGD7KLmHPo4JCFQ8jlWIpOaMW_z4loHX1DrpGicHbIdhuLkY8Ncl1ELYLvB6IQkl5SyDTt7UAl2_o3q4Gr6_oYAE1zbglJyvQaa3RdgEMrmfZd0eIVS', '2019-11-14 10:11:44', '2019-11-14 10:30:06'),
(75, '74AF3', 2, 'Regi Last', 'Regi', '<EMAIL>', 'qwerty', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/1r3v3iIVFQRFBoNVPvbX.png', 'fCvdHQTE9ZE:APA91bEWBk34f_P9Q4QvISoRJwShzVofSectp7sfYuPF51voqRZ-TDzQOxjJ__tiZkSuhtSkjGpDASEO_ZnPUVbzyL__6ALjAtTZjGDxZv0HBD2uxD_bCEmolzvp-R1g1UYfGuBDsLJ6', 'A', '8986888588', '11/07/2003', '$2y$10$YOtP63YtLPnVrA7MAg.Ok.thhgyx8EvRAucQZ4.vg69.sImiA7BoG', '1,2,3,', NULL, '75IH7', '', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def502003c986a1123aa78c9fe2e0cd1fb31cfad93963e7ba59a802a7763d19f02105b30d3373f3e7e5a26c512d3f762a2d417a3ec86668b124c8e73385047a3d01048ead844e1a146826f72c4ac5fffe6d0704c5dc8b133e6b58e48cfb01ac85d330fd7f73410febc01632a7a227c356b1256cba9312f6ee5d559b943eda23b7a96916a2b7f33289e77048e0e9b72a62fbf54bec7af06f8523658b3836e4f9cfeb95425dfc03eca5d60761f06ebc83a3fda496730d91539660f2a7c5f30fd2ca489e95ca6b0ae2ae37084b202d21a9d4b2e120538c94f94c49656de8804f080be2f3d48a0735152c8ebe8dc5e1ec08cf5d20a4de4734ad306c5f5eeb879ba8a8846f2dd6493e6080cd406042e73217188951e2fd43e3d5900ab4a44b85ac777a6aeb3f610d6ccb58ef3cab5b08430218b110784bb55a7a1700063df17910db830dbe1e014c58259bbaa82c56914b7bcdd54bf1f8ec0eaa86b976a855fec322c0c008c1875', 'fCvdHQTE9ZE:APA91bEWBk34f_P9Q4QvISoRJwShzVofSectp7sfYuPF51voqRZ-TDzQOxjJ__tiZkSuhtSkjGpDASEO_ZnPUVbzyL__6ALjAtTZjGDxZv0HBD2uxD_bCEmolzvp-R1g1UYfGuBDsLJ6', '2019-11-14 10:18:10', '2019-11-14 10:18:54'),
(76, NULL, 2, '<NAME>', '', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/EBHYcDCU41PhWGGiLPxF.png', 'asdsad', 'A', '4567893210', '25', '$2y$10$snNm678zVjr5G5z7yCp09OLB8JUE2zXHKQ2U6ZMIo.seGbBWLYxc2', '', '', '76VS7', '', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def50200d5e27d517ccc4bd1bf3553618fcacce21a7ccd710fdddeb0cc148470b8973de6b03d8348ebd3a8da78c4f65cafdeeca097aa9113547818bcd90292f912f8ae8639719befa5852c5c8be492a3c95f6c66e6e9475790641ee66d55276a9605bf102b06b5b44cc3c6df8bd95848c6e05ac278b2bf7a7e5b22b5377cfe6b2c86ada579571d0c71d4961164aef2bfc856acb414056f5e201ea47e8ad13af98fefaf5de362bfd0c002e7e45c78b4d9c9747b73c4b7d58a9733b4380c51c66aa9344a5b1b4f71ad6d6f93d5d8ffa2e2e186f5049737ba05c8261e3effdc81babe01bb5b829296ad0acb615540fb933d022ceb7b2a7621dbd2fda38e0adbff3101677c0068d9a261f8eccc76dcaaedef1a15a3fa4e80e61a17440df714eddca9a22ca7476ae6508a3d7917f6265733b3a9647a36ccb994f2618f9568dac3bb0ac5dd6cb521f39651f0d5dc29255ab1d359864e201f11b0d1fe72e6711d6ab798c5a56d8ec6', NULL, '2019-12-06 06:38:24', '2019-12-09 11:42:06'),
(77, NULL, 3, 'Billi', 'billi', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/OZ62gkA0QxrT3uoJrTG5.png', '', 'I', '68525865860', NULL, '$2y$10$CHZul5Ph0hJ09doN06.bKeMKyoWZ0IPr.VygXOyXRs3A6VkzdkGwG', '', '', '77UL1', 'Gfucgichj jvj h vg u hh ig cig hug. Hcjcjv vj hhv jv guyfx vhstryfxvvugcvj jc Tu. Ufuffu jg jugccguj. Ufuf jgcjcucgi ig Ufuffu Gucci hgcgucgucugcgugucugc vhh fh ccch Hchc gcitifufxvjvj icghictxu vhhj Bhopal kvivoh khivhkb vhohvougovoivvohvvhoh I igicj vic', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def50200dda77aaab42dc6b3bbcd643feffae7ec8dadbe9e9a54709867bd373a88a435e5d86440c43a6249deb558a79698fab51edd46afcab80e2058ef503e04319fc15e5caf20ff3d25dc9ef23dcd576f80ecaf6e217b2b08c4d1f6390e2ec295db1840b576390d904621a63701390383eb31fc29c1cf60f094f213644753f809ecf077858700c363ea70b0685ecbbd8acc47c6364bf854853958f48b1aa2053819d5994512a0ccf8e168372a68efe145fdb490505f09c851c3fc76496687f8011e8a999299bcd65d3884d55c35966bd0d01ed6b815ae123753c24b30969656490b11c256aa26af73511a21ad8ac7c4f12defad68f462a16aa1560acb8c01fde2133fa5c30c737dbdc4f9aadf830bcd05a81b00cb96561868fa77405e1bec9464e605fbdb3c03906c4910cede719f8c2501c55123865e8f3d0dc85b8774fba2f8d5e225b4ca423be565d20dace21163168f84a78542c74c05209f9763234e577eabd22581', '', '2019-12-06 12:00:12', '2019-12-06 08:19:13'),
(78, NULL, 2, '<NAME>', 'jennifer1', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/YSrZxWr5zY81LX9g2yxq.png', '839A5E184BA7AF538373480F83B318BFC2EA6268444A21FC5219C1C217122424', 'I', '65656955966', '06-12-1994', '$2y$10$/dZCRmIXE6clhjiR86/aKO/iuSlyJ5zBTbwuutJj/el7gBJUff.Ly', '2,3,5,4', '1,2,5,3,4', '78RD2', 'Cycle Gucci get', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def502005f893bf07c1148c2e718452015a07e77310891b5d5f5549be8d55c50a132e3c2258a468e9f2f50ba131e20464136e5f7e25f91495a23ea1c0d37881a0926b88aec638cd8f9f8256807ff5d366d73166db0b271f2a3f266526206557e7ecaae7a9ca7fbb42f500be637ce0ec476452281d76ee902683d994b00d47b36787b094debdd76b728a0951865c14a856d588c666b4fa5f1afe3b3d2e126fa1ae66093cb0b5cec7de1743252c8f05ca3991ed24b742f38e66478a5f962b46c4c72a3ef3451b4173c9298392eddf6f170269eb0ba4d97f17ae1b5cb7eb84fa51050cd8700282c069f2241e562e1383b6377f66df8976930cda2675352546c9899565149a4f20a60352ceb3d9e5f44e79ddc8ce4b8e650d216c5d7afb8c505a582cc901293bbc9bd05582c2e10bfcee118e2e1f7a5c8e7aba6858926938fb688e400e098b4338d0ccfe8dc38a7c6e54c3b36ac6c986841ee5c6c9a7c94d9e8c67c11a715d55e', 'dx9zyJf8UkQ:APA91bEsw8B-CGRCkK-3kBWpopS_GZTSFKDOj_r5S4lwLUW88qvqB7mFMAmJIdssSIEzJnN9Cb5G_MMoABjIUS69YSzD9GaeGPyRaL08Q0KX1sI7TIvc81nG_AMk94y09e7BuVIWyJaR', '2019-12-06 12:37:06', '2019-12-07 11:40:07'),
(79, NULL, 2, '<NAME>', 'tina', '<EMAIL>', '', 'Facbook', '979904542186157', 'https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=979904542186157&height=200&width=200&ext=1578229154&hash=AeT9Y4baHtqQ16T2', '9EE6F169F953E9AE6BF7630C82B2A71DCED4B18FD8D47DFB2CBB9B9D4AEF9102', 'I', NULL, '06-12-2003', '', '', '1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23', '79AF7', 'Dhd d djdjd sh d dbd djdjd', 2, 1, 1, 1, '0', '1', '', '', NULL, '', '', '2019-12-06 12:59:39', '2019-12-06 13:49:16'),
(80, NULL, 2, '<NAME>', 'terry', '<EMAIL>', 'qwerty', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/80_LDYjWnibtdLMDC6W1CJ8.png', '25D3A801174C890D1255324AB5CDEFA64D62C7160ED9AE0F39975D9D0BB97A8C', 'I', '455866586369', '38', '$2y$10$uOICu2cJRYp8t9ZMCJVxdue0xhw9jCH7cC73TxzIfnzCwln9r1K/O', '1,2', '1,5', '80NR2', 'Chjjgfxjgcgj', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def5020082a2f7d56f75d29c182b383357d28deab1f46428c0ae4f559311e3ae8ed3077374ff52fc3a57e00547ae0fb52b8ce0db76a7eaa3db9edb2f261a43deafac91e2389612fe69cc6e9d216be24c8094e314853021968b1a7ef3e15460ac75f90f18d33df5386e409eea1b8b83233a8825d85fc393141bd7b7fc8486451f4d3bd67440689ba3ae97cc771253673b630e9a6900dd3c63132789b978e3127cd61b15f336ec564df639067b11c9e2eb541c65e0b157db4f49e103317861b40c91455aebbe55be5b81d1714c2bd30667bf02201063c2686aa23872198873fb6ffc48929b024e8bb4ffd54d3a363f1cb9cd08ff9f0c474c4b9c2e9b22e8f37a1226065d40aa6602ecfb36581a01ebe737b2e70f76baabfed4e5b9da76e055a636ed98fd585ba0baf785c6618f21380cd8897e7b17886b9c8a6a041c3b4ee5297ea56fe4d577b3cdc471e30da6e44881f422f881b5756a17a12f2b2075ce661fc209e4ca9e20', 'dX_AzgbH9qk:APA91bGvVafU-Gj_bVZXLgcIx6PFGUZPQnIZXzNweDXB0K2l6u9MD5kSUmYic9ehmOBlFOrqEPZe_muhxFe14plMH5lsCism__8VW_mcPBoOipde8NiIJCwMoNi4FuaU9pI2fFVmRElF', '2019-12-06 15:09:58', '2019-12-06 16:28:21'),
(81, NULL, 3, 'Yellow', 'yellow', '<EMAIL>', '1234567', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/alD1XHjQqLnKIHpJcfqR.png', '', 'I', '998861236225', NULL, '$2y$10$lfDxZyn1yRuORcDH8LXgMutGp1QyPzK.EMbBtFmglgVfmKbX46.B2', '', '', '81ZY0', 'Idgidg jvj Vivi. Boycott vn I j', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def50200f0dbc3e38e03d5f558f600ff4e8d541eb7660194ee5cdb09faa21548f81de228f614e7ce5147f043c60023f955ad9099434ac38f27a856d3be4edeff4d8b4a7986ccda8fd1440d7d87fc2465fbea7252aa89738efbb97fc2f2d5dc73aa4731308f442e10aaeed2a17d5e0fc9c8e691a3e924b47a4475dee87f5a00d097cde089a24683766d598795db706c353c40159d69b8ab52f804f59a9b523ac9bd745ddf8dedad77bedfe6e0c1b8d19f53e3dfadf1cac6eea798b8dd134e05dbd742f226a26c7c1eb40e673a8b1518d4e407986a651bc5a54e40a93e067c38d288deed968166fb7ea65bcd9a747eee95716fad49906a3d550af6cbfe6d085dd6c0df96f9d35611034e2f415866a2ec96c39692a1562e79c13703cde49f5df84af544923a7b5335f95914fe910583c729bd561e42b9810ec7d5d8cb93a652e9b2047a3ec412ab44f54520a21d1b6f6bae1285d3d55ee5ea776d2ba57d55b49f1836f5f1d35e', '', '2019-12-06 15:10:12', '2019-12-06 16:09:51'),
(82, NULL, 2, 'Biwi Login', 'biwi', '<EMAIL>', '1234567', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/cjTDCf24eIY30XpqKnqe.png', '', 'I', NULL, '06-12-2003', '$2y$10$NsRnqZIqQH0iL5vUSidCAeZwrmDoVbg9j3q7YjnOxgWJvEB6wnTtS', '', '1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23', '82VL1', 'Test test test test', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def50200ad8183d78dddd59fa6f7f5241592c52389b08ef8d7a5b7058dfbeeac55630c40e0f6c7f2667038c1e8bb2d658a5cb285a69e3fb8ba5c4c0e9155a1fe7f55fb1731858a386b03ac5df3a7344a65ff635ec5b92b65ba880cb2ccc7ff7e4433e529110e8af446dfe1b8246a64208729a8aec73d197c06a8d9f46aa864aa10f7f0af37f445b4186616b490c97bfb32240679fb9869f9399d8054065fa8230623f9781697617f3f1d063fb61367498504b311468b6410bdbaf6752541b880e48a085a90d603b8b363fb58edd327346bfb9c78851da92bc15918e249875cf248a7bf1155675a51c46cbbae1a6cb1bcd6d68e4df4690be1ef55e262b7083017cb008f5fec968ee8c59543340eb48c2a7a41ec9fa46673d2892e3a92ff4ea59dac6ca135a253d58e4b7bde8a10d8325ce4782475b5980b42fa95ade9da2960b85a140d8062c16abadade9d67e25a456251ac6bb15674adebb4c6eef45eca01e3dadc1eb48d', '', '2019-12-06 15:59:50', '2019-12-06 16:08:39'),
(83, NULL, 2, 'TestDeft Ty', 'task', '<EMAIL>', '', 'Twiter', '1145652856743010304', 'https://pbs.twimg.com/profile_images/1145652958962413568/_8dFlIDq_normal.jpg', '', 'I', '', '06-12-2000', '', '1', '6,3', '83RO1', '', 2, 1, 1, 1, '0', '1', '', '', NULL, '', '', '2019-12-06 16:13:32', '2019-12-06 16:23:40'),
(84, NULL, 3, 'Pldnb ', 'jdjdnd', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/UDqAqfQUFhmrMGggZQYN.png', '', '', '256869685858', NULL, '$2y$10$RDxdU/Hu9Zh3VoCvZnRfYOckdd7LeTNZgjtRykiDm12ctw0VAGfLK', '', '', '84QI6', 'Good chic h', 2, 2, 1, 1, '0', '1', 'rALSesXjm1DBSoTxkbeJG15tZExw1IAcH5DWzU5T', '', NULL, 'def50200e2cb02fac80cff7bccafc77dc64f4101002637dc58e040b50ba1123492bd91081f32fe7d7a59394f424eea911d8939693fe26de772a1854392dce98fe9270f517ea36a37bcba38800d9ca5571c35ccbfdc08bf407a62f83781805c0188a26f8cac0c156d61db91f975dfb778ec51b5c589bd1f8a4ba59d0bd6670ee8015045d4ba2eeaef8d308ec49c23b287f92d197fe206f65afc71646e7cab1e5f390cd36f42045c2717ecdfe970625982f9918dd051f3ef30684684b84300ece969d1bb325be3a5801004df6acc01d164d5cf23c1f1ec728761285a3231d7553acd8fab02f0fda81f15582a284028930f5d0d825952ea40f576606cb2a8f87af2b2209b07db1f7796eeae0e15e6adfcd56cb8800d35df1f00fbe24941faedd013f1bd05dc7a829b4f64d3f5ca5c415111392dbd1b32a2d122ee698f0305a21078fd493d505c07a0927af5bba2a8f55e047fed2a44e3939c0d69c8ddc58ec8f690aed007f4b4', NULL, '2019-12-06 16:25:26', '2019-12-06 16:25:27'),
(85, NULL, 3, 'Rite', 'rite', '<EMAIL>', '123456', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/qmuGVTekoNHrrFtJqPi5.png', '', 'I', '24842484554', NULL, '$2y$10$1MhyCe3dhcIIPI/XAiHOfu7sARzRywWi77iLBbApZi0Klc6naPo1G', '', '', '85MI1', 'Hdhdhd xbxbx bkbdbxbdbdbdbdhdbhdhhdbddbhdhhdhdh', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def502003290883faa8f77f2687a8d8c6eec6959eba360b3f5aaa4946cd1b427391fe6c3d1c0c0f5b4758b09138436a8349796f71f0e63ff08fbc4e5c73135602f70dfde1691cd00146b8d552c8714a6b5c0686405ad53473ab3035f2678606734a4040f25113a5234c51ca7c43a22b9f8762c8235b81102cdcf5875b4a3849191c73fc06d4995fc351631f58afa502cc5842d6acb62d33c6d3a7e0f689ef77f8080d6c7c6cfa02708477d255cbbabda2e8481cb08ceacffebc81ebac0d6aa7d1873a497be71ea9e9f4331d1d51af2e33b0c6d6bdb85b0c9b7b782941b9db97275c2fc4e5be7f3af57a3fa231b325c99c699d2a983022e64613cab4caf926b7e2e53b8028831d4fc9aaf97627685724258936dbbfd0f7143701c997ed90f929dfdd5bf09bd67cd98b99d45d1e2b6379aa06aaf9110c4f77032f66b1857541e7bb521a14566d39ab9cd1929de74ab6ddb157bb9093fd6ddeeea945e6c02883abc5fd282cfbf', '', '2019-12-07 10:35:26', '2019-12-07 10:50:15'),
(86, NULL, 2, '<NAME>', 'asma', '<EMAIL>', 'qwerty', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/bdIJQw3SiZDSWloiaDAO.png', '7B9CAA0DAC0BE21BEA838B4ECBAB6749181A29E506B579FDFC49F69DD1232B45', 'I', '396716548446', '04-12-2003', '$2y$10$hFr7N.JsPBEu1avOP7UdUObTqYmF.cgvKLMSMCmRk0Tfd0z8G5VZm', '1,2', '1,2,3,4', '86QY3', 'Bdehje zhdjdj zisjxkrbr shhshd hddjdbshshdh hshshhd shhshhhs hshsh hshshsh zuhssjs djdjd', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def5020028b6c26b2481da0618bbc6604eeb708e7e87dc11c2a54fc551c8a5c75241a9bf120aabfac8ce072d9479c15464f6edd9be134273908538adaa4dc8dd78fb2f399bb146f15ebbd6f62381f34bc2d286596c6dd657601130a7caef5b0b1d8f140a6efe93f39f15cd4a88379689e1a113decc0e39d680f6d7f74dcf0a38c89404b943b1e2c3d0458efbcdf8af4dfeb0f33f9b2f932dfa8081d0f1204486db41b1165950b9b59c726458d38a9b124f62cbd1399de7a9ce40b037380a767c88a30b9fad320cfb3541e733ea948b66a44eec6e30827c6215dcf9e4d6b6de21a0b902c60574b89307f4494572288afe054065fcd79fb66dc5a96c6728d38ac909178e3c82871ae746eba20f89396563109dc4f4607a0fcb038355b36dc38cc3bfd8c3970cfc76d9c4b7183e14b6c215e038e98035f710b562ec55c3f89fdd685afb8c4b0c4af5a17b0bbeb6faded50e9a3e2e8c55b1c3dd204f4aaf11155daa72ba91dc7c', 'f4T6IBX9VS0:AP<KEY>', '2019-12-07 10:35:28', '2019-12-07 10:36:28');
INSERT INTO `users` (`id`, `refferal_user_code`, `role`, `name`, `user_name`, `email`, `visibsle_pwd`, `social_signup_type`, `social_id`, `image_url`, `device_token`, `device_type`, `phone_number`, `age`, `password`, `music_interest`, `public_interest`, `refferal_code`, `about_me`, `blockStatus`, `status`, `age_status`, `notification_status`, `stripe_customer_id`, `is_deleted`, `email_verification_token`, `reset_password_token`, `remember_token`, `refresh_token`, `firebase_token`, `created_at`, `updated_at`) VALUES
(87, NULL, 2, '<NAME>', 'monika', '<EMAIL>', 'qwerty', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/MQVtaXvP5K3PazTccQdT.png', '61AE9352D5262B884DAA8826BF47B96AA7CE078D50E235D9D3D1CA8CB35B86DC', 'I', '6434648565494', '07-10-2003', '$2y$10$cXD8wEnToiMFo1lP8ZhNQOzprO0xe6OSOmTAnP5YvzrqDNZ8kENKG', '2,1', '1,2', '87LB2', 'Jsieke idndjd dines is jsjd jsjd jsjd jfjfr I djjd djjd fj jsjd jsjd hdhddh hdhdh jjj jjjsbdhd djdbdbdb', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def50200599eb19f84985c567ecd001938ca9777070715b456b8bfcde4e484b963ec6abde08349a7768659b4516e7796e67fb91c1a5c1f6d07fcb80a1108b2e63bdf7b0b9e13cde33fb4d742be797dd0b5f73a460ac1232166b6efe085c25c96c4046403d9c4c5f6dccf7e16d59b8301c40ecf5a7867b62f224ccddd4f2c4172167468c7bbe43554f3a72623731825d7eaca9acf086be0de51fd806ecf1cddf023d3a378e43009d54b5b38b2009df12fdcc4d4ae9cb4a025070e1930dc78136f07eea1a30861e1a2951a33f3fd428a3c630f18a904d1911effcc341b70870135a67d8315f86318cdc1e673cc2915d2404f32cb88d53ae3de70b18ca0e3ded957a9ff7e7fb44070d9ec29b1f342a9bbe5d659511c2d41501750b2e609f0e22779cc6a088f724a574b881d5b1b0596ecd723db5dd47c9ebfda8740fec88024c3ec07ae8f8337a6feedee528525ec98089f851e310fff97d919d11f40a66701136d2513f3da7e', 'ch774Cps4I8:APA91bFrkjlJ-sTkg5_KZzQDfA-FIshd7pmNllzOfit_li7atCg289it6UKBlHzXrra6b3YNk-qV-jWjWBc0swqM4YNRZE_WVeX1Qo71In6siF3BnUlvDgqMSGsVjT3BquuRrwGaHBkq', '2019-12-07 11:18:19', '2019-12-07 11:22:58'),
(88, NULL, 3, 'Mudra', 'mudra', '<EMAIL>', '<PASSWORD>', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/f5iBti9GUl1yUc0H3h2x.png', '', 'I', '958632272835', NULL, '$2y$10$JgiTLSpdnMOA/Cbwl4c55.L1MfLWfaQRocSVS5vqYt0Xhar4Fy4Zu', '', '', '88NP8', 'Hiccoughs yfihoc yuvicyuvivcoy ityibiycoh hovfiyvhk ujguhbon jjjiho ibigugfybohi jkbib', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def50200f4bae77ebe2b62844ed46ad27c4671124ceae9a16a066d147c6e2c654ecf4dcc8d9d9a47f91e3fdd1baa1caa871361df8e6cd488ad59961599e37860c878bff80ccf3c37b26107daff6c9c6139883df2ca06355ac97a412c4b133923292fc0dbc050e6cf25af912be8e785dbab632ed50265c4f069d45e8174e92f02c37f107c188bde31c4e2d36fe40b83ab8c9019d4bdc1463c2de2e7e5c2628c5daf015a2abfe66646b5d2e70310d6c1b43a050b6933ee4226b639d6ccc35167b8ad07b6fa6bcd10f83fd0bd64c610f5466f14af3d81dbda2e6ef4a804216dad1002afad7e7e36c2f1cca2ef074b22e3dc12669c9d0a5eaa71396c2509690867b08b1534b21734a2f4806f71e397e253bdf33e06aed834e6ed71c55446e605efc206932ed40e6fef5492fbbbac09eed31291beb1fea180c8a1777df0d3344138877925d6378b9ee4cae663c5bdba1cc2ec7ae21316c54b49e4c19b744db7255bfde7c2d70857', '', '2019-12-07 11:20:40', '2019-12-07 11:33:22'),
(89, NULL, 3, 'Dev ', 'Dev', '<EMAIL>', 'qwerty', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/R1JA68FIGTEyA5cLWbH6.png', '', 'A', '89563555600', NULL, '$2y$10$AJvvljVeOBW8iyrdW/NtDe8PXv516B6JDNN8JcHdbO0F/8xkQFVtS', '', '', '89IL3', 'This is a new motivation application', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def50200ded9d06aa2b84539e0cf8e2d7d737d840bb9072404f72460a58df0f218821182cf94a8b10d4d8704b89389f4b400623af191518bab9af8ec9dc4cc8b2b206214b15738db1c16fe64fcad84f469b43284a01d9e3f91ebcb50b5faab46f025d90b9516bbbde16caef406bc837b62656c64e7f030c009b76cb2479aa679e34c1c030ebd793bc962d49cc2bff083e0130b1a8b1a8754cef280f1c2e637fc994962ed0638c7f0c3575da7002b0a959b1604292fc2604ac3d99dd99f834e0c0549f3db744b0d489b4dca513a45cb7823675147b137cb54446f1291f288cadc02d99c49ab741fe0fa5ae646cb9b30689b138331a14087f1fc7319a7f11414f77039484b6f36aa6e81b4488d8da62054491b686a7e65a346781caee079e8966424d1374e6e472a24cb3bc9395d84e423606dab701be0491bf2d53e41c5327f52bdf50b9740874f82053086b0fb152fbbe5e76ce350d88a14910e314a0a0d52b9ad6237b5d0', '', '2019-12-09 07:23:18', '2019-12-09 09:46:37'),
(90, NULL, 2, 'Deck Last', 'Deck', '<EMAIL>', 'qwerty', 'Normal', '', 'http://192.168.3.76/sim_new/storage/app/public/user_images/H9tY6HIHLBlXbsBjFM7g.png', 'edqn5jXn2nk:APA91bHqAnH66X250zukva4dtSm_yJtD698nf-zOuhq83I0NgP3tvr8MYwnF1SGisfHCSW34QNAXkUkvWOc4FEr7A1PWBNfBzy_Aos1bsixv6m0K_SfGPX960WelqB8qihKMefUhr11W', 'A', '9998888866', '12/01/1993', '$2y$10$FvtqjrUQ74Zji4iBoeblPeS2A1037b82e5qL6ibm0/llwcZzhSdSu', '1,2,3,', '1,2,3,', '90LX7', 'How I am a new user.. .', 2, 1, 1, 1, '0', '1', '', '', NULL, 'def50200eb390c65a95b9abf0f5200e2dd9c13fbd5a3b5480f47830efcaa11e83af8b6ffac327fa37b8c14f478713f3cd317cb84260bd694d34ea8304bede413aa4b5c0e4b9b2f4dc6320aaa3263b713676a915e7bdeb5e84d13e318f253532f52e03dcaea95f9d10a23ce2a09b62a4e5f7d5f184bfaec2f0072f55c0859dd043516e016c5820c029aab12fa087d636327fce167fcd2e534b1b62ccb1fd103c8515358efefec3089ddc523dc36c74533740ffc3e130a16ebdbc52f8ad44adfa0c891866d810802ba86335cab23b757d4583f8c20126b44cc67812ed627709bbeda57fffe17dc00850babbf131323aec3b999e98dba70e4fcc13a9729148e0c1974ce01842e2e4b7a269335e7c24afb81580eaae1d4032071c04c7d86ccbe8510ac8ce7bb6c71b0d08cd258a54fa8ba997af5b41329f9852cd9d3fe4e42c244e11775c5253371602c45e6b682949b989135b6efd7072919589011534dda4f1b9b41a1c9ca06', 'edqn5jXn2nk:APA91bHqAnH66X250zukva4dtSm_yJtD698nf-zOuhq83I0NgP3tvr8MYwnF1SGisfHCSW34QNAXkUkvWOc4FEr7A1PWBNfBzy_Aos1bsixv6m0K_SfGPX960WelqB8qihKMefUhr11W', '2019-12-09 07:35:30', '2019-12-09 09:55:10');
-- --------------------------------------------------------
--
-- Table structure for table `users_install`
--
CREATE TABLE `users_install` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) 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 `user_cards`
--
CREATE TABLE `user_cards` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`card_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`stripe_card_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`created_at` datetime NOT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `user_music_interest`
--
CREATE TABLE `user_music_interest` (
`id` int(11) NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`music_interest_id` int(11) NOT NULL,
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `user_music_interest`
--
INSERT INTO `user_music_interest` (`id`, `user_id`, `music_interest_id`, `created_at`) VALUES
(1, 3, 1, '2019-09-09 07:05:01'),
(2, 3, 2, '2019-09-09 07:05:01'),
(3, 3, 3, '2019-09-09 07:05:01'),
(4, 3, 4, '2019-09-09 07:05:01'),
(5, 3, 5, '2019-09-09 07:05:01'),
(6, 3, 6, '2019-09-09 07:05:01'),
(7, 3, 7, '2019-09-09 07:05:01'),
(8, 3, 8, '2019-09-09 07:05:01'),
(9, 3, 9, '2019-09-09 07:05:02'),
(10, 3, 10, '2019-09-09 07:05:02'),
(11, 3, 11, '2019-09-09 07:05:02'),
(12, 3, 13, '2019-09-09 07:05:02'),
(13, 3, 14, '2019-09-09 07:05:02'),
(14, 5, 1, '2019-09-09 12:58:27'),
(15, 5, 2, '2019-09-09 12:58:27'),
(16, 5, 3, '2019-09-09 12:58:27'),
(17, 5, 4, '2019-09-09 12:58:27'),
(18, 5, 5, '2019-09-09 12:58:27'),
(19, 5, 6, '2019-09-09 12:58:27'),
(20, 5, 7, '2019-09-09 12:58:27'),
(21, 5, 8, '2019-09-09 12:58:27'),
(22, 5, 9, '2019-09-09 12:58:27'),
(23, 5, 10, '2019-09-09 12:58:27'),
(24, 5, 11, '2019-09-09 12:58:27'),
(25, 5, 13, '2019-09-09 12:58:27'),
(26, 5, 14, '2019-09-09 12:58:27'),
(28, 10, 4, '2019-09-10 04:40:03'),
(29, 11, 1, '2019-09-10 05:02:41'),
(30, 12, 1, '2019-09-10 10:35:45'),
(31, 9, 2, '2019-09-10 05:19:57'),
(32, 14, 1, '2019-09-10 06:35:36'),
(33, 18, 2, '2019-10-04 07:49:10'),
(34, 18, 3, '2019-10-04 07:49:10'),
(35, 51, 1, '2019-11-04 06:14:17'),
(36, 51, 2, '2019-11-04 06:14:17'),
(37, 51, 3, '2019-11-04 06:14:18'),
(38, 51, 4, '2019-11-04 06:14:18'),
(39, 51, 5, '2019-11-04 06:14:18'),
(40, 51, 6, '2019-11-04 06:14:18'),
(41, 51, 7, '2019-11-04 06:14:18'),
(42, 51, 8, '2019-11-04 06:14:18'),
(43, 51, 9, '2019-11-04 06:14:18'),
(44, 51, 10, '2019-11-04 06:14:18'),
(45, 51, 11, '2019-11-04 06:14:18'),
(46, 51, 13, '2019-11-04 06:14:18'),
(47, 51, 14, '2019-11-04 06:14:18'),
(61, 60, 1, '2019-11-05 07:43:42'),
(62, 60, 2, '2019-11-05 07:43:42'),
(63, 60, 3, '2019-11-05 07:43:42'),
(64, 62, 1, '2019-11-05 09:18:29'),
(65, 62, 2, '2019-11-05 09:18:29'),
(66, 62, 3, '2019-11-05 09:18:29'),
(67, 66, 1, '2019-11-11 14:53:16'),
(68, 66, 2, '2019-11-11 14:53:16'),
(69, 72, 1, '2019-11-13 16:33:16'),
(70, 72, 2, '2019-11-13 16:33:16'),
(71, 74, 1, '2019-11-14 15:41:44'),
(72, 74, 2, '2019-11-14 15:41:44'),
(73, 75, 1, '2019-11-14 15:48:10'),
(74, 75, 2, '2019-11-14 15:48:10'),
(75, 75, 3, '2019-11-14 15:48:10'),
(76, 78, 2, '2019-12-06 18:07:06'),
(77, 78, 3, '2019-12-06 18:07:06'),
(78, 78, 5, '2019-12-06 18:07:07'),
(79, 80, 2, '2019-12-06 20:39:59'),
(80, 80, 1, '2019-12-06 20:39:59'),
(81, 83, 1, '2019-12-06 21:43:32'),
(82, 86, 1, '2019-12-07 16:05:29'),
(83, 86, 2, '2019-12-07 16:05:29'),
(84, 87, 2, '2019-12-07 16:48:20'),
(85, 87, 1, '2019-12-07 16:48:20'),
(86, 90, 1, '2019-12-09 13:05:31'),
(87, 90, 2, '2019-12-09 13:05:31'),
(88, 90, 3, '2019-12-09 13:05:31');
-- --------------------------------------------------------
--
-- Table structure for table `user_public_interest`
--
CREATE TABLE `user_public_interest` (
`id` int(11) NOT NULL,
`public_interest_id` int(11) NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `user_public_interest`
--
INSERT INTO `user_public_interest` (`id`, `public_interest_id`, `user_id`, `created_at`) VALUES
(25, 1, 3, '2019-09-09 07:05:00'),
(26, 2, 3, '2019-09-09 07:05:00'),
(27, 3, 3, '2019-09-09 07:05:00'),
(28, 4, 3, '2019-09-09 07:05:00'),
(29, 5, 3, '2019-09-09 07:05:00'),
(30, 6, 3, '2019-09-09 07:05:00'),
(31, 8, 3, '2019-09-09 07:05:00'),
(32, 9, 3, '2019-09-09 07:05:00'),
(33, 10, 3, '2019-09-09 07:05:00'),
(34, 11, 3, '2019-09-09 07:05:00'),
(35, 12, 3, '2019-09-09 07:05:00'),
(36, 13, 3, '2019-09-09 07:05:00'),
(37, 14, 3, '2019-09-09 07:05:00'),
(38, 15, 3, '2019-09-09 07:05:01'),
(39, 16, 3, '2019-09-09 07:05:01'),
(40, 17, 3, '2019-09-09 07:05:01'),
(41, 18, 3, '2019-09-09 07:05:01'),
(42, 19, 3, '2019-09-09 07:05:01'),
(43, 20, 3, '2019-09-09 07:05:01'),
(44, 21, 3, '2019-09-09 07:05:01'),
(45, 22, 3, '2019-09-09 07:05:01'),
(46, 23, 3, '2019-09-09 07:05:01'),
(47, 0, 5, '2019-09-09 12:58:25'),
(48, 1, 5, '2019-09-09 12:58:26'),
(49, 2, 5, '2019-09-09 12:58:26'),
(50, 3, 5, '2019-09-09 12:58:26'),
(51, 4, 5, '2019-09-09 12:58:26'),
(52, 5, 5, '2019-09-09 12:58:26'),
(53, 6, 5, '2019-09-09 12:58:26'),
(54, 8, 5, '2019-09-09 12:58:26'),
(55, 9, 5, '2019-09-09 12:58:26'),
(56, 10, 5, '2019-09-09 12:58:26'),
(57, 11, 5, '2019-09-09 12:58:26'),
(58, 12, 5, '2019-09-09 12:58:26'),
(59, 13, 5, '2019-09-09 12:58:26'),
(60, 14, 5, '2019-09-09 12:58:26'),
(61, 15, 5, '2019-09-09 12:58:26'),
(62, 16, 5, '2019-09-09 12:58:26'),
(63, 17, 5, '2019-09-09 12:58:26'),
(64, 18, 5, '2019-09-09 12:58:26'),
(65, 19, 5, '2019-09-09 12:58:27'),
(66, 20, 5, '2019-09-09 12:58:27'),
(67, 21, 5, '2019-09-09 12:58:27'),
(68, 22, 5, '2019-09-09 12:58:27'),
(69, 23, 5, '2019-09-09 12:58:27'),
(70, 1, 7, '2019-09-09 10:43:02'),
(71, 2, 7, '2019-09-09 10:43:02'),
(72, 3, 7, '2019-09-09 10:43:02'),
(73, 4, 7, '2019-09-09 10:43:02'),
(74, 5, 7, '2019-09-09 10:43:02'),
(75, 1, 8, '2019-09-09 14:04:41'),
(83, 1, 10, '2019-09-10 04:41:43'),
(84, 2, 10, '2019-09-10 04:41:43'),
(85, 3, 10, '2019-09-10 04:41:43'),
(86, 4, 10, '2019-09-10 04:41:43'),
(88, 0, 12, '2019-09-10 10:35:45'),
(89, 1, 15, '2019-09-10 06:36:06'),
(90, 2, 15, '2019-09-10 06:36:06'),
(91, 3, 15, '2019-09-10 06:36:06'),
(92, 4, 15, '2019-09-10 06:36:06'),
(93, 1, 17, '2019-09-17 19:41:02'),
(94, 2, 17, '2019-09-17 19:41:02'),
(95, 4, 17, '2019-09-17 19:41:02'),
(96, 1, 19, '2019-10-04 09:23:10'),
(97, 2, 19, '2019-10-04 09:23:10'),
(98, 1, 24, '2019-10-04 11:24:24'),
(99, 3, 24, '2019-10-04 11:24:24'),
(100, 4, 24, '2019-10-04 11:24:24'),
(101, 5, 24, '2019-10-04 11:24:24'),
(102, 1, 31, '2019-10-04 14:12:05'),
(103, 1, 43, '2019-10-30 19:02:13'),
(104, 2, 43, '2019-10-30 19:02:13'),
(105, 3, 44, '2019-10-30 19:14:16'),
(106, 4, 44, '2019-10-30 19:14:16'),
(107, 3, 47, '2019-10-30 19:50:06'),
(108, 4, 47, '2019-10-30 19:50:06'),
(109, 1, 48, '2019-11-04 05:18:50'),
(110, 2, 48, '2019-11-04 05:18:50'),
(111, 4, 48, '2019-11-04 05:18:51'),
(112, 4, 52, '2019-11-04 06:17:03'),
(113, 8, 52, '2019-11-04 06:17:04'),
(114, 1, 53, '2019-11-05 04:42:50'),
(115, 3, 53, '2019-11-05 04:42:50'),
(116, 1, 55, '2019-11-05 04:57:47'),
(117, 2, 55, '2019-11-05 04:57:47'),
(118, 4, 55, '2019-11-05 04:57:47'),
(119, 1, 58, '2019-11-05 05:08:15'),
(120, 1, 62, '2019-11-05 09:18:29'),
(121, 2, 62, '2019-11-05 09:18:29'),
(122, 3, 62, '2019-11-05 09:18:29'),
(126, 1, 2, '2019-11-05 09:31:09'),
(127, 5, 63, '2019-11-05 09:39:46'),
(128, 8, 63, '2019-11-05 09:39:46'),
(129, 10, 63, '2019-11-05 09:39:46'),
(130, 0, 66, '2019-11-11 14:53:16'),
(131, 1, 66, '2019-11-11 14:53:16'),
(132, 2, 66, '2019-11-11 14:53:16'),
(133, 2, 70, '2019-11-13 10:28:52'),
(134, 1, 70, '2019-11-13 10:28:52'),
(135, 3, 70, '2019-11-13 10:28:52'),
(136, 0, 72, '2019-11-13 16:32:55'),
(137, 1, 72, '2019-11-13 16:33:06'),
(138, 2, 72, '2019-11-13 16:33:15'),
(139, 1, 74, '2019-11-14 15:41:44'),
(140, 2, 74, '2019-11-14 15:41:44'),
(141, 3, 74, '2019-11-14 15:41:44'),
(142, 0, 75, '2019-11-14 15:48:10'),
(143, 1, 78, '2019-12-06 18:07:06'),
(144, 2, 78, '2019-12-06 18:07:06'),
(145, 5, 78, '2019-12-06 18:07:06'),
(146, 1, 79, '2019-12-06 18:29:39'),
(147, 2, 79, '2019-12-06 18:29:39'),
(148, 3, 79, '2019-12-06 18:29:39'),
(149, 4, 79, '2019-12-06 18:29:39'),
(150, 5, 79, '2019-12-06 18:29:39'),
(151, 6, 79, '2019-12-06 18:29:39'),
(152, 8, 79, '2019-12-06 18:29:39'),
(153, 9, 79, '2019-12-06 18:29:39'),
(154, 10, 79, '2019-12-06 18:29:39'),
(155, 11, 79, '2019-12-06 18:29:39'),
(156, 12, 79, '2019-12-06 18:29:39'),
(157, 13, 79, '2019-12-06 18:29:40'),
(158, 14, 79, '2019-12-06 18:29:40'),
(159, 15, 79, '2019-12-06 18:29:40'),
(160, 16, 79, '2019-12-06 18:29:40'),
(161, 17, 79, '2019-12-06 18:29:40'),
(162, 18, 79, '2019-12-06 18:29:40'),
(163, 19, 79, '2019-12-06 18:29:40'),
(164, 20, 79, '2019-12-06 18:29:40'),
(165, 21, 79, '2019-12-06 18:29:40'),
(166, 22, 79, '2019-12-06 18:29:40'),
(167, 23, 79, '2019-12-06 18:29:40'),
(168, 1, 80, '2019-12-06 20:39:58'),
(169, 5, 80, '2019-12-06 20:39:59'),
(170, 1, 82, '2019-12-06 21:29:50'),
(171, 2, 82, '2019-12-06 21:29:50'),
(172, 3, 82, '2019-12-06 21:29:51'),
(173, 4, 82, '2019-12-06 21:29:51'),
(174, 5, 82, '2019-12-06 21:29:51'),
(175, 6, 82, '2019-12-06 21:29:51'),
(176, 8, 82, '2019-12-06 21:29:51'),
(177, 9, 82, '2019-12-06 21:29:51'),
(178, 10, 82, '2019-12-06 21:29:51'),
(179, 11, 82, '2019-12-06 21:29:51'),
(180, 12, 82, '2019-12-06 21:29:51'),
(181, 13, 82, '2019-12-06 21:29:51'),
(182, 14, 82, '2019-12-06 21:29:51'),
(183, 15, 82, '2019-12-06 21:29:51'),
(184, 16, 82, '2019-12-06 21:29:51'),
(185, 17, 82, '2019-12-06 21:29:51'),
(186, 18, 82, '2019-12-06 21:29:51'),
(187, 19, 82, '2019-12-06 21:29:51'),
(188, 20, 82, '2019-12-06 21:29:51'),
(189, 21, 82, '2019-12-06 21:29:52'),
(190, 22, 82, '2019-12-06 21:29:52'),
(191, 23, 82, '2019-12-06 21:29:52'),
(192, 6, 83, '2019-12-06 21:43:32'),
(193, 3, 83, '2019-12-06 21:43:32'),
(194, 1, 86, '2019-12-07 16:05:28'),
(195, 2, 86, '2019-12-07 16:05:28'),
(196, 3, 86, '2019-12-07 16:05:28'),
(197, 4, 86, '2019-12-07 16:05:28'),
(198, 1, 87, '2019-12-07 16:48:19'),
(199, 2, 87, '2019-12-07 16:48:19'),
(200, 0, 90, '2019-12-09 13:05:30'),
(201, 1, 90, '2019-12-09 13:05:31'),
(202, 2, 90, '2019-12-09 13:05:31'),
(203, 3, 90, '2019-12-09 13:05:31');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `app_setting`
--
ALTER TABLE `app_setting`
ADD PRIMARY KEY (`id`),
ADD KEY `user_id` (`user_id`);
--
-- Indexes for table `block_users`
--
ALTER TABLE `block_users`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `bought_tickets`
--
ALTER TABLE `bought_tickets`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `chat_list`
--
ALTER TABLE `chat_list`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `check_in_tickets`
--
ALTER TABLE `check_in_tickets`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `comments`
--
ALTER TABLE `comments`
ADD PRIMARY KEY (`id`),
ADD KEY `user_id` (`user_id`);
--
-- Indexes for table `contact_us`
--
ALTER TABLE `contact_us`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `dress_codes`
--
ALTER TABLE `dress_codes`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `event_list`
--
ALTER TABLE `event_list`
ADD PRIMARY KEY (`id`),
ADD KEY `user_id` (`user_id`);
--
-- Indexes for table `event_music_interest_list`
--
ALTER TABLE `event_music_interest_list`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `event_public_interest_list`
--
ALTER TABLE `event_public_interest_list`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `event_reports`
--
ALTER TABLE `event_reports`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `event_schedule`
--
ALTER TABLE `event_schedule`
ADD PRIMARY KEY (`id`),
ADD KEY `user_id` (`user_id`);
--
-- Indexes for table `event_sub_admins`
--
ALTER TABLE `event_sub_admins`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `event_views`
--
ALTER TABLE `event_views`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `favourite_events`
--
ALTER TABLE `favourite_events`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `friends`
--
ALTER TABLE `friends`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `guests`
--
ALTER TABLE `guests`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `guest_list_name`
--
ALTER TABLE `guest_list_name`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `id_proofs`
--
ALTER TABLE `id_proofs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `invitations`
--
ALTER TABLE `invitations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `istagram_images`
--
ALTER TABLE `istagram_images`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `likes`
--
ALTER TABLE `likes`
ADD PRIMARY KEY (`id`),
ADD KEY `user_id` (`user_id`);
--
-- Indexes for table `messages`
--
ALTER TABLE `messages`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `music_interest`
--
ALTER TABLE `music_interest`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `notification_list`
--
ALTER TABLE `notification_list`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `oauth_access_tokens`
--
ALTER TABLE `oauth_access_tokens`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_access_tokens_user_id_index` (`user_id`);
--
-- Indexes for table `oauth_auth_codes`
--
ALTER TABLE `oauth_auth_codes`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `oauth_clients`
--
ALTER TABLE `oauth_clients`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_clients_user_id_index` (`user_id`);
--
-- Indexes for table `oauth_personal_access_clients`
--
ALTER TABLE `oauth_personal_access_clients`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`);
--
-- Indexes for table `oauth_refresh_tokens`
--
ALTER TABLE `oauth_refresh_tokens`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`);
--
-- Indexes for table `offline_guest_users`
--
ALTER TABLE `offline_guest_users`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `post_list`
--
ALTER TABLE `post_list`
ADD PRIMARY KEY (`id`),
ADD KEY `user_id` (`user_id`);
--
-- Indexes for table `public_interest`
--
ALTER TABLE `public_interest`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `repeat_intervals`
--
ALTER TABLE `repeat_intervals`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `subscribes`
--
ALTER TABLE `subscribes`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `test`
--
ALTER TABLE `test`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tickets`
--
ALTER TABLE `tickets`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `ticket_transactions`
--
ALTER TABLE `ticket_transactions`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users_install`
--
ALTER TABLE `users_install`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- Indexes for table `user_cards`
--
ALTER TABLE `user_cards`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `user_music_interest`
--
ALTER TABLE `user_music_interest`
ADD PRIMARY KEY (`id`),
ADD KEY `user_id` (`user_id`),
ADD KEY `music_interest_id` (`music_interest_id`);
--
-- Indexes for table `user_public_interest`
--
ALTER TABLE `user_public_interest`
ADD PRIMARY KEY (`id`),
ADD KEY `public_interest_id` (`public_interest_id`),
ADD KEY `user_id` (`user_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `app_setting`
--
ALTER TABLE `app_setting`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `block_users`
--
ALTER TABLE `block_users`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `bought_tickets`
--
ALTER TABLE `bought_tickets`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=232;
--
-- AUTO_INCREMENT for table `chat_list`
--
ALTER TABLE `chat_list`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;
--
-- AUTO_INCREMENT for table `check_in_tickets`
--
ALTER TABLE `check_in_tickets`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `comments`
--
ALTER TABLE `comments`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47;
--
-- AUTO_INCREMENT for table `contact_us`
--
ALTER TABLE `contact_us`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27;
--
-- AUTO_INCREMENT for table `dress_codes`
--
ALTER TABLE `dress_codes`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `event_list`
--
ALTER TABLE `event_list`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=87;
--
-- AUTO_INCREMENT for table `event_music_interest_list`
--
ALTER TABLE `event_music_interest_list`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=125;
--
-- AUTO_INCREMENT for table `event_public_interest_list`
--
ALTER TABLE `event_public_interest_list`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=235;
--
-- AUTO_INCREMENT for table `event_reports`
--
ALTER TABLE `event_reports`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `event_schedule`
--
ALTER TABLE `event_schedule`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1189;
--
-- AUTO_INCREMENT for table `event_sub_admins`
--
ALTER TABLE `event_sub_admins`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `event_views`
--
ALTER TABLE `event_views`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `favourite_events`
--
ALTER TABLE `favourite_events`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=182;
--
-- AUTO_INCREMENT for table `friends`
--
ALTER TABLE `friends`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38;
--
-- AUTO_INCREMENT for table `guests`
--
ALTER TABLE `guests`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
--
-- AUTO_INCREMENT for table `guest_list_name`
--
ALTER TABLE `guest_list_name`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `id_proofs`
--
ALTER TABLE `id_proofs`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `invitations`
--
ALTER TABLE `invitations`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=131;
--
-- AUTO_INCREMENT for table `istagram_images`
--
ALTER TABLE `istagram_images`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `likes`
--
ALTER TABLE `likes`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=78;
--
-- AUTO_INCREMENT for table `messages`
--
ALTER TABLE `messages`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `music_interest`
--
ALTER TABLE `music_interest`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;
--
-- AUTO_INCREMENT for table `notification_list`
--
ALTER TABLE `notification_list`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=169;
--
-- AUTO_INCREMENT for table `oauth_clients`
--
ALTER TABLE `oauth_clients`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `oauth_personal_access_clients`
--
ALTER TABLE `oauth_personal_access_clients`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `offline_guest_users`
--
ALTER TABLE `offline_guest_users`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `post_list`
--
ALTER TABLE `post_list`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49;
--
-- AUTO_INCREMENT for table `public_interest`
--
ALTER TABLE `public_interest`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT for table `repeat_intervals`
--
ALTER TABLE `repeat_intervals`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `subscribes`
--
ALTER TABLE `subscribes`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30;
--
-- AUTO_INCREMENT for table `test`
--
ALTER TABLE `test`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `tickets`
--
ALTER TABLE `tickets`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=45;
--
-- AUTO_INCREMENT for table `ticket_transactions`
--
ALTER TABLE `ticket_transactions`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=91;
--
-- AUTO_INCREMENT for table `users_install`
--
ALTER TABLE `users_install`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `user_cards`
--
ALTER TABLE `user_cards`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `user_music_interest`
--
ALTER TABLE `user_music_interest`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=89;
--
-- AUTO_INCREMENT for table `user_public_interest`
--
ALTER TABLE `user_public_interest`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=204;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `app_setting`
--
ALTER TABLE `app_setting`
ADD CONSTRAINT `app_setting_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`);
/*!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 */;
|
<gh_stars>0
CREATE DATABASE laravel;
USE laravel;
CREATE TABLE usuarios(
id INT PRIMARY KEY AUTO_INCREMENT,
nome VARCHAR(100)
);
INSERT INTO usuarios VALUES (null, 'Maria');
INSERT INTO usuarios VALUES (null, 'Pedro');
INSERT INTO usuarios VALUES (null, 'Amanda'); |
<filename>src/test/resources/sql/select/8826a6af.sql
-- file:rangetypes.sql ln:95 expect:true
select numrange(1.1, 2.2,'[]') - numrange(2.0, 3.0)
|
<reponame>Shuttl-Tech/antlr_psql
-- file:gist.sql ln:57 expect:true
explain (costs off)
select p from gist_tbl where p <@ box(point(0,0), point(0.5, 0.5))
order by p <-> point(0.201, 0.201)
|
DROP TABLE array_attrs;
|
SET 'auto.offset.reset' = 'earliest';
CREATE OR REPLACE STREAM user_locations
WITH (KAFKA_TOPIC='user_locations', FORMAT='JSON_SR')
AS SELECT rowkey as userid,
CAST(latitude AS DECIMAL(10,7)) AS latitude,
CAST(longitude AS DECIMAL(10,7)) AS longitude,
CASE
WHEN CAST(latitude AS DECIMAL(10,7)) BETWEEN 14.5467125 AND 14.5506089
AND CAST(longitude AS DECIMAL(10,7)) BETWEEN 121.045773 AND 121.0496694
THEN 'Bonifacio-West'
WHEN CAST(latitude AS DECIMAL(10,7)) BETWEEN 14.5453847 AND 14.5492811
AND CAST(longitude AS DECIMAL(10,7)) BETWEEN 121.0496694 AND 121.0535658
THEN 'Bonifacio-South'
WHEN CAST(latitude AS DECIMAL(10,7)) BETWEEN 14.5510185 AND 14.5549149
AND CAST(longitude AS DECIMAL(10,7)) BETWEEN 121.0497235 AND 121.0536199
THEN 'Bonifacio-North'
END AS area
FROM user_locations_raw;
|
<reponame>arenadata/kafka-adb-os<gh_stars>0
-- Update tests. Check that the whole sequence of extension updates can be applied successfully.
-- These tests do not require a Kafka instance. They can be run as common tests.
-- start_ignore
DROP EXTENSION IF EXISTS kadb_fdw CASCADE;
-- Prevent WARNINGs that ALTER EXTENSION may invalidate OPTIONs
SET client_min_messages = ERROR;
-- end_ignore
CREATE EXTENSION kadb_fdw WITH VERSION '0.5';
ALTER EXTENSION kadb_fdw UPDATE TO '0.6';
ALTER EXTENSION kadb_fdw UPDATE TO '0.7';
ALTER EXTENSION kadb_fdw UPDATE TO '0.8';
ALTER EXTENSION kadb_fdw UPDATE TO '0.9';
ALTER EXTENSION kadb_fdw UPDATE TO '0.10';
ALTER EXTENSION kadb_fdw UPDATE TO '0.10.1';
ALTER EXTENSION kadb_fdw UPDATE TO '0.10.2';
|
<reponame>bcgov/cas-ciip-portal<gh_stars>1-10
-- Verify ggircs-portal:tables/gas_001 on pg
begin;
select pg_catalog.has_table_privilege('ggircs_portal.gas', 'select');
rollback;
|
<reponame>betagouv/preuve-covoiturage
-- add new fields to aquisition error
ALTER TABLE acquisition.errors ADD COLUMN error_stage varchar(255) NOT NULL DEFAULT 'acquisition';
ALTER TABLE acquisition.errors ADD COLUMN error_attempt integer NOT NULL DEFAULT 1;
ALTER TABLE acquisition.errors ADD COLUMN error_resolved BOOLEAN NOT NULL DEFAULT FALSE;
|
select count(*) from nulls1 where not bool_0
44
|
<reponame>adrianmahjour/db2-samples
----------------------------------------------------------------------------
-- (c) Copyright IBM Corp. 2007 All rights reserved.
--
-- The following sample of source code ("Sample") is owned by International
-- Business Machines Corporation or one of its subsidiaries ("IBM") and is
-- copyrighted and licensed, not sold. You may use, copy, modify, and
-- distribute the Sample in any form without payment to IBM, for the purpose of
-- assisting you in the development of your applications.
--
-- The Sample code is provided to you on an "AS IS" basis, without warranty of
-- any kind. IBM HEREBY EXPRESSLY DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR
-- IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Some jurisdictions do
-- not allow for the exclusion or limitation of implied warranties, so the above
-- limitations or exclusions may not apply to you. IBM shall not be liable for
-- any damages you suffer as a result of using, copying, modifying or
-- distributing the Sample, even if IBM has been advised of the possibility of
-- such damages.
-----------------------------------------------------------------------------
--
-- SOURCE FILE NAME: tbast.db2
--
-- SAMPLE: How to use staging table for updating deferred AST
--
-- This sample:
-- 1. Creates a refresh-deferred summary table
-- 2. Creates a staging table for this summary table
-- 3. Applies contents of staging table to AST
-- 4. Restores the data in a summary table
--
-- SQL STATEMENTS USED:
-- CREATE TABLE
-- DROP
-- INSERT
-- REFRESH
-- SET INTEGRITY
-- TERMINATE
--
-- OUTPUT FILE: tbast.out (available in the online documentation)
-----------------------------------------------------------------------------
--
-- For more information about the command line processor (CLP) scripts,
-- see the README file.
--
-- For information on using SQL statements, see the SQL Reference.
--
-- For the latest information on programming, building, and running DB2
-- applications, visit the DB2 application development website:
-- http://www.software.ibm.com/data/db2/udb/ad
-----------------------------------------------------------------------------
-- create a base table
CREATE TABLE t (c1 SMALLINT NOT NULL, c2 SMALLINT NOT NULL,
c3 SMALLINT, c4 SMALLINT);
-- create a summary table
CREATE TABLE d_ast AS (SELECT c1, c2, COUNT(*)
AS COUNT FROM t GROUP BY c1, c2) DATA INITIALLY DEFERRED REFRESH DEFERRED;
-- create a staging table
CREATE TABLE g FOR d_ast PROPAGATE IMMEDIATE;
-- show the propagation of changes of base table to summary tables through
-- the staging table
-- bring staging table out of pending state
SET INTEGRITY FOR g IMMEDIATE CHECKED;
-- refresh summary table, get it out of pending state.
REFRESH TABLE d_ast NOT INCREMENTAL;
-- insert data into base table t
INSERT INTO t VALUES(1,1,1,1), (2,2,2,2), (1,1,1,1), (3,3,3,3);
-- display the contents of staging table 'g'.The Staging table contains
-- incremental changes to base table.
SELECT c1, c2, count FROM g;
-- refresh the summary table
REFRESH TABLE d_ast INCREMENTAL;
-- display the contents of staging table 'g'.NOTE: The staging table is
-- pruned after AST is refreshed.The contents are propagated to AST from
-- the staging table.
SELECT c1, c2, count FROM g;
-- display the contents of AST.
-- summary table has the changes propagated from staging table.
SELECT c1, c2, count FROM d_ast;
-- show restoring of data in a summary table
-- block all modifications to the summary table by setting the
-- integrity to off. (g is placed in pending and g.CC=N)
SET INTEGRITY FOR g OFF;
-- export the query definition in summary table and load directly back to
-- the summary table. (d_ast and g both in pending)
SET INTEGRITY FOR d_ast OFF CASCADE IMMEDIATE;
-- prune staging table and place it in normal state (g.CC=F)
SET INTEGRITY FOR g IMMEDIATE CHECKED PRUNE;
-- changing staging table state to U (g.CC to U)
SET INTEGRITY FOR g STAGING IMMEDIATE UNCHECKED;
-- place d_ast in normal and d_ast.CC to U
SET INTEGRITY FOR d_ast MATERIALIZED QUERY IMMEDIATE UNCHECKED;
-- drop the created tables
-- dropping a base table implicitly drops summary table defined on it
-- which in turn cascades to dropping its staging table.
DROP TABLE t;
-- disconnect from the database
CONNECT RESET;
TERMINATE;
|
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.6.18
-- Dumped by pg_dump version 12.3
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
-- The following line is auto generated by pg_dump and there is no option to disable it. Clearing search_path globally
-- will cause the sql queries in our implementation fail (relation not found). So comment it out.
-- SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Data for Name: transaction; Type: TABLE DATA; Schema: public; Owner: mirror_node
--
INSERT INTO public.transaction (consensus_timestamp, type, result, payer_account_id, valid_start_ns, valid_duration_seconds, node_account_id, entity_id, initial_balance, max_fee, charged_tx_fee, memo, transaction_hash, transaction_bytes, scheduled) VALUES
(1614921782071338000, 33, 22, 1744, 1614921769532637508, 120, 3, 2241, 0, 3000000000, 841446, '\x', '\xc3cef4e7f49694630a02e3dbfcc94e45cc983e5b2473592a4fe0eb3e89c5999dbb20aeeddcacd53dd92a79ec47fb459c', NULL, false),
(1614921782161292000, 33, 22, 1744, 1614921773011663869, 120, 4, 2242, 0, 3000000000, 841446, '\x', '\x477c8e2ab5e4b71d64f4133f6e698c48cec6d2d6fbad0ad0cf8d6173e72caba3f12a97c2fd22f72eb593b4d9a460bee2', NULL, false),
(1614921782161294000, 40, 22, 1744, 1614921773517191276, 120, 4, 2244, 0, 500000000, 67512675, '\x', '\x2845ad0e074eff6b8d247565eb858aa88363527c7d5051e6371c74757f7407fc9bb02dcb9276a93392067a8d9f9f1df3', NULL, false),
(1614921783067800000, 33, 22, 1744, 1614921773591634826, 120, 5, 2243, 0, 3000000000, 841446, '\x', '\x9e87db9afceed06a1606aab197f0977426d4ab187b3260aebf77e6c28042bc4e4102772c5456362ec375291c4dbe71c0', NULL, false),
(1614921783108126999, 42, 22, 1744, 1614921770052316061, 30, 3, 2249, 0, 100000000, 8252739, '\x', '\x7a37f4dfeb8108f46186f2c9fa726320a6cfed87164402f4933da5a54fa0f6230b4fb35bfcaac8ec76d136addefca890', NULL, false),
(1614921783115201999, 42, 22, 1744, 1614921773715345860, 30, 3, 2250, 0, 100000000, 8251462, '\x', '\xcd918868e7d83e0adf0c80a2d897e1b17c42088878fe9c558265ced63b608b9ce42b3c2377cbede484499388d20d5188', NULL, false),
(1614921783306481000, 33, 22, 1744, 1614921774919141411, 120, 5, 2244, 0, 3000000000, 841446, '\x', '\x1fe8254ed70cd2f84ad5aab455a98fcf68a67a949b1815aeeb48e15931299a6a2cf09b20fdc58104ff027e5df8ba80d2', NULL, false),
(1614921784299486999, 44, 22, 1744, 1614921774400989382, 120, 3, 2250, 0, 500000000, 1165895, '\x7468697320697320746f6b656e207472616e73666572207363686564756c65207472616e73616374696f6e', '\x4d57e56dbd89232559e824acbd7dc1d02da2a40df51bec2c6dd4258c0519f735840554b361d3954f7c54cf061401174c', NULL, false),
(1614921784299487000, 14, 22, 1744, 1614921773715345860, 120, 3, NULL, 0, 100000000, 12542, '\x', '\xacc53f000590bafa922d86122869bef1a26a71f19c2e9d675bb530b1b3a00a66dd7469d33d2f47f5274bd9f334cf5ba0', NULL, true),
(1614921784863107999, 42, 22, 1744, 1614921772342959302, 30, 3, 2251, 0, 100000000, 8252739, '\x', '\x5537c4a59aa617639d9fbabb204f9fe406fa019a9e30a75222c99721da6c17b1b7f6a9278c6c1858435dd2417433c0aa', NULL, false),
(1614921784998257999, 44, 22, 1744, 1614921775061190616, 120, 3, 2249, 0, 500000000, 1165895, '\x7468697320697320746f6b656e207472616e73666572207363686564756c65207472616e73616374696f6e', '\x4de36094177e671d7c5999523a74b13e8530ba17bdb523ea5a6f02693a374ef71340c25f8a12e8ff738a9fe8f4c8e2f0', NULL, false),
(1614921784998258000, 14, 22, 1744, 1614921770052316061, 120, 3, NULL, 0, 100000000, 12542, '\x', '\xa8cdb8b268acc00eb4dfffee04574407a69e76a8078427faaf6a4739fbd7559fefdeb9cbe373a9bdf5e2263eef03bfeb', NULL, true),
(1614921785067232999, 42, 22, 1744, 1614921776055499860, 30, 3, 2252, 0, 100000000, 8252739, '\x', '\x0b2d06b06e6a60c6dbc17833eb1e6e973582c022e0819619bb4474e3b04fb15d2cbbc9696afe83ff3dc960a888fbb1ae', NULL, false),
(1614921785873900999, 44, 22, 1744, 1614921774573127724, 120, 3, 2251, 0, 500000000, 1165895, '\x7468697320697320746f6b656e207472616e73666572207363686564756c65207472616e73616374696f6e', '\x9c191bdbf0aec8fda666e1c5c994fc0cbbd416e0092992449f96f959278d0e5ade6df167e15eac29d8f95dd8af515039', NULL, false),
(1614921785873901000, 14, 22, 1744, 1614921772342959302, 120, 3, NULL, 0, 100000000, 12542, '\x', '\x5a40dea6dfa2742d2555e92a02b4bd23be2730885bbfbb15d9570791c2575d3ad8a956e84df485845702cfddd0211f97', NULL, true);
--
-- PostgreSQL database dump complete
--
|
<reponame>nguyenppt/pubteller1<gh_stars>0
alter table [dbo].[BCOLLECTCHARGESFROMACCOUNT] add OldBalance numeric(18,2), NewBalance numeric(18,2) |
<reponame>krattai/AEBL<filename>blades/ejabberd/sql/mysql.sql<gh_stars>1-10
--
-- ejabberd, Copyright (C) 2002-2014 ProcessOne
--
-- This program is free software; you can redistribute it and/or
-- modify it under the terms of the GNU General Public License as
-- published by the Free Software Foundation; either version 2 of the
-- License, or (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-- General Public License for more details.
--
-- You should have received a copy of the GNU General Public License along
-- with this program; if not, write to the Free Software Foundation, Inc.,
-- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
--
CREATE TABLE users (
username varchar(250) PRIMARY KEY,
password text NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE TABLE last (
username varchar(250) PRIMARY KEY,
seconds text NOT NULL,
state text NOT NULl
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE TABLE rosterusers (
username varchar(250) NOT NULL,
jid varchar(250) NOT NULL,
nick text NOT NULL,
subscription character(1) NOT NULL,
ask character(1) NOT NULL,
askmessage text NOT NULL,
server character(1) NOT NULL,
subscribe text NOT NULL,
type text,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE UNIQUE INDEX i_rosteru_user_jid ON rosterusers(username(75), jid(75));
CREATE INDEX i_rosteru_username ON rosterusers(username);
CREATE INDEX i_rosteru_jid ON rosterusers(jid);
CREATE TABLE rostergroups (
username varchar(250) NOT NULL,
jid varchar(250) NOT NULL,
grp text NOT NULL
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX pk_rosterg_user_jid ON rostergroups(username(75), jid(75));
CREATE TABLE sr_group (
name varchar(250) NOT NULL,
opts text NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE TABLE sr_user (
jid varchar(250) NOT NULL,
grp varchar(250) NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE UNIQUE INDEX i_sr_user_jid_group ON sr_user(jid(75), grp(75));
CREATE INDEX i_sr_user_jid ON sr_user(jid);
CREATE INDEX i_sr_user_grp ON sr_user(grp);
CREATE TABLE spool (
username varchar(250) NOT NULL,
xml text NOT NULL,
seq BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_despool USING BTREE ON spool(username);
CREATE TABLE vcard (
username varchar(250) PRIMARY KEY,
vcard mediumtext NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE TABLE vcard_xupdate (
username varchar(250) PRIMARY KEY,
hash text NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE TABLE vcard_search (
username varchar(250) NOT NULL,
lusername varchar(250) PRIMARY KEY,
fn text NOT NULL,
lfn varchar(250) NOT NULL,
family text NOT NULL,
lfamily varchar(250) NOT NULL,
given text NOT NULL,
lgiven varchar(250) NOT NULL,
middle text NOT NULL,
lmiddle varchar(250) NOT NULL,
nickname text NOT NULL,
lnickname varchar(250) NOT NULL,
bday text NOT NULL,
lbday varchar(250) NOT NULL,
ctry text NOT NULL,
lctry varchar(250) NOT NULL,
locality text NOT NULL,
llocality varchar(250) NOT NULL,
email text NOT NULL,
lemail varchar(250) NOT NULL,
orgname text NOT NULL,
lorgname varchar(250) NOT NULL,
orgunit text NOT NULL,
lorgunit varchar(250) NOT NULL
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_vcard_search_lfn ON vcard_search(lfn);
CREATE INDEX i_vcard_search_lfamily ON vcard_search(lfamily);
CREATE INDEX i_vcard_search_lgiven ON vcard_search(lgiven);
CREATE INDEX i_vcard_search_lmiddle ON vcard_search(lmiddle);
CREATE INDEX i_vcard_search_lnickname ON vcard_search(lnickname);
CREATE INDEX i_vcard_search_lbday ON vcard_search(lbday);
CREATE INDEX i_vcard_search_lctry ON vcard_search(lctry);
CREATE INDEX i_vcard_search_llocality ON vcard_search(llocality);
CREATE INDEX i_vcard_search_lemail ON vcard_search(lemail);
CREATE INDEX i_vcard_search_lorgname ON vcard_search(lorgname);
CREATE INDEX i_vcard_search_lorgunit ON vcard_search(lorgunit);
CREATE TABLE privacy_default_list (
username varchar(250) PRIMARY KEY,
name varchar(250) NOT NULL
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE TABLE privacy_list (
username varchar(250) NOT NULL,
name varchar(250) NOT NULL,
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_privacy_list_username USING BTREE ON privacy_list(username);
CREATE UNIQUE INDEX i_privacy_list_username_name USING BTREE ON privacy_list (username(75), name(75));
CREATE TABLE privacy_list_data (
id bigint,
t character(1) NOT NULL,
value text NOT NULL,
action character(1) NOT NULL,
ord NUMERIC NOT NULL,
match_all boolean NOT NULL,
match_iq boolean NOT NULL,
match_message boolean NOT NULL,
match_presence_in boolean NOT NULL,
match_presence_out boolean NOT NULL
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_privacy_list_data_id ON privacy_list_data(id);
CREATE TABLE private_storage (
username varchar(250) NOT NULL,
namespace varchar(250) NOT NULL,
data text NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_private_storage_username USING BTREE ON private_storage(username);
CREATE UNIQUE INDEX i_private_storage_username_namespace USING BTREE ON private_storage(username(75), namespace(75));
-- Not tested in mysql
CREATE TABLE roster_version (
username varchar(250) PRIMARY KEY,
version text NOT NULL
) ENGINE=InnoDB CHARACTER SET utf8;
-- To update from 1.x:
-- ALTER TABLE rosterusers ADD COLUMN askmessage text AFTER ask;
-- UPDATE rosterusers SET askmessage = '';
-- ALTER TABLE rosterusers ALTER COLUMN askmessage SET NOT NULL;
CREATE TABLE pubsub_node (
host text,
node text,
parent text,
type text,
nodeid bigint auto_increment primary key
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_pubsub_node_parent ON pubsub_node(parent(120));
CREATE UNIQUE INDEX i_pubsub_node_tuple ON pubsub_node(host(20), node(120));
CREATE TABLE pubsub_node_option (
nodeid bigint,
name text,
val text
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_pubsub_node_option_nodeid ON pubsub_node_option(nodeid);
ALTER TABLE `pubsub_node_option` ADD FOREIGN KEY (`nodeid`) REFERENCES `pubsub_node` (`nodeid`) ON DELETE CASCADE;
CREATE TABLE pubsub_node_owner (
nodeid bigint,
owner text
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_pubsub_node_owner_nodeid ON pubsub_node_owner(nodeid);
ALTER TABLE `pubsub_node_owner` ADD FOREIGN KEY (`nodeid`) REFERENCES `pubsub_node` (`nodeid`) ON DELETE CASCADE;
CREATE TABLE pubsub_state (
nodeid bigint,
jid text,
affiliation character(1),
subscriptions text,
stateid bigint auto_increment primary key
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_pubsub_state_jid ON pubsub_state(jid(60));
CREATE UNIQUE INDEX i_pubsub_state_tuple ON pubsub_state(nodeid, jid(60));
ALTER TABLE `pubsub_state` ADD FOREIGN KEY (`nodeid`) REFERENCES `pubsub_node` (`nodeid`) ON DELETE CASCADE;
CREATE TABLE pubsub_item (
nodeid bigint,
itemid text,
publisher text,
creation text,
modification text,
payload text
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_pubsub_item_itemid ON pubsub_item(itemid(36));
CREATE UNIQUE INDEX i_pubsub_item_tuple ON pubsub_item(nodeid, itemid(36));
ALTER TABLE `pubsub_item` ADD FOREIGN KEY (`nodeid`) REFERENCES `pubsub_node` (`nodeid`) ON DELETE CASCADE;
CREATE TABLE pubsub_subscription_opt (
subid text,
opt_name varchar(32),
opt_value text
);
CREATE UNIQUE INDEX i_pubsub_subscription_opt ON pubsub_subscription_opt(subid(32), opt_name(32));
CREATE TABLE muc_room (
name text NOT NULL,
host text NOT NULL,
opts text NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE UNIQUE INDEX i_muc_room_name_host USING BTREE ON muc_room(name(75), host(75));
CREATE TABLE muc_registered (
jid text NOT NULL,
host text NOT NULL,
nick text NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_muc_registered_nick USING BTREE ON muc_registered(nick(75));
CREATE UNIQUE INDEX i_muc_registered_jid_host USING BTREE ON muc_registered(jid(75), host(75));
CREATE TABLE irc_custom (
jid text NOT NULL,
host text NOT NULL,
data text NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE UNIQUE INDEX i_irc_custom_jid_host USING BTREE ON irc_custom(jid(75), host(75));
CREATE TABLE motd (
username varchar(250) PRIMARY KEY,
xml text,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE TABLE caps_features (
node varchar(250) NOT NULL,
subnode varchar(250) NOT NULL,
feature text,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_caps_features_node_subnode ON caps_features(node(75), subnode(75));
|
<gh_stars>1-10
CREATE TABLE `exchange_orders` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`order_no` CHAR(25) NOT NULL COMMENT '原订单号',
`admin_id` INT(10) NOT NULL COMMENT '操作人',
`created_time` INT(10) UNSIGNED NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='换货订单'; |
--test least function with int and other type as its operands
select least(10, 'aaa') from db_root;
select least(10, n'aaa') from db_root;
select least(10, date'2/2/2002') from db_root;
select least(10, time'3:3:3 am') from db_root;
select least(10, timestamp'2/2/2001 2:2:2 am') from db_root;
select least(10, b'00101010') from db_root;
select least(10, {1,3}) from db_root order by 1; |
<gh_stars>0
USE employee_appDB;
INSERT INTO department (name)
VALUES ("Sales");
INSERT INTO department (name)
VALUES ("Engineering");
INSERT INTO department (name)
VALUES ("Finance");
INSERT INTO department (name)
VALUES ("Legal");
INSERT INTO role (title, salary, department_id)
VALUES ("Sales Lead", 100000, 1);
INSERT INTO role (title, salary, department_id)
VALUES ("Lead Engineer", 150000, 2);
INSERT INTO role (title, salary, department_id)
VALUES ("Software Engineer", 120000, 2);
INSERT INTO role (title, salary, department_id)
VALUES ("Accountant", 125000, 3);
INSERT INTO role (title, salary, department_id)
VALUES ("Legal Team Lead", 250000, 4);
INSERT INTO employee (first_name, last_name, role_id, manager_id)
VALUES ("Kimberly", "Hyde", 1, 3);
INSERT INTO employee (first_name, last_name, role_id, manager_id)
VALUES ("Deanna", "Sampson", 2, 1);
INSERT INTO employee (first_name, last_name, role_id, manager_id)
VALUES ("Luis", "Mackenzie", 3, null);
INSERT INTO employee (first_name, last_name, role_id, manager_id)
VALUES ("Ines", "Mac", 4, 3);
INSERT INTO employee (first_name, last_name, role_id, manager_id)
VALUES ("Ellise", "Briggs", 5, null);
INSERT INTO employee (first_name, last_name, role_id, manager_id)
VALUES ("Ewan", "Colt", 2, null);
INSERT INTO employee (first_name, last_name, role_id, manager_id)
VALUES ("Jaheim", "Maxwell", 4, 7);
INSERT INTO employee (first_name, last_name, role_id, manager_id)
VALUES ("Dylan", "Mora", 1, 2);
-- alternative
-- USE employee_appDB;
-- INSERT INTO role
-- (title, salary, department_id)
-- VALUES
-- ("sales lead", 2000, 123),
-- ("software engineer", 3000, 124),
-- ("lead engineer", 5000, 125),
-- ("accountant", 3000, 126),
-- ("lawyer", 5000, 127);
-- INSERT INTO employee
-- (first_name, last_name, role_id, manager_id)
-- VALUES
-- ("kimberly", "hyde", 246, 789),
-- ("deanna", "sampson", 257, 799),
-- ("luis", "mackenzie", 268, 812),
-- ("ines", "mac", 269, 813),
-- ("ellise", "briggs", 270, 814);
-- INSERT INTO department
-- (name)
-- VALUES
-- ("sales", "software", "finance", "law", "marketing"); |
-- MySQL dump 10.13 Distrib 5.7.26, for osx10.10 (x86_64)
--
-- Host: 127.0.0.1 Database: laraclassified
-- ------------------------------------------------------
-- Server version 5.7.26
/*!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 utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Dumping data for table `<<prefix>>subadmin1`
--
/*!40000 ALTER TABLE `<<prefix>>subadmin1` DISABLE KEYS */;
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.16','CU','Villa Clara','Villa Clara',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.15','CU','Santiago de Cuba','Santiago de Cuba',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.14','CU','Sancti Spíritus','Sancti Spiritus',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.01','CU','Pinar del Río','Pinar del Rio',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.03','CU','Matanzas','Matanzas',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.13','CU','Las Tunas','Las Tunas',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.04','CU','Isla de la Juventud','Isla de la Juventud',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.12','CU','Holguín','Holguin',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.10','CU','Guantánamo','Guantanamo',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.09','CU','Granma','Granma',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.02','CU','Havana','Havana',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.08','CU','Cienfuegos','Cienfuegos',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.07','CU','Ciego de Ávila','Ciego de Avila',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.05','CU','Camagüey','Camaguey',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.AR','CU','Artemisa','Artemisa',1);
INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('CU.MA','CU','Mayabeque','Mayabeque',1);
/*!40000 ALTER TABLE `<<prefix>>subadmin1` ENABLE KEYS */;
--
-- Dumping data for table `<<prefix>>subadmin2`
--
/*!40000 ALTER TABLE `<<prefix>>subadmin2` DISABLE KEYS */;
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.10.3503','CU','CU.10','Municipio de Yateras','Municipio de Yateras',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.14.2801','CU','CU.14','Municipio de Yaguajay','Municipio de Yaguajay',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.01.2104','CU','CU.01','Municipio de Viñales','Municipio de Vinales',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2509','CU','CU.03','Municipio de Unión de Reyes','Municipio de Union de Reyes',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.14.2806','CU','CU.14','Municipio de Trinidad','Municipio de Trinidad',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2611','CU','CU.16','Municipio de Santo Domingo','Municipio de Santo Domingo',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.15.3406','CU','CU.15','Municipio de Santiago de Cuba','Municipio de Santiago de Cuba',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.08.2704','CU','CU.08','Municipio de Santa Isabel de las Lajas','Municipio de Santa Isabel de las Lajas',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3013','CU','CU.05','Municipio de Santa Cruz del Sur','Municipio de Santa Cruz del Sur',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.MA.2404','CU','CU.MA','Municipio de Santa Cruz del Norte','Municipio de Santa Cruz del Norte',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2609','CU','CU.16','Municipio de Santa Clara','Municipio de Santa Clara',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.MA.2407','CU','CU.MA','Municipio de San Nicolás','Municipio de San Nicolas',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.01.2109','CU','CU.01','Municipio de San Luis','Municipio de San Luis',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.15.3403','CU','CU.15','Municipio de San Luis','Municipio de San Luis',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.01.2110','CU','CU.01','Municipio de San Juan y Martínez','Municipio de San Juan y Martinez',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2607','CU','CU.16','Remedios','Remedios',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.MA.2402','CU','CU.MA','Municipio de San José de las Lajas','Municipio de San Jose de las Lajas',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.14.2807','CU','CU.14','Municipio de Sancti Spíritus','Municipio de Sancti Spiritus',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.AR.2211','CU','CU.AR','Municipio de San Cristóbal','Municipio de San Cristobal',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.AR.2206','CU','CU.AR','Municipio de San Antonio de los Baños','Municipio de San Antonio de los Banos',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2603','CU','CU.16','Municipio de Sagua la Grande','Municipio de Sagua la Grande',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3213','CU','CU.12','Municipio de Sagua de Tánamo','Municipio de Sagua de Tanamo',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.08.2702','CU','CU.08','Municipio de Rodas','Municipio de Rodas',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2305','CU','CU.02','Municipio de Regla','Municipio de Regla',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2612','CU','CU.16','Municipio de Ranchuelo','Municipio de Ranchuelo',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.MA.2411','CU','CU.MA','Municipio de Quivicán','Municipio de Quivican',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2602','CU','CU.16','Municipio de Quemado de Güines','Municipio de Quemado de Gueines',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.13.3102','CU','CU.13','Municipio de Puerto Padre','Municipio de Puerto Padre',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2608','CU','CU.16','Municipio de Placetas','Municipio de Placetas',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.01.2108','CU','CU.01','Municipio de Pinar del Río','Municipio de Pinar del Rio',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2505','CU','CU.03','Municipio de Perico','Municipio de Perico',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2507','CU','CU.03','Municipio de Pedro Betancourt','Municipio de Pedro Betancourt',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.08.2703','CU','CU.08','Municipio de Palmira','Municipio de Palmira',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.15.3407','CU','CU.15','Municipio de Palma Soriano','Municipio de Palma Soriano',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3005','CU','CU.05','Municipio de Nuevitas','Municipio de Nuevitas',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.MA.2406','CU','CU.MA','Municipio de Nueva Paz','Municipio de Nueva Paz',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3309','CU','CU.09','Municipio de Niquero','Municipio de Niquero',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.07.2902','CU','CU.07','Municipio de Morón','Municipio de Moron',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.MA.2409','CU','CU.MA','Municipio de Melena del Sur','Municipio de Melena del Sur',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3211','CU','CU.12','Municipio de Mayarí','Municipio de Mayari',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2501','CU','CU.03','Municipio de Matanzas','Municipio de Matanzas',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2503','CU','CU.03','Municipio de Martí','Municipio de Marti',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.AR.2202','CU','CU.AR','Municipio de Mariel','Municipio de Mariel',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2311','CU','CU.02','Municipio de Marianao','Municipio de Marianao',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3306','CU','CU.09','Municipio de Manzanillo','Municipio de Manzanillo',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.01.2102','CU','CU.01','Municipio de Mantua','Municipio de Mantua',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.MA.2405','CU','CU.MA','Municipio de Madruga','Municipio de Madruga',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.01.2106','CU','CU.01','Municipio de Los Palacios','Municipio de Los Palacios',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2513','CU','CU.03','Municipio de Los Arabos','Municipio de Los Arabos',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2508','CU','CU.03','Limonar','Limonar',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.13.3105','CU','CU.13','Municipio de Las Tunas','Municipio de Las Tunas',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.01.2105','CU','CU.01','Municipio de La Palma','Municipio de La Palma',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2506','CU','CU.03','Municipio de Jovellanos','Municipio de Jovellanos',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3303','CU','CU.09','Municipio de Jiguaní','Municipio de Jiguani',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.14.2802','CU','CU.14','Municipio de Jatibonico','Municipio de Jatibonico',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.MA.2403','CU','CU.MA','Municipio de Jaruco','Municipio de Jaruco',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2511','CU','CU.03','Municipio de Jagüey Grande','Municipio de Jagueey Grande',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3206','CU','CU.12','Municipio de Holguín','Municipio de Holguin',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.AR.2207','CU','CU.AR','Municipio de Güira de Melena','Municipio de Gueira de Melena',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.MA.2408','CU','CU.MA','Municipio de Güines','Municipio de Gueines',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.10.3509','CU','CU.10','Municipio de Guantánamo','Municipio de Guantanamo',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.01.2111','CU','CU.01','Municipio de Guane','Municipio de Guane',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.AR.2203','CU','CU.AR','Municipio de Guanajay','Municipio de Guanajay',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2307','CU','CU.02','Municipio de Guanabacoa','Municipio de Guanabacoa',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3006','CU','CU.05','Municipio de Guáimaro','Municipio de Guaimaro',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3201','CU','CU.12','Municipio de Gibara','Municipio de Gibara',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.14.2805','CU','CU.14','Municipio de Fomento','Municipio de Fomento',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3009','CU','CU.05','Municipio de Florida','Municipio de Florida',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3002','CU','CU.05','Municipio de Esmeralda','Municipio de Esmeralda',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2604','CU','CU.16','Municipio de Encrucijada','Municipio de Encrucijada',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.08.2705','CU','CU.08','Municipio de Cruces','Municipio de Cruces',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2601','CU','CU.16','Municipio de Corralillo','Municipio de Corralillo',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.01.2107','CU','CU.01','Municipio de Consolación del Sur','Municipio de Consolacion del Sur',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2504','CU','CU.03','Municipio de Colón','Municipio de Colon',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2610','CU','CU.16','Municipio de Cifuentes','Municipio de Cifuentes',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.08.2707','CU','CU.08','Municipio de Cienfuegos','Municipio de Cienfuegos',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.07.2908','CU','CU.07','Municipio de Ciego de Ávila','Municipio de Ciego de Avila',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2502','CU','CU.03','Municipio de Cárdenas','Municipio de Cardenas',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.AR.2210','CU','CU.AR','Municipio de Candelaria','Municipio de Candelaria',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3307','CU','CU.09','Municipio de Campechuela','Municipio de Campechuela',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2605','CU','CU.16','Municipio de Camajuaní','Municipio de Camajuani',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3008','CU','CU.05','Municipio de Camagüey','Municipio de Camagueey',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.AR.2204','CU','CU.AR','Municipio de Caimito','Municipio de Caimito',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2606','CU','CU.16','Municipio de Caibarién','Municipio de Caibarien',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.14.2804','CU','CU.14','Municipio de Cabaiguán','Municipio de Cabaiguan',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.MA.2401','CU','CU.MA','Municipio de Bejucal','Municipio de Bejucal',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3304','CU','CU.09','Municipio de Bayamo','Municipio de Bayamo',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.AR.2205','CU','CU.AR','Municipio de Bauta','Municipio de Bauta',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.MA.2410','CU','CU.MA','Municipio de Batabanó','Municipio de Batabano',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.10.3504','CU','CU.10','Municipio de Baracoa','Municipio de Baracoa',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3203','CU','CU.12','Municipio de Banes','Municipio de Banes',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.AR.2209','CU','CU.AR','Municipio de Artemisa','Municipio de Artemisa',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3204','CU','CU.12','Municipio de Antilla','Municipio de Antilla',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.AR.2208','CU','CU.AR','Municipio de Alquízar','Municipio de Alquizar',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.08.2701','CU','CU.08','Municipio de Aguada de Pasajeros','Municipio de Aguada de Pasajeros',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.08.2708','CU','CU.08','Municipio de Abreus','Municipio de Abreus',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3207','CU','CU.12','Municipio de Calixto Garcia','Municipio de Calixto Garcia',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.01.2101','CU','CU.01','Sandino','Sandino',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.13.3106','CU','CU.13','Municipio de Jobabo','Municipio de Jobabo',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.13.3101','CU','CU.13','Municipio de Manatí','Municipio de Manati',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.13.3103','CU','CU.13','Municipio de Jesús Menéndez','Municipio de Jesus Menendez',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.07.2910','CU','CU.07','Municipio de Baraguá','Municipio de Baragua',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.07.2905','CU','CU.07','Municipio de Ciro Redondo','Municipio de Ciro Redondo',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.07.2901','CU','CU.07','Municipio de Chambas','Municipio de Chambas',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3301','CU','CU.09','Municipio de Río Cauto','Municipio de Rio Cauto',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.01.2103','CU','CU.01','Minas De Matahambre','Minas De Matahambre',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2314','CU','CU.02','Arroyo Naranjo','Arroyo Naranjo',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2313','CU','CU.02','Boyeros','Boyeros',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2303','CU','CU.02','Centro Habana','Centro Habana',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2310','CU','CU.02','Cerro','Cerro',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2315','CU','CU.02','Cotorro','Cotorro',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2309','CU','CU.02','Diez De Octubre','Diez De Octubre',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2306','CU','CU.02','La Habana Del Este','La Habana Del Este',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2304','CU','CU.02','La Habana Vieja','La Habana Vieja',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2312','CU','CU.02','La Lisa','La Lisa',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2302','CU','CU.02','Plaza De La Revolucion','Plaza De La Revolucion',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2308','CU','CU.02','San Miguel Del Padron','San Miguel Del Padron',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2512','CU','CU.03','Calimete','Calimete',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.03.2510','CU','CU.03','Cienaga De Zapata','Cienaga De Zapata',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3011','CU','CU.05','Jimaguayu','Jimaguayu',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3004','CU','CU.05','Minas','Minas',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3007','CU','CU.05','Sibanicu','Sibanicu',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3003','CU','CU.05','Sierra De Cubitas','Sierra De Cubitas',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3010','CU','CU.05','Vertientes','Vertientes',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.07.2903','CU','CU.07','Bolivia','Bolivia',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.07.2906','CU','CU.07','Florencia','Florencia',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.07.2907','CU','CU.07','Majagua','Majagua',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.07.2904','CU','CU.07','Primero De Enero','Primero De Enero',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.07.2909','CU','CU.07','Venezuela','Venezuela',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.08.2706','CU','CU.08','Cumanayagua','Cumanayagua',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3311','CU','CU.09','Bartolome Maso','Bartolome Maso',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3312','CU','CU.09','Buey Arriba','Buey Arriba',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3302','CU','CU.09','Cauto Cristo','Cauto Cristo',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3313','CU','CU.09','Guisa','Guisa',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3308','CU','CU.09','Media Luna','Media Luna',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3310','CU','CU.09','Pilon','Pilon',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.09.3305','CU','CU.09','Yara','Yara',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.10.3508','CU','CU.10','Caimanera','Caimanera',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.10.3501','CU','CU.10','El Salvador','El Salvador',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.10.3506','CU','CU.10','Imias','Imias',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.10.3505','CU','CU.10','Maisi','Maisi',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.10.3502','CU','CU.10','<NAME>','<NAME>',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.10.3510','CU','CU.10','<NAME>','<NAME>',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.10.3507','CU','CU.10','San Antonio Del Sur','San Antonio Del Sur',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3205','CU','CU.12','Baguanos','Baguanos',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3208','CU','CU.12','Cacocum','Cacocum',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3212','CU','CU.12','Frank Pais','Frank Pais',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3214','CU','CU.12','Moa','Moa',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.13.3108','CU','CU.13','Amancio','Amancio',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.13.3107','CU','CU.13','Colombia','Colombia',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.13.3104','CU','CU.13','Majibacoa','Majibacoa',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.14.2808','CU','CU.14','La Sierpe','La Sierpe',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.14.2803','CU','CU.14','Taguasco','Taguasco',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.15.3401','CU','CU.15','Contramaestre','Contramaestre',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.15.3409','CU','CU.15','Guama','Guama',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.15.3402','CU','CU.15','Mella','Mella',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.15.3404','CU','CU.15','Segundo Frente','Segundo Frente',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.15.3408','CU','CU.15','Tercer Frente','Tercer Frente',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.16.2613','CU','CU.16','Manicaragua','Manicaragua',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.AR.2201','CU','CU.AR','Bahia Honda','Bahia Honda',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3209','CU','CU.12','Urbano Noris','Urbano Noris',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3202','CU','CU.12','<NAME>','<NAME>',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3001','CU','CU.05','<NAME>','<NAME>',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.02.2301','CU','CU.02','Playa','Playa',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.15.3405','CU','CU.15','Songo - La Maya','Songo - La Maya',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.12.3210','CU','CU.12','Cueto','Cueto',1);
INSERT INTO `<<prefix>>subadmin2` (`code`, `country_code`, `subadmin1_code`, `name`, `asciiname`, `active`) VALUES ('CU.05.3012','CU','CU.05','Najasa','Najasa',1);
/*!40000 ALTER TABLE `<<prefix>>subadmin2` ENABLE KEYS */;
--
-- Dumping data for table `<<prefix>>cities`
--
/*!40000 ALTER TABLE `<<prefix>>cities` DISABLE KEYS */;
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Zaza del Medio','Zaza del Medio',-79.3668,21.9971,'P','PPL','CU.14',NULL,8667,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Yara','Yara',-76.9513,20.2747,'P','PPLA2','CU.09',NULL,28944,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Yaguajay','Yaguajay',-79.2357,22.3269,'P','PPLA2','CU.14','CU.14.2801',42218,'America/Havana',1,'2019-06-17 23:00:00','2019-06-17 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Viñales','Vinales',-83.7069,22.6189,'P','PPLA2','CU.01','CU.01.2108',27129,'America/Havana',1,'2016-11-20 23:00:00','2016-11-20 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Vertientes','Vertientes',-78.1498,21.2582,'P','PPLA2','CU.05',NULL,29704,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Venezuela','Venezuela',-78.7934,21.7375,'P','PPLA2','CU.07',NULL,16601,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Varadero','Varadero',-81.2444,23.1568,'P','PPL','CU.03',NULL,20000,'America/Havana',1,'2020-03-02 23:00:00','2020-03-02 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','San Germán','San German',-76.1336,20.6001,'P','PPLA2','CU.12',NULL,43892,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Unión de Reyes','Union de Reyes',-81.5362,22.795,'P','PPLA2','CU.03',NULL,33646,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Trinidad','Trinidad',-79.9847,21.8022,'P','PPLA2','CU.14',NULL,60206,'America/Havana',1,'2019-09-04 23:00:00','2019-09-04 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Topes de Collantes','Topes de Collantes',-80.0193,21.9152,'P','PPL','CU.14','CU.14.2806',9729,'America/Havana',1,'2016-11-20 23:00:00','2016-11-20 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Soroa','Soroa',-83.0167,22.8,'P','PPLL','CU.AR',NULL,7205,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Sibanicú','Sibanicu',-77.5256,21.2363,'P','PPLA2','CU.05',NULL,16856,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Santo Domingo','Santo Domingo',-80.2426,22.5868,'P','PPLA2','CU.16',NULL,45476,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Santiago de las Vegas','Santiago de las Vegas',-82.3869,22.97,'P','PPL','CU.02','CU.02.2313',35241,'America/Havana',1,'2016-11-22 23:00:00','2016-11-22 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Santiago de Cuba','Santiago de Cuba',-75.8267,20.0208,'P','PPLA','CU.15','CU.15.3406',555865,'America/Havana',1,'2019-09-04 23:00:00','2019-09-04 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Santa Cruz del Sur','Santa Cruz del Sur',-77.9982,20.7163,'P','PPLA2','CU.05',NULL,34601,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Santa Cruz del Norte','Santa Cruz del Norte',-81.9256,23.1542,'P','PPLA2','CU.MA',NULL,18402,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Santa Clara','Santa Clara',-79.9647,22.4069,'P','PPLA','CU.16',NULL,250512,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','San Nicolás de Bari','San Nicolas de Bari',-81.9133,22.7844,'P','PPL','CU.MA','CU.MA.2407',14914,'America/Havana',1,'2016-11-20 23:00:00','2016-11-20 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','San Miguel del Padrón','San Miguel del Padron',-82.3267,23.0954,'P','PPL','CU.02',NULL,159273,'America/Havana',1,'2020-02-06 23:00:00','2020-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','San Luis','San Luis',-83.7596,22.279,'P','PPLA2','CU.01',NULL,6690,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','San Luis','San Luis',-75.8503,20.1881,'P','PPLA2','CU.15',NULL,67293,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','San José de las Lajas','San Jose de las Lajas',-82.1511,22.9614,'P','PPLA','CU.MA',NULL,54847,'America/Havana',1,'2011-02-17 23:00:00','2011-02-17 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Sancti Spíritus','Sancti Spiritus',-79.4425,21.9297,'P','PPLA','CU.14',NULL,127069,'America/Havana',1,'2017-05-06 23:00:00','2017-05-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','San Cristobal','San Cristobal',-83.0565,22.7166,'P','PPL','CU.AR',NULL,59579,'America/Havana',1,'2014-07-17 23:00:00','2014-07-17 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','San Antonio de los Baños','San Antonio de los Banos',-82.501,22.8902,'P','PPLA2','CU.AR',NULL,42724,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Sagua la Grande','Sagua la Grande',-80.0756,22.8067,'P','PPLA2','CU.16',NULL,62073,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Sagua de Tánamo','Sagua de Tanamo',-75.2412,20.5827,'P','PPLA2','CU.12',NULL,18282,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Rodas','Rodas',-80.556,22.3418,'P','PPLA2','CU.08',NULL,19212,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Río Guayabal de Yateras','Rio Guayabal de Yateras',-75.0167,20.3667,'P','PPLL','CU.10',NULL,25753,'America/Havana',1,'2006-01-16 23:00:00','2006-01-16 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Río Cauto','<NAME>',-76.9167,20.5597,'P','PPLA2','CU.09',NULL,23737,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Remedios','Remedios',-79.5455,22.495,'P','PPLA2','CU.16',NULL,34108,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Regla','Regla',-82.3319,23.125,'P','PPL','CU.02',NULL,44431,'America/Havana',1,'2020-02-06 23:00:00','2020-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Ranchuelo','Ranchuelo',-80.1505,22.3727,'P','PPL','CU.16','CU.16.2612',43695,'America/Havana',1,'2016-11-20 23:00:00','2016-11-20 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Quivicán','Quivican',-82.3556,22.8231,'P','PPLA2','CU.MA',NULL,12919,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','<NAME>','Quemado de Guines',-80.2523,22.7882,'P','PPLA2','CU.16',NULL,12736,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Puerto Padre','Puerto Padre',-76.6036,21.1952,'P','PPLA2','CU.13',NULL,76838,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Primero de Enero','Primero de Enero',-78.4313,21.945,'P','PPLA2','CU.07',NULL,17934,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Placetas','Placetas',-79.6544,22.3118,'P','PPLA2','CU.16',NULL,55408,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Pinar del Río','Pinar del Rio',-83.6967,22.4167,'P','PPLA','CU.01','CU.01.2108',186990,'America/Havana',1,'2016-11-20 23:00:00','2016-11-20 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Perico','Perico',-81.0183,22.7699,'P','PPLA2','CU.03',NULL,24073,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','<NAME>','<NAME>',-81.2896,22.7271,'P','PPLA2','CU.03',NULL,26761,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Palmira','Palmira',-80.3911,22.2413,'P','PPLA2','CU.08',NULL,23078,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','<NAME>','<NAME>',-75.9936,20.2113,'P','PPLA2','CU.15',NULL,102826,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Nuevitas','Nuevitas',-77.265,21.5459,'P','PPL','CU.05',NULL,54022,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','<NAME>','<NAME>',-82.8056,21.8867,'P','PPLA','CU.04',NULL,20264,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Niquero','Niquero',-77.5809,20.047,'P','PPLA2','CU.09',NULL,18771,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Morón','Moron',-78.6267,22.1077,'P','PPLA2','CU.07',NULL,66060,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Moa','Moa',-74.9508,20.6578,'P','PPLA2','CU.12',NULL,92852,'America/Havana',1,'2014-08-13 23:00:00','2014-08-13 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Minas de Matahambre','Minas de Matahambre',-83.9455,22.5869,'P','PPLA2','CU.01',NULL,34419,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Minas','Minas',-77.6103,21.488,'P','PPLA2','CU.05',NULL,20863,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Media Luna','Media Luna',-77.4353,20.143,'P','PPLA2','CU.09',NULL,16713,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Matanzas','Matanzas',-81.5775,23.0411,'P','PPLA','CU.03',NULL,146733,'America/Havana',1,'2019-09-04 23:00:00','2019-09-04 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Martí','Marti',-80.919,22.9471,'P','PPLA2','CU.03',NULL,13439,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Mariel','Mariel',-82.7538,22.9893,'P','PPLA2','CU.AR',NULL,28987,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Manzanillo','Manzanillo',-77.1213,20.3417,'P','PPLA2','CU.09',NULL,128188,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Mantua','Mantua',-84.286,22.2906,'P','PPL','CU.01',NULL,10797,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Manicaragua','Manicaragua',-79.9787,22.1502,'P','PPLA2','CU.16',NULL,41532,'America/Havana',1,'2014-08-06 23:00:00','2014-08-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Manatí','Manati',-76.934,21.3107,'P','PPLA2','CU.13',NULL,13278,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Maisí','Maisi',-74.1518,20.2467,'P','PPL','CU.10',NULL,28276,'America/Havana',1,'2013-09-21 23:00:00','2013-09-21 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Madruga','Madruga',-81.8564,22.91,'P','PPLA2','CU.MA',NULL,33798,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Los Palacios','Los Palacios',-83.2467,22.5888,'P','PPLA2','CU.01',NULL,25703,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Los Arabos','Los Arabos',-80.7208,22.7297,'P','PPLA2','CU.03',NULL,12504,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Limonar','Limonar',-81.4106,22.9503,'P','PPLA2','CU.03',NULL,25421,'America/Havana',1,'2017-12-13 23:00:00','2017-12-13 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Las Tunas','Las Tunas',-76.9511,20.9617,'P','PPLA','CU.13',NULL,203684,'America/Havana',1,'2019-02-25 23:00:00','2019-02-25 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','La Sierpe','La Sierpe',-79.2683,21.7724,'P','PPLA2','CU.14',NULL,16937,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','La Salud','La Salud',-82.4233,22.872,'P','PPL','CU.MA',NULL,28796,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Lajas','Lajas',-80.2931,22.4148,'P','PPLA2','CU.08',NULL,22602,'America/Havana',1,'2017-12-12 23:00:00','2017-12-12 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Havana','Havana',-82.383,23.133,'P','PPLC','CU.02',NULL,2163824,'America/Havana',1,'2019-09-04 23:00:00','2019-09-04 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Jovellanos','Jovellanos',-81.1913,22.8037,'P','PPLA2','CU.03',NULL,47164,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Jobabo','Jobabo',-76.2994,20.9692,'P','PPLL','CU.12',NULL,17804,'America/Havana',1,'2012-01-17 23:00:00','2012-01-17 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Jobabo','Jobabo',-77.2819,20.9075,'P','PPLA2','CU.13',NULL,49403,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Jiguaní','Jiguani',-76.4274,20.3678,'P','PPLA2','CU.09',NULL,41106,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','<NAME>','<NAME>',-76.4792,21.1614,'P','PPLA2','CU.13',NULL,51002,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Jatibonico','Jatibonico',-79.1691,21.9433,'P','PPLA2','CU.14',NULL,19644,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Jaruco','Jaruco',-82.0092,23.0442,'P','PPLA2','CU.MA',NULL,20207,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Jamaica','Jamaica',-82.1685,22.9756,'P','PPL','CU.MA',NULL,15000,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','<NAME>','<NAME>',-81.1286,22.5269,'P','PPLA2','CU.03',NULL,54363,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Holguín','Holguin',-76.2631,20.8872,'P','PPLA','CU.12','CU.12.3206',319102,'America/Havana',1,'2019-09-04 23:00:00','2019-09-04 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Guisa','Guisa',-76.5393,20.2549,'P','PPLA2','CU.09',NULL,18408,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','<NAME>','<NAME>',-82.5067,22.7961,'P','PPLA2','CU.AR',NULL,69879,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Güines','Gueines',-82.0264,22.8373,'P','PPLA2','CU.MA',NULL,68935,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Guayos','Guayos',-79.4611,22.0496,'P','PPL','CU.14',NULL,15000,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Guantánamo','Guantanamo',-75.2092,20.1444,'P','PPLA','CU.10','CU.10.3509',272801,'America/Havana',1,'2016-11-20 23:00:00','2016-11-20 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Guane','Guane',-84.0848,22.2018,'P','PPL','CU.01',NULL,16548,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Guanajay','Guanajay',-82.6875,22.9264,'P','PPLA2','CU.AR',NULL,25258,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Guanabacoa','Guanabacoa',-82.3007,23.1252,'P','PPL','CU.02',NULL,112964,'America/Havana',1,'2020-02-06 23:00:00','2020-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Guáimaro','Guaimaro',-77.3499,21.0522,'P','PPLA2','CU.05',NULL,39358,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Gibara','Gibara',-76.1314,21.1099,'P','PPLA2','CU.12',NULL,27603,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Fomento','Fomento',-79.7214,22.1047,'P','PPLA2','CU.14',NULL,19991,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Florida','Florida',-78.2258,21.5254,'P','PPLA2','CU.05',NULL,63007,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Florencia','Florencia',-78.9733,22.1461,'P','PPLA2','CU.07',NULL,19811,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Esperanza','Esperanza',-80.0971,22.4468,'P','PPL','CU.16',NULL,10462,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Esmeralda','Esmeralda',-78.1172,21.8514,'P','PPLA2','CU.05',NULL,20274,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Encrucijada','Encrucijada',-79.866,22.618,'P','PPLA2','CU.16',NULL,26155,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Cumanayagua','Cumanayagua',-80.2035,22.1525,'P','PPLA2','CU.08','CU.08.2707',38687,'America/Havana',1,'2016-11-20 23:00:00','2016-11-20 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Cueto','Cueto',-75.9297,20.6486,'P','PPL','CU.12',NULL,26527,'America/Havana',1,'2015-11-01 23:00:00','2015-11-01 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Cruces','Cruces',-80.2702,22.342,'P','PPLA2','CU.08',NULL,24906,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Corralillo','Corralillo',-80.5856,22.9821,'P','PPLA2','CU.16',NULL,51881,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Contramaestre','Contramaestre',-76.2451,20.2988,'P','PPLA2','CU.15',NULL,70438,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Consolación del Sur','Consolacion del Sur',-83.5144,22.5042,'P','PPLA2','CU.01',NULL,69857,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Condado','Condado',-79.8401,21.8767,'P','PPL','CU.14',NULL,38248,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Colón','Colon',-80.9049,22.7206,'P','PPLA2','CU.03',NULL,63882,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Colombia','Colombia',-77.426,20.9881,'P','PPLA2','CU.13',NULL,20096,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','<NAME>','<NAME>',-78.7037,22.0192,'P','PPLA2','CU.07',NULL,29560,'America/Havana',1,'2014-08-06 23:00:00','2014-08-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Cifuentes','Cifuentes',-80.0493,22.6493,'P','PPL','CU.16',NULL,40142,'America/Havana',1,'2014-07-17 23:00:00','2014-07-17 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Cienfuegos','Cienfuegos',-80.4466,22.1496,'P','PPLA','CU.08','CU.08.2707',186644,'America/Havana',1,'2019-09-04 23:00:00','2019-09-04 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Ciego de Ávila','Ciego de Avila',-78.7619,21.84,'P','PPLA','CU.07',NULL,142027,'America/Havana',1,'2018-01-10 23:00:00','2018-01-10 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Chambas','Chambas',-78.9123,22.1953,'P','PPLA2','CU.07',NULL,24114,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Cerro','Cerro',-82.3866,23.1081,'P','PPL','CU.02',NULL,132351,'America/Havana',1,'2020-02-06 23:00:00','2020-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','<NAME>','<NAME>',-76.4727,20.5571,'P','PPL','CU.09',NULL,21159,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Cárdenas','Cardenas',-81.206,23.0366,'P','PPLA2','CU.03',NULL,98515,'America/Havana',1,'2019-09-04 23:00:00','2019-09-04 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Candelaria','Candelaria',-82.9591,22.7406,'P','PPLA2','CU.AR',NULL,12675,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Campechuela','Campechuela',-77.2799,20.2333,'P','PPLA2','CU.09',NULL,25069,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Camajuaní','Camajuani',-79.75,22.4833,'P','PPLL','CU.16',NULL,35515,'America/Havana',1,'2006-01-16 23:00:00','2006-01-16 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Camagüey','Camaguey',-77.9169,21.3808,'P','PPLA','CU.05',NULL,347562,'America/Havana',1,'2014-01-17 23:00:00','2014-01-17 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Calimete','Calimete',-80.911,22.5342,'P','PPLA2','CU.03',NULL,23255,'America/Havana',1,'2014-08-06 23:00:00','2014-08-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Calabazar de Sagua','Calabazar de Sagua',-79.8951,22.6451,'P','PPL','CU.16',NULL,10455,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Caibarién','Caibarien',-79.466,22.52,'P','PPLA2','CU.16',NULL,39140,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Cacocum','Cacocum',-76.3257,20.7377,'P','PPLA2','CU.12',NULL,42623,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Cabañas','Cabanas',-82.9221,22.9794,'P','PPL','CU.AR',NULL,5894,'America/Havana',1,'2014-04-16 23:00:00','2014-04-16 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Cabaiguán','Cabaiguan',-79.4973,22.0787,'P','PPLA2','CU.14',NULL,44515,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Bolondrón','Bolondron',-81.4478,22.7631,'P','PPL','CU.03',NULL,6778,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Bejucal','Bejucal',-82.3886,22.9286,'P','PPLA2','CU.MA',NULL,18123,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Bayamo','Bayamo',-76.6436,20.3742,'P','PPLA','CU.09',NULL,192632,'America/Havana',1,'2019-02-26 23:00:00','2019-02-26 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Bauta','Bauta',-82.5472,22.9823,'P','PPLA2','CU.AR',NULL,45768,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Batabanó','Batabano',-82.2896,22.7179,'P','PPLA2','CU.MA',NULL,13832,'America/Havana',1,'2018-04-24 23:00:00','2018-04-24 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Bar<NAME>','Bartolome Maso',-76.9429,20.1663,'P','PPLA2','CU.09',NULL,53024,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Baraguá','Baragua',-78.6257,21.6822,'P','PPLA2','CU.07',NULL,15268,'America/Havana',1,'2014-08-11 23:00:00','2014-08-11 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Baracoa','Baracoa',-74.4962,20.3471,'P','PPLA2','CU.10',NULL,48362,'America/Havana',1,'2016-03-09 23:00:00','2016-03-09 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Banes','Banes',-75.722,20.9612,'P','PPLA2','CU.12',NULL,53104,'America/Havana',1,'2016-02-06 23:00:00','2016-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Bahía Honda','Bahia Honda',-83.1599,22.9033,'P','PPLA2','CU.AR',NULL,19834,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Artemisa','Artemisa',-82.7594,22.8167,'P','PPLA','CU.AR',NULL,68073,'America/Havana',1,'2018-04-24 23:00:00','2018-04-24 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','<NAME>','<NAME>',-82.377,23.0381,'P','PPL','CU.02',NULL,210053,'America/Havana',1,'2020-02-06 23:00:00','2020-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Amancio','Amancio',-77.5796,20.8191,'P','PPLA2','CU.13',NULL,41523,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Alquízar','Alquizar',-82.5839,22.8052,'P','PPLA2','CU.AR',NULL,15275,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Alamar','Alamar',-82.2784,23.1579,'P','PPLX','CU.02',NULL,100000,'America/Havana',1,'2020-02-06 23:00:00','2020-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Alacranes','Alacranes',-81.568,22.7672,'P','PPL','CU.03',NULL,5843,'America/Havana',1,'2015-12-05 23:00:00','2015-12-05 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Aguada de Pasajeros','Aguada de Pasajeros',-80.8479,22.3852,'P','PPL','CU.08','CU.08.2701',23606,'America/Havana',1,'2016-11-20 23:00:00','2016-11-20 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Abreus','Abreus',-80.5693,22.278,'P','PPL','CU.08',NULL,16711,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Ciudad Camilo Cienfuegos','Ciudad Camilo Cienfuegos',-82.328,23.1608,'P','PPLX','CU.02',NULL,178041,'America/Havana',1,'2020-02-06 23:00:00','2020-02-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Centro Habana','Centro Habana',-82.3642,23.1383,'P','PPLX','CU.02',NULL,158151,'America/Havana',1,'2012-05-30 23:00:00','2012-05-30 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','La Habana Vieja','La Habana Vieja',-82.3531,23.1303,'P','PPLX','CU.02',NULL,95383,'America/Havana',1,'2012-06-26 23:00:00','2012-06-26 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Jimaguayú','Jimaguayu',-77.8262,21.2422,'P','PPLA2','CU.05',NULL,21169,'America/Havana',1,'2016-01-06 23:00:00','2016-01-06 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Boyeros','Boyeros',-82.4017,23.0072,'P','PPLX','CU.02',NULL,188593,'America/Havana',1,'2016-09-26 23:00:00','2016-09-26 23:00:00');
INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('CU','Diez de Octubre','Diez de Octubre',-82.3597,23.0881,'P','PPLX','CU.02',NULL,227293,'America/Havana',1,'2012-06-25 23:00:00','2012-06-25 23:00:00');
/*!40000 ALTER TABLE `<<prefix>>cities` ENABLE KEYS */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed
|
<gh_stars>0
USE employee_db;
INSERT INTO department (name)
VALUES ('Manager'),
('Sales'),
('IT');
INSERT INTO role (title, salary, department_id)
VALUES ('General Manager', 100000, 1),
('Estimator', 85000, 2),
('Support', 75000, 3);
INSERT INTO employee (first_name, last_name, role_id, manager_id)
VALUES ('Sam', 'Sample', 1, NULL),
('John', 'Doe', 2, NULL),
('Mickey', 'Mouse', 3, NULL); |
<reponame>best-coloc-ever/globibot<gh_stars>10-100
create type eval_behavior as enum (
'manual',
'auto',
'off'
);
create table eval_setting(
author_id bigint primary key,
behavior eval_behavior not null default 'manual'
);
create table eval_snippet(
id serial primary key,
author_id bigint not null,
name text not null,
language text not null,
code text not null
);
create table eval_environment(
id serial primary key,
author_id bigint,
name text not null,
language text not null,
image text not null,
dockerfile text not null
);
alter table eval_environment add constraint eval_environment_unicity unique (
author_id, name
);
|
-- MySQL dump 10.13 Distrib 5.6.24, for Win64 (x86_64)
--
-- Host: localhost Database: zoradb
-- ------------------------------------------------------
-- Server version 5.6.24-log
/*!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 utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- MySQL dump 10.13 Distrib 5.6.24, for Win64 (x86_64)
--
-- Host: localhost Database: zoradb
-- ------------------------------------------------------
-- Server version 5.6.24-log
/*!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 utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `allowed_language`
--
DROP DATABASE IF EXISTS zoradb;
CREATE DATABASE zoradb;
USE zoradb;
DROP TABLE IF EXISTS `allowed_language`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `allowed_language` (
`problem_id` int(11) NOT NULL,
`language_id` varchar(55) NOT NULL,
`time_limit_ms` int(11) DEFAULT NULL,
PRIMARY KEY (`problem_id`,`language_id`),
KEY `FK_LANG_PROB_LANG_idx` (`language_id`),
CONSTRAINT `FK_LANG_PROB_LANG` FOREIGN KEY (`language_id`) REFERENCES `language` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_LANG_PROB_PROB` FOREIGN KEY (`problem_id`) REFERENCES `problem` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Some competitions may not want to support every language - this lookup table is used to determine which problems support which language. By default, all supported languages should be allowed.';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `competition`
--
DROP TABLE IF EXISTS `competition`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `competition` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(127) NOT NULL,
`start_date` datetime NOT NULL,
`end_date` datetime NOT NULL,
`max_team_size` int(11) NOT NULL DEFAULT '3',
`time_penalty` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores metadata about a competition. Competition files are stored in directory structure, not in database.';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `language`
--
DROP TABLE IF EXISTS `language`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `language` (
`id` varchar(55) NOT NULL,
`name` varchar(55) NOT NULL,
`notes` varchar(250) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores keys for language supported by competition website instance. In order for a language to be available, the key must also be accepted by a submission server.';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `problem`
--
DROP TABLE IF EXISTS `problem`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `problem` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(25) NOT NULL,
`comp_id` int(11) NOT NULL,
`default_time_limit_ms` int(11) NOT NULL DEFAULT '5000',
`valid` bit(1) NOT NULL DEFAULT b'0',
PRIMARY KEY (`id`),
KEY `FK_PROB_COMP_idx` (`comp_id`),
CONSTRAINT `FK_PROB_COMP` FOREIGN KEY (`comp_id`) REFERENCES `competition` (`id`) ON DELETE NO ACTION ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Contains atomic metadata for a problem. Pages, description are not held here, they are in the file system of the competition server.';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `submission`
--
DROP TABLE IF EXISTS `submission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submission` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`team_id` int(11) NOT NULL,
`problem_id` int(11) NOT NULL,
`language_id` varchar(55) NOT NULL,
`result` varchar(7) NOT NULL,
`timestamp` datetime NOT NULL,
`notes` varchar(400) NOT NULL,
`affects_score` bit(1) NOT NULL DEFAULT b'1',
PRIMARY KEY (`id`),
KEY `FK_SUBMISSION_TEAM_idx` (`team_id`),
KEY `FK_SUBMISSION_PROBLEM_idx` (`problem_id`),
KEY `FK_SUBMISSION_LANGUAGE_idx` (`language_id`),
CONSTRAINT `FK_SUBMISSION_LANGUAGE` FOREIGN KEY (`language_id`) REFERENCES `language` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_SUBMISSION_PROBLEM` FOREIGN KEY (`problem_id`) REFERENCES `problem` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_SUBMISSION_TEAM` FOREIGN KEY (`team_id`) REFERENCES `team` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `team`
--
DROP TABLE IF EXISTS `team`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `team` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`comp_id` int(11) NOT NULL,
`name` varchar(49) NOT NULL,
`tagline` varchar(300) NOT NULL DEFAULT '"About three things I was absolutely positive: First, Edward was a vampire. Second, there was a part of him - and I didn''t know how dominant that part might be - that thirsted for my blood. And third, I was unconditionally and irrevocably in love with him."',
`is_admin` bit(1) NOT NULL DEFAULT b'0',
`public_code` bit(1) NOT NULL DEFAULT b'1',
`score` int(11) NOT NULL DEFAULT 0,
`time_penalty` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQUE_TEAM_NAME` (`name`,`comp_id`),
KEY `IDX_COMP_ID` (`comp_id`),
CONSTRAINT `FK_COMPETITION` FOREIGN KEY (`comp_id`) REFERENCES `competition` (`id`) ON DELETE NO ACTION ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores atomic metadata about a team. Useri nformation is not included.';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `test_case`
--
DROP TABLE IF EXISTS `test_case`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `test_case` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`problem_id` int(11) NOT NULL,
`visible_during_competition` bit(1) NOT NULL DEFAULT b'1',
`comparison_system_name` varchar(45) NOT NULL,
PRIMARY KEY (`id`),
KEY `FK_TEST_CASE_PROBLEM_idx` (`problem_id`),
CONSTRAINT `FK_TEST_CASE_PROBLEM` FOREIGN KEY (`problem_id`) REFERENCES `problem` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores atomic metadata about a test case - actual test case data is stored in directory structure. comparison_system_name is a link to a key that exists on the build servers - if the build server does not support it, the test case will throw an IE (internal server error) until removed.';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `sample_solution`
--
DROP TABLE IF EXISTS `sample_solution`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sample_solution` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`problem_id` int(11) NOT NULL,
`language_id` varchar(55) NOT NULL,
`original_filename` varchar(45) NOT NULL,
PRIMARY KEY (`id`),
KEY `FK_SAMPLE_SOLUTION_PROBLEM_idx` (`problem_id`),
KEY `FK_SAMPLE_SOLUTION_LANGUAGE_idx` (`language_id`),
CONSTRAINT `FK_SAMPLE_SOLUTION_PROBLEM` FOREIGN KEY (`problem_id`) REFERENCES `problem` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_SAMPLE_SOLUTION_LANGUAGE` FOREIGN KEY (`language_id`) REFERENCES `language` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores atomic metadata about a sample solution - actual sample solution data is stored in directory structure.';
--
-- Table structure for table `user`
--
DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`first_name` varchar(45) NOT NULL,
`last_name` varchar(45) NOT NULL,
`username` varchar(45) NOT NULL,
`pass_hash` varchar(129) NOT NULL,
`email_address` varchar(65) NOT NULL,
`is_admin` bit(1) DEFAULT b'0',
`public_facing` bit(1) DEFAULT b'1',
PRIMARY KEY (`id`),
UNIQUE KEY `username_UNIQUE` (`username`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Store atomic user data, that an individual carries with herself between all system functions';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `user_team`
--
DROP TABLE IF EXISTS `user_team`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_team` (
`user_id` int(11) NOT NULL,
`team_id` int(11) NOT NULL,
PRIMARY KEY (`user_id`,`team_id`),
KEY `FK_TEAM_idx` (`team_id`),
CONSTRAINT `FK_TEAM` FOREIGN KEY (`team_id`) REFERENCES `team` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_USER` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Lookup table, to show which users are on what teams';
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
CREATE USER 'zora'@'localhost' IDENTIFIED BY 'easy';
GRANT SELECT, INSERT, UPDATE, DELETE ON zoradb.* TO 'zora'@'localhost';
-- Dump completed on 2015-05-21 22:17:00
|
CREATE PROCEDURE [Queue_Schema_Name].[RestoreState]
WITH NATIVE_COMPILATION, SCHEMABINDING, EXECUTE AS OWNER
AS
BEGIN ATOMIC
WITH (TRANSACTION ISOLATION LEVEL = SNAPSHOT, LANGUAGE = N'us_english')
declare @MinID1 bigint
declare @MaxID1 bigint
declare @Num1 int
declare @LastWrite1 datetime2(7)
declare @NeedClean1 bit = 0
declare @MinID2 bigint
declare @MaxID2 bigint
declare @Num2 int
declare @LastWrite2 datetime2(7)
declare @NeedClean2 bit = 0
declare @IsFirstActive bit
declare @LastWrite datetime2(7)
declare @MinNum int
declare @TresholdNum int
declare @time datetime2(7) = sysutcdatetime()
select top 1 @MinNum = MinNum, @TresholdNum = TresholdNum
from [Queue_Schema_Name].[Settings]
select @MinID1 = min(ID), @MaxID1 = max(ID), @Num1 = count(*), @LastWrite1 = max(Created)
from [Queue_Schema_Name].Messages1
if (@Num1 = 0)
begin
set @MinID1 = 0
set @MaxID1 = 0
end
select @MinID2 = min(ID), @MaxID2 = max(ID), @Num2 = count(*), @LastWrite2 = max(Created)
from [Queue_Schema_Name].Messages2
if (@Num2 = 0)
begin
set @MinID2 = 0
set @MaxID2 = 0
end
if (@MaxID1 >= @MaxID2)
begin
set @IsFirstActive = 1
set @LastWrite = @LastWrite1
end
else
begin
set @IsFirstActive = 0
set @LastWrite = @LastWrite2
end
if (@LastWrite is null)
set @LastWrite = @time
-- если можем очистить другую таблицу, то помечаем для очистки
if (@IsFirstActive = 1 and @Num1 >= @MinNum and @MaxID2 > 0)
set @NeedClean2 = 1
else if (@IsFirstActive = 0 and @Num2 >= @MinNum and @MaxID1 > 0)
set @NeedClean1 = 1
delete from [Queue_Schema_Name].[State]
insert into [Queue_Schema_Name].[State] (ID, Modified, LastWrite, MinID1, MaxID1, Num1, NeedClean1, MinID2, MaxID2,
Num2, NeedClean2, IsFirstActive, MinNum, TresholdNum, ForceCleanInAction)
values (1, @time, @LastWrite, @MinID1, @MaxID1, @Num1, @NeedClean1, @MinID2, @MaxID2,
@Num2, @NeedClean2, @IsFirstActive, @MinNum, @TresholdNum, 0)
END |
<filename>prisma/migrations/20210718184017_reminder_mails/migration.sql
-- CreateEnum
CREATE TYPE "ReminderType" AS ENUM ('PENDING_BOOKING_CONFIRMATION');
-- CreateTable
CREATE TABLE "ReminderMail" (
"id" SERIAL NOT NULL,
"referenceId" INTEGER NOT NULL,
"reminderType" "ReminderType" NOT NULL,
"elapsedMinutes" INTEGER NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY ("id")
);
|
--
-- STORED PROCEDURE
-- Deletes a single resource's history, and optionally the resource itself
--
-- DESCRIPTION
-- Permanently deletes all history data related to a resource. Optionally removes all data, including the current resource version.
-- Data remains recoverable from the transaction log, however.
--
-- PARAMETERS
-- @resourceTypeId
-- * The ID of the resource type (See ResourceType table)
-- @resourceId
-- * The resource ID (must be the same as in the resource itself)
-- @keepCurrentVersion
-- * When 1, the current resource version kept, else all data is removed.
--
CREATE OR ALTER PROCEDURE dbo.HardDeleteResource_2
@resourceTypeId smallint,
@resourceId varchar(64),
@keepCurrentVersion smallint
AS
SET NOCOUNT ON
SET XACT_ABORT ON
BEGIN TRANSACTION
DECLARE @resourceSurrogateIds TABLE(ResourceSurrogateId bigint NOT NULL)
DELETE FROM dbo.Resource
OUTPUT deleted.ResourceSurrogateId
INTO @resourceSurrogateIds
WHERE ResourceTypeId = @resourceTypeId AND ResourceId = @resourceId
AND NOT(@keepCurrentVersion=1 and IsHistory=0)
DELETE FROM dbo.ResourceWriteClaim
WHERE ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.CompartmentAssignment
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.ReferenceSearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.TokenSearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.TokenText
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.StringSearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.UriSearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.NumberSearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.QuantitySearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.DateTimeSearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.ReferenceTokenCompositeSearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.TokenTokenCompositeSearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.TokenDateTimeCompositeSearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.TokenQuantityCompositeSearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.TokenStringCompositeSearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
DELETE FROM dbo.TokenNumberNumberCompositeSearchParam
WHERE ResourceTypeId = @resourceTypeId AND ResourceSurrogateId IN (SELECT ResourceSurrogateId FROM @resourceSurrogateIds)
COMMIT TRANSACTION
GO
|
DROP VIEW IF EXISTS vw_financial_accounts_by_program_activity_object_class_download;
CREATE VIEW vw_financial_accounts_by_program_activity_object_class_download AS
SELECT
FABPAOC.*,
CGAC_AID.agency_name AS agency_identifier_name,
CGAC_ATA.agency_name AS allocation_transfer_agency_identifier_name
FROM financial_accounts_by_program_activity_object_class AS FABPAOC
INNER JOIN submission_attributes AS SA USING (submission_id)
LEFT OUTER JOIN treasury_appropriation_account AS TAA ON (FABPAOC.treasury_account_id = TAA.treasury_account_identifier)
LEFT OUTER JOIN cgac AS CGAC_AID ON (TAA.agency_id = CGAC_AID.cgac_code)
LEFT OUTER JOIN cgac AS CGAC_ATA ON (TAA.allocation_transfer_agency_id = CGAC_ATA.cgac_code)
;
|
--:setvar PubServer N'GLENGATEST2'
--:setvar SubServer N'GLENGATEST2'
--------------------------------------------------------------------------
-- remove a merge pull subscription
--------------------------------------------------------------------------
--<snippetsp_dropmergepullsubscription>
-- This script uses sqlcmd scripting variables. They are in the form
-- $(MyVariable). For information about how to use scripting variables
-- on the command line and in SQL Server Management Studio, see the
-- "Executing Replication Scripts" section in the topic
-- "Programming Replication Using System Stored Procedures".
-- This batch is executed at the Subscriber to remove
-- a merge pull subscription.
DECLARE @publication AS sysname;
DECLARE @publisher AS sysname;
DECLARE @publication_db AS sysname;
SET @publication = N'AdvWorksSalesOrdersMerge';
SET @publisher = $(PubServer);
SET @publication_db = N'AdventureWorks2012';
USE [AdventureWorks2012Replica]
EXEC sp_dropmergepullsubscription
@publisher = @publisher,
@publisher_db = @publication_db,
@publication = @publication;
GO
--</snippetsp_dropmergepullsubscription>
--<snippetsp_dropmergesubscription>
-- This script uses sqlcmd scripting variables. They are in the form
-- $(MyVariable). For information about how to use scripting variables
-- on the command line and in SQL Server Management Studio, see the
-- "Executing Replication Scripts" section in the topic
-- "Programming Replication Using System Stored Procedures".
-- This batch is executed at the Publisher to remove
-- a pull or push subscription to a merge publication.
DECLARE @publication AS sysname;
DECLARE @subscriber AS sysname;
DECLARE @subscriptionDB AS sysname;
SET @publication = N'AdvWorksSalesOrdersMerge';
SET @subscriber = $(SubServer);
SET @subscriptionDB = N'AdventureWorks2012Replica';
USE [AdventureWorks2012]
EXEC sp_dropmergesubscription
@publication = @publication,
@subscriber = @subscriber,
@subscriber_db = @subscriptionDB;
GO
--</snippetsp_dropmergesubscription>
|
# Time: O(n * l), n is the number of users, l is the number of listens
# Space: O(n * l)
SELECT DISTINCT a.user_id user1_id,
b.user_id user2_id
FROM friendship c
INNER JOIN listens a ON c.user1_id = a.user_id
INNER JOIN listens b ON c.user2_id = b.user_id AND a.day = b.day AND a.song_id = b.song_id
GROUP BY c.user1_id,
c.user2_id,
a.day
HAVING Count(DISTINCT a.song_id) >= 3
ORDER BY NULL;
|
<filename>hedera-mirror-importer/src/main/resources/db/migration/v1/V1.58.6__ethereum_nonce.sql<gh_stars>0
alter table if exists entity
add column if not exists ethereum_nonce bigint null,
add column if not exists evm_address bytea null;
alter table if exists entity_history
add column if not exists ethereum_nonce bigint null,
add column if not exists evm_address bytea null;
create index if not exists entity__evm_address on entity (evm_address) where evm_address is not null;
create index if not exists entity_history__evm_address on entity_history (evm_address) where evm_address is not null;
|
<reponame>taguz91/caso-2-grupo-2
-- Definitions
-- Types:
-- 1: impacto
-- 2: nivelprioridad
-- 3: estados
-- 4: tipoServicios
-- 5: mediosComunicacion
--
-- Insert data into parametros
--
-- Insert impactos
UPDATE
parametros
SET
type = 1,
nombre = 'Alto Impacto',
descripcion = 'Afecta a activos de información considerados de impacto catastrófico y mayor que influyen directamente a los objetivos misionales del Instituto. Estos incidentes deben tener respuesta inmediata.'
WHERE
parametros_id = 1;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
1,
1,
'Alto Impacto',
'Afecta a activos de información considerados de impacto catastrófico y mayor que influyen directamente a los objetivos misionales del Instituto. Estos incidentes deben tener respuesta inmediata.'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 1
);
UPDATE
parametros
SET
type = 1,
nombre = 'Medio Impacto',
descripcion = 'Afecta a activos de información considerados de impacto moderado que influyen directamente a los objetivos de un proceso determinado'
WHERE
parametros_id = 2;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
2,
1,
'Medio Impacto',
'Afecta a activos de información considerados de impacto moderado que influyen directamente a los objetivos de un proceso determinado'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 2
);
UPDATE
parametros
SET
type = 1,
nombre = 'Bajo Impacto',
descripcion = 'El incidente de seguridad afecta a activos de información considerados de impacto menor e insignificante, que no influyen en ningún objetivo. Estos incidentes deben ser monitoreados con el fin de evitar un cambio en el impacto.'
WHERE
parametros_id = 3;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
3,
1,
'Medio Impacto',
'El incidente de seguridad afecta a activos de información considerados de impacto menor e insignificante, que no influyen en ningún objetivo. Estos incidentes deben ser monitoreados con el fin de evitar un cambio en el impacto.'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 3
);
-- Insert nivelPrioridad
UPDATE
parametros
SET
type = 2,
nombre = 'Inferior',
descripcion = '3 horas'
WHERE
parametros_id = 4;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
4,
2,
'Inferior',
'3 horas'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 4
);
UPDATE
parametros
SET
type = 2,
nombre = 'Bajo',
descripcion = '1 horas'
WHERE
parametros_id = 5;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
5,
2,
'Bajo',
'1 horas'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 5
);
UPDATE
parametros
SET
type = 2,
nombre = 'Medio',
descripcion = '30 min'
WHERE
parametros_id = 6;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
6,
2,
'Medio',
'30 min'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 6
);
UPDATE
parametros
SET
type = 2,
nombre = 'Alto',
descripcion = '15 min'
WHERE
parametros_id = 7;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
7,
2,
'Medio',
'15 min'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 7
);
UPDATE
parametros
SET
type = 2,
nombre = 'Alto',
descripcion = '15 min'
WHERE
parametros_id = 7;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
7,
2,
'Alto',
'15 min'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 7
);
UPDATE
parametros
SET
type = 2,
nombre = 'Superior',
descripcion = '5 min'
WHERE
parametros_id = 8;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
8,
2,
'Superior',
'5 min'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 8
);
-- Insert estados
UPDATE
parametros
SET
type = 3,
nombre = 'Abierto',
descripcion = 'Ticket ingresado por el usuario que registra el incidente'
WHERE
parametros_id = 9;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
9,
3,
'Abierto',
'Ticket ingresado por el usuario que registra el incidente'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 9
);
UPDATE
parametros
SET
type = 3,
nombre = 'Atendiéndose',
descripcion = 'Ticket recibido por el agente y que se encuentra en atención'
WHERE
parametros_id = 10;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
10,
3,
'Atendiéndose',
'Ticket recibido por el agente y que se encuentra en atención'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 10
);
UPDATE
parametros
SET
type = 3,
nombre = 'Rechazado',
descripcion = 'Ticket rechazado por el usuario'
WHERE
parametros_id = 11;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
11,
3,
'Rechazado',
'Ticket rechazado por el usuario'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 11
);
UPDATE
parametros
SET
type = 3,
nombre = 'Cerrado sin solución',
descripcion = 'Ticket cerrado por el agente sin solución'
WHERE
parametros_id = 13;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
13,
3,
'Cerrado sin solución',
'Ticket cerrado por el agente sin solución'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 13
);
UPDATE
parametros
SET
type = 3,
nombre = 'Cerrado con solución',
descripcion = 'Ticket cerrado con la confirmación del usuario final'
WHERE
parametros_id = 14;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
14,
3,
'Cerrado con solución',
'Ticket cerrado con la confirmación del usuario final'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 14
);
-- Insert tiposServicios
UPDATE
parametros
SET
type = 4,
nombre = 'Incidente',
descripcion = 'Un incidente de acuerdo a ITIL es cualquier evento que interrumpa el funcionamiento normal de un servicio afectando ya sea a uno, a un grupo o a todos los usuarios de un servicio, un incidente se puede tomar como la reducción en la calidad de un servicio IT'
WHERE
parametros_id = 15;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
15,
4,
'Incidente',
'Un incidente de acuerdo a ITIL es cualquier evento que interrumpa el funcionamiento normal de un servicio afectando ya sea a uno, a un grupo o a todos los usuarios de un servicio, un incidente se puede tomar como la reducción en la calidad de un servicio IT'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 15
);
UPDATE
parametros
SET
type = 4,
nombre = 'Requerimiento',
descripcion = 'Indica una solicitud de servicio, en primer lugar, no es una interrupción de un servicio, por lo general (pero no necesariamente) es una solicitud de algo nuevo, como información o acceso; puede tomarse como una petición de un usuario solicitando información, asesoramiento, un cambio estándar o acceso a un servicio IT.'
WHERE
parametros_id = 16;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
16,
4,
'Requerimiento',
'Indica una solicitud de servicio, en primer lugar, no es una interrupción de un servicio, por lo general (pero no necesariamente) es una solicitud de algo nuevo, como información o acceso; puede tomarse como una petición de un usuario solicitando información, asesoramiento, un cambio estándar o acceso a un servicio IT.'
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 16
);
-- Insert mediosComunicacion
UPDATE
parametros
SET
type = 5,
nombre = 'Correo',
descripcion = ''
WHERE
parametros_id = 17;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
17,
5,
'Correo',
''
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 17
);
UPDATE
parametros
SET
type = 5,
nombre = 'Celular',
descripcion = ''
WHERE
parametros_id = 18;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
18,
5,
'Celular',
''
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 18
);
UPDATE
parametros
SET
type = 5,
nombre = 'Teléfono Oficina',
descripcion = ''
WHERE
parametros_id = 19;
INSERT INTO
parametros (parametros_id, type, nombre, descripcion)
SELECT
19,
5,
'Teléfono Oficina',
''
WHERE
NOT EXISTS (
SELECT
1
FROM
parametros
WHERE
parametros_id = 19
);
-- Insert the roles
UPDATE
roles
SET
nombre = 'Developer'
WHERE
rol_id = 1;
INSERT INTO
roles (rol_id, nombre)
SELECT
1,
'Developer'
WHERE
NOT EXISTS (
SELECT
1
FROM
roles
WHERE
rol_id = 1
);
UPDATE
roles
SET
nombre = 'Admin'
WHERE
rol_id = 2;
INSERT INTO
roles (rol_id, nombre)
SELECT
2,
'Admin'
WHERE
NOT EXISTS (
SELECT
1
FROM
roles
WHERE
rol_id = 2
);
UPDATE
roles
SET
nombre = 'Usuario'
WHERE
rol_id = 3;
INSERT INTO
roles (rol_id, nombre)
SELECT
3,
'Usuario'
WHERE
NOT EXISTS (
SELECT
1
FROM
roles
WHERE
rol_id = 3
);
UPDATE
roles
SET
nombre = 'Coordinador'
WHERE
rol_id = 4;
INSERT INTO
roles (rol_id, nombre)
SELECT
4,
'Coordinador'
WHERE
NOT EXISTS (
SELECT
1
FROM
roles
WHERE
rol_id = 4
);
UPDATE
roles
SET
nombre = 'Soporte N1'
WHERE
rol_id = 5;
INSERT INTO
roles (rol_id, nombre)
SELECT
5,
'Soporte N1'
WHERE
NOT EXISTS (
SELECT
1
FROM
roles
WHERE
rol_id = 5
);
UPDATE
roles
SET
nombre = 'Soporte N2'
WHERE
rol_id = 6;
INSERT INTO
roles (rol_id, nombre)
SELECT
6,
'Soporte N2'
WHERE
NOT EXISTS (
SELECT
1
FROM
roles
WHERE
rol_id = 6
);
-- Insert the developers
UPDATE
public.usuarios
SET
usuario_id = 1,
apellidos = 'Garcia',
correo = '<EMAIL>',
nombres = 'Johnny',
password = <PASSWORD>',
telefono = '0968696010',
rol_id = 1
WHERE
correo = '<EMAIL>';
INSERT INTO
public.usuarios(
usuario_id,
apellidos,
correo,
nombres,
password,
telefono,
rol_id
)
SELECT
1,
'Garcia',
'<EMAIL>',
'Johnny',
<PASSWORD>',
'0968796010',
1
WHERE
NOT EXISTS (
SELECT
1
FROM
public.usuarios
WHERE
correo = '<EMAIL>'
);
-- Insert admin
UPDATE
public.usuarios
SET
usuario_id = 2,
apellidos = 'Johnny',
correo = '<EMAIL>',
nombres = 'Admin',
password = <PASSWORD>',
telefono = '0968696010',
rol_id = 2
WHERE
correo = '<EMAIL>';
INSERT INTO
public.usuarios(
usuario_id,
apellidos,
correo,
nombres,
password,
telefono,
rol_id
)
SELECT
2,
'Johnny',
'<EMAIL>',
'Admin',
<PASSWORD>uc<PASSWORD>',
'0968796010',
2
WHERE
NOT EXISTS (
SELECT
1
FROM
public.usuarios
WHERE
correo = '<EMAIL>'
);
-- Insert default coordinador
UPDATE
public.usuarios
SET
usuario_id = 3,
apellidos = 'Johnny',
correo = '<EMAIL>',
nombres = 'Coordinador',
password = <PASSWORD>.',
telefono = '0968696010',
rol_id = 4
WHERE
correo = '<EMAIL>';
INSERT INTO
public.usuarios(
usuario_id,
apellidos,
correo,
nombres,
password,
telefono,
rol_id
)
SELECT
3,
'Johnny',
'<EMAIL>',
'Coordinador',
'$2a$10$o37Hn2myq8MBItWEx5LMT.qTN1mWIAtgGJ66Z6ASgReXtpijusqZ.',
'0968796010',
4
WHERE
NOT EXISTS (
SELECT
1
FROM
public.usuarios
WHERE
correo = '<EMAIL>'
);
-- Insert soporte n1
UPDATE
public.usuarios
SET
usuario_id = 4,
apellidos = 'Johnny',
correo = '<EMAIL>',
nombres = 'Soporte UNO',
password = <PASSWORD>',
telefono = '0968696010',
rol_id = 5
WHERE
correo = '<EMAIL>';
INSERT INTO
public.usuarios(
usuario_id,
apellidos,
correo,
nombres,
password,
telefono,
rol_id
)
SELECT
4,
'Johnny',
'<EMAIL>',
'Soporte UNO',
'$2a$10$qOGQyyc/oleg8/VqIpYxmuwOureWXHEe3l4HPFQmCCPxz.5Goaqqa',
'0968796010',
5
WHERE
NOT EXISTS (
SELECT
1
FROM
public.usuarios
WHERE
correo = '<EMAIL>'
);
-- Insert soporte n2
UPDATE
public.usuarios
SET
usuario_id = 5,
apellidos = 'Johnny',
correo = '<EMAIL>',
nombres = 'Soporte DOS',
password = <PASSWORD>4woTjnSiRspmUlb2HECKmz2',
telefono = '0968696010',
rol_id = 6
WHERE
correo = '<EMAIL>';
INSERT INTO
public.usuarios(
usuario_id,
apellidos,
correo,
nombres,
password,
telefono,
rol_id
)
SELECT
5,
'Johnny',
'<EMAIL>',
'Soporte DOS',
'$2a$10$eOvCA9QHT6J51A.IDO18K.Kh/9yFZB4woTjnSiRspmUlb2HECKmz2',
'0968<PASSWORD>',
6
WHERE
NOT EXISTS (
SELECT
1
FROM
public.usuarios
WHERE
correo = '<EMAIL>'
);
-- Insert criticidad
UPDATE
public.criticidad
SET
criticidad_id = 1,
descripcion = ' ',
nombre = 'Inferior',
valor = 0.10
WHERE
criticidad_id = 1;
INSERT INTO
public.criticidad(criticidad_id, descripcion, nombre, valor)
SELECT
1,
'Sistemas no críticos, como estaciones de trabajo de usuarios con funciones no críticas.',
'Inferior',
0.10
WHERE
NOT EXISTS (
SELECT
1
FROM
public.criticidad
WHERE
criticidad_id = 1
);
UPDATE
public.criticidad
SET
criticidad_id = 2,
descripcion = 'Sistemas que apoyan a una sola dependencia o proceso de una entidad.',
nombre = 'Bajo',
valor = 0.25
WHERE
criticidad_id = 2;
INSERT INTO
public.criticidad(criticidad_id, descripcion, nombre, valor)
SELECT
2,
'Sistemas que apoyan a una sola dependencia o proceso de una entidad.',
'Bajo',
0.25
WHERE
NOT EXISTS (
SELECT
1
FROM
public.criticidad
WHERE
criticidad_id = 2
);
UPDATE
public.criticidad
SET
criticidad_id = 3,
descripcion = 'Sistemas que apoyan más de una dependencias o proceso de la entidad.',
nombre = 'Medio',
valor = 0.50
WHERE
criticidad_id = 3;
INSERT INTO
public.criticidad(criticidad_id, descripcion, nombre, valor)
SELECT
3,
'Sistemas que apoyan más de una dependencias o proceso de la entidad.',
'Medio',
0.50
WHERE
NOT EXISTS (
SELECT
1
FROM
public.criticidad
WHERE
criticidad_id = 3
);
UPDATE
public.criticidad
SET
criticidad_id = 4,
descripcion = 'Sistemas pertenecientes al área de Tecnología y estaciones de trabajo de usuarios con funciones críticas.',
nombre = 'Alto',
valor = 0.75
WHERE
criticidad_id = 4;
INSERT INTO
public.criticidad(criticidad_id, descripcion, nombre, valor)
SELECT
4,
'Sistemas pertenecientes al área de Tecnología y estaciones de trabajo de usuarios con funciones críticas.',
'Alto',
0.75
WHERE
NOT EXISTS (
SELECT
1
FROM
public.criticidad
WHERE
criticidad_id = 4
);
UPDATE
public.criticidad
SET
criticidad_id = 5,
descripcion = 'Sistemas Críticos',
nombre = 'Superior',
valor = 1.00
WHERE
criticidad_id = 5;
INSERT INTO
public.criticidad(criticidad_id, descripcion, nombre, valor)
SELECT
5,
'Sistemas Críticos.',
'Superior',
1.00
WHERE
NOT EXISTS (
SELECT
1
FROM
public.criticidad
WHERE
criticidad_id = 5
); |
-- db_patches
INSERT INTO `db_patches` (issue, created) VALUES ('POCOR-3068', NOW());
-- code here
DELETE FROM `security_functions` WHERE `security_functions`.`id` = 5032;
DELETE FROM `security_functions` WHERE `security_functions`.`id` = 5033; |
<gh_stars>1-10
--TEST: Hint use_desc_idx doesn't work well in partition table. NOT A BUG
drop table if exists t1;
create table t1(a int)
PARTITION BY RANGE (a)
(PARTITION before_10 VALUES LESS THAN (10),
PARTITION before_20 VALUES LESS THAN (20));
create index i_a on t1(a);
insert into t1 values (null);
insert into t1 values (7);
insert into t1 values (9);
insert into t1 values (8);
insert into t1 values (17);
insert into t1 values (19);
insert into t1 values (18);
select /*+ recompile use_desc_idx */ * from t1 where a is not null order by 1 desc;
drop table t1;
|
CREATE TABLE works_on (
essn char(9) not null,
pno integer(4),
hours decimal(5,1),
primary key (essn, pno)
);
CREATE TABLE project (
pname varchar(20) not null,
pnumber integer(4),
plocation varchar(20),
dnum integer(4),
primary key (pnumber)
); |
<reponame>leggettc18/devmarks
CREATE TABLE IF NOT EXISTS bookmark_folder(
bookmark_id int NOT NULL,
folder_id int NOT NULL,
CONSTRAINT bookmarks_id_fkey FOREIGN KEY (bookmark_id)
REFERENCES bookmarks(id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE CASCADE,
CONSTRAINT folders_id_fkey FOREIGN KEY (folder_id)
REFERENCES folders(id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE CASCADE
); |
<reponame>rochaandre/scripts-oracle-named
-- Index leaf block fragmentation
-- if the pct_del is more than 30% you should rebuild the indexes
set echo off feedback off linesize 100
clear breaks
clear computes
spool ./log/idx_health.log
col owner format a10
col index_name format a15
select a.owner,a.index_name, b.blocks, b.pct_used, b.distinct_keys leaf_rows,
b.del_lf_rows, (b.del_lf_rows/b.lf_rows)*100 pct_del
from dba_indexes a, index_stats b
where a.owner not in ('SYS')
and a.index_name=b.name
order by 7;
spool off |
<reponame>DuaDeoLA/SQLSERVER
USE SELL_MANAGE
--A
CREATE VIEW cus_order_vw AS
SELECT T1.OrderID,T1.CustomerID,T2.CustomerName,T1.OrderDate,T1.deliveryDate
FROM Orders T1 JOIN Customer T2 ON T1.CustomerID = T2.CustomerID
--B
SELECT TOP 3 *
FROM cus_order_vw
ORDER BY CustomerName
--C
ALTER VIEW cus_order_vw AS
SELECT T1.OrderID,T2.CustomerName,T1.OrderDate,T1.deliveryDate
FROM Orders T1 JOIN Customer T2 ON T1.CustomerID = T2.CustomerID
--D
DROP VIEW cus_order_vw
--E
SELECT T1.orderID,T1.ProductID,T2.ProductName,T2.selling_price, T1.buying_qty,T3.CategoryName
FROM Product T2
JOIN OrderDetail T1 ON T1.ProductID = T2.ProductID
JOIN Category T3 on T2.CatagoryID = T3.CategoryID
WHERE (T1.ProductID IN (SELECT ProductID FROM Orders T4 JOIN OrderDetail T5 ON T4.orderID = T5.orderID WHERE MONTH(T4.OrderDate)= 10)) AND T3.CategoryName='Mountain Bikes'
--
CREATE VIEW product_vw
AS
SELECT * FROM Product ORDER BY ProductID
WHERE selling_price>20000000
WITH CHECK OPTION
GO
INSERT INTO product_vw VALUES(300, 'Nouvo', 23000000,2)
UPDATE product_vw SET selling_price=20000000 WHERE ProductName='Nouvo'
sp_helptext product_vw
|
<gh_stars>0
ALTER TABLE chat_groups
RENAME token TO chat_group_code;
ALTER TABLE chat_groups
DROP CONSTRAINT chat_groups_member_itin_id_fkey;
ALTER TABLE chat_groups
DROP CONSTRAINT chat_groups_tc_id_fkey; |
<reponame>aifa-gov-it/spending-pha-database-initialization<filename>SPENDING_PHA/20170829/01 - Anagrafiche_MdS/create_anag_MdS.sql
/* ------------------------------------------------------------------------------------------------ */
/* -- TABELLE DI ANAGRAFICA DEL MINISTERO DELLA SALUTE (IMPORT CON PERMALINK DA WEB SITE) --------- */
/* ------------------------------------------------------------------------------------------------ */
-- Tabella tipologica delle anagrafiche MdS
CREATE TABLE SPENDING_PHA.MDS_TIPOLOGICA_ANAG
(
ID NUMBER(2) NOT NULL,
CODICE VARCHAR2(1) NOT NULL,
DESCRIZIONE VARCHAR2(50) NOT NULL
);
-- Comments
COMMENT ON COLUMN SPENDING_PHA.MDS_TIPOLOGICA_ANAG.ID IS 'ID tipologica anagrafica';
COMMENT ON COLUMN SPENDING_PHA.MDS_TIPOLOGICA_ANAG.CODICE IS 'Codice tipologica anagrafica';
COMMENT ON COLUMN SPENDING_PHA.MDS_TIPOLOGICA_ANAG.DESCRIZIONE IS 'Descrizione tipologica anagrafica';
-- Indexes
CREATE UNIQUE INDEX SPENDING_PHA.MDS_TIPOLOGICA_ANAG_PK ON SPENDING_PHA.MDS_TIPOLOGICA_ANAG
(ID);
-- Primary Key
ALTER TABLE SPENDING_PHA.MDS_TIPOLOGICA_ANAG ADD (
CONSTRAINT MDS_TIPOLOGICA_ANAG_PK
PRIMARY KEY
(ID)
USING INDEX SPENDING_PHA.MDS_TIPOLOGICA_ANAG_PK
ENABLE VALIDATE);
-- Sequences
CREATE SEQUENCE SPENDING_PHA.SEQ_MDS_TIPOLOGICA_ANAG
START WITH 1
MAXVALUE 99
MINVALUE 1
NOCYCLE
NOCACHE
NOORDER;
-- Triggers
CREATE OR REPLACE TRIGGER SPENDING_PHA.INS_MDS_TIPOLOGICA_ANAG
BEFORE INSERT
ON SPENDING_PHA.MDS_TIPOLOGICA_ANAG
REFERENCING OLD AS OLD NEW AS NEW
FOR EACH ROW
BEGIN
IF :NEW.ID IS NULL THEN
SELECT SEQ_MDS_TIPOLOGICA_ANAG.NEXTVAL INTO :NEW.ID FROM DUAL;
END IF;
END;
/
SHOW ERRORS;
/* ----------------------------------------------------------------------------------------------------- */
-- Tabella tipologica dei Comuni
CREATE TABLE SPENDING_PHA.MDS_A_COMUNE
(
ID NUMBER(12) NOT NULL,
CODICE NUMBER(6) NOT NULL,
DESCRIZIONE VARCHAR2(80) NOT NULL,
DATA_INIZIO_VALIDITA DATE NOT NULL,
DATA_FINE_VALIDITA DATE
);
-- Comments
COMMENT ON COLUMN SPENDING_PHA.MDS_A_COMUNE.ID IS 'Identificativo del Comune';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_COMUNE.CODICE IS 'Codice ISTAT del Comune';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_COMUNE.DESCRIZIONE IS 'Descrizione del Comune';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_COMUNE.DATA_INIZIO_VALIDITA IS 'Data inizio validità';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_COMUNE.DATA_FINE_VALIDITA IS 'Data fine validità';
-- Indexes
CREATE UNIQUE INDEX SPENDING_PHA.MDS_A_COMUNE_PK ON SPENDING_PHA.MDS_A_COMUNE
(ID);
CREATE UNIQUE INDEX SPENDING_PHA.MDS_A_COMUNE_U_IDX ON SPENDING_PHA.MDS_A_COMUNE
(CODICE, DATA_INIZIO_VALIDITA);
-- Primary Key
ALTER TABLE SPENDING_PHA.MDS_A_COMUNE ADD (
CONSTRAINT MDS_A_COMUNE_PK
PRIMARY KEY
(ID)
USING INDEX SPENDING_PHA.MDS_A_COMUNE_PK
ENABLE VALIDATE);
-- Constraints
ALTER TABLE SPENDING_PHA.MDS_A_COMUNE ADD
CONSTRAINT MDS_A_COMUNE_U_IDX
UNIQUE (CODICE, DATA_INIZIO_VALIDITA)
USING INDEX MDS_A_COMUNE_U_IDX
ENABLE VALIDATE;
-- Sequences
CREATE SEQUENCE SPENDING_PHA.SEQ_MDS_A_COMUNE
START WITH 1
MAXVALUE 99999999999999
MINVALUE 1
NOCYCLE
NOCACHE
NOORDER;
-- Triggers
CREATE OR REPLACE TRIGGER SPENDING_PHA.INS_MDS_A_COMUNE
BEFORE INSERT
ON SPENDING_PHA.MDS_A_COMUNE
REFERENCING OLD AS OLD NEW AS NEW
FOR EACH ROW
BEGIN
IF :NEW.ID IS NULL THEN
SELECT SEQ_MDS_A_COMUNE.NEXTVAL INTO :NEW.ID FROM DUAL;
END IF;
END;
/
SHOW ERRORS;
/* ----------------------------------------------------------------------------------------------------- */
-- Tabella tipologica delle Province
CREATE TABLE SPENDING_PHA.MDS_A_PROVINCIA
(
ID NUMBER(12) NOT NULL,
CODICE NUMBER(3) NOT NULL,
DESCRIZIONE VARCHAR2(30) NOT NULL,
SIGLA VARCHAR2(2) NOT NULL,
DATA_INIZIO_VALIDITA DATE NOT NULL,
DATA_FINE_VALIDITA DATE
);
-- Comments
COMMENT ON COLUMN SPENDING_PHA.MDS_A_PROVINCIA.ID IS 'Identificativo della Provincia';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_PROVINCIA.CODICE IS 'Codice ISTAT della Provincia';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_PROVINCIA.DESCRIZIONE IS 'Descrizione della Provincia';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_PROVINCIA.SIGLA IS 'Sigla della Provincia';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_PROVINCIA.DATA_INIZIO_VALIDITA IS 'Data inizio validità';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_PROVINCIA.DATA_FINE_VALIDITA IS 'Data fine validità';
-- Indexes
CREATE UNIQUE INDEX SPENDING_PHA.MDS_A_PROVINCIA_PK ON SPENDING_PHA.MDS_A_PROVINCIA
(ID);
CREATE UNIQUE INDEX SPENDING_PHA.MDS_A_PROVINCIA_U_IDX ON SPENDING_PHA.MDS_A_PROVINCIA
(CODICE, DATA_INIZIO_VALIDITA);
-- Primary Key
ALTER TABLE SPENDING_PHA.MDS_A_PROVINCIA ADD (
CONSTRAINT MDS_A_PROVINCIA_PK
PRIMARY KEY
(ID)
USING INDEX SPENDING_PHA.MDS_A_PROVINCIA_PK
ENABLE VALIDATE);
-- Constraints
ALTER TABLE SPENDING_PHA.MDS_A_PROVINCIA ADD
CONSTRAINT MDS_A_PROVINCIA_U_IDX
UNIQUE (CODICE, DATA_INIZIO_VALIDITA)
USING INDEX MDS_A_PROVINCIA_U_IDX
ENABLE VALIDATE;
-- Sequences
CREATE SEQUENCE SPENDING_PHA.SEQ_MDS_A_PROVINCIA
START WITH 1
MAXVALUE 99999999999999
MINVALUE 1
NOCYCLE
NOCACHE
NOORDER;
-- Triggers
CREATE OR REPLACE TRIGGER SPENDING_PHA.INS_MDS_A_PROVINCIA
BEFORE INSERT
ON SPENDING_PHA.MDS_A_PROVINCIA
REFERENCING OLD AS OLD NEW AS NEW
FOR EACH ROW
BEGIN
IF :NEW.ID IS NULL THEN
SELECT SEQ_MDS_A_PROVINCIA.NEXTVAL INTO :NEW.ID FROM DUAL;
END IF;
END;
/
SHOW ERRORS;
/* ----------------------------------------------------------------------------------------------------- */
-- Tabella tipologica delle Regioni
CREATE TABLE SPENDING_PHA.MDS_A_REGIONE
(
ID NUMBER(12) NOT NULL,
CODICE NUMBER(3) NOT NULL,
DESCRIZIONE VARCHAR2(30) NOT NULL,
DATA_INIZIO_VALIDITA DATE NOT NULL,
DATA_FINE_VALIDITA DATE
);
-- Comments
COMMENT ON COLUMN SPENDING_PHA.MDS_A_REGIONE.ID IS 'Identificativo della Regione';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_REGIONE.CODICE IS 'Codice ISTAT della Regione';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_REGIONE.DESCRIZIONE IS 'Descrizione della Regione';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_REGIONE.DATA_INIZIO_VALIDITA IS 'Data inizio validità';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_REGIONE.DATA_FINE_VALIDITA IS 'Data fine validità';
-- Indexes
CREATE UNIQUE INDEX SPENDING_PHA.MDS_A_REGIONE_PK ON SPENDING_PHA.MDS_A_REGIONE
(ID);
CREATE UNIQUE INDEX SPENDING_PHA.MDS_A_REGIONE_U_IDX ON SPENDING_PHA.MDS_A_REGIONE
(CODICE, DATA_INIZIO_VALIDITA);
-- Primary Key
ALTER TABLE SPENDING_PHA.MDS_A_REGIONE ADD (
CONSTRAINT MDS_A_REGIONE_PK
PRIMARY KEY
(ID)
USING INDEX SPENDING_PHA.MDS_A_REGIONE_PK
ENABLE VALIDATE);
-- Constraints
ALTER TABLE SPENDING_PHA.MDS_A_REGIONE ADD
CONSTRAINT MDS_A_REGIONE_U_IDX
UNIQUE (CODICE, DATA_INIZIO_VALIDITA)
USING INDEX MDS_A_REGIONE_U_IDX
ENABLE VALIDATE;
-- Sequences
CREATE SEQUENCE SPENDING_PHA.SEQ_MDS_A_REGIONE
START WITH 1
MAXVALUE 99999999999999
MINVALUE 1
NOCYCLE
NOCACHE
NOORDER;
-- Triggers
CREATE OR REPLACE TRIGGER SPENDING_PHA.INS_MDS_A_REGIONE
BEFORE INSERT
ON SPENDING_PHA.MDS_A_REGIONE
REFERENCING OLD AS OLD NEW AS NEW
FOR EACH ROW
BEGIN
IF :NEW.ID IS NULL THEN
SELECT SEQ_MDS_A_REGIONE.NEXTVAL INTO :NEW.ID FROM DUAL;
END IF;
END;
/
SHOW ERRORS;
/* ----------------------------------------------------------------------------------------------------- */
-- Tabella tipologica delle nazioni
CREATE TABLE SPENDING_PHA.MDS_A_NAZIONE
(
ID NUMBER(12) NOT NULL,
CODICE_ISO VARCHAR2(2) NOT NULL,
CODICE_ISO_3 VARCHAR2(3),
DESCRIZIONE VARCHAR2(60) NOT NULL,
CODICE_ISTAT NUMBER(3),
DATA_INIZIO_VALIDITA DATE NOT NULL,
DATA_FINE_VALIDITA DATE
);
-- Comments
COMMENT ON COLUMN SPENDING_PHA.MDS_A_NAZIONE.ID IS 'Identificativo della Nazione';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_NAZIONE.CODICE_ISO IS 'Codice ISO';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_NAZIONE.CODICE_ISO_3 IS 'Codice ISO lunghezza 3';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_NAZIONE.DESCRIZIONE IS 'Nazione';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_NAZIONE.CODICE_ISTAT IS 'Codice ISTAT della Nazione';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_NAZIONE.DATA_INIZIO_VALIDITA IS 'Data inizio validità';
COMMENT ON COLUMN SPENDING_PHA.MDS_A_NAZIONE.DATA_FINE_VALIDITA IS 'Data fine validità';
-- Indexes
CREATE UNIQUE INDEX SPENDING_PHA.MDS_A_NAZIONE_PK ON SPENDING_PHA.MDS_A_NAZIONE
(ID);
CREATE UNIQUE INDEX SPENDING_PHA.MDS_A_NAZIONE_U_IDX ON SPENDING_PHA.MDS_A_NAZIONE
(CODICE_ISO, DATA_INIZIO_VALIDITA);
-- Primary Key
ALTER TABLE SPENDING_PHA.MDS_A_NAZIONE ADD (
CONSTRAINT MDS_A_NAZIONE_PK
PRIMARY KEY
(ID)
USING INDEX SPENDING_PHA.MDS_A_NAZIONE_PK
ENABLE VALIDATE);
-- Constraints
ALTER TABLE SPENDING_PHA.MDS_A_NAZIONE ADD
CONSTRAINT MDS_A_NAZIONE_U_IDX
UNIQUE (CODICE_ISO, DATA_INIZIO_VALIDITA)
USING INDEX MDS_A_NAZIONE_U_IDX
ENABLE VALIDATE;
-- Sequences
CREATE SEQUENCE SPENDING_PHA.SEQ_MDS_A_NAZIONE
START WITH 1
MAXVALUE 99999999999999
MINVALUE 1
NOCYCLE
NOCACHE
NOORDER;
-- Triggers
CREATE OR REPLACE TRIGGER SPENDING_PHA.INS_MDS_A_NAZIONE
BEFORE INSERT
ON SPENDING_PHA.MDS_A_NAZIONE
REFERENCING OLD AS OLD NEW AS NEW
FOR EACH ROW
BEGIN
IF :NEW.ID IS NULL THEN
SELECT SEQ_MDS_A_NAZIONE.NEXTVAL INTO :NEW.ID FROM DUAL;
END IF;
END;
/
SHOW ERRORS;
/* ----------------------------------------------------------------------------------------------------- */
-- Tabella contenente tutte le anagrafiche del MdS:
-- Strutture pubbliche, private e istituiti penitenziari (Tipo anagrafica: T)
-- ASL (Tipo anagrafica: A)
-- Produttori, Distributori, Grossisti (Tipo anagrafica: P,D)
-- Farmacie (Tipo anagrafica: F)
CREATE TABLE SPENDING_PHA.MDS_ANAG
(
CODICE VARCHAR2(12) NOT NULL,
DENOMINAZIONE VARCHAR2(255) NOT NULL,
PARTITA_IVA VARCHAR2(30),
INDIRIZZO VARCHAR2(255),
CAP NUMBER(5),
FRAZIONE VARCHAR2(80),
ID_COMUNE NUMBER(12),
ID_PROVINCIA NUMBER(12),
ID_REGIONE NUMBER(12) NOT NULL,
TELEFONO VARCHAR2(20),
FAX VARCHAR2(20),
EMAIL VARCHAR2(60),
SITO_WEB VARCHAR2(60),
DATA_INIZIO_VALIDITA DATE NOT NULL,
DATA_FINE_VALIDITA DATE,
LATITUDINE NUMBER,
LONGITUDINE NUMBER,
LOCALIZE NUMBER(1),
ID_TIPO_ANAG NUMBER(2) NOT NULL
);
-- Comments
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.CODICE IS 'Codice identificativo';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.DENOMINAZIONE IS 'Denominazione';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.PARTITA_IVA IS 'Partita IVA';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.INDIRIZZO IS 'Indirizzo';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.CAP IS 'CAP';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.FRAZIONE IS 'Frazione';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.ID_COMUNE IS 'Identificativo del Comune';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.ID_PROVINCIA IS 'Identificativo della Provincia';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.ID_REGIONE IS 'Identificativo della Regione';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.TELEFONO IS 'Telefono';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.FAX IS 'Fax';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.EMAIL IS 'Email';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.SITO_WEB IS 'Sito web';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.DATA_INIZIO_VALIDITA IS 'Data inizio validità';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.DATA_FINE_VALIDITA IS 'Data fine validità';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.LATITUDINE IS 'Latitudine';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.LONGITUDINE IS 'Longitudine';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.LOCALIZE IS 'Localizzato';
COMMENT ON COLUMN SPENDING_PHA.MDS_ANAG.ID_TIPO_ANAG IS 'ID del tipo di anagrafica';
-- Indexes
CREATE UNIQUE INDEX SPENDING_PHA.MDS_ANAG_PK ON SPENDING_PHA.MDS_ANAG
(CODICE, ID_REGIONE, DATA_INIZIO_VALIDITA, ID_TIPO_ANAG);
CREATE INDEX SPENDING_PHA.MDS_ANAG_ID_T_A_IDX ON SPENDING_PHA.MDS_ANAG
(ID_TIPO_ANAG);
-- Primary Key
ALTER TABLE SPENDING_PHA.MDS_ANAG ADD (
CONSTRAINT MDS_ANAG_PK
PRIMARY KEY
(CODICE, ID_REGIONE, DATA_INIZIO_VALIDITA, ID_TIPO_ANAG)
USING INDEX SPENDING_PHA.MDS_ANAG_PK
ENABLE VALIDATE);
-- Foreign Keys
ALTER TABLE SPENDING_PHA.MDS_ANAG ADD (
CONSTRAINT MDS_ANAG_ID_COM_FK
FOREIGN KEY (ID_COMUNE)
REFERENCES SPENDING_PHA.MDS_A_COMUNE (ID)
ENABLE VALIDATE,
CONSTRAINT MDS_ANAG_ID_PRV_FK
FOREIGN KEY (ID_PROVINCIA)
REFERENCES SPENDING_PHA.MDS_A_PROVINCIA (ID)
ENABLE VALIDATE,
CONSTRAINT MDS_ANAG_ID_REG_FK
FOREIGN KEY (ID_REGIONE)
REFERENCES SPENDING_PHA.MDS_A_REGIONE (ID)
ENABLE VALIDATE,
CONSTRAINT MDS_ANAG_ID_T_ANAG_FK
FOREIGN KEY (ID_TIPO_ANAG)
REFERENCES SPENDING_PHA.MDS_TIPOLOGICA_ANAG (ID)
ENABLE VALIDATE);
|
CREATE TABLE `FilePrefixes` (
`Prefix` VARCHAR(128) NOT NULL COLLATE 'utf8_general_ci',
`PrimarySchema` VARCHAR(128) NOT NULL COLLATE 'utf8_general_ci',
`EventType` VARCHAR(32) NULL DEFAULT NULL COLLATE 'utf8_general_ci',
`MinDate` DATE NOT NULL,
`MaxDate` DATE NOT NULL
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB
;;
|
-- product_category(category_type) -> product_info(product_id) -> order_detail(order_id) -> order_master(buyer_openid) -> seller_info
create table `migrate_log` (
`id` int not null auto_increment,
`migrate_type` tinyint not null comment 'MIGRATE(1)/BACK(2)',
`migrate_status` tinyint not null comment 'SELECTED(1)/SELECT_FAIL(2),INSERTED(3)/INSERT_FAIL(4),DELETED(5)/DELETE_FAIL(6)',
`selected_cost` int comment 'selected cost , unit:ms',
`inserted_cost` int comment 'inserted cost , unit:ms',
`deleted_cost` int comment 'deleted cost , unit:ms',
`create_time` timestamp not null default current_timestamp comment '创建时间',
`update_time` timestamp not null default current_timestamp on update current_timestamp comment '修改时间',
`remark` varchar(5000) comment 'remark',
primary key (`id`)
);
CREATE TABLE `order_detail` (
`detail_id` VARCHAR(32) NOT NULL,
`order_id` VARCHAR(32) NOT NULL,
`product_id` VARCHAR(32) NOT NULL,
`product_name` VARCHAR(64) NOT NULL COMMENT '商品名称',
`product_price` DECIMAL(8,2) NOT NULL COMMENT '当前价格,单位分',
`product_quantity` INT(11) NOT NULL COMMENT '数量',
`product_icon` VARCHAR(512) NULL DEFAULT NULL COMMENT '小图',
`create_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
PRIMARY KEY (`detail_id`),
INDEX `idx_order_id` (`order_id`)
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
;
CREATE TABLE `order_master` (
`order_id` VARCHAR(32) NOT NULL,
`buyer_name` VARCHAR(32) NOT NULL COMMENT '买家名字',
`buyer_phone` VARCHAR(32) NOT NULL COMMENT '买家电话',
`buyer_address` VARCHAR(128) NOT NULL COMMENT '买家地址',
`buyer_openid` VARCHAR(64) NOT NULL COMMENT '买家微信openid',
`order_amount` DECIMAL(8,2) NOT NULL COMMENT '订单总金额',
`order_status` TINYINT(3) NOT NULL DEFAULT '0' COMMENT '订单状态, 默认为新下单',
`pay_status` TINYINT(3) NOT NULL DEFAULT '0' COMMENT '支付状态, 默认未支付',
`create_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
PRIMARY KEY (`order_id`),
INDEX `idx_buyer_openid` (`buyer_openid`)
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
;
CREATE TABLE `product_category` (
`category_id` INT(11) NOT NULL AUTO_INCREMENT,
`category_name` VARCHAR(64) NOT NULL COMMENT '类目名字',
`category_type` INT(11) NOT NULL COMMENT '类目编号',
`create_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
PRIMARY KEY (`category_id`)
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
AUTO_INCREMENT=6
;
CREATE TABLE `product_info` (
`product_id` VARCHAR(32) NOT NULL,
`product_name` VARCHAR(64) NOT NULL COMMENT '商品名称',
`product_price` DECIMAL(8,2) NOT NULL COMMENT '单价',
`product_stock` INT(11) NOT NULL COMMENT '库存',
`product_description` VARCHAR(64) NULL DEFAULT NULL COMMENT '描述',
`product_icon` VARCHAR(512) NULL DEFAULT NULL COMMENT '小图',
`product_status` TINYINT(3) NULL DEFAULT '0' COMMENT '商品状态,0正常1下架',
`category_type` INT(11) NOT NULL COMMENT '类目编号',
`create_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
PRIMARY KEY (`product_id`)
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
;
CREATE TABLE `seller_info` (
`id` VARCHAR(32) NOT NULL,
`username` VARCHAR(32) NOT NULL,
`password` VARCHAR(32) NOT NULL,
`openid` VARCHAR(64) NOT NULL COMMENT '微信openid',
`create_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
PRIMARY KEY (`id`)
)
COMMENT='卖家信息表'
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
;
-- --------------------------------------------------------
-- 主机: 127.0.0.1
-- Server version: 5.7.24 - MySQL Community Server (GPL)
-- Server OS: Win64
-- HeidiSQL 版本: 10.1.0.5464
-- --------------------------------------------------------
-- product_category(category_type) -> product_info(product_id) -> order_detail(order_id) -> order_master(buyer_openid) -> seller_info
INSERT INTO `product_category` (`category_id`, `category_name`, `category_type`, `create_time`, `update_time`) VALUES
(5, '中文xx1', 2, '2019-04-28 18:33:42', '2019-04-28 18:33:42');
INSERT INTO `product_info` (`product_id`, `product_name`, `product_price`, `product_stock`, `product_description`, `product_icon`, `product_status`, `category_type`, `create_time`, `update_time`) VALUES
('123456', '皮蛋粥', 3.20, 100, '很好喝的粥', 'http://xxxx.jpg', 0, 2, '2019-05-03 09:29:39', '2019-05-03 09:29:39');
INSERT INTO `order_detail` (`detail_id`, `order_id`, `product_id`, `product_name`, `product_price`, `product_quantity`, `product_icon`, `create_time`, `update_time`) VALUES
('1234567810', '111111111', '123456', '皮蛋粥', 2.20, 3, 'http://xxx.jpg', '2019-05-03 09:28:29', '2019-05-03 09:28:29');
INSERT INTO `order_master` (`order_id`, `buyer_name`, `buyer_phone`, `buyer_address`, `buyer_openid`, `order_amount`, `order_status`, `pay_status`, `create_time`, `update_time`) VALUES
('111111111', '师兄', '123456789123', '慕课网', '110110', 2.50, 0, 0, '2019-05-03 09:28:58', '2019-05-03 09:28:58');
INSERT INTO `seller_info` (`id`, `username`, `password`, `openid`, `create_time`, `update_time`) VALUES
('110110', 'admin', 'admin', 'abc', '2019-05-03 09:35:06', '2019-05-03 09:35:06');
|
<filename>springboot-shiro-demo/db/db.sql
CREATE DATABASE shiro_demo;
USE shiro_demo;
-- 用户表
CREATE TABLE t_user (
id BIGINT(16) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(128) NOT NULL,
`password` VARCHAR(128) NOT NULL,
PRIMARY KEY(id)
);
-- 用户token表
CREATE TABLE t_user_token (
id BIGINT(16) NOT NULL AUTO_INCREMENT,
user_id BIGINT(16) NOT NULL,
token VARCHAR(1024) NOT NULL,
PRIMARY KEY(id)
);
-- 用户角色表
CREATE TABLE t_role (
id BIGINT(16) NOT NULL AUTO_INCREMENT,
`permission` VARCHAR(4096) DEFAULT NULL,
`name` VARCHAR(128) NOT NULL,
PRIMARY KEY(id)
);
-- 用户角色关联表
CREATE TABLE t_user_role (
id BIGINT(16) NOT NULL AUTO_INCREMENT,
user_id BIGINT(16) NOT NULL,
role_id BIGINT(16) NOT NULL,
PRIMARY KEY(id)
);
|
<reponame>kironezhengyu/Corkboard
CREATE VIEW `corkboard`.`post_view` AS
SELECT post.postId, post.topic, message.messageId as messageId, message.userName AS user_commenting, post.userName AS user_op, nickname, message.ts, content, num_likes-1 as num_likes, link
FROM post, message, user, post_likes, attachment
WHERE post.postId = message.postId AND message.userName = user.username AND post_likes.postId=post.postId AND message.messageId=attachment.messageId
|
------------------START------------------
CREATE TABLE egadtax_agency (
id bigint NOT NULL,
code character varying(50) NOT NULL,
name character varying(250) NOT NULL,
ssid character varying(50),
emailid character varying(100),
mobilenumber character varying(10) NOT NULL,
address character varying(250),
createddate timestamp without time zone DEFAULT ('now'::text)::date NOT NULL,
lastmodifieddate timestamp without time zone,
createdby bigint NOT NULL,
lastmodifiedby bigint,
version bigint DEFAULT 0,
depositamount double precision NOT NULL,
status character varying(50) NOT NULL
);
CREATE SEQUENCE SEQ_egadtax_AGENCY;
ALTER TABLE ONLY egadtax_agency
ADD CONSTRAINT pk_adtax_agency PRIMARY KEY (id);
ALTER TABLE ONLY egadtax_agency
ADD CONSTRAINT unq_adtax_agency_code UNIQUE (code);
ALTER TABLE ONLY egadtax_agency
ADD CONSTRAINT unq_adtax_agency_name UNIQUE (name);
CREATE INDEX idx_adtax_agency_code ON egadtax_agency USING btree (code);
CREATE INDEX idx_adtax_agency_name ON egadtax_agency USING btree (name);
ALTER TABLE ONLY egadtax_agency
ADD CONSTRAINT fk_adtax_agency_createdby FOREIGN KEY (createdby) REFERENCES eg_user(id);
ALTER TABLE ONLY egadtax_agency
ADD CONSTRAINT fk_adtax_agency_lastmodifiedby FOREIGN KEY (lastmodifiedby) REFERENCES eg_user(id);
-------------------END-------------------
------------------START------------------
CREATE TABLE egadtax_category (
id bigint NOT NULL,
code character varying(50) NOT NULL,
name character varying(250) NOT NULL,
active boolean DEFAULT true NOT NULL,
createddate timestamp without time zone DEFAULT ('now'::text)::date NOT NULL,
createdby bigint NOT NULL,
version bigint DEFAULT 0,
lastmodifieddate timestamp without time zone,
lastmodifiedby bigint
);
CREATE SEQUENCE SEQ_egadtax_CATEGORY;
ALTER TABLE ONLY egadtax_category
ADD CONSTRAINT pk_adtax_category PRIMARY KEY (id);
ALTER TABLE ONLY egadtax_category
ADD CONSTRAINT unq_adtax_category_code UNIQUE (code);
ALTER TABLE ONLY egadtax_category
ADD CONSTRAINT unq_adtax_category_name UNIQUE (name);
ALTER TABLE ONLY egadtax_category
ADD CONSTRAINT fk_adtax_category_createdby FOREIGN KEY (createdby) REFERENCES eg_user(id);
-------------------END-------------------
------------------START------------------
CREATE TABLE egadtax_document_files (
document numeric,
filestore numeric
);
-------------------END-------------------
------------------START------------------
CREATE TABLE egadtax_hoarding (
id bigint NOT NULL,
applicationnumber character varying(25) NOT NULL,
applicationdate timestamp without time zone NOT NULL,
permissionnumber character varying(25) NOT NULL,
hoardingnumber character varying(25) NOT NULL,
hoardingname character varying(125) NOT NULL,
agency bigint NOT NULL,
advertiser character varying(125) NOT NULL,
advertisementparticular character varying(512) NOT NULL,
propertytype bigint NOT NULL,
propertynumber character varying(50),
ownerdetail character varying(125) NOT NULL,
category bigint NOT NULL,
subcategory bigint NOT NULL,
measurement bigint NOT NULL,
unitofmeasure bigint NOT NULL,
length bigint,
width bigint,
breadth bigint,
totalheight bigint,
class bigint,
revenueinspector bigint NOT NULL,
revenueboundary bigint,
adminboundry bigint NOT NULL,
address character varying(512) NOT NULL,
advertisementduration character varying(25) NOT NULL,
taxamount bigint NOT NULL,
encroachmentfee bigint,
demandid bigint,
version bigint DEFAULT 0,
createddate timestamp without time zone DEFAULT ('now'::text)::date NOT NULL,
lastmodifieddate timestamp without time zone,
createdby bigint NOT NULL,
lastmodifiedby bigint,
status bigint NOT NULL,
type bigint NOT NULL,
longitude double precision,
latitude double precision,
legacy boolean DEFAULT false,
penaltyCalculationDate timestamp without time zone,
pendingTax bigint DEFAULT 0
);
CREATE SEQUENCE SEQ_egadtax_hoarding;
ALTER TABLE ONLY egadtax_hoarding
ADD CONSTRAINT pk_adtax_hoarding PRIMARY KEY (id);
CREATE INDEX idx_adtax_hoarding_adminboundry ON egadtax_hoarding USING btree (adminboundry);
CREATE INDEX idx_adtax_hoarding_agency ON egadtax_hoarding USING btree (agency);
CREATE INDEX idx_adtax_hoarding_appnumber ON egadtax_hoarding USING btree (applicationnumber);
CREATE INDEX idx_adtax_hoarding_category ON egadtax_hoarding USING btree (category);
CREATE INDEX idx_adtax_hoarding_demandid ON egadtax_hoarding USING btree (demandid);
CREATE INDEX idx_adtax_hoarding_name ON egadtax_hoarding USING btree (hoardingname);
CREATE INDEX idx_adtax_hoarding_number ON egadtax_hoarding USING btree (hoardingnumber);
ALTER TABLE ONLY egadtax_hoarding
ADD CONSTRAINT fk_adtax_hoarding_adminboundry FOREIGN KEY (adminboundry) REFERENCES eg_boundary(id);
ALTER TABLE ONLY egadtax_hoarding
ADD CONSTRAINT fk_adtax_hoarding_agency FOREIGN KEY (agency) REFERENCES egadtax_agency(id);
ALTER TABLE ONLY egadtax_hoarding
ADD CONSTRAINT fk_adtax_hoarding_category FOREIGN KEY (category) REFERENCES egadtax_category(id);
ALTER TABLE ONLY egadtax_hoarding
ADD CONSTRAINT fk_adtax_hoarding_demand FOREIGN KEY (demandid) REFERENCES eg_demand(id);
ALTER TABLE ONLY egadtax_hoarding
ADD CONSTRAINT fk_adtax_hoarding_revenueboundary FOREIGN KEY (revenueboundary) REFERENCES eg_boundary(id);
-------------------END-------------------
------------------START------------------
CREATE TABLE egadtax_hoarding_docs (
hoarding bigint,
document bigint
);
-------------------END-------------------
------------------START------------------
CREATE TABLE egadtax_hoardingdocument (
id numeric NOT NULL,
doctype numeric,
description character varying(100),
docdate date,
enclosed boolean,
createddate timestamp without time zone,
createdby numeric,
lastmodifieddate timestamp without time zone,
lastmodifiedby numeric,
version numeric DEFAULT 0
);
create sequence SEQ_egadtax_document;
ALTER TABLE ONLY egadtax_hoardingdocument
ADD CONSTRAINT egadtax_document_pkey PRIMARY KEY (id);
-------------------END-------------------
------------------START------------------
CREATE TABLE egadtax_hoardingdocument_type (
id numeric NOT NULL,
name character varying(100),
mandatory boolean,
version numeric DEFAULT 0
);
create sequence SEQ_egadtax_document_TYPE;
ALTER TABLE ONLY egadtax_hoardingdocument_type
ADD CONSTRAINT egadtax_document_type_pkey PRIMARY KEY (id);
ALTER TABLE ONLY egadtax_hoardingdocument
ADD CONSTRAINT fk_adtax_document_doctype FOREIGN KEY (doctype) REFERENCES egadtax_hoardingdocument_type(id);
-------------------END-------------------
------------------START------------------
CREATE TABLE egadtax_rates (
id bigint NOT NULL,
category bigint NOT NULL,
subcategory bigint NOT NULL,
unitofmeasure bigint NOT NULL,
active boolean DEFAULT true NOT NULL,
validfromdate timestamp without time zone DEFAULT ('now'::text)::date,
validtodate timestamp without time zone,
version bigint DEFAULT 0,
createddate timestamp without time zone DEFAULT ('now'::text)::date NOT NULL,
lastmodifieddate timestamp without time zone,
createdby bigint NOT NULL,
lastmodifiedby bigint,
class bigint NOT NULL
);
CREATE SEQUENCE SEQ_egadtax_rates;
ALTER TABLE ONLY egadtax_rates
ADD CONSTRAINT pk_adtax_rates PRIMARY KEY (id);
ALTER TABLE ONLY egadtax_rates
ADD CONSTRAINT unq_adtax_rates_cat_subcat_uom_class UNIQUE (category, subcategory, unitofmeasure, class);
CREATE INDEX idx_adtax_rates_category ON egadtax_rates USING btree (category);
CREATE INDEX idx_adtax_rates_subcategory ON egadtax_rates USING btree (subcategory);
CREATE INDEX idx_adtax_rates_unitofmeasure ON egadtax_rates USING btree (unitofmeasure);
ALTER TABLE ONLY egadtax_rates
ADD CONSTRAINT fk_adtax_rates_category FOREIGN KEY (category) REFERENCES egadtax_category(id);
-------------------END-------------------
------------------START------------------
CREATE TABLE egadtax_rates_class (
id bigint NOT NULL,
description character varying(50) NOT NULL,
active boolean DEFAULT true NOT NULL,
version bigint DEFAULT 0
);
CREATE SEQUENCE SEQ_egadtax_ratesClass;
ALTER TABLE ONLY egadtax_rates_class
ADD CONSTRAINT pk_adtax_ratesclass PRIMARY KEY (id);
ALTER TABLE ONLY egadtax_rates
ADD CONSTRAINT fk_adtax_rates_class FOREIGN KEY (class) REFERENCES egadtax_rates_class(id);
ALTER TABLE ONLY egadtax_hoarding
ADD CONSTRAINT fk_adtax_hoarding_class FOREIGN KEY (class) REFERENCES egadtax_rates_class(id);
-------------------END-------------------
------------------START------------------
CREATE TABLE egadtax_rates_details (
id bigint NOT NULL,
unitfrom bigint DEFAULT 0 NOT NULL,
unitto bigint DEFAULT 1 NOT NULL,
rate bigint NOT NULL,
version bigint DEFAULT 0,
amount bigint DEFAULT 0 NOT NULL
);
CREATE SEQUENCE SEQ_egadtax_ratesdetails;
ALTER TABLE ONLY egadtax_rates_details
ADD CONSTRAINT pk_adtax_ratesdetails PRIMARY KEY (id);
CREATE INDEX idx_adtax_ratedtl_unitfrom ON egadtax_rates_details USING btree (unitfrom);
CREATE INDEX idx_adtax_ratedtl_unitto ON egadtax_rates_details USING btree (unitto);
ALTER TABLE ONLY egadtax_rates_details
ADD CONSTRAINT fk_adtax_ratesdetail_rate FOREIGN KEY (rate) REFERENCES egadtax_rates(id);
-------------------END-------------------
------------------START------------------
CREATE TABLE egadtax_revenueinspectors (
id bigint NOT NULL,
name character varying(50) NOT NULL,
active boolean DEFAULT true NOT NULL,
version bigint DEFAULT 0
);
CREATE SEQUENCE SEQ_egadtax_revenueinspectors;
ALTER TABLE ONLY egadtax_revenueinspectors
ADD CONSTRAINT pk_adtax_ri PRIMARY KEY (id);
ALTER TABLE ONLY egadtax_hoarding
ADD CONSTRAINT fk_adtax_hoarding_revenueinsptor FOREIGN KEY (revenueinspector) REFERENCES egadtax_revenueinspectors(id);
-------------------END-------------------
------------------START------------------
CREATE TABLE egadtax_subcategory (
id bigint NOT NULL,
category bigint NOT NULL,
code character varying(50) NOT NULL,
description character varying(512) NOT NULL,
active boolean DEFAULT true NOT NULL,
createddate timestamp without time zone DEFAULT ('now'::text)::date NOT NULL,
createdby bigint NOT NULL,
version bigint DEFAULT 0,
lastmodifieddate timestamp without time zone,
lastmodifiedby bigint
);
CREATE SEQUENCE SEQ_egadtax_SUBCATEGORY;
ALTER TABLE ONLY egadtax_subcategory
ADD CONSTRAINT pk_adtax_subcategory PRIMARY KEY (id);
ALTER TABLE ONLY egadtax_subcategory
ADD CONSTRAINT unq_adtax_subcategory_code UNIQUE (code);
ALTER TABLE ONLY egadtax_subcategory
ADD CONSTRAINT unq_adtax_subcategory_description UNIQUE (description);
ALTER TABLE ONLY egadtax_hoarding
ADD CONSTRAINT fk_adtax_hoarding_subcategory FOREIGN KEY (subcategory) REFERENCES egadtax_subcategory(id);
ALTER TABLE ONLY egadtax_rates
ADD CONSTRAINT fk_adtax_rates_subcategory FOREIGN KEY (subcategory) REFERENCES egadtax_subcategory(id);
ALTER TABLE ONLY egadtax_subcategory
ADD CONSTRAINT fk_adtax_subcategory_category FOREIGN KEY (category) REFERENCES egadtax_category(id);
ALTER TABLE ONLY egadtax_subcategory
ADD CONSTRAINT fk_adtax_subcategory_createdby FOREIGN KEY (createdby) REFERENCES eg_user(id);
-------------------END-------------------
------------------START------------------
CREATE TABLE egadtax_unitofmeasure (
id bigint NOT NULL,
code character varying(50) NOT NULL,
description character varying(50) NOT NULL,
active boolean DEFAULT true NOT NULL,
createdby bigint NOT NULL,
createddate timestamp without time zone DEFAULT ('now'::text)::date NOT NULL,
version bigint DEFAULT 0,
lastmodifieddate timestamp without time zone,
lastmodifiedby bigint
);
CREATE SEQUENCE SEQ_egadtax_UnitOfMeasure;
ALTER TABLE ONLY egadtax_unitofmeasure
ADD CONSTRAINT pk_adtax_unitofmeasure PRIMARY KEY (id);
CREATE SEQUENCE SEQ_egadtax_propertytype;
ALTER TABLE ONLY egadtax_hoarding
ADD CONSTRAINT fk_adtax_hoarding_uom FOREIGN KEY (unitofmeasure) REFERENCES egadtax_unitofmeasure(id);
ALTER TABLE ONLY egadtax_rates
ADD CONSTRAINT fk_adtax_rates_uom FOREIGN KEY (unitofmeasure) REFERENCES egadtax_unitofmeasure(id);
ALTER TABLE ONLY egadtax_unitofmeasure
ADD CONSTRAINT fk_adtax_unitofmeasure_createdby FOREIGN KEY (createdby) REFERENCES eg_user(id);
create sequence SEQ_advertisementbill_NUMBER;
-------------------END-------------------
|
CREATE OR REPLACE FUNCTION page_is_modal(
p_app_id NUMBER,
p_page_id NUMBER)
RETURN boolean
AS
l_page_is_modal NUMBER;
BEGIN
SELECT 1
INTO l_page_is_modal
FROM apex_application_pages
WHERE application_id = p_app_id
AND page_id = p_page_id
AND page_mode = 'Modal Dialog';
RETURN true;
EXCEPTION
WHEN no_data_found THEN
RETURN false;
END; |
-- IFS-4662
-- reference data should be identical in all environments
SET @none_sector_id = 66;
SET @none_area_id = 67;
INSERT INTO category (id, name, type, parent_id, description, priority)
VALUES (@none_sector_id, 'None', 'INNOVATION_SECTOR', NULL, NULL, -1),
(@none_area_id, 'None', 'INNOVATION_AREA', @none_sector_id, 'Not applicable', -1); |
SELECT *
FROM schedule_2018
WHERE GameNum = 2
INTO OUTFILE '/Users/briangoodwin/Documents/nfl_fantasyFootball_statHuzzah/data/games.csv';
-- FIELDS TERMINATED BY ','
-- ENCLOSED BY '"'
-- LINES TERMINATED BY '\n'; |
insert into bdot_buildings_all_new (
powiat,
lokalnyid,
status_bdot,
kategoria_bdot,
funkcja_ogolna_budynku,
funkcja_szczegolowa_budynku,
aktualnosc_geometrii,
aktualnosc_atrybutow,
building,
amenity,
man_made,
leisure,
historic,
tourism,
building_levels,
geom_4326
)
select
b.powiat,
b.lokalnyid,
b.status_bdot,
b.kategoria_bdot,
b.funkcja_ogolna_budynku,
b.funkcja_szczegolowa_budynku,
b.aktualnosc_geometrii,
b.aktualnosc_atrybutow,
case
when b.status_bdot = 'w budowie' then 'construction'
when coalesce(building, amenity, man_made, leisure, historic, tourism) is null then 'yes'
else m.building
end building,
m.amenity,
m.man_made,
m.leisure,
case
when b.zabytek in ('true', 't') then 'yes'
else m.historic
end historic,
m.tourism,
b.liczba_kondygnacji as building_levels,
st_transform(b.geom_a_2180, 4326) as geom_4326
from bdot.v_bubd_a b
left join bdot.buildings_categories_mappings m
on m.kategoria_bdot=b.kategoria_bdot
and m.funkcja_ogolna_budynku=coalesce(b.funkcja_ogolna_budynku, '')
and m.funkcja_szczegolowa_budynku=coalesce(b.funkcja_szczegolowa_budynku, '')
where 1=1
and b.status_bdot in ('eksploatowany', 'w budowie')
and (b.koniecwersjiobiektu is null or b.koniecwersjiobiektu > CURRENT_TIMESTAMP)
;
|
<reponame>ministryofjustice/prison-api
INSERT INTO OFFENDER_VSC_SENT_CALCULATIONS (OFFENDER_SENT_CALCULATION_ID,OFFENDER_BOOK_ID,CALCULATION_DATE,CALC_REASON_CODE,COMMENT_TEXT)
VALUES (-1,-1,TIMESTAMP '2001-01-01 00:00:00.000000','ADJUST','Some Comment Text');
|
-- file:rules.sql ln:450 expect:true
insert into rtest_view2 values (5)
|
# --- Created by Ebean DDL
# To stop Ebean DDL generation, remove this comment and start using Evolutions
# --- !Ups
create table affiliated (
affiliated_id bigint auto_increment not null,
bruker_username varchar(255),
event_event_id bigint,
alarm_time timestamp not null,
status integer,
constraint ck_affiliated_status check (status in (0,1,2,3)),
constraint pk_affiliated primary key (affiliated_id))
;
create table bruker (
username varchar(255) not null,
password varchar(255) not null,
email varchar(255) not null,
first_name varchar(255),
last_name varchar(255),
constraint pk_bruker primary key (username))
;
create table dbtest (
id integer auto_increment not null,
text varchar(255),
constraint pk_dbtest primary key (id))
;
create table event (
event_id bigint auto_increment not null,
title varchar(255),
text varchar(255),
place varchar(255),
creator_username varchar(255),
room_room_id bigint,
event_starts timestamp not null,
event_ends timestamp not null,
date_made timestamp not null,
constraint pk_event primary key (event_id))
;
create table gruppe (
group_id bigint auto_increment not null,
group_name varchar(255) not null,
creator_username varchar(255),
mother_gruppe_group_id bigint,
constraint pk_gruppe primary key (group_id))
;
create table notification (
notif_id bigint auto_increment not null,
bruker_username varchar(255),
notification varchar(255),
date_made timestamp not null,
constraint pk_notification primary key (notif_id))
;
create table room (
room_id bigint auto_increment not null,
name varchar(255) not null,
text varchar(255),
room_size integer not null,
constraint pk_room primary key (room_id))
;
create table bruker_gruppe (
bruker_username varchar(255) not null,
gruppe_group_id bigint not null,
constraint pk_bruker_gruppe primary key (bruker_username, gruppe_group_id))
;
create sequence bruker_seq;
alter table affiliated add constraint fk_affiliated_bruker_1 foreign key (bruker_username) references bruker (username) on delete restrict on update restrict;
create index ix_affiliated_bruker_1 on affiliated (bruker_username);
alter table affiliated add constraint fk_affiliated_event_2 foreign key (event_event_id) references event (event_id) on delete restrict on update restrict;
create index ix_affiliated_event_2 on affiliated (event_event_id);
alter table event add constraint fk_event_creator_3 foreign key (creator_username) references bruker (username) on delete restrict on update restrict;
create index ix_event_creator_3 on event (creator_username);
alter table event add constraint fk_event_room_4 foreign key (room_room_id) references room (room_id) on delete restrict on update restrict;
create index ix_event_room_4 on event (room_room_id);
alter table gruppe add constraint fk_gruppe_creator_5 foreign key (creator_username) references bruker (username) on delete restrict on update restrict;
create index ix_gruppe_creator_5 on gruppe (creator_username);
alter table gruppe add constraint fk_gruppe_motherGruppe_6 foreign key (mother_gruppe_group_id) references gruppe (group_id) on delete restrict on update restrict;
create index ix_gruppe_motherGruppe_6 on gruppe (mother_gruppe_group_id);
alter table notification add constraint fk_notification_bruker_7 foreign key (bruker_username) references bruker (username) on delete restrict on update restrict;
create index ix_notification_bruker_7 on notification (bruker_username);
alter table bruker_gruppe add constraint fk_bruker_gruppe_bruker_01 foreign key (bruker_username) references bruker (username) on delete restrict on update restrict;
alter table bruker_gruppe add constraint fk_bruker_gruppe_gruppe_02 foreign key (gruppe_group_id) references gruppe (group_id) on delete restrict on update restrict;
# --- !Downs
SET REFERENTIAL_INTEGRITY FALSE;
drop table if exists affiliated;
drop table if exists bruker;
drop table if exists bruker_gruppe;
drop table if exists dbtest;
drop table if exists event;
drop table if exists gruppe;
drop table if exists notification;
drop table if exists room;
SET REFERENTIAL_INTEGRITY TRUE;
drop sequence if exists bruker_seq;
|
-- SPDX-License-Identifier: Apache-2.0
-- Licensed to the Ed-Fi Alliance under one or more agreements.
-- The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0.
-- See the LICENSE and NOTICES files in the project root for more information.
PRINT N'Creating primary key [StudentIdentificationDocument_PK] on [edfi].[StudentIdentificationDocument]'
GO
ALTER TABLE [edfi].[StudentIdentificationDocument] ADD CONSTRAINT [StudentIdentificationDocument_PK] PRIMARY KEY CLUSTERED ([PersonalInformationVerificationTypeId], [IdentificationDocumentUseTypeId], [StudentUSI])
GO
PRINT N'Creating index [FK_StudentIdentificationDocument_IdentificationDocumentUseType] on [edfi].[StudentIdentificationDocument]'
GO
CREATE NONCLUSTERED INDEX [FK_StudentIdentificationDocument_IdentificationDocumentUseType] ON [edfi].[StudentIdentificationDocument] ([IdentificationDocumentUseTypeId])
GO
PRINT N'Creating index [FK_StudentIdentificationDocument_CountryDescriptor] on [edfi].[StudentIdentificationDocument]'
GO
CREATE NONCLUSTERED INDEX [FK_StudentIdentificationDocument_CountryDescriptor] ON [edfi].[StudentIdentificationDocument] ([IssuerCountryDescriptorId])
GO
PRINT N'Creating index [FK_StudentIdentificationDocument_PersonalInformationVerificationType] on [edfi].[StudentIdentificationDocument]'
GO
CREATE NONCLUSTERED INDEX [FK_StudentIdentificationDocument_PersonalInformationVerificationType] ON [edfi].[StudentIdentificationDocument] ([PersonalInformationVerificationTypeId])
GO
PRINT N'Creating index [FK_StudentIdentificationDocument_Student] on [edfi].[StudentIdentificationDocument]'
GO
CREATE NONCLUSTERED INDEX [FK_StudentIdentificationDocument_Student] ON [edfi].[StudentIdentificationDocument] ([StudentUSI])
GO
PRINT N'Adding constraints to [edfi].[StudentIdentificationDocument]'
GO
ALTER TABLE [edfi].[StudentIdentificationDocument] ADD CONSTRAINT [StudentIdentificationDocument_DF_CreateDate] DEFAULT (getdate()) FOR [CreateDate]
GO
|
-- MySQL Script generated by MySQL Workbench
-- Mon May 28 14:58:32 2018
-- Model: New Model Version: 1.0
-- MySQL Workbench Forward Engineering
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES';
-- -----------------------------------------------------
-- Schema bd_unicorn
-- -----------------------------------------------------
-- -----------------------------------------------------
-- Schema bd_unicorn
-- -----------------------------------------------------
CREATE SCHEMA IF NOT EXISTS `bd_unicorn` DEFAULT CHARACTER SET utf8 ;
USE `bd_unicorn` ;
-- -----------------------------------------------------
-- Table `bd_unicorn`.`aviao`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `bd_unicorn`.`aviao` (
`id_aviao` INT NOT NULL,
`modelo` VARCHAR(100) NOT NULL,
`ocupacao` INT NOT NULL,
`velocidade` DOUBLE NOT NULL,
`gasto` DOUBLE NOT NULL,
PRIMARY KEY (`id_aviao`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `bd_unicorn`.`aeroporto`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `bd_unicorn`.`aeroporto` (
`id_aeroporto` INT NOT NULL,
`nome` VARCHAR(100) NOT NULL,
`cidade` VARCHAR(100) NOT NULL,
`estado` VARCHAR(100) NOT NULL,
`pais` VARCHAR(100) NOT NULL,
`qtd_avioes` INT NOT NULL,
`id_aviao` INT NOT NULL,
PRIMARY KEY (`id_aeroporto`),
INDEX `fk_aeroporto_aviao_idx` (`id_aviao` ASC),
CONSTRAINT `fk_aeroporto_aviao`
FOREIGN KEY (`id_aviao`)
REFERENCES `bd_unicorn`.`aviao` (`id_aviao`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `bd_unicorn`.`voo`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `bd_unicorn`.`voo` (
`id_voo` INT NOT NULL,
`data_saida` DATE NOT NULL,
`hora_saida` TIME NOT NULL,
`duracao` TIME NOT NULL,
`origem` INT NOT NULL,
`destino` INT NOT NULL,
PRIMARY KEY (`id_voo`),
INDEX `fk_voo_aeroporto1_idx` (`origem` ASC),
INDEX `fk_voo_aeroporto2_idx` (`destino` ASC),
CONSTRAINT `fk_voo_aeroporto1`
FOREIGN KEY (`origem`)
REFERENCES `bd_unicorn`.`aeroporto` (`id_aeroporto`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_voo_aeroporto2`
FOREIGN KEY (`destino`)
REFERENCES `bd_unicorn`.`aeroporto` (`id_aeroporto`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `bd_unicorn`.`passaporte`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `bd_unicorn`.`passaporte` (
`id_passaporte` VARCHAR(8) NOT NULL,
`pais_emissor` VARCHAR(3) NOT NULL,
`sobrenome` VARCHAR(100) NOT NULL,
`nome` VARCHAR(100) NOT NULL,
`nascimento` VARCHAR(100) NOT NULL,
`identidade` VARCHAR(11) NOT NULL,
`sexo` CHAR NOT NULL,
`pai` VARCHAR(100) NOT NULL,
`mae` VARCHAR(100) NOT NULL,
`data_expedicao` DATE NOT NULL,
`valido_ate` DATE NOT NULL,
`autoridade` VARCHAR(50) NOT NULL,
PRIMARY KEY (`id_passaporte`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `bd_unicorn`.`passageiro`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `bd_unicorn`.`passageiro` (
`cpf_passageiro` INT NOT NULL,
`nome` VARCHAR(100) NOT NULL,
`sobrenome` VARCHAR(100) NOT NULL,
`nascimento` DATE NOT NULL,
`sexo` CHAR(1) NOT NULL,
`rg` INT NOT NULL,
`nacionalidade` VARCHAR(100) NOT NULL,
`id_passaporte` VARCHAR(8) NULL,
PRIMARY KEY (`cpf_passageiro`),
INDEX `fk_passageiro_passaporte1_idx` (`id_passaporte` ASC),
CONSTRAINT `fk_passageiro_passaporte1`
FOREIGN KEY (`id_passaporte`)
REFERENCES `bd_unicorn`.`passaporte` (`id_passaporte`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `bd_unicorn`.`passagem`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `bd_unicorn`.`passagem` (
`id_passagem` INT NOT NULL,
`valor` DOUBLE NOT NULL,
`id_voo` INT NOT NULL,
`cpf_passageiro` INT NOT NULL,
PRIMARY KEY (`id_passagem`),
INDEX `fk_passagem_voo1_idx` (`id_voo` ASC),
INDEX `fk_passagem_passageiro1_idx` (`cpf_passageiro` ASC),
CONSTRAINT `fk_passagem_voo1`
FOREIGN KEY (`id_voo`)
REFERENCES `bd_unicorn`.`voo` (`id_voo`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_passagem_passageiro1`
FOREIGN KEY (`cpf_passageiro`)
REFERENCES `bd_unicorn`.`passageiro` (`cpf_passageiro`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
SET SQL_MODE=@OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
|
<filename>src/main/java/jkami/demo/dao/sql/IUserOrderDao/insertOrders.sql
<#list orders as os>
insert into tb_user_order(name,user_id,create_date) values('${os.name}',${os.user.id!os.userId},'${os.createDate?string("yyyy-MM-dd HH:mm:ss")}');
</#list> |
<reponame>viswaratha12/dbwarden<filename>DMS5/V_Experiment_Plex_Members_TSV_Entry.sql
/****** Object: View [dbo].[V_Experiment_Plex_Members_TSV_Entry] ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[V_Experiment_Plex_Members_TSV_Entry]
As
SELECT ExpIDPivotQ.Plex_Exp_ID As Exp_ID,
E.Experiment_Num As Experiment,
ExpIDPivotQ.Channel1_ExpID,
ExpIDPivotQ.Channel2_ExpID,
ExpIDPivotQ.Channel3_ExpID,
ExpIDPivotQ.Channel4_ExpID,
ExpIDPivotQ.Channel5_ExpID,
ExpIDPivotQ.Channel6_ExpID,
ExpIDPivotQ.Channel7_ExpID,
ExpIDPivotQ.Channel8_ExpID,
ExpIDPivotQ.Channel9_ExpID,
ExpIDPivotQ.Channel10_ExpID,
ExpIDPivotQ.Channel11_ExpID,
ExpIDPivotQ.Channel12_ExpID,
ExpIDPivotQ.Channel13_ExpID,
ExpIDPivotQ.Channel14_ExpID,
ExpIDPivotQ.Channel15_ExpID,
ExpIDPivotQ.Channel16_ExpID,
ChannelTypePivotQ.Channel1_Type,
ChannelTypePivotQ.Channel2_Type,
ChannelTypePivotQ.Channel3_Type,
ChannelTypePivotQ.Channel4_Type,
ChannelTypePivotQ.Channel5_Type,
ChannelTypePivotQ.Channel6_Type,
ChannelTypePivotQ.Channel7_Type,
ChannelTypePivotQ.Channel8_Type,
ChannelTypePivotQ.Channel9_Type,
ChannelTypePivotQ.Channel10_Type,
ChannelTypePivotQ.Channel11_Type,
ChannelTypePivotQ.Channel12_Type,
ChannelTypePivotQ.Channel13_Type,
ChannelTypePivotQ.Channel14_Type,
ChannelTypePivotQ.Channel15_Type,
ChannelTypePivotQ.Channel16_Type,
CommentPivotQ.Channel1_Comment,
CommentPivotQ.Channel2_Comment,
CommentPivotQ.Channel3_Comment,
CommentPivotQ.Channel4_Comment,
CommentPivotQ.Channel5_Comment,
CommentPivotQ.Channel6_Comment,
CommentPivotQ.Channel7_Comment,
CommentPivotQ.Channel8_Comment,
CommentPivotQ.Channel9_Comment,
CommentPivotQ.Channel10_Comment,
CommentPivotQ.Channel11_Comment,
CommentPivotQ.Channel12_Comment,
CommentPivotQ.Channel13_Comment,
CommentPivotQ.Channel14_Comment,
CommentPivotQ.Channel15_Comment,
CommentPivotQ.Channel16_Comment
From (
SELECT Plex_Exp_ID,
[1] As Channel1_ExpID,
[2] As Channel2_ExpID,
[3] As Channel3_ExpID,
[4] As Channel4_ExpID,
[5] As Channel5_ExpID,
[6] As Channel6_ExpID,
[7] As Channel7_ExpID,
[8] As Channel8_ExpID,
[9] As Channel9_ExpID,
[10] As Channel10_ExpID,
[11] As Channel11_ExpID,
[12] As Channel12_ExpID,
[13] As Channel13_ExpID,
[14] As Channel14_ExpID,
[15] As Channel15_ExpID,
[16] As Channel16_ExpID
FROM ( SELECT PlexMembers.Plex_Exp_ID,
PlexMembers.Channel,
Cast(PlexMembers.Exp_ID As varchar(12)) + ': ' + E.Experiment_Num As ChannelExperiment
FROM T_Experiment_Plex_Members PlexMembers
INNER JOIN T_Experiments E
On PlexMembers.Exp_ID = E.Exp_ID) AS SourceTable
PIVOT ( Max(ChannelExperiment)
FOR Channel
IN ( [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16] ) ) AS PivotData
) ExpIDPivotQ
INNER JOIN T_Experiments E
On ExpIDPivotQ.Plex_Exp_ID = E.Exp_ID
INNER JOIN
(
SELECT Plex_Exp_ID,
[1] As Channel1_Type,
[2] As Channel2_Type,
[3] As Channel3_Type,
[4] As Channel4_Type,
[5] As Channel5_Type,
[6] As Channel6_Type,
[7] As Channel7_Type,
[8] As Channel8_Type,
[9] As Channel9_Type,
[10] As Channel10_Type,
[11] As Channel11_Type,
[12] As Channel12_Type,
[13] As Channel13_Type,
[14] As Channel14_Type,
[15] As Channel15_Type,
[16] As Channel16_Type
FROM ( SELECT PM.Plex_Exp_ID,
PM.Channel,
ChannelTypeName.Channel_Type_Name
FROM T_Experiment_Plex_Members PM
INNER JOIN T_Experiment_Plex_Channel_Type_Name ChannelTypeName
On PM.Channel_Type_ID = ChannelTypeName.Channel_Type_ID
) AS SourceTable
PIVOT ( Max(Channel_Type_Name)
FOR Channel
IN ( [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16] ) ) AS PivotData
) ChannelTypePivotQ
On ExpIDPivotQ.Plex_Exp_ID = ChannelTypePivotQ.Plex_Exp_ID
INNER JOIN
(
SELECT Plex_Exp_ID,
[1] As Channel1_Comment,
[2] As Channel2_Comment,
[3] As Channel3_Comment,
[4] As Channel4_Comment,
[5] As Channel5_Comment,
[6] As Channel6_Comment,
[7] As Channel7_Comment,
[8] As Channel8_Comment,
[9] As Channel9_Comment,
[10] As Channel10_Comment,
[11] As Channel11_Comment,
[12] As Channel12_Comment,
[13] As Channel13_Comment,
[14] As Channel14_Comment,
[15] As Channel15_Comment,
[16] As Channel16_Comment
FROM ( SELECT PM.Plex_Exp_ID,
PM.Channel,
PM.Comment
FROM T_Experiment_Plex_Members PM
) AS SourceTable
PIVOT ( Max(Comment)
FOR Channel
IN ( [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14], [15], [16] ) ) AS PivotData
) CommentPivotQ
On ExpIDPivotQ.Plex_Exp_ID = CommentPivotQ.Plex_Exp_ID
GO
|
<filename>Arch(.NetCore)/Bhbk.Mssql.Identity/svc/Views/uvw_Refresh.sql
CREATE VIEW [svc].[uvw_Refresh]
AS
SELECT
Id
,IssuerId
,AudienceId
,UserId
,RefreshValue
,RefreshType
,ValidFromUtc
,ValidToUtc
,IssuedUtc
FROM
[dbo].[tbl_Refresh] |
<filename>sql/_06_manipulation/_01_select/_018_range_compare/cases/1002.sql
--[er]test comparison operator using two different types
create class DML_0001
( int_col integer,
var_col varchar(20),
set_col set (int, varchar(10)) );
insert into DML_0001 values (1,'test1', {1,'test1'});
insert into DML_0001 values (2,'test1', {1,'test1'});
insert into DML_0001 values (3,'test2', {1,'test2'});
insert into DML_0001 values (4,'test1', {2,'test1'});
insert into DML_0001 values (5,'test2', {2,'test2'});
select set_col from dml_0001 where int_col < set_col;
drop DML_0001; |
alter table FloatResultHarnessed modify column value float after name;
alter table FloatResultManual modify column value float after name;
alter table Hardware drop remarks;
alter table Process add hardwareTypeId int DEFAULT NULL COMMENT 'deprecated field';
alter table Process add key fk40 (hardwareTypeId);
alter table Process add constraint fk40 foreign key (hardwareTypeId) references HardwareType(id);
CREATE TABLE Result
( id int NOT NULL AUTO_INCREMENT,
activityId int NOT NULL,
status int NOT NULL,
createdBy varchar(50) NOT NULL,
creationTS timestamp NULL,
PRIMARY KEY (id),
CONSTRAINT fk90 FOREIGN KEY (activityId) REFERENCES Activity (id),
INDEX fk90 (activityId)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE NextProcessVersion
(id int NOT NULL AUTO_INCREMENT,
name varchar(50) NOT NULL COMMENT 'will match something in Process.name',
nextVersion int DEFAULT 0,
createdBy varchar(50) NOT NULL,
creationTS timestamp NULL,
PRIMARY KEY (id),
UNIQUE INDEX(name)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
COMMENT='Serve up next available version number for NextProcessVersion.name';
alter table IntResultHarnessed drop key ix156;
alter table IntResultHarnessed add constraint ix156 unique (activityId, name, schemaName, schemaVersion, schemaInstance);
alter table FloatResultHarnessed drop key ix166;
alter table FloatResultHarnessed add constraint ix166 unique (activityId, name, schemaName, schemaVersion, schemaInstance);
alter table StringResultHarnessed drop key ix186;
alter table StringResultHarnessed add constraint ix186 unique (activityId, name, schemaName, schemaVersion, schemaInstance);
delete from DbRelease where major='0' and minor='14' and patch='1';
update DbRelease set status='CURRENT' where major='0' and minor='14' and patch='0';
|
-- For now make all items resell able which are trade able
-- See Include/AB/Entities/Item.h for ItemFlag's
UPDATE public.game_items SET item_flags = item_flags | 16 WHERE item_flags & 4 = 4;
UPDATE public.versions SET value = value + 1 WHERE name = 'game_items';
UPDATE public.versions SET value = 19 WHERE name = 'schema';
|
use master;
set quoted_identifier off;
IF OBJECT_ID('tempdb..#database_files_temp') IS NOT NULL
DROP TABLE #database_files_temp;
CREATE TABLE #database_files_temp
(
[ComputerName] [sql_variant] NULL,
[db_name] [nvarchar](128) NULL,
[type_desc] [nvarchar](60) NULL,
[file_group] [sysname] NULL,
[name] [sysname] NOT NULL,
[physical_name] [nvarchar](260) NOT NULL,
[size_GB] [decimal](20, 2) NULL,
[max_size] [int] NOT NULL,
[growth] [int] NOT NULL,
[SpaceUsed_gb] [decimal](20, 2) NULL,
[FreeSpace_GB] [decimal](20, 2) NULL,
[Used_Percentage] [decimal](20, 2) NULL,
[log_reuse_wait_desc] [nvarchar](60) NULL
);
INSERT #database_files_temp
exec sp_MSforeachdb "
use [?] ;
--if exists (select * from sys.databases where name = '?' and replica_id is null)
--begin
-- Find used/free space in Database Files
select SERVERPROPERTY('MachineName') AS ComputerName, --SERVERPROPERTY ( 'ComputerNamePhysicalNetBIOS' ) as PhysicalName, @@servername as sql_instance, ,
DB_NAME() AS [db_name], f.type_desc, fg.name as file_group, f.name, f.physical_name, CONVERT(DECIMAL(20,2),(f.size*8.0)/1024/1024) as size_GB, f.max_size, f.growth,
CONVERT(DECIMAL(20,2),CAST(FILEPROPERTY(f.name, 'SpaceUsed') as BIGINT)/128.0/1024) AS SpaceUsed_gb
,CONVERT(DECIMAL(20,2),(size/128.0 -CAST(FILEPROPERTY(f.name,'SpaceUsed') AS INT)/128.0)/1024) AS FreeSpace_GB
,cast((FILEPROPERTY(f.name,'SpaceUsed')*100.0)/size as decimal(20,2)) as Used_Percentage
,CASE WHEN f.type_desc = 'LOG' THEN (select d.log_reuse_wait_desc from sys.databases as d where d.name = DB_NAME()) ELSE NULL END as log_reuse_wait_desc
from sys.database_files f left join sys.filegroups fg on fg.data_space_id = f.data_space_id
order by FreeSpace_GB desc;
--end
";
SELECT *
FROM #database_files_temp;
|
<reponame>taherm/ideasowners
-- phpMyAdmin SQL Dump
-- version 4.6.5.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Apr 18, 2018 at 08:24 AM
-- Server version: 10.1.21-MariaDB
-- PHP Version: 7.1.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `ideasowners`
--
-- --------------------------------------------------------
--
-- Table structure for table `menus`
--
CREATE TABLE `menus` (
`id` int(10) UNSIGNED NOT NULL,
`title` varchar(191) 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 `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(6, '2014_10_12_000000_create_users_table', 1),
(7, '2014_10_12_100000_create_password_resets_table', 1),
(8, '2018_03_28_051512_create_services_table', 1),
(9, '2018_03_28_051810_create_menus_table', 1),
(10, '2018_03_28_051921_create_sliders_table', 1),
(11, '2018_03_31_133301_add_column_to_services', 2),
(12, '2018_04_11_101858_create_portfolios_table', 3),
(13, '2018_04_17_173807_add_menuid_to_services', 4),
(14, '2018_04_17_175728_remove_from_menu', 5),
(15, '2018_04_17_180029_remove_from_menu', 6),
(16, '2018_04_17_182837_add_menuid_to_portfolio', 7);
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `portfolios`
--
CREATE TABLE `portfolios` (
`id` int(10) UNSIGNED NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`tag` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`menu_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `services`
--
CREATE TABLE `services` (
`id` int(10) UNSIGNED NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`icon` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`menu_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `sliders`
--
CREATE TABLE `sliders` (
`id` int(10) UNSIGNED NOT NULL,
`image` varchar(191) 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 `users`
--
CREATE TABLE `users` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) 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 `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Admin', '<EMAIL>', <PASSWORD>', '<PASSWORD>', '2018-04-15 11:46:24', '2018-04-15 11:46:24');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `menus`
--
ALTER TABLE `menus`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `portfolios`
--
ALTER TABLE `portfolios`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `services`
--
ALTER TABLE `services`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `sliders`
--
ALTER TABLE `sliders`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `menus`
--
ALTER TABLE `menus`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=56;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT for table `portfolios`
--
ALTER TABLE `portfolios`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
--
-- AUTO_INCREMENT for table `services`
--
ALTER TABLE `services`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26;
--
-- AUTO_INCREMENT for table `sliders`
--
ALTER TABLE `sliders`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
/*!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 */;
|
<reponame>lewisblackburn/tweetah
/*
Warnings:
- You are about to drop the column `image` on the `Tweet` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "Tweet" DROP COLUMN "image",
ADD COLUMN "images" TEXT[];
-- CreateTable
CREATE TABLE "Retweet" (
"tweetId" INTEGER NOT NULL,
"userId" INTEGER NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY ("tweetId","userId")
);
-- CreateTable
CREATE TABLE "Comment" (
"tweetId" INTEGER NOT NULL,
"userId" INTEGER NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY ("tweetId","userId")
);
-- AddForeignKey
ALTER TABLE "Retweet" ADD FOREIGN KEY ("tweetId") REFERENCES "Tweet"("id") ON DELETE CASCADE ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Retweet" ADD FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Comment" ADD FOREIGN KEY ("tweetId") REFERENCES "Tweet"("id") ON DELETE CASCADE ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Comment" ADD FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
|
INSERT INTO DivisionPersonnel ( RcCode, DivisionName, EmployeeId, LastName, FirstName, JobTitle, Grade, Step, HireDate, LastIncrease, GradeEntry, StepEntry, WigiDueDate, Tenure, HrOrgName, Email, MailCode, PhoneNumber, Office, SupervisorId, SupervisorLastName, SupervisorFirstName, Supervisor )
SELECT DISTINCT Employees.RcCode, DLookUp("Title", "Divisions", "Divisions.Code = '" & RcCode &"'") AS DivisionName, EmployeeData.EmployeeId, EmployeeData.LastName, EmployeeData.FirstName, EmployeeData.JobTitle, EmployeeData.Grade, EmployeeData.Step, EmployeeData.HireDate, EmployeeData.LastIncrease, EmployeeData.GradeEntry, EmployeeData.StepEntry, EmployeeData.WigiDue, DateDiff("yyyy",HireDate,Now()) AS Tenure, EmployeeData.HrOrgName, LocatorData.Email, LocatorData.MailCode, LocatorData.PhoneNumber, LocatorData.Office, DLookUp("SupervisorId", "EmployeeData", "EmployeeData.EmployeeId = '" & [SupervisorId]& "'") AS SupervisorId, DLookUp("LastName", "EmployeeData", "EmployeeData.EmployeeId = '" & [SupervisorId]&"'") AS SupervisorLastName, DLookUp("FirstName", "EmployeeData", "EmployeeData.EmployeeId = '" & [SupervisorId]&"'") AS SupervisorFirstName, LEFT(SupervisorFirstName, 1) & ". " & SupervisorLastName AS Supervisor
FROM LocatorData INNER JOIN (Employees INNER JOIN EmployeeData ON Employees.EpaNumber = EmployeeData.EmployeeId) ON (LocatorData.FirstName = EmployeeData.FirstName) AND (LocatorData.LastName = EmployeeData.LastName)
ORDER BY Employees.RcCode, EmployeeData.LastName;
|
<filename>jet/1_sql_growth_calculation.sql<gh_stars>0
-- https://sqliteonline.com/
/*
Given a posts table that contains a created_at timestamp column write a query that returns a first date of the month, a number of posts created in a given month and a month-over-month growth rate.
The resulting set should be ordered chronologically by date.
Note:
percent growth rate can be negative
percent growth rate should be rounded to one digit after the decimal point and immediately followed by a percent symbol "%". See the desired output below for the reference.
The resulting set should look similar to the following column:
date (format YYYY-MM-DD), count, percent_growth
*/
WITH PREP_SET AS (
SELECT DISTINCT TO_CHAR(date_trunc('MONTH',"date"::TIMESTAMP), 'YYYY/MM/DD') AS MONTHLY_DATE
, COUNT(VALUE) OVER (PARTITION BY TO_CHAR(date_trunc('MONTH',"date"::TIMESTAMP), 'YYYY/MM/DD')) AS CURR_MONTH_COUNT
from out_3 as posts
)
SELECT MONTHLY_DATE
, CURR_MONTH_COUNT
-- FORMULA:
-- Percent Change = 100 × (Present or Future Value – Past or Present Value) / Past or Present Value
, 100 * TRUNC((CURR_MONTH_COUNT - LAG(CURR_MONTH_COUNT,1) OVER (ORDER BY MONTHLY_DATE))::NUMERIC / LAG(CURR_MONTH_COUNT,1) OVER (ORDER BY MONTHLY_DATE)::NUMERIC,1) as PERCENT_GROWTH
FROM PREP_SET
ORDER BY MONTHLY_DATE ASC |
<gh_stars>0
drop function if exists sa_id();
create function sa_id() returns uuid as $$
begin
return '6c6cc02e-cca6-451d-9928-1f4d898c838e';
end;
$$ language plpgsql;
drop type if exists user_status cascade;
create type user_status as enum(
'new',
'active',
'inactive',
'deleted'
);
drop table if exists users;
create table users(
id uuid,
username varchar(50) not null,
password varchar(50) not null,
created_at timestamp not null default current_timestamp,
status user_status not null default 'new',
primary key(id),
unique(username)
);
insert into users(id, username, password) values(
sa_id(),
'sa',
<PASSWORD>%'
);
drop function if exists delete_user();
create function delete_user() returns trigger as $$
begin
if old.id = sa_id() then
raise exception 'cannot delete the system administrator';
else
return old;
end if;
end;
$$ language plpgsql;
create trigger before_user_delete
before delete on users
for each row
execute function delete_user();
|
<gh_stars>1-10
// @author <NAME> (minor modifications)
// This Cypher Query Language (CQL) Script is for
// loading the definitions for UMLS Predicates,
// based on Predicate name matching
//
// See http://bmcbioinformatics.biomedcentral.com/articles/10.1186/1471-2105-12-486
//
// The script uses the CSV loader functionality of Neo4j.
//
// See the DATALOADING_R2.3_README.md for
// more details on how to run the script.
//
//******Predicate Definition Loader*****
CREATE CONSTRAINT ON (predicate:Predicate) ASSERT predicate.name IS UNIQUE;
// ... First, I check for a local predicate definitions file...
LOAD CSV FROM "file:///umls/umls_predicate.txt" AS row fieldterminator '|'
WITH row
MERGE (predicate:Predicate:IdentifiedEntity:DatabaseEntity {name : row[0]})
ON CREATE SET
predicate.uri = "http://bmcbioinformatics.biomedcentral.com/articles/10.1186/1471-2105-12-486#"+row[0],
predicate.accessionId = "UMLS:"+row[0],
predicate.name = row[0],
predicate.description = row[1],
predicate.versionDate = timestamp(),
predicate.version = TOINT('1')
ON MATCH SET
predicate.description = row[1]
; |
<filename>db_book_reviewer.sql
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Sep 04, 2020 at 05:06 PM
-- Server version: 10.4.11-MariaDB
-- PHP Version: 7.4.6
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: `db_book_reviewer`
--
-- --------------------------------------------------------
--
-- Table structure for table `Book`
--
CREATE TABLE `Book` (
`id` int(11) NOT NULL,
`title` varchar(128) NOT NULL,
`page` varchar(11) NOT NULL,
`author` varchar(233) NOT NULL,
`isbn` varchar(10) NOT NULL,
`publish_year` year(4) NOT NULL,
`publisher` varchar(128) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Book`
--
INSERT INTO `Book` (`id`, `title`, `page`, `author`, `isbn`, `publish_year`, `publisher`) VALUES
(1, 'buku matematika', '101', 'Riana', '12837482', 2019, 'Gramedia'),
(4, 'buku penjas', '101', 'Riana', '12837482', 2019, 'Gramedia'),
(5, 'buku penjas', '101', 'Zainal Arfin', '12837482', 2019, 'Gramedia');
-- --------------------------------------------------------
--
-- Table structure for table `Review`
--
CREATE TABLE `Review` (
`id` int(11) NOT NULL,
`Book_id` int(11) NOT NULL,
`review` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Review`
--
INSERT INTO `Review` (`id`, `Book_id`, `review`) VALUES
(1, 1, 'lorem ipsum'),
(4, 1, 'bukunya kurang bagus'),
(5, 1, 'bukunya bagus banget');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `Book`
--
ALTER TABLE `Book`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `Review`
--
ALTER TABLE `Review`
ADD PRIMARY KEY (`id`),
ADD KEY `relation_book` (`Book_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `Book`
--
ALTER TABLE `Book`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `Review`
--
ALTER TABLE `Review`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `Review`
--
ALTER TABLE `Review`
ADD CONSTRAINT `relation_book` FOREIGN KEY (`Book_id`) REFERENCES `Review` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
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 */;
|
<gh_stars>1-10
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jun 13, 2021 at 07:50 AM
-- Server version: 10.4.11-MariaDB
-- PHP Version: 7.2.30
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: `sibkd`
--
-- --------------------------------------------------------
--
-- Table structure for table `tbl_akun`
--
CREATE TABLE `tbl_akun` (
`id` int(128) NOT NULL,
`username` varchar(128) NOT NULL,
`password` varchar(128) NOT NULL,
`nama` varchar(128) NOT NULL,
`jabatan` varchar(128) NOT NULL,
`level` varchar(128) NOT NULL,
`id_opd` varchar(128) NOT NULL,
`admin` varchar(128) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_akun`
--
INSERT INTO `tbl_akun` (`id`, `username`, `password`, `nama`, `jabatan`, `level`, `id_opd`, `admin`) VALUES
(9, 'admin', '<PASSWORD>', '<PASSWORD>', 'admin', 'admin', '0', 'admin'),
(27, 'pptk', 'pptk', 'pptk', 'pptk', 'pptk', '035', 'admin'),
(28, 'pppb', 'pppb', 'pppb', 'pppb', 'pppb', '035', 'admin'),
(29, 'pbp', 'pbp', 'pbp', 'pbp', 'pbp', '035', 'admin'),
(30, 'pptkdinkes', 'pptkdinkes', 'pptkdinkes', 'pptkdinkes', 'pptk', '002', 'admin'),
(32, 'pppbdinkes', 'pppbdinkes', 'pppbdinkes', 'pppbdinkes', 'pppb', '002', 'admin'),
(33, 'pbpdinkes', 'pbpdinkes', 'pbpdinkes', 'pbpdinkes', 'pbp', '002', 'admin');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_detailmutasi`
--
CREATE TABLE `tbl_detailmutasi` (
`id_detailmutasi` int(128) NOT NULL,
`id_mutasi` int(128) NOT NULL,
`id_spj` int(128) NOT NULL,
`total_barang_in` int(128) DEFAULT NULL,
`total_barang_out` int(128) DEFAULT NULL,
`username` varchar(128) NOT NULL,
`tanggal_input` datetime NOT NULL DEFAULT current_timestamp(),
`tahun_order` year(4) NOT NULL DEFAULT current_timestamp(),
`statusorder` varchar(128) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_detailmutasi`
--
INSERT INTO `tbl_detailmutasi` (`id_detailmutasi`, `id_mutasi`, `id_spj`, `total_barang_in`, `total_barang_out`, `username`, `tanggal_input`, `tahun_order`, `statusorder`) VALUES
(1, 1, 21, 4, NULL, 'pptk', '2021-06-12 09:40:39', 2021, ''),
(2, 1, 20, 6, NULL, 'pptk', '2021-06-12 09:40:45', 2021, '');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_detailmutasisementara`
--
CREATE TABLE `tbl_detailmutasisementara` (
`id_detailmutasisementara` int(128) NOT NULL,
`id_mutasi` int(128) NOT NULL,
`id_ssh` int(128) NOT NULL,
`total_barang_in` int(128) DEFAULT NULL,
`total_barang_out` int(128) DEFAULT NULL,
`username` varchar(128) NOT NULL,
`tanggal_input` datetime NOT NULL DEFAULT current_timestamp(),
`tahun_order` year(4) NOT NULL DEFAULT current_timestamp(),
`statusorder` varchar(128) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_detailmutasisementara`
--
INSERT INTO `tbl_detailmutasisementara` (`id_detailmutasisementara`, `id_mutasi`, `id_ssh`, `total_barang_in`, `total_barang_out`, `username`, `tanggal_input`, `tahun_order`, `statusorder`) VALUES
(1, 1, 12, 4, NULL, 'pptk', '2021-06-11 13:14:10', 2021, ''),
(2, 1, 13, 6, NULL, 'pptk', '2021-06-11 13:14:17', 2021, '');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_kiba`
--
CREATE TABLE `tbl_kiba` (
`id_kiba` int(128) NOT NULL,
`id_opd` varchar(128) NOT NULL,
`no_urut` int(128) NOT NULL,
`nama_barang` varchar(128) NOT NULL,
`no_kode_barang` varchar(128) NOT NULL,
`no_register` varchar(128) NOT NULL,
`keterangan_tanah` varchar(128) NOT NULL,
`luas_catat_kib` double NOT NULL,
`koreksi_bertambah` double NOT NULL,
`koreksi_berkurang` double NOT NULL,
`luas_sertifikat` double NOT NULL,
`tahun_pengadaan` year(4) NOT NULL,
`alamat` varchar(128) NOT NULL,
`hak_status_tanah` varchar(128) NOT NULL,
`tanggal_sertifikat` date NOT NULL,
`nomor_sertifikat` varchar(128) NOT NULL,
`penggunaan` varchar(128) NOT NULL,
`asal_usul` varchar(128) NOT NULL,
`harga` double NOT NULL,
`keterangan_perolehan` varchar(128) NOT NULL,
`keterangan` int(128) NOT NULL,
`jumlah_sertifikat` int(128) NOT NULL,
`jumlah_tanah` int(128) NOT NULL,
`keterangan_penguasaan` varchar(128) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_kiba`
--
INSERT INTO `tbl_kiba` (`id_kiba`, `id_opd`, `no_urut`, `nama_barang`, `no_kode_barang`, `no_register`, `keterangan_tanah`, `luas_catat_kib`, `koreksi_bertambah`, `koreksi_berkurang`, `luas_sertifikat`, `tahun_pengadaan`, `alamat`, `hak_status_tanah`, `tanggal_sertifikat`, `nomor_sertifikat`, `penggunaan`, `asal_usul`, `harga`, `keterangan_perolehan`, `keterangan`, `jumlah_sertifikat`, `jumlah_tanah`, `keterangan_penguasaan`) VALUES
(1, '1', 3, '3', '3', '3', 'TANAH JALAN', 3, 3, 3, 3, 2010, '3', '3', '0003-03-04', '3', '3', '3', 3, 'SURAT PERNYATAAN PENYERAHAN TANAH', 3, 3, 3, '3'),
(4, '35', 5, '5', '5', '5', 'TANAH BANGUNAN', 5, 5, 5, 5, 2009, '5', '5', '2021-06-03', '5', '5', '5', 5, 'AKTA JUAL BELI', 5, 5, 5, '5'),
(5, '35', 9, '9', '9', '9', 'TANAH BANGUNAN', 9, 9, 9, 9, 2009, '9', '9', '0008-09-07', '9', '9', '9', 9, 'AKTA JUAL BELI', 9, 9, 9, '9');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_kibb`
--
CREATE TABLE `tbl_kibb` (
`id_kibb` int(128) NOT NULL,
`id_opd` varchar(128) NOT NULL,
`no_urut` int(128) NOT NULL,
`nama_barang` varchar(128) NOT NULL,
`roda_dua` int(128) NOT NULL,
`roda_tiga` int(128) NOT NULL,
`roda_empat` int(128) NOT NULL,
`roda_enam` int(128) NOT NULL,
`merk` varchar(128) NOT NULL,
`type` varchar(128) NOT NULL,
`bahan` varchar(128) NOT NULL,
`tahun_pembelian` year(4) NOT NULL,
`nomor_pabrik` varchar(128) NOT NULL,
`nomor_rangka` varchar(128) NOT NULL,
`nomor_mesin` varchar(128) NOT NULL,
`nomor_polisi` varchar(128) NOT NULL,
`nomor_bpkb` varchar(128) NOT NULL,
`sumber_perolehan` varchar(128) NOT NULL,
`harga` double NOT NULL,
`pejabat_pengguna` varchar(128) NOT NULL,
`keterangan` varchar(128) NOT NULL,
`no_stnk` varchar(128) NOT NULL,
`berlaku_sampai` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_kibb`
--
INSERT INTO `tbl_kibb` (`id_kibb`, `id_opd`, `no_urut`, `nama_barang`, `roda_dua`, `roda_tiga`, `roda_empat`, `roda_enam`, `merk`, `type`, `bahan`, `tahun_pembelian`, `nomor_pabrik`, `nomor_rangka`, `nomor_mesin`, `nomor_polisi`, `nomor_bpkb`, `sumber_perolehan`, `harga`, `pejabat_pengguna`, `keterangan`, `no_stnk`, `berlaku_sampai`) VALUES
(2, '1', 9, '9', 9, 9, 9, 9, '9', '9', '9', 2008, '9', '9', '9', '9', '9', '9', 9, '9', 'Hilang', '9', '2021-06-30'),
(3, '35', 2, '2', 2, 2, 2, 2, '2', '2', '2', 2008, '2', '2', '2', '2', '2', '2', 2, '2', 'Tidak Ada BPKB', '2', '2021-05-25'),
(5, '1', 1, '1', 1, 1, 1, 1, '1', '1', '1', 2009, '1', '1', '1', '1', '1', '1', 1, '1', '1', '1', '2021-05-21'),
(6, '35', 2, '2', 2, 2, 2, 2, '2', '2', '2', 2009, '2', '2', '2', '2', '2', '2', 2, '2', 'Tidak Ada BPKB', '2', '2021-05-25');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_mutasi`
--
CREATE TABLE `tbl_mutasi` (
`id_mutasi` int(11) NOT NULL,
`jenis_mutasi` enum('Pengadaan','Penyaluran','','') DEFAULT NULL,
`tahun_pesan` year(4) NOT NULL DEFAULT current_timestamp(),
`tanggal_pesan` date DEFAULT NULL,
`id_rekanan` int(11) DEFAULT NULL,
`keterangan` enum('Disetujui','Ditolak','Menunggu Konfirmasi','') DEFAULT NULL,
`username` varchar(128) DEFAULT NULL,
`id_opd` varchar(128) DEFAULT NULL,
`no_suratpermohonanpptk` varchar(50) DEFAULT NULL,
`no_suratpermohonanpenyedia` varchar(50) DEFAULT NULL,
`no_suratbalasan` varchar(50) DEFAULT NULL,
`no_suratperintahpengiriman` varchar(50) DEFAULT NULL,
`no_bapenyedia` varchar(50) DEFAULT NULL,
`no_bappk` varchar(50) DEFAULT NULL,
`statusorder` varchar(128) DEFAULT NULL,
`tanggalterimabarang` date DEFAULT NULL,
`paketpekerjaan` varchar(128) NOT NULL,
`spk_paketpekerjaan` varchar(128) NOT NULL,
`tanggal_suratpermohonanpptk` date DEFAULT NULL,
`tanggal_suratpermohonanpenyedia` date DEFAULT NULL,
`tanggal_suratbalasan` date DEFAULT NULL,
`tanggal_suratperintahpengiriman` date DEFAULT NULL,
`tanggal_bapenyedia` date DEFAULT NULL,
`tanggal_bappk` date DEFAULT NULL,
`waktu_penyelesaian` varchar(128) NOT NULL,
`belanja` varchar(200) DEFAULT NULL,
`memesan` varchar(200) DEFAULT NULL,
`no_kwitansi` varchar(128) DEFAULT NULL,
`kode_kegiatan` varchar(128) NOT NULL,
`kode_rekening` varchar(128) NOT NULL,
`no_faktur` varchar(128) DEFAULT NULL,
`no_suratpermohonanpembayaran` varchar(128) DEFAULT NULL,
`no_bapembayaran` varchar(128) DEFAULT NULL,
`tanggal_kwitansi` date DEFAULT NULL,
`tanggal_faktur` date DEFAULT NULL,
`tanggal_suratpermohonanpembayaran` date DEFAULT NULL,
`tanggal_bapembayaran` date DEFAULT NULL,
`no_sppb` varchar(128) DEFAULT NULL,
`tanggal_sppb` date DEFAULT NULL,
`no_bapenyaluranbarang` varchar(128) DEFAULT NULL,
`tanggal_bapenyaluranbarang` date DEFAULT NULL,
`statuspenyaluran` enum('Belum Diproses','Sudah Disalurkan','','') DEFAULT NULL,
`tanggalpenyaluran` date DEFAULT NULL,
`untuk` varchar(200) DEFAULT NULL,
`ppn` int(128) NOT NULL,
`pphpasal22` int(128) NOT NULL,
`pphpasal23` int(128) NOT NULL,
`pasal4ayat2` int(128) NOT NULL,
`pajakdaerah` int(128) NOT NULL,
`namakegiatan` varchar(128) NOT NULL,
`namapekerjaan` varchar(128) NOT NULL,
`potppn` int(128) NOT NULL,
`potpphpasal22` int(128) NOT NULL,
`potpphpasal23` int(128) NOT NULL,
`potpasal4ayat2` int(128) NOT NULL,
`potpajakdaerah` int(128) NOT NULL,
`hari` int(128) NOT NULL,
`sppbelanja` varchar(128) NOT NULL,
`no_spp` varchar(128) NOT NULL,
`tanggal_spp` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_mutasi`
--
INSERT INTO `tbl_mutasi` (`id_mutasi`, `jenis_mutasi`, `tahun_pesan`, `tanggal_pesan`, `id_rekanan`, `keterangan`, `username`, `id_opd`, `no_suratpermohonanpptk`, `no_suratpermohonanpenyedia`, `no_suratbalasan`, `no_suratperintahpengiriman`, `no_bapenyedia`, `no_bappk`, `statusorder`, `tanggalterimabarang`, `paketpekerjaan`, `spk_paketpekerjaan`, `tanggal_suratpermohonanpptk`, `tanggal_suratpermohonanpenyedia`, `tanggal_suratbalasan`, `tanggal_suratperintahpengiriman`, `tanggal_bapenyedia`, `tanggal_bappk`, `waktu_penyelesaian`, `belanja`, `memesan`, `no_kwitansi`, `kode_kegiatan`, `kode_rekening`, `no_faktur`, `no_suratpermohonanpembayaran`, `no_bapembayaran`, `tanggal_kwitansi`, `tanggal_faktur`, `tanggal_suratpermohonanpembayaran`, `tanggal_bapembayaran`, `no_sppb`, `tanggal_sppb`, `no_bapenyaluranbarang`, `tanggal_bapenyaluranbarang`, `statuspenyaluran`, `tanggalpenyaluran`, `untuk`, `ppn`, `pphpasal22`, `pphpasal23`, `pasal4ayat2`, `pajakdaerah`, `namakegiatan`, `namapekerjaan`, `potppn`, `potpphpasal22`, `potpphpasal23`, `potpasal4ayat2`, `potpajakdaerah`, `hari`, `sppbelanja`, `no_spp`, `tanggal_spp`) VALUES
(1, 'Pengadaan', 2021, '2021-06-11', 11, 'Disetujui', 'pptk', '035', '...............', '...............', '...............', '...............', '...............', '...............', '-', NULL, '', '', '2021-06-02', '2021-06-02', '2021-06-15', '2021-06-23', '2021-06-30', '2021-06-30', '2021-06-22', '...............', '...............', '...............', '...............', '...............', '...............', '...............', '...............', '2021-06-23', '2021-06-08', '2021-06-16', '2021-06-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, 10, 10, 10, 10, '...............', '...............', 10, 10, 10, 10, 10, 3, '...............', '...............', '2021-06-08');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_opd`
--
CREATE TABLE `tbl_opd` (
`id_opd` varchar(50) NOT NULL,
`nama_opd` varchar(50) NOT NULL,
`alamat_opd` varchar(100) NOT NULL,
`kecamatan_opd` varchar(50) NOT NULL,
`alamat_kop_opd` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_opd`
--
INSERT INTO `tbl_opd` (`id_opd`, `nama_opd`, `alamat_opd`, `kecamatan_opd`, `alamat_kop_opd`) VALUES
('001', 'Dinas Pendidikan', '-', '-', '-'),
('002', 'Dinas Kesehatan', '-', '-', '-'),
('003', 'Rumah Sakit Umum Daerah', '-', '-', '-'),
('004', 'Dinas Pekerjaan Umum Dan Penataan Ruang', '-', '-', '-'),
('005', 'Dinas Perumahan Rakyat Dan Kawasan Permukiman', '-', '-', '-'),
('006', 'Kantor Kesatuan Bangsa Dan Politik', '-', '-', '-'),
('007', 'Satuan Polisi Pamong Praja', '-', '-', '-'),
('008', 'Dinas Pemadam Kebakaran Dan Penyelamatan', '-', '-', '-'),
('009', 'Dinas Sosial', '-', '-', '-'),
('010', 'Badan Penanggulangan Bencana Daerah', '-', '-', '-'),
('011', 'Dinas Tenaga Kerja', '-', '-', '-'),
('012', 'Dinas Pemberdayaan Perempuan Dan Perlindungan Anak', '-', '-', '-'),
('013', 'Badan Ketahanan Pangan', '-', '-', '-'),
('014', 'Dinas Lingkungan Hidup', '-', '-', '-'),
('015', 'Dinas Administrasi Kependudukan Dan Pencatatan Sip', '-', '-', '-'),
('016', 'Dinas Pemberdayaan Masyarakat Dan Desa', '-', '-', '-'),
('017', 'Dinas Pengendalian Penduduk Dan Keluarga Berencana', '-', '-', '-'),
('018', 'Dinas Perhubungan', '-', '-', '-'),
('019', 'Dinas Komunikasi Dan Informatika', '-', '-', '-'),
('020', 'Dinas Penanaman Modal Dan Pelayanan Satu Pintu', '`-', '-', '-'),
('021', 'Dinas Perpustakaan', '-', '-', '-'),
('022', 'Dinas Pariwisata', '-', '-', '-'),
('023', 'Dinas Pertanian', '-', '-', '-'),
('024', 'Dinas Perdagangan', '-', '-', '-'),
('025', 'Sekretariat Daerah', '-', '-', '-'),
('026', 'Sekretariat Dprd', '-', '-', '-'),
('027', 'Kecamatan Padangsidimpuan Utara', '-', '-', '-'),
('028', 'Kecamatan Padangsidimpuan Selatan', '-', '-', '-'),
('029', 'Kecamatan Padangsidimpuan Tenggara', '-', '-', '-'),
('030', 'Kecamatan Padangsidimpuan Batunadua', '-', '-', '-'),
('031', 'Kecamatan Padangsidimpuan Hutaimbaru', '-', '-', '-'),
('032', 'Kecamatan Padangsidimpuan Angkola Julu', '-', '-', '-'),
('033', 'Inspektorat Daerah', '-', '-', '-'),
('034', 'Badan Perencanaan, Penelitian Dan Pengembangan Dae', '-', '-', '-'),
('035', 'Badan Keuangan Daerah', 'Jln. Jen. Dr. Abd.Haris Nasution Pal - IV Pijorkoling', 'Kec. Padangsidimpuan Tenggara', 'Jln. Jen. Dr. Abd.Haris Nasution Pal - IV Pijorkoling Telp (0634)27075 Fax. (0634) 27075'),
('036', 'Badan Kepegawaian Dan Pengembangan Sumber Daya Man', '-', '-', '-');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_rekanan`
--
CREATE TABLE `tbl_rekanan` (
`id_rekanan` int(11) NOT NULL,
`nama_pimpinan` varchar(50) NOT NULL,
`nama_rekanan` varchar(50) NOT NULL,
`alamat_rekanan` varchar(100) NOT NULL,
`npwp_rekanan` varchar(128) NOT NULL,
`rekening_rekanan` varchar(128) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_rekanan`
--
INSERT INTO `tbl_rekanan` (`id_rekanan`, `nama_pimpinan`, `nama_rekanan`, `alamat_rekanan`, `npwp_rekanan`, `rekening_rekanan`) VALUES
(11, 'Dra. Sulhana Lely Lubis.Ak., M.M.', 'UD. PERCETAKAN PUSTAKA TIMUR', 'J<NAME>. Kelapa I No. 4 Kel. Timbangan Kec. Padangsidimpuan Utara', '-', '-');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_riwayatkibb`
--
CREATE TABLE `tbl_riwayatkibb` (
`id_riwayatkibb` int(128) NOT NULL,
`id_kibb` varchar(128) NOT NULL,
`tanggal_pindah` date NOT NULL,
`id_opd_awal` varchar(128) NOT NULL,
`id_opd_akhir` varchar(128) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_riwayatkibb`
--
INSERT INTO `tbl_riwayatkibb` (`id_riwayatkibb`, `id_kibb`, `tanggal_pindah`, `id_opd_awal`, `id_opd_akhir`) VALUES
(5, '2', '2021-05-29', '1', '35');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_sk`
--
CREATE TABLE `tbl_sk` (
`id` int(11) NOT NULL,
`no_sk` varchar(128) NOT NULL,
`tanggal_sk` date NOT NULL,
`tanggal_skberakhir` date NOT NULL,
`nama` varchar(128) NOT NULL,
`nip` varchar(128) NOT NULL,
`jabatan` varchar(128) NOT NULL,
`gol_jabatan` varchar(128) NOT NULL,
`gol` varchar(128) NOT NULL,
`id_user` varchar(128) NOT NULL,
`id_opd` varchar(128) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_sk`
--
INSERT INTO `tbl_sk` (`id`, `no_sk`, `tanggal_sk`, `tanggal_skberakhir`, `nama`, `nip`, `jabatan`, `gol_jabatan`, `gol`, `id_user`, `id_opd`) VALUES
(5, 'nomor sk atasan langsung', '2021-01-01', '2021-12-31', 'Sulaiman Lubis, SE', '19690501 199303 1 004', 'Pembina Utama Muda', 'Pembina Utama Muda', 'Atasan Langsung', 'pppb', '035'),
(6, 'nomor sk pejabat tata usaha barang', '2021-01-01', '2021-12-31', 'Nama Pejabat Penatausahaan Barang', 'Nip Pejabat Penatausahaan Barang', 'Jabatan Pejabat Penatausahaan Barang', 'Jabatan Pejabat Penatausahaan Barang', 'Pejabat Penatausahaan Barang', 'pppb', '035'),
(7, 'nomor sk pbp', '2021-01-01', '2021-12-31', 'Nama PBP', 'Nip PBP', 'Jabatan PBP', 'Golongan PBP', 'Pengurus Barang Pengguna', 'pppb', '035'),
(8, 'nomor sk atasan langsung', '2021-01-01', '2021-12-31', 'Sulaiman Lubis, SE', '19690501 199303 1 004', 'Pembina Utama Muda', 'Pengguna Anggaran', 'Pengguna Anggaran', 'pppb', '035'),
(9, 'nomor sk atasan langsung', '2021-01-01', '2021-12-31', 'Sulaiman Lubis, SE', '19690501 199303 1 004', 'Pembina Utama Muda', 'Pembina Utama Muda', 'Pejabat Pembuat Komitmen', 'pppb', '035'),
(10, 'nomor sk atasan langsung', '2021-01-01', '2021-12-31', 'Nama Bendahara', '19690501 199303 1 004', 'Pembina Utama Muda', 'Pembina Utama Muda', 'Bendahara', 'pppb', '035');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_spj`
--
CREATE TABLE `tbl_spj` (
`id_spj` int(11) NOT NULL,
`Kelompok_spj` enum('Umum','Industri','Kesehatan','Pertanian','Pekerjaan Umum','Lain Lain') NOT NULL,
`Jenisbarang_spj` varchar(128) NOT NULL,
`Namabarang_spj` varchar(50) NOT NULL,
`Ukuran_spj` varchar(128) NOT NULL,
`Spesifikasi_spj` varchar(200) NOT NULL,
`Satuan_spj` varchar(10) NOT NULL,
`Hargasatuan_spj` int(50) NOT NULL,
`Tahun_spj` int(15) NOT NULL,
`tanggal_input` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_spj`
--
INSERT INTO `tbl_spj` (`id_spj`, `Kelompok_spj`, `Jenisbarang_spj`, `Namabarang_spj`, `Ukuran_spj`, `Spesifikasi_spj`, `Satuan_spj`, `Hargasatuan_spj`, `Tahun_spj`, `tanggal_input`) VALUES
(20, 'Industri', 'Komputer Dan Perlengkapannya', 'Flash Disk Kingston', '4 Giga', '4 Giga', 'Buah', 50000, 2021, '2021-06-04 17:46:51'),
(21, 'Kesehatan', 'Obat-Obatan', '4-Epeedo-10 Epirubisin Inj 10mg/5ml', '', '', 'Ampul', 240000, 2021, '2021-06-04 17:47:27');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_ssh`
--
CREATE TABLE `tbl_ssh` (
`id_ssh` int(11) NOT NULL,
`Kelompok_ssh` enum('Umum','Industri','Kesehatan','Pertanian','Pekerjaan Umum','Lain Lain') NOT NULL,
`Jenisbarang_ssh` varchar(128) NOT NULL,
`Namabarang_ssh` varchar(50) NOT NULL,
`Ukuran_ssh` varchar(128) NOT NULL,
`Spesifikasi_ssh` varchar(200) NOT NULL,
`Satuan_ssh` varchar(10) NOT NULL,
`Hargasatuan_ssh` int(50) NOT NULL,
`Tahun_ssh` int(15) NOT NULL,
`tanggal_input` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_ssh`
--
INSERT INTO `tbl_ssh` (`id_ssh`, `Kelompok_ssh`, `Jenisbarang_ssh`, `Namabarang_ssh`, `Ukuran_ssh`, `Spesifikasi_ssh`, `Satuan_ssh`, `Hargasatuan_ssh`, `Tahun_ssh`, `tanggal_input`) VALUES
(12, 'Industri', 'Komputer Dan Perlengkapannya', 'Flash Disk Kingston', '4 Giga', '4 Giga', 'Buah', 56430, 2021, '2021-03-18 00:08:06'),
(13, 'Umum', '', 'Anak panah platinum plus ', '', 'Point, Noek,Spine, Vine', 'Lusin', 4940000, 2021, '2021-03-18 00:16:40'),
(14, 'Kesehatan', 'Obat-Obatan', '4-Epeedo-10 Epirubisin Inj 10mg/5ml', '', '', 'Ampul', 257751, 2021, '2021-03-18 00:19:00'),
(15, 'Lain Lain', '', 'Rehabilitasi Taman Kantor', '', '', 'Kegiatan', 59500000, 2021, '2021-03-18 00:19:33'),
(16, 'Pekerjaan Umum', '<NAME>', 'Mandor', '', '', 'Orang/Hari', 195750, 2021, '2021-03-18 00:20:23');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tbl_akun`
--
ALTER TABLE `tbl_akun`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tbl_detailmutasi`
--
ALTER TABLE `tbl_detailmutasi`
ADD PRIMARY KEY (`id_detailmutasi`);
--
-- Indexes for table `tbl_detailmutasisementara`
--
ALTER TABLE `tbl_detailmutasisementara`
ADD PRIMARY KEY (`id_detailmutasisementara`);
--
-- Indexes for table `tbl_kiba`
--
ALTER TABLE `tbl_kiba`
ADD PRIMARY KEY (`id_kiba`);
--
-- Indexes for table `tbl_kibb`
--
ALTER TABLE `tbl_kibb`
ADD PRIMARY KEY (`id_kibb`);
--
-- Indexes for table `tbl_mutasi`
--
ALTER TABLE `tbl_mutasi`
ADD PRIMARY KEY (`id_mutasi`);
--
-- Indexes for table `tbl_opd`
--
ALTER TABLE `tbl_opd`
ADD PRIMARY KEY (`id_opd`);
--
-- Indexes for table `tbl_rekanan`
--
ALTER TABLE `tbl_rekanan`
ADD PRIMARY KEY (`id_rekanan`);
--
-- Indexes for table `tbl_riwayatkibb`
--
ALTER TABLE `tbl_riwayatkibb`
ADD PRIMARY KEY (`id_riwayatkibb`);
--
-- Indexes for table `tbl_sk`
--
ALTER TABLE `tbl_sk`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tbl_spj`
--
ALTER TABLE `tbl_spj`
ADD PRIMARY KEY (`id_spj`);
--
-- Indexes for table `tbl_ssh`
--
ALTER TABLE `tbl_ssh`
ADD PRIMARY KEY (`id_ssh`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `tbl_akun`
--
ALTER TABLE `tbl_akun`
MODIFY `id` int(128) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35;
--
-- AUTO_INCREMENT for table `tbl_detailmutasi`
--
ALTER TABLE `tbl_detailmutasi`
MODIFY `id_detailmutasi` int(128) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `tbl_detailmutasisementara`
--
ALTER TABLE `tbl_detailmutasisementara`
MODIFY `id_detailmutasisementara` int(128) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `tbl_kiba`
--
ALTER TABLE `tbl_kiba`
MODIFY `id_kiba` int(128) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `tbl_kibb`
--
ALTER TABLE `tbl_kibb`
MODIFY `id_kibb` int(128) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `tbl_mutasi`
--
ALTER TABLE `tbl_mutasi`
MODIFY `id_mutasi` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `tbl_rekanan`
--
ALTER TABLE `tbl_rekanan`
MODIFY `id_rekanan` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `tbl_riwayatkibb`
--
ALTER TABLE `tbl_riwayatkibb`
MODIFY `id_riwayatkibb` int(128) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `tbl_sk`
--
ALTER TABLE `tbl_sk`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `tbl_spj`
--
ALTER TABLE `tbl_spj`
MODIFY `id_spj` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;
--
-- AUTO_INCREMENT for table `tbl_ssh`
--
ALTER TABLE `tbl_ssh`
MODIFY `id_ssh` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
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 */;
|
CREATE TABLE [dbo].[GeneralLedgerSetting] (
[Id] [int] NOT NULL
IDENTITY (1,1),
[CompanyId] [int] NULL,
[PayableAccountId] [int] NULL,
[PurchaseDiscountAccountId] [int] NULL,
[GoodsReceiptNoteClearingAccountId] [int] NULL,
[SalesDiscountAccountId] [int] NULL,
[ShippingChargeAccountId] [int] NULL,
[PermanentAccountId] [int] NULL,
[IncomeSummaryAccountId] [int] NULL
,CONSTRAINT [PK_dbo.GeneralLedgerSetting] PRIMARY KEY CLUSTERED ([Id])
)
CREATE NONCLUSTERED INDEX [IX_CompanyId] ON [dbo].[GeneralLedgerSetting] ([CompanyId])
CREATE NONCLUSTERED INDEX [IX_GoodsReceiptNoteClearingAccountId] ON [dbo].[GeneralLedgerSetting] ([GoodsReceiptNoteClearingAccountId])
CREATE NONCLUSTERED INDEX [IX_PayableAccountId] ON [dbo].[GeneralLedgerSetting] ([PayableAccountId])
CREATE NONCLUSTERED INDEX [IX_PurchaseDiscountAccountId] ON [dbo].[GeneralLedgerSetting] ([PurchaseDiscountAccountId])
CREATE NONCLUSTERED INDEX [IX_SalesDiscountAccountId] ON [dbo].[GeneralLedgerSetting] ([SalesDiscountAccountId])
CREATE NONCLUSTERED INDEX [IX_ShippingChargeAccountId] ON [dbo].[GeneralLedgerSetting] ([ShippingChargeAccountId])
GO
|
<gh_stars>0
CREATE SCHEMA [alert]
|
<filename>server/migrations/default/1649411170772_alter_table_public_post_alter_column_content/up.sql<gh_stars>0
alter table "public"."post" rename column "content" to "url";
|
<reponame>shakilakhtar/pro-apache-phoenix
CREATE TABLE IF NOT EXISTS CUSTOMER (
CUST_ID BIGINT NOT NULL,
FNAME VARCHAR(50),
LNAME VARCHAR(50),
DOB DATE,
CITY VARCHAR(30),
STATE VARCHAR(50) CONSTRAINT PK PRIMARY KEY (CUST_ID)
)
|
CREATE TABLE [dbo].[Community_ParentList]
(
[CM_ID] [int] NOT NULL,
[Parent_CM_ID] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Community_ParentList] ADD CONSTRAINT [PK_Community_ParentList] PRIMARY KEY CLUSTERED ([CM_ID], [Parent_CM_ID]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_Community_ParentList_CMIDInclParentCMID] ON [dbo].[Community_ParentList] ([CM_ID]) INCLUDE ([Parent_CM_ID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Community_ParentList] ADD CONSTRAINT [FK_Community_ParentList_Community] FOREIGN KEY ([CM_ID]) REFERENCES [dbo].[Community] ([CM_ID]) ON DELETE CASCADE ON UPDATE CASCADE
GO
ALTER TABLE [dbo].[Community_ParentList] ADD CONSTRAINT [FK_Community_ParentList_Community_Parent] FOREIGN KEY ([Parent_CM_ID]) REFERENCES [dbo].[Community] ([CM_ID])
GO
|
CREATE TABLE properties (
name VARCHAR(64) NOT NULL,
type INT NOT NULL,
modified_time BIGINT NOT NULL,
value VARCHAR(256),
PRIMARY KEY (name, type)
); |
select vpc_endpoint_id, title, akas, tags, tags_src
from aws.aws_vpc_endpoint
where vpc_endpoint_id = '{{ output.resource_id.value }}'
|
-- phpMyAdmin SQL Dump
-- version 3.4.10.1deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Erstellungszeit: 22. Mrz 2013 um 13:42
-- Server Version: 5.5.29
-- PHP-Version: 5.3.10-1ubuntu3.6
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
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 utf8 */;
--
-- Datenbank: `nakade`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `credentials`
--
CREATE TABLE IF NOT EXISTS `credentials` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uid` int(11) NOT NULL COMMENT 'user ID',
`username` varchar(50) COLLATE utf8_bin NOT NULL,
`password` varchar(32) COLLATE utf8_bin NOT NULL COMMENT 'md5 verschlüsseltes passwort',
`email` varchar(120) COLLATE utf8_bin NOT NULL COMMENT 'die nakade email des accounts',
`created` datetime NOT NULL COMMENT 'für die zeitspanne von verifikation und erstellung ',
`verifyString` varchar(16) COLLATE utf8_bin NOT NULL COMMENT 'zeichenkette für die benutzer email',
`verified` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'verified flag',
`active` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT 'aktives konto ',
`firstLogin` datetime DEFAULT NULL COMMENT 'erster LogIn',
`lastLogin` datetime DEFAULT NULL COMMENT 'letzter LogIn',
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `uid` (`uid`),
UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=2 ;
/*!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 */; |
DROP TRIGGER trigger_name ON table_name;
|
<reponame>Zhaojia2019/cubrid-testcases
-- create class and add superclass and adding attribute having same sttribute name and same type and then drop superclass
create class employee
(emp_id integer,
emp_name string);
create class manager
(emp_id1 integer
);
alter class employee
add SUPERCLASS manager;
ALTER class manager
add ATTRIBUTE emp_name string;
drop manager;
drop employee;
|
create or replace package body df_qbe_roof
is
function new (
object_id in df_qbe_roofs.object_id%TYPE default null,
object_type in acs_objects.object_type%TYPE default 'df_qbe_roof',
creation_date in acs_objects.creation_date%TYPE default sysdate,
creation_user in acs_objects.creation_user%TYPE default null,
creation_ip in acs_objects.creation_ip%TYPE default null,
context_id in acs_objects.context_id%TYPE default null
) return df_qbe_roofs.object_id%TYPE
is
v_object_id df_qbe_roofs.object_id%TYPE;
begin
v_object_id := acs_object.new (
object_id => object_id,
object_type => object_type,
creation_date => creation_date,
creation_user => creation_user,
creation_ip => creation_ip,
context_id => context_id
);
insert into df_qbe_roofs
(object_id)
values
(v_object_id);
return v_object_id;
end new;
procedure delete (
i_object_id in df_qbe_roofs.object_id%TYPE
)
is
begin
delete from df_qbe_roofs
where object_id = i_object_id;
acs_object.delete(i_object_id);
end delete;
end df_qbe_roof;
/
show errors;
|
-- phpMyAdmin SQL Dump
-- version 4.7.0
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Aug 09, 2018 at 05:15 PM
-- Server version: 5.6.34-log
-- PHP Version: 7.1.7
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
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: `vmtblog`
--
-- --------------------------------------------------------
--
-- Table structure for table `blog`
--
DROP TABLE IF EXISTS `blog`;
CREATE TABLE `blog` (
`id` int(10) UNSIGNED NOT NULL,
`Title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`NoTiltle` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`Excerpts` text COLLATE utf8mb4_unicode_ci NOT NULL,
`Content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`Image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`Highlights` int(11) NOT NULL DEFAULT '0',
`View` int(11) NOT NULL DEFAULT '0',
`idCategoryBlog` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `categoryblog`
--
DROP TABLE IF EXISTS `categoryblog`;
CREATE TABLE `categoryblog` (
`id` int(10) UNSIGNED NOT NULL,
`Name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`NoName` varchar(191) 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;
--
-- Dumping data for table `categoryblog`
--
INSERT INTO `categoryblog` (`id`, `Name`, `NoName`, `created_at`, `updated_at`) VALUES
(1, 'Công Nghệ', 'Cong-Nghe', NULL, NULL),
(2, 'Cuộc Sống', 'Cuoc-Song', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `comment`
--
DROP TABLE IF EXISTS `comment`;
CREATE TABLE `comment` (
`id` int(10) UNSIGNED NOT NULL,
`idUser` int(10) UNSIGNED NOT NULL,
`idBlog` int(10) UNSIGNED NOT NULL,
`Comment` varchar(191) 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 `migrations`
--
DROP TABLE IF EXISTS `migrations`;
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(6, '2014_10_12_000000_create_users_table', 1),
(7, '2014_10_12_100000_create_password_resets_table', 1),
(8, '2018_08_08_065811_create_category_blog', 1),
(9, '2018_08_08_065824_create_blog', 1),
(10, '2018_08_08_065837_create_comment', 1);
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
DROP TABLE IF EXISTS `password_resets`;
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) 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 `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'than vo', '<EMAIL>', <PASSWORD>O', NULL, '2018-08-08 08:01:07', '2018-08-08 08:01:07');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `blog`
--
ALTER TABLE `blog`
ADD PRIMARY KEY (`id`),
ADD KEY `blog_idcategoryblog_foreign` (`idCategoryBlog`);
--
-- Indexes for table `categoryblog`
--
ALTER TABLE `categoryblog`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `comment`
--
ALTER TABLE `comment`
ADD PRIMARY KEY (`id`),
ADD KEY `comment_iduser_foreign` (`idUser`),
ADD KEY `comment_idblog_foreign` (`idBlog`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `blog`
--
ALTER TABLE `blog`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `categoryblog`
--
ALTER TABLE `categoryblog`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `comment`
--
ALTER TABLE `comment`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `blog`
--
ALTER TABLE `blog`
ADD CONSTRAINT `blog_idcategoryblog_foreign` FOREIGN KEY (`idCategoryBlog`) REFERENCES `categoryblog` (`id`);
--
-- Constraints for table `comment`
--
ALTER TABLE `comment`
ADD CONSTRAINT `comment_idblog_foreign` FOREIGN KEY (`idBlog`) REFERENCES `blog` (`id`),
ADD CONSTRAINT `comment_iduser_foreign` FOREIGN KEY (`idUser`) REFERENCES `users` (`id`);
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 */;
|
create table ls_trail_class_channel(
id int auto_increment primary key comment "ID",
channel_name varchar(255) comment '渠道名称',
create_time int default 0 comment '添加时间',
update_time int default 0 comment '修改时间',
delete_flag tinyint default 2 comment '删除标识1删除2未删除'
)engine=innodb,charset=utf8,comment '试听课渠道'; |
<filename>rsrcs/sql/public_iso_3166_countries.sql
-- Activisu a plus d'info. Necessaire? C'est pas très toolkit way of life. A changer un jour
ALTER TABLE "public"."iso_3166_countries"
ADD COLUMN "country_code_old" VARCHAR(10);
ALTER TABLE "public"."iso_3166_countries"
ADD COLUMN "en-us" VARCHAR(50);
/* Data for the 'public.iso_3166_countries' table (Records 1 - 246) */
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('deu', 'Germany', 'de', 'deu', 'de', 'Germany');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('gbr', 'United Kingdom', 'gb', 'gbr', 'gb', 'United Kingdom');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('dnk', 'Denmark', 'dk', 'dnk', 'dk', 'Denmark');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('esp', 'Spain', 'sp', 'esp', 'es', 'Spain');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('fra', 'France', 'f', 'fra', 'fr', 'France');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ita', 'Italy', 'it', 'ita', 'it', 'Italy');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bel', 'Belgium', 'be', 'bel', 'be', 'Belgium');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bra', 'Brazil', 'br', 'bra', 'br', 'Brazil');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('can', 'Canada', 'ca', 'can', 'ca', 'Canada');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('usa', 'United States', 'us', 'usa', 'us', 'United States');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('svn', 'Slovenia', 'si', 'svn', 'si', 'Slovenia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('grc', 'Greece', 'gr', 'grc', 'gr', 'Greece');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('cyp', 'Cyprus', 'cy', 'cyp', 'cy', 'Cyprus');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('lbn', 'Lebanon', 'lb', 'lbn', 'lb', 'Lebanon');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('aus', 'Australia', 'au', 'aus', 'au', 'Australia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('arg', 'Argentina', 'ar', 'arg', 'ar', 'Argentina');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tun', 'Tunisia', 'tn', 'tun', 'tn', 'Tunisia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('omn', 'Oman', 'om', 'omn', 'om', 'Oman');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('yem', 'Yemen', 'ye', 'yem', 'ye', 'Yemen');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('jor', 'Jordan', 'jo', 'jor', 'jo', 'Jordan');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('irq', 'Iraq', 'iq', 'irq', 'iq', 'Iraq');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('irn', 'Iran, Islamic Republic of', 'ir', 'irn', 'ir', 'Iran, Islamic Republic of');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('pak', 'Pakistan', 'pk', 'pak', 'pk', 'Pakistan');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ecu', 'Ecuador', 'ec', 'ecu', 'ec', 'Ecuador');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('nam', 'Namibia', NULL, 'nam', 'na', 'Namibia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('qat', 'Qatar', 'qa', 'qat', 'qa', 'Qatar');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bgr', 'Bulgaria', 'bg', 'bgr', 'bg', 'Bulgaria');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('cri', 'Costa Rica', 'cr', 'cri', 'cr', 'Costa Rica');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('nga', 'Nigeria', 'ng', 'nga', 'ng', 'Nigeria');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('rus', 'Russian Federation', 'ru', 'rus', 'ru', 'Russian Federation');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('jpn', 'Japan', 'jp', 'jpn', 'jp', 'Japan');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('irl', 'Ireland', 'ie', 'irl', 'ie', 'Ireland');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('gin', 'Guinea', 'gn', 'gin', 'gn', 'Guinea');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('prt', 'Portugal', 'pt', 'prt', 'pt', 'Portugal');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('rou', 'Romania', 'ro', 'rou', 'ro', 'Romania');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ind', 'India', 'in', 'ind', 'in', 'India');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('isr', 'Israel', 'il', 'isr', 'il', 'Israel');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('gab', 'Gabon', 'ga', 'gab', 'ga', 'Gabon');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('che', 'Switzerland', 'ch', 'che', 'ch', 'Switzerland');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mar', 'Morocco', 'ma', 'mar', 'ma', 'Morocco');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('zaf', 'South Africa', 'za', 'zaf', 'za', 'South Africa');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bol', 'Bolivia', 'bo', 'bol', 'bo', 'Bolivia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('prk', 'Korea, Democratic People''s Republic of', 'kp', 'prk', 'kp', 'Korea, Democratic People''s Republic of');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ner', 'Niger', NULL, 'ner', 'ne', 'Niger');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('kor', 'Korea, Republic of', 'kr', 'kor', 'kr', 'Korea, Republic of');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('twn', 'Taiwan, Province of China', 'tw', 'twn', 'tw', 'Taiwan, Province of China');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('syr', 'Syrian Arab Republic', 'sy', 'syr', 'sy', 'Syrian Arab Republic');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('kwt', 'Kuwait', 'kw', 'kwt', 'kw', 'Kuwait');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('egy', 'Egypt', 'eg', 'egy', 'eg', 'Egypt');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('est', 'Estonia', 'ee', 'est', 'ee', 'Estonia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('gtm', 'Guatemala', 'gt', 'gtm', 'gt', 'Guatemala');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('lux', 'Luxembourg', 'lu', 'lux', 'lu', 'Luxembourg');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mex', 'Mexico', 'mx', 'mex', 'mx', 'Mexico');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('pan', 'Panama', 'pa', 'pan', 'pa', 'Panama');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('pol', 'Poland', 'pl', 'pol', 'pl', 'Poland');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('pry', 'Paraguay', 'py', 'pry', 'py', 'Paraguay');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tur', 'Turkey', 'tr', 'tur', 'tr', 'Turkey');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ury', 'Uruguay', 'uy', 'ury', 'uy', 'Uruguay');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ven', 'Venezuela', 've', 'ven', 've', 'Venezuela');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('dom', 'Dominican Republic', 'do', 'dom', 'do', 'Dominican Republic');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('sau', 'Saudi Arabia', 'sa', 'sau', 'sa', 'Saudi Arabia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('gha', 'Ghana', 'gh', 'gha', 'gh', 'Ghana');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mtq', 'Martinique', 'mq', 'mtq', 'mq', 'Martinique');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('glp', 'Guadeloupe', 'gp', 'glp', 'gp', 'Guadeloupe');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('reu', 'Réunion', 're', 'reu', 're', 'Réunion');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('guf', 'French Guiana', 'gf', 'guf', 'gf', 'French Guiana');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ncl', 'New Caledonia', 'nc', 'ncl', 'nc', 'New Caledonia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('pyf', 'French Polynesia', 'pf', 'pyf', 'pf', 'French Polynesia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('lby', 'Libyan Arab Jamahiriya', 'ly', 'lby', 'ly', 'Libyan Arab Jamahiriya');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('fin', 'Finland', 'fi', 'fin', 'fi', 'Finland');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('cub', 'Cuba', 'cu', 'cub', 'cu', 'Cuba');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('cmr', 'Cameroon', 'cm', 'cmr', 'cm', 'Cameroon');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('and', 'Andorra', 'ad', 'and', 'ad', 'Andorra');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('are', 'United Arab Emirates', 'ae', 'are', 'ae', 'United Arab Emirates');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('alb', 'Albania', 'al', 'alb', 'al', 'Albania');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('dji', 'Djibouti', 'dj', 'dji', 'dj', 'Djibouti');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('per', 'Peru', 'pe', 'per', 'pe', 'Peru');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('swe', 'Sweden', 'se', 'swe', 'se', 'Sweden');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('nor', 'Norway', 'no', 'nor', 'no', 'Norway');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('nzl', 'New Zealand', 'nz', 'nzl', 'nz', 'New Zealand');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('syc', 'Seychelles', 'sc', 'syc', 'sc', 'Seychelles');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('sen', 'Senegal', 'sn', 'sen', 'sn', 'Senegal');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('uga', 'Uganda', 'ug', 'uga', 'ug', 'Uganda');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('nfk', 'Norfolk Island', NULL, 'nfk', 'nf', 'Norfolk Island');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('sdn', 'Sudan', 'sd', 'sdn', 'sd', 'Sudan');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mco', 'Monaco', 'mc', 'mco', 'mc', 'Monaco');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mus', 'Mauritius', 'mu', 'mus', 'mu', 'Mauritius');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('isl', 'Iceland', 'is', 'isl', 'is', 'Iceland');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('chl', 'Chile', 'cl', 'chl', 'cl', 'Chile');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ken', 'Kenya', 'ke', 'ken', 'ke', 'Kenya');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('vnm', 'Viet Nam', 'vn', 'vnm', 'vn', 'Viet Nam');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('nld', 'Netherlands', 'nl', 'nld', 'nl', 'Netherlands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ukr', 'Ukraine', 'ua', 'ukr', 'ua', 'Ukraine');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('idn', 'Indonesia', 'id', 'idn', 'id', 'Indonesia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mdv', 'Maldives', 'mv', 'mdv', 'mv', 'Maldives');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('kaz', 'Kazakhstan', 'kz', 'kaz', 'kz', 'Kazakhstan');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('lva', 'Latvia', 'lv', 'lva', 'lv', 'Latvia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('chn', 'China', 'cn', 'chn', 'cn', 'China');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('hnd', 'Honduras', 'hn', 'hnd', 'hn', 'Honduras');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tha', 'Thailand', 'th', 'tha', 'th', 'Thailand');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('hun', 'Hungary', 'hu', 'hun', 'hu', 'Hungary');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bmu', 'Bermuda', 'bm', 'bmu', 'bm', 'Bermuda');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bhr', 'Bahrain', 'bh', 'bhr', 'bh', 'Bahrain');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('hrv', 'Croatia', 'hr', 'hrv', 'hr', 'Croatia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('aut', 'Austria', 'at', 'aut', 'at', 'Austria');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('cze', 'Czech Republic', 'cz', 'cze', 'cz', 'Czech Republic');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('svk', 'Slovakia', 'sk', 'svk', 'sk', 'Slovakia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('nic', 'Nicaragua', NULL, 'nic', 'ni', 'Nicaragua');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('niu', 'Niue', NULL, 'niu', 'nu', 'Niue');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('npl', 'Nepal', NULL, 'npl', 'np', 'Nepal');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('nru', 'Nauru', NULL, 'nru', 'nr', 'Nauru');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('pcn', 'Pitcairn', NULL, 'pcn', 'pn', 'Pitcairn');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('plw', 'Palau', NULL, 'plw', 'pw', 'Palau');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('png', 'Papua New Guinea', NULL, 'png', 'pg', 'Papua New Guinea');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('pri', 'Puerto Rico', NULL, 'pri', 'pr', 'Puerto Rico');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('pse', 'Palestinian Territory, Occupied', NULL, 'pse', 'ps', 'Palestinian Territory, Occupied');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('rwa', 'Rwanda', NULL, 'rwa', 'rw', 'Rwanda');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('sgs', 'South Georgia and the South Sandwich Islands', NULL, 'sgs', 'gs', 'South Georgia and the South Sandwich Islands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('shn', 'Saint Helena', NULL, 'shn', 'sh', 'Saint Helena');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('sjm', 'Svalbard and <NAME>', NULL, 'sjm', 'sj', 'Svalbard and <NAME>');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('slb', 'Solomon Islands', NULL, 'slb', 'sb', 'Solomon Islands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('sle', 'Sierra Leone', NULL, 'sle', 'sl', 'Sierra Leone');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('slv', 'El Salvador', NULL, 'slv', 'sv', 'El Salvador');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bih', 'Bosnia and Herzegovina', 'ba', 'bih', 'ba', 'Bosnia and Herzegovina');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('smr', 'San Marino', NULL, 'smr', 'sm', 'San Marino');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('som', 'Somalia', NULL, 'som', 'so', 'Somalia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('spm', 'Saint Pierre and Miquelon', NULL, 'spm', 'pm', 'Saint Pierre and Miquelon');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('stp', 'Sao Tome and Principe', NULL, 'stp', 'st', 'Sao Tome and Principe');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('sur', 'Suriname', NULL, 'sur', 'sr', 'Suriname');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('swz', 'Swaziland', NULL, 'swz', 'sz', 'Swaziland');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tca', 'Turks and Caicos Islands', NULL, 'tca', 'tc', 'Turks and Caicos Islands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tcd', 'Chad', NULL, 'tcd', 'td', 'Chad');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tgo', 'Togo', NULL, 'tgo', 'tg', 'Togo');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tjk', 'Tajikistan', NULL, 'tjk', 'tj', 'Tajikistan');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tkl', 'Tokelau', NULL, 'tkl', 'tk', 'Tokelau');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tkm', 'Turkmenistan', NULL, 'tkm', 'tm', 'Turkmenistan');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tls', 'Timor-Leste', NULL, 'tls', 'tl', 'Timor-Leste');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ton', 'Tonga', NULL, 'ton', 'to', 'Tonga');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tto', 'Trinidad and Tobago', NULL, 'tto', 'tt', 'Trinidad and Tobago');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tuv', 'Tuvalu', NULL, 'tuv', 'tv', 'Tuvalu');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('tza', 'Tanzania, United Republic of', NULL, 'tza', 'tz', 'Tanzania, United Republic of');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('umi', 'United States Minor Outlying Islands', NULL, 'umi', 'um', 'United States Minor Outlying Islands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('uzb', 'Uzbekistan', NULL, 'uzb', 'uz', 'Uzbekistan');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('dza', 'Algeria', 'ag', 'dza', 'dz', 'Algeria');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('vat', 'Holy See (Vatican City State)', NULL, 'vat', 'va', 'Holy See (Vatican City State)');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('vct', 'Saint Vincent and the Grenadines', NULL, 'vct', 'vc', 'Saint Vincent and the Grenadines');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('vgb', 'Virgin Islands, British', NULL, 'vgb', 'vg', 'Virgin Islands, British');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('vir', 'Virgin Islands, U.S.', NULL, 'vir', 'vi', 'Virgin Islands, U.S.');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('vut', 'Vanuatu', NULL, 'vut', 'vu', 'Vanuatu');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('wlf', 'Wallis and Futuna', NULL, 'wlf', 'wf', 'Wallis and Futuna');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('wsm', 'Samoa', NULL, 'wsm', 'ws', 'Samoa');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('zmb', 'Zambia', NULL, 'zmb', 'zm', 'Zambia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('zwe', 'Zimbabwe', NULL, 'zwe', 'zw', 'Zimbabwe');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('atg', 'Antigua and Barbuda', NULL, 'atg', 'ag', 'Antigua and Barbuda');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('btn', 'Bhutan', NULL, 'btn', 'bt', 'Bhutan');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('abw', 'Aruba', NULL, 'abw', 'aw', 'Aruba');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('afg', 'Afghanistan', NULL, 'afg', 'af', 'Afghanistan');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ago', 'Angola', NULL, 'ago', 'ao', 'Angola');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('aia', 'Anguilla', NULL, 'aia', 'ai', 'Anguilla');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ala', 'Åland Islands', NULL, 'ala', 'ax', 'Åland Islands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ant', 'Netherlands Antilles', NULL, 'ant', 'an', 'Netherlands Antilles');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('arm', 'Armenia', NULL, 'arm', 'am', 'Armenia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('asm', 'American Samoa', NULL, 'asm', 'as', 'American Samoa');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ata', 'Antarctica', NULL, 'ata', 'aq', 'Antarctica');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('atf', 'French Southern Territories', NULL, 'atf', 'tf', 'French Southern Territories');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mrt', 'Mauritania', 'mr', 'mrt', 'mr', 'Mauritania');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bdi', 'Burundi', NULL, 'bdi', 'bi', 'Burundi');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ben', 'Benin', NULL, 'ben', 'bj', 'Benin');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ltu', 'Lithuania', 'lt', 'ltu', 'lt', 'Lithuania');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bfa', 'Burkina Faso', NULL, 'bfa', 'bf', 'Burkina Faso');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bgd', 'Bangladesh', NULL, 'bgd', 'bd', 'Bangladesh');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bhs', 'Bahamas', NULL, 'bhs', 'bs', 'Bahamas');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('blm', 'Saint Barthélemy', NULL, 'blm', 'bl', 'Saint Barthélemy');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('blr', 'Belarus', NULL, 'blr', 'by', 'Belarus');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('blz', 'Belize', NULL, 'blz', 'bz', 'Belize');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('brb', 'Barbados', NULL, 'brb', 'bb', 'Barbados');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('brn', 'Brunei Darussalam', NULL, 'brn', 'bn', 'Brunei Darussalam');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bvt', 'Bouvet Island', NULL, 'bvt', 'bv', 'Bouvet Island');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('bwa', 'Botswana', NULL, 'bwa', 'bw', 'Botswana');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('caf', 'Central African Republic', NULL, 'caf', 'cf', 'Central African Republic');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('cck', 'Cocos (Keeling) Islands', NULL, 'cck', 'cc', 'Cocos (Keeling) Islands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mda', 'Moldova', 'md', 'mda', 'md', 'Moldova');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('cod', 'Congo, the Democratic Republic of the', NULL, 'cod', 'cd', 'Congo, the Democratic Republic of the');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('cog', 'Congo', NULL, 'cog', 'cg', 'Congo');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('cok', 'Cook Islands', NULL, 'cok', 'ck', 'Cook Islands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('col', 'Colombia', NULL, 'col', 'co', 'Colombia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('com', 'Comoros', NULL, 'com', 'km', 'Comoros');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('cpv', 'Cape Verde', NULL, 'cpv', 'cv', 'Cape Verde');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('cxr', 'Christmas Island', NULL, 'cxr', 'cx', 'Christmas Island');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('cym', 'Cayman Islands', NULL, 'cym', 'ky', 'Cayman Islands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('dma', 'Dominica', NULL, 'dma', 'dm', 'Dominica');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('eri', 'Eritrea', NULL, 'eri', 'er', 'Eritrea');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('kgz', 'Kyrgyzstan', NULL, 'kgz', 'kg', 'Kyrgyzstan');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('esh', 'Western Sahara', NULL, 'esh', 'eh', 'Western Sahara');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('eth', 'Ethiopia', NULL, 'eth', 'et', 'Ethiopia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('phl', 'Philippines', 'ph', 'phl', 'ph', 'Philippines');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('fji', 'Fiji', NULL, 'fji', 'fj', 'Fiji');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('flk', 'Falkland Islands (Malvinas)', NULL, 'flk', 'fk', 'Falkland Islands (Malvinas)');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('fro', 'Faroe Islands', NULL, 'fro', 'fo', 'Faroe Islands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('fsm', 'Micronesia, Federated States of', NULL, 'fsm', 'fm', 'Micronesia, Federated States of');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('geo', 'Georgia', NULL, 'geo', 'ge', 'Georgia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('ggy', 'Guernsey', NULL, 'ggy', 'gg', 'Guernsey');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('gib', 'Gibraltar', NULL, 'gib', 'gi', 'Gibraltar');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('gmb', 'Gambia', NULL, 'gmb', 'gm', 'Gambia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('gnb', 'Guinea-Bissau', NULL, 'gnb', 'gw', 'Guinea-Bissau');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mys', 'Malaysia', 'my', 'mys', 'my', 'Malaysia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('gnq', 'Equatorial Guinea', NULL, 'gnq', 'gq', 'Equatorial Guinea');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('grd', 'Grenada', NULL, 'grd', 'gd', 'Grenada');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('grl', 'Greenland', NULL, 'grl', 'gl', 'Greenland');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('gum', 'Guam', NULL, 'gum', 'gu', 'Guam');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('guy', 'Guyana', NULL, 'guy', 'gy', 'Guyana');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('srb', 'Serbia', 'rs', 'srb', 'rs', 'Serbia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('jey', 'Jersey', NULL, 'jey', 'je', 'Jersey');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('hmd', 'Heard Island and McDonald Islands', NULL, 'hmd', 'hm', 'Heard Island and McDonald Islands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('hti', 'Haiti', NULL, 'hti', 'ht', 'Haiti');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('imn', 'Isle of Man', NULL, 'imn', 'im', 'Isle of Man');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('iot', 'British Indian Ocean Territory', NULL, 'iot', 'io', 'British Indian Ocean Territory');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('jam', 'Jamaica', NULL, 'jam', 'jm', 'Jamaica');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('khm', 'Cambodia', NULL, 'khm', 'kh', 'Cambodia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('kir', 'Kiribati', NULL, 'kir', 'ki', 'Kiribati');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('kna', 'Saint Kitts and Nevis', NULL, 'kna', 'kn', 'Saint Kitts and Nevis');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('hkg', 'Hong Kong', 'hk', 'hkg', 'hk', 'Hong Kong');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('lao', 'Lao People''s Democratic Republic', NULL, 'lao', 'la', 'Lao People''s Democratic Republic');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('lbr', 'Liberia', NULL, 'lbr', 'lr', 'Liberia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('lca', 'Saint Lucia', NULL, 'lca', 'lc', 'Saint Lucia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('lie', 'Liechtenstein', NULL, 'lie', 'li', 'Liechtenstein');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('lka', 'Sri Lanka', NULL, 'lka', 'lk', 'Sri Lanka');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('lso', 'Lesotho', NULL, 'lso', 'ls', 'Lesotho');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mac', 'Macao', NULL, 'mac', 'mo', 'Macao');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('maf', 'Saint Martin (French part)', NULL, 'maf', 'mf', 'Saint Martin (French part)');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mdg', 'Madagascar', NULL, 'mdg', 'mg', 'Madagascar');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mhl', 'Marshall Islands', NULL, 'mhl', 'mh', 'Marshall Islands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mkd', 'Macedonia, the former Yugoslav Republic of', NULL, 'mkd', 'mk', 'Macedonia, the former Yugoslav Republic of');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mli', 'Mali', NULL, 'mli', 'ml', 'Mali');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mlt', 'Malta', NULL, 'mlt', 'mt', 'Malta');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mmr', 'Myanmar', NULL, 'mmr', 'mm', 'Myanmar');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mne', 'Montenegro', NULL, 'mne', 'me', 'Montenegro');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mng', 'Mongolia', NULL, 'mng', 'mn', 'Mongolia');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mnp', 'Northern Mariana Islands', NULL, 'mnp', 'mp', 'Northern Mariana Islands');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('moz', 'Mozambique', NULL, 'moz', 'mz', 'Mozambique');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('msr', 'Montserrat', NULL, 'msr', 'ms', 'Montserrat');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('mwi', 'Malawi', NULL, 'mwi', 'mw', 'Malawi');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('myt', 'Mayotte', NULL, 'myt', 'yt', 'Mayotte');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('aze', 'Azerbaijan', NULL, 'aze', 'az', 'Azerbaijan');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('civ', 'Côte d''Ivoire', 'ci', 'civ', 'ci', 'Côte d''Ivoire');
INSERT INTO "public"."iso_3166_countries" ("country_code", "country_name", "country_code_old", "alpha_3", "alpha_2", "en-us")
VALUES ('sgp', 'Singapore', 'sg', 'sgp', 'sg', 'Singapore'); |
<filename>docs/examples/chat-storage-mysql/schemas/mysql/chat_messages.sql
CREATE TABLE messages (
id INT AUTO_INCREMENT PRIMARY KEY,
created TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
username TEXT NOT NULL,
text TEXT NOT NULL
);
|
drop table if exists tt;
create table tt (
id int not null primary key
);
/* {{ down }}
drop table if exists tt;
/**/
|
<reponame>srph/e-dental-re<gh_stars>0
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users`(
id INT(9) PRIMARY KEY AUTO_INCREMENT,
username VARCHAR(255) NOT NULL,
password VARCHAR(255) NOT NULL,
first_name VARCHAR(255),
middle_name VARCHAR(255),
last_name VARCHAR(255),
address VARCHAR(255),
birthdate TIMESTAMP,
is_admin BOOLEAN DEFAULT 0,
created_at TIMESTAMP NOT NULL,
updated_at TIMESTAMP NOT NULL,
UNIQUE(username)
);
TRUNCATE TABLE `users`;
INSERT INTO `users`(username, password, first_name, middle_name, last_name, is_admin)
VALUES('admin', '<PASSWORD>', '<PASSWORD>', 'Enriquez', 'Menor', 1);
INSERT INTO `users`(username, password, first_name, middle_name, last_name, is_admin)
VALUES('admin2', '<PASSWORD>', 'John', '', 'Doe', 1);
INSERT INTO `users`(username, password, first_name, middle_name, last_name)
VALUES('admin3', '<PASSWORD>', 'Lee', 'Min', 'Ho');
DROP TABLE IF EXISTS `schedules`;
CREATE TABLE `schedules`(
id INT(9) PRIMARY KEY AUTO_INCREMENT,
user_id INT(9) NOT NULL,
appointed_at TIMESTAMP NOT NULL,
created_at TIMESTAMP,
updated_at TIMESTAMP
);
DROP TABLE IF EXISTS `records`;
CREATE TABLE `records`(
id INT(9) PRIMARY KEY AUTO_INCREMENT,
user_id INT(9) NOT NULL,
service ENUM('orthodontic treatment', 'fluoride cleaning', 'braces') NOT NULL,
created_at TIMESTAMP,
updated_at TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE RESTRICT
);
TRUNCATE TABLE `records`;
INSERT INTO `records`(user_id, service, created_at) VALUES(1, 'braces', NOW()); |
<reponame>saldanhayg/SQL_SERVER-PERSISTINDO_RECUPERANDO_DOCUMENTOS_JSON
SELECT CustomFields FROM Application.People
WHERE Fullname = '<NAME>';
SELECT CustomFields,
JSON_MODIFY(CustomFields, '$.OtherLanguages', 'Greek') as NEW_JSON FROM Application.People
WHERE Fullname = '<NAME>';
SELECT CustomFields,
JSON_MODIFY(CustomFields, 'append $.OtherLanguages', 'Greek') as NEW_JSON FROM Application.People
WHERE Fullname = '<NAME>'; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.