-- phpMyAdmin SQL Dump
-- version 5.2.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Nov 21, 2022 at 09:39 AM
-- Server version: 10.4.24-MariaDB
-- PHP Version: 8.0.19

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: `laravel9_easyradius`
--

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

--
-- Table structure for table `attributes`
--

CREATE TABLE `attributes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `attribute_name` varchar(255) 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 `attributes`
--

INSERT INTO `attributes` (`id`, `attribute_name`, `created_at`, `updated_at`) VALUES
(1, 'Cleartext-Password', NULL, NULL),
(2, 'User-Profile', NULL, NULL),
(3, 'Expiration', NULL, NULL),
(4, 'Mikrotik-Total-Limit', NULL, NULL),
(5, 'Max-All-Session', NULL, NULL),
(6, 'Simultaneous-Use', NULL, NULL),
(7, 'Daily-Bandwidth', NULL, NULL),
(8, 'Expire-After', NULL, NULL);

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

--
-- Table structure for table `careercategories`
--

CREATE TABLE `careercategories` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` varchar(5000) COLLATE utf8mb4_unicode_ci NOT NULL,
  `pictures` varchar(255) 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 `careers`
--

CREATE TABLE `careers` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` varchar(5000) COLLATE utf8mb4_unicode_ci NOT NULL,
  `category_id` int(10) UNSIGNED NOT NULL,
  `pictures` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `deadline` varchar(255) 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 `events`
--

CREATE TABLE `events` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `details` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `location` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pictures` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

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

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

--
-- Table structure for table `galleries`
--

CREATE TABLE `galleries` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `category_id` int(10) UNSIGNED NOT NULL,
  `pictures` varchar(255) 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 `gallerycategories`
--

CREATE TABLE `gallerycategories` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `pictures` varchar(255) COLLATE utf8mb4_unicode_ci 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(255) 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, '2019_08_19_000000_create_failed_jobs_table', 1),
(4, '2019_12_14_000001_create_personal_access_tokens_table', 1),
(5, '2020_06_19_224916_create_onlineapplications_table', 1),
(6, '2022_03_12_103823_create_sliders_table', 1),
(7, '2022_05_17_181447_create_roles_table', 1),
(8, '2022_05_17_181456_create_user_roles_table', 1),
(9, '2022_05_22_230054_create_settings_table', 1),
(10, '2022_06_16_173749_create_tvdisplays_table', 1),
(11, '2022_06_18_223805_create_products_table', 1),
(12, '2022_06_21_104535_create_pagecategories_table', 1),
(13, '2022_06_21_104632_create_pages_table', 1),
(14, '2022_06_21_131005_create_testimonials_table', 1),
(15, '2022_06_29_101551_create_gallerycategories_table', 1),
(16, '2022_06_29_101619_create_galleries_table', 1),
(17, '2022_07_03_153551_create_noticecategories_table', 1),
(18, '2022_07_03_153602_create_notices_table', 1),
(19, '2022_07_04_214032_create_events_table', 1),
(20, '2022_07_04_221833_create_careercategories_table', 1),
(21, '2022_07_04_221854_create_careers_table', 1),
(22, '2022_07_10_172408_create_calculators_table', 1),
(23, '2022_07_21_050220_create_uservisitedlogs_table', 2),
(26, '2022_07_26_123203_create_nas_table', 3),
(29, '2022_10_15_123705_create_radchecks_table', 4),
(30, '2022_10_15_213859_create_attributes_table', 5);

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

--
-- Table structure for table `nas`
--

CREATE TABLE `nas` (
  `id` int(10) NOT NULL,
  `nasname` varchar(128) NOT NULL,
  `shortname` varchar(32) DEFAULT NULL,
  `type` varchar(30) DEFAULT 'other',
  `ports` int(5) DEFAULT NULL,
  `secret` varchar(60) NOT NULL DEFAULT 'secret',
  `server` varchar(64) DEFAULT NULL,
  `community` varchar(50) DEFAULT NULL,
  `description` varchar(200) DEFAULT 'RADIUS Client'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

--
-- Dumping data for table `nas`
--

INSERT INTO `nas` (`id`, `nasname`, `shortname`, `type`, `ports`, `secret`, `server`, `community`, `description`) VALUES
(1, '192.168.100.1', 'mikrotik-client', 'other', NULL, 'Murad@#2022', NULL, NULL, 'MikroTik Client Router');

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

--
-- Table structure for table `noticecategories`
--

CREATE TABLE `noticecategories` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `pictures` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `notices`
--

CREATE TABLE `notices` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `category_id` int(10) UNSIGNED NOT NULL,
  `pictures` varchar(255) 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 `onlineapplications`
--

CREATE TABLE `onlineapplications` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `job_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `school_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `applicant_fname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `applicant_mname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `applicant_lname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gender` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `marital_status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `applicant_date_of_birth` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `nationality` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `religion` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `present_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `applicant_cell_phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `applicant_blood_group` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `applicant_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gurdian_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gurdian_mobile` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permanent_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `examName_0` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `examName_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `examName_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `examName_3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `examName_4` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `result_0` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `result_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `result_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `result_3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `result_4` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `group_0` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `group_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `group_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `group_3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `group_4` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `institute_0` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `institute_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `institute_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `institute_3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `institute_4` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `rollNumber_0` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `rollNumber_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `rollNumber_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `rollNumber_3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `rollNumber_4` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `examYear_0` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `examYear_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `examYear_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `examYear_3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `examYear_4` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sessionYear_0` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sessionYear_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sessionYear_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sessionYear_3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sessionYear_4` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `registrationNumber_0` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `registrationNumber_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `registrationNumber_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `registrationNumber_3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `registrationNumber_4` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pictures` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `pagecategories`
--

CREATE TABLE `pagecategories` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `pictures` varchar(255) 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 `pages`
--

CREATE TABLE `pages` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `category_id` int(10) UNSIGNED NOT NULL,
  `pictures` varchar(255) 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 `password_resets`
--

CREATE TABLE `password_resets` (
  `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(255) 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 `personal_access_tokens`
--

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

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

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

CREATE TABLE `products` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pictures` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `radacct`
--

CREATE TABLE `radacct` (
  `radacctid` bigint(21) NOT NULL,
  `acctsessionid` varchar(64) NOT NULL DEFAULT '',
  `acctuniqueid` varchar(32) NOT NULL DEFAULT '',
  `username` varchar(64) NOT NULL DEFAULT '',
  `realm` varchar(64) DEFAULT '',
  `nasipaddress` varchar(15) NOT NULL DEFAULT '',
  `nasportid` varchar(32) DEFAULT NULL,
  `nasporttype` varchar(32) DEFAULT NULL,
  `acctstarttime` datetime DEFAULT NULL,
  `acctupdatetime` datetime DEFAULT NULL,
  `acctstoptime` datetime DEFAULT NULL,
  `acctinterval` int(12) DEFAULT NULL,
  `acctsessiontime` int(12) UNSIGNED DEFAULT NULL,
  `acctauthentic` varchar(32) DEFAULT NULL,
  `connectinfo_start` varchar(128) DEFAULT NULL,
  `connectinfo_stop` varchar(128) DEFAULT NULL,
  `acctinputoctets` bigint(20) DEFAULT NULL,
  `acctoutputoctets` bigint(20) DEFAULT NULL,
  `calledstationid` varchar(50) NOT NULL DEFAULT '',
  `callingstationid` varchar(50) NOT NULL DEFAULT '',
  `acctterminatecause` varchar(32) NOT NULL DEFAULT '',
  `servicetype` varchar(32) DEFAULT NULL,
  `framedprotocol` varchar(32) DEFAULT NULL,
  `framedipaddress` varchar(15) NOT NULL DEFAULT '',
  `framedipv6address` varchar(45) NOT NULL DEFAULT '',
  `framedipv6prefix` varchar(45) NOT NULL DEFAULT '',
  `framedinterfaceid` varchar(44) NOT NULL DEFAULT '',
  `delegatedipv6prefix` varchar(45) NOT NULL DEFAULT '',
  `class` varchar(64) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

--
-- Dumping data for table `radacct`
--

INSERT INTO `radacct` (`radacctid`, `acctsessionid`, `acctuniqueid`, `username`, `realm`, `nasipaddress`, `nasportid`, `nasporttype`, `acctstarttime`, `acctupdatetime`, `acctstoptime`, `acctinterval`, `acctsessiontime`, `acctauthentic`, `connectinfo_start`, `connectinfo_stop`, `acctinputoctets`, `acctoutputoctets`, `calledstationid`, `callingstationid`, `acctterminatecause`, `servicetype`, `framedprotocol`, `framedipaddress`, `framedipv6address`, `framedipv6prefix`, `framedinterfaceid`, `delegatedipv6prefix`, `class`) VALUES
(1, '84000004', '6386fa64bed7989c08d965628aafaa6b', 'murad', '', '192.168.137.2', '', '', '2022-10-06 11:07:07', '2022-10-06 11:07:07', '2022-10-05 10:07:39', NULL, 14, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(2, '84000005', 'f95dd07b80bf0e26aacf7432ee046195', 'murad', '', '192.168.137.2', '', '', '2022-10-05 10:07:45', '2022-10-05 10:07:45', '2022-10-05 10:17:20', NULL, 575, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(3, '84000006', 'df498afd98a3cf9fdf6dc76c21f207d2', 'murad', '', '192.168.137.2', '', '', '2022-10-05 10:07:45', '2022-10-05 10:07:45', '2022-10-05 10:17:20', NULL, 574, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(4, '84000008', '3223f1016d1bb91eb7e874e7cdfb1bd5', 'murad', '', '192.168.137.2', '', '', '2022-10-05 07:36:35', '2022-10-05 07:36:35', '2022-10-05 07:37:27', NULL, 52, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(5, '84000007', '7d4f543e73192697e76470c3fb4caf05', 'murad', '', '192.168.137.2', '', '', '2022-10-05 07:36:35', '2022-10-05 07:36:35', '2022-10-05 07:37:28', NULL, 53, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(6, '84000009', 'f1413d72a606eba8f672ae09cc47e90c', 'murad', '', '192.168.137.2', '', '', '2022-10-05 10:17:27', '2022-10-05 10:17:27', '2022-10-05 10:21:41', NULL, 255, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(7, '8400000a', '8bb13e93c6a2c9730989c7fb7f426e07', 'murad', '', '192.168.137.2', '', '', '2022-10-05 10:17:27', '2022-10-05 10:17:27', '2022-10-05 10:21:41', NULL, 254, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(8, '8400000b', '92dc9b6a8eadf128693bdcd44789641d', 'murad', '', '192.168.137.2', '', '', '2022-10-05 10:22:33', '2022-10-05 10:22:33', '2022-10-05 07:37:05', NULL, 30, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(9, '8400000c', 'adf2bd6fc4b5213ad99cf4b5fb22d059', 'murad', '', '192.168.137.2', '', '', '2022-10-05 10:22:33', '2022-10-05 10:22:33', '2022-10-05 07:37:05', NULL, 30, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(10, '8400000d', 'd0995cc9a4f98f018d8ddc6c3dbe765d', 'murad', '', '192.168.137.2', '', '', '2022-10-05 07:36:35', '2022-10-05 07:36:35', '2022-10-05 07:37:05', NULL, 30, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(11, '8400000e', 'c210cbf99ade7e27e767dcde641bea11', 'murad', '', '192.168.137.2', '', '', '2022-10-05 07:36:35', '2022-10-05 07:36:35', '2022-10-05 07:37:04', NULL, 29, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(12, '8400000f', 'ac0c61ebbc3379a5dbd21c1d567c78f0', 'murad', '', '192.168.137.2', '', '', '2022-10-05 07:36:35', '2022-10-05 07:36:35', '2022-10-05 07:37:04', NULL, 29, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(13, '84000010', '5eaa256386957096e37fffd59504a0a8', 'murad', '', '192.168.137.2', '', '', '2022-10-05 07:36:35', '2022-10-05 07:36:35', '2022-10-05 07:37:04', NULL, 29, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(14, '84000011', 'bb13d4ea2f9ec9227a0a5605711c4b0b', 'murad', '', '192.168.137.2', '', '', '2022-10-05 07:36:35', '2022-10-05 07:36:35', '2022-10-05 07:37:04', NULL, 29, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(15, '84000012', 'e096d9201428df757eb7f092bb637d24', 'murad', '', '192.168.137.2', '', '', '2022-10-05 07:36:35', '2022-10-05 07:36:35', '2022-10-05 07:37:25', NULL, 49, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(16, '84000013', 'b235960af8137f53c3fc6df78e1cc692', 'murad', '', '192.168.137.2', '', '', '2022-10-05 07:36:35', '2022-10-05 07:36:35', '2022-10-05 07:37:03', NULL, 27, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(17, '84000014', '757fa331c04fd63e3c219ca1d11ece03', 'murad', '', '192.168.137.2', '', '', '2022-10-05 07:36:35', '2022-10-05 07:36:35', '2022-10-05 07:37:03', NULL, 27, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(18, '84000015', 'db745d578a0ce6dcbddf8a93cb91d94e', 'murad', '', '192.168.137.2', '', '', '2022-10-05 07:36:36', '2022-10-05 07:36:36', '2022-10-05 07:37:02', NULL, 26, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(19, '84000016', 'b70fb1e433dd202aedae6a9bf13db701', 'murad', '', '192.168.137.2', '', '', '2022-10-05 07:36:36', '2022-10-05 07:36:36', '2022-10-05 07:37:02', NULL, 26, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(58, '84000001', '0fe759c1941be7adfe8781496c563109', 'murad', '', '192.168.137.2', '', '', '2022-10-06 10:05:13', '2022-10-06 10:05:13', '2022-10-05 09:58:49', NULL, 5417, '', '', '', 0, 0, '', '192.168.137.1', 'NAS-Reboot', 'Login-User', '', '', '', '', '', '', NULL),
(59, '84000002', 'f3266574f8a0f6ad2308e2d639b9356b', 'bob', '', '192.168.137.2', '', '', '2022-10-05 09:59:24', '2022-10-05 09:59:24', '2022-10-05 10:07:41', NULL, 497, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(60, '8180000f', '77fbd71a2d1a0d2974855aa6492cc0ff', 'bob', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 09:39:43', '2022-10-05 09:39:43', '2022-10-05 09:39:43', NULL, 0, 'RADIUS', '', '', 100, 74, 'service1', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(61, '81800010', '58cb4e6bc277d3d7a96cd494555ddf2e', 'bob', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 09:39:52', '2022-10-05 09:39:52', '2022-10-05 09:39:52', NULL, 0, 'RADIUS', '', '', 100, 74, 'service1', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(62, '81800011', '35362e290d3314ba05ccd0cb6e1cc831', 'bob', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 09:40:34', '2022-10-05 09:57:34', '2022-10-05 09:58:49', 60, 1095, 'RADIUS', '', '', 2802379, 12896631, 'service1', '08:00:27:7E:92:5A', 'NAS-Reboot', 'Framed-User', 'PPP', '10.10.100.50', '', '', '', '', NULL),
(63, '84000003', '29904554283621db57049f697957f94b', 'murad', '', '192.168.137.2', '', '', '2022-10-06 11:05:50', '2022-10-06 11:05:50', '2022-10-05 10:07:39', NULL, 14, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(64, '81900000', '68afd9a08d40a7a661f59e63f4705b15', 'bob', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 09:59:22', '2022-10-05 10:06:22', '2022-10-05 10:07:01', 60, 459, 'RADIUS', '', '', 11900, 16086, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.50', '', '', '', '', NULL),
(65, '84000001', '8b38a5620a231018737585be9b2ef390', 'bob', '', '192.168.137.2', '', '', '2022-10-05 09:59:24', '2022-10-05 09:59:24', '2022-10-05 10:07:41', NULL, 497, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(71, '81900005', '87c44ced4d8b7fef501f4dbad9708b8a', 'esrat', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 10:09:41', '2022-10-05 10:09:41', '2022-10-05 10:09:56', NULL, 15, 'RADIUS', '', '', 2817, 2327, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.100', '', '', '', '', NULL),
(72, '81900006', '055fa3fe01d67794f2f2e35db79d9149', 'mehtab', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 10:10:03', '2022-10-05 10:29:03', '2022-10-05 10:29:30', 60, 1167, 'RADIUS', '', '', 3464944, 56728840, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.150', '', '', '', '', NULL),
(73, '84000007', 'd3888f4d902acfc641f26c8cef9a253c', 'mehtab', '', '192.168.137.2', '', '', '2022-10-05 10:13:32', '2022-10-05 10:13:32', '2022-10-05 10:22:25', NULL, 533, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(74, '84000008', '933dce20ea8c93b60aeea193b1d0a4de', 'mehtab', '', '192.168.137.2', '', '', '2022-10-05 10:13:32', '2022-10-05 10:13:32', '2022-10-05 10:22:25', NULL, 533, '', '', '', 0, 0, '', '192.168.137.1', 'User-Request', 'Login-User', '', '', '', '', '', '', NULL),
(79, '81900007', '2d655bf8863bc32d374143b4c6dbb8f6', 'mehtab', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 10:30:08', '2022-10-05 10:30:08', '2022-10-05 10:30:36', NULL, 28, 'RADIUS', '', '', 7975, 33176, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.150', '', '', '', '', NULL),
(80, '81900008', 'fb0a7017f9f3ebd464db6663dbe4a4cd', 'murad', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 10:30:48', '2022-10-05 10:31:48', '2022-10-05 10:32:34', 60, 106, 'RADIUS', '', '', 190040, 6588345, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.49', '', '', '', '', NULL),
(81, '81900009', '0e4c41e9f1f4d7677a316353470d0d18', 'esrat', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 10:32:43', '2022-10-05 10:32:43', '2022-10-05 10:33:25', NULL, 42, 'RADIUS', '', '', 43724, 2579191, 'service1', '08:00:27:7E:92:5A', 'NAS-Request', 'Framed-User', 'PPP', '10.10.100.100', '', '', '', '', NULL),
(82, '8190000a', '9ca7f28e1f713d6664763cf02fb852e9', 'esrat', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 10:33:29', '2022-10-05 10:33:29', '2022-10-05 10:33:34', NULL, 5, 'RADIUS', '', '', 1851, 7192, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.100', '', '', '', '', NULL),
(83, '8190000b', 'afcbb7f70f34c46d026a020dab063385', 'mehtab', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 10:33:47', '2022-10-05 10:42:47', '2022-10-05 10:43:30', 60, 583, 'RADIUS', '', '', 1049398, 70647282, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.150', '', '', '', '', NULL),
(84, '8190000d', '5f48be26ac5abfdf7e35c3a56d603423', 'murad', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 10:47:08', '2022-10-05 11:07:08', '2022-10-05 11:07:34', 60, 1226, 'RADIUS', '', '', 842, 86, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.49', '', '', '', '', NULL),
(85, '80c00005', '883b0a20500fc733f0745ec04528ae2d', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 11:15:33', '2022-10-05 11:15:33', '2022-10-05 11:16:49', NULL, 76, '', '', '', 10029, 241819, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(86, '80c00006', '3090748dd4d655005aff3f359866289c', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 11:16:53', '2022-10-05 11:16:53', '2022-10-05 15:17:33', NULL, 59, '', '', '', 123, 156, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(87, '80c00007', '8effd5abc14c25d98f745277ce1955d5', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 15:17:34', '2022-10-05 15:17:34', '2022-10-05 15:19:04', NULL, 90, '', '', '', 2152, 9907, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(88, '80c00008', '30c85bab0a356af2e1cd0a4eaac86fe2', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 15:19:06', '2022-10-05 15:19:06', '2022-10-05 15:20:58', NULL, 111, '', '', '', 715, 792, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(89, '80c00009', '033f6b01fb71e075e6b41e0bd1b13692', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 15:20:59', '2022-10-05 15:20:59', '2022-10-05 15:22:30', NULL, 90, '', '', '', 406, 264, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(90, '80c0000b', '5c7f17b2eeeff4788eb32429bf3e8458', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 15:23:05', '2022-10-05 15:23:05', '2022-10-05 15:26:13', NULL, 188, '', '', '', 60, 76, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(91, '80c0000c', 'ee8fe6e94f5400d58bcea272d319a4e7', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 15:26:16', '2022-10-05 15:26:16', '2022-10-05 15:27:45', NULL, 89, '', '', '', 0, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'Session-Timeout', '', '', '10.10.50.253', '', '', '', '', NULL),
(92, '80c0000f', '23c40b7fbff19ef06cb2b1687f4d633e', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 15:37:38', '2022-10-05 15:37:38', '2022-10-05 17:19:10', NULL, 6093, '', '', '', 37001, 245510, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(93, '8190000e', 'cb218dc66d612c03fbf09ba13c15644a', 'esrat', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 16:08:41', '2022-10-05 16:08:41', '2022-10-05 16:09:05', NULL, 23, 'RADIUS', '', '', 4932, 1700, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.99', '', '', '', '', NULL),
(94, '8190000f', '9b44e9791ce70ceca2729f4c44117c51', 'esrat', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 16:09:08', '2022-10-05 16:09:08', '2022-10-05 16:09:10', NULL, 2, 'RADIUS', '', '', 916, 191, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.99', '', '', '', '', NULL),
(95, '81900010', 'd8f87471b0cdac77e2d7deee959e55cf', 'esrat', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 16:09:54', '2022-10-05 16:10:54', '2022-10-05 16:11:02', 60, 67, 'RADIUS', '', '', 6941, 2604, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.99', '', '', '', '', NULL),
(96, '81900011', '343c52741d6140f5905d7c1220c093b6', 'esrat', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 16:11:41', '2022-10-05 16:14:41', '2022-10-05 16:14:44', 60, 183, 'RADIUS', '', '', 8077, 3786, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.99', '', '', '', '', NULL),
(97, '81900012', '9d195a1b1a096e3993606e0113edcb5a', 'esrat', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 16:14:48', '2022-10-05 17:14:48', '2022-10-05 17:15:48', 60, 3661, 'RADIUS', '', '', 11418, 15844, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.99', '', '', '', '', NULL),
(98, '80c00010', 'e773393f084ebe533ecb9483dc88d644', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 17:19:12', '2022-10-05 17:19:12', '2022-10-05 17:19:13', NULL, 2, '', '', '', 0, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(99, '80c00011', '2f4437f4aefe3d216d5a78928cad5cc1', 'monir', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 17:19:32', '2022-10-05 17:19:32', '2022-10-05 17:24:32', NULL, 300, '', '', '', 60, 76, 'hotspot1', '08:00:27:7D:FD:4F', 'Session-Timeout', '', '', '10.10.50.253', '', '', '', '', NULL),
(100, '80c00013', 'ce072c63c3931c996e4d850e5b593ed7', 'monir', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 17:25:14', '2022-10-05 17:25:14', '2022-10-05 17:29:54', NULL, 280, '', '', '', 175012, 10569101, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(101, '80c00014', 'e97dda55014cc11315668378c31bc0d4', 'monir', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 17:29:55', '2022-10-05 17:29:55', '2022-10-05 17:33:22', NULL, 207, '', '', '', 114659, 10738413, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(102, '80c00015', 'd197e3051dfe2b0768409ce91d0228d9', 'monir', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 17:33:26', '2022-10-05 17:33:26', '2022-10-05 17:39:06', NULL, 341, '', '', '', 110701, 41971575, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(103, '80c00016', '71bdd49c160e969fef24a052102773d8', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 17:39:19', '2022-10-05 17:39:19', '2022-10-05 18:41:51', NULL, 3752, '', '', '', 521180, 16474749, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(104, '80c00017', 'f878795c66cb84f502e79548e0729513', 'anika', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 17:41:04', '2022-10-05 17:41:04', '2022-10-05 17:43:18', NULL, 134, '', '', '', 330638, 6189116, 'hotspot1', '08:00:27:7E:92:5A', 'User-Request', '', '', '10.10.50.251', '', '', '', '', NULL),
(105, '80c00018', '1c7754d28c4585f68deec1040b6d47e5', 'anika', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 17:43:23', '2022-10-05 17:43:23', '2022-10-05 17:48:29', NULL, 305, '', '', '', 323402, 9289778, 'hotspot1', '08:00:27:7E:92:5A', 'User-Request', '', '', '10.10.50.251', '', '', '', '', NULL),
(106, '80c00019', '00d0277671a7da9ff8f60ba944c138e7', 'anika', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 17:53:04', '2022-10-05 17:53:04', '2022-10-05 17:53:22', NULL, 18, '', '', '', 533, 424, 'hotspot1', '08:00:27:7E:92:5A', 'User-Request', '', '', '10.10.50.251', '', '', '', '', NULL),
(107, '80c0001a', '8238da877f8c7d748e0f0de090e0cd6e', 'anika', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:02:10', '2022-10-05 18:02:10', '2022-10-05 18:02:24', NULL, 14, '', '', '', 1066, 848, 'hotspot1', '08:00:27:7E:92:5A', 'User-Request', '', '', '10.10.50.251', '', '', '', '', NULL),
(108, '80c0001b', 'bdca40e6bedc3dce466507dec85fdaff', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:03:45', '2022-10-05 18:03:45', '2022-10-05 18:05:25', NULL, 100, '', '', '', 149031, 4753561, 'hotspot1', '08:00:27:7E:92:5A', 'User-Request', '', '', '10.10.50.251', '', '', '', '', NULL),
(109, '80c0001c', '0efca9eaf7ecc5af27145895628880e3', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:05:29', '2022-10-05 18:05:29', '2022-10-05 18:07:34', NULL, 125, '', '', '', 4493, 5915, 'hotspot1', '08:00:27:7E:92:5A', 'User-Request', '', '', '10.10.50.251', '', '', '', '', NULL),
(110, '80c0001d', 'e0c0894fd5414fa22c4b976ccb6a12b0', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:07:40', '2022-10-05 18:07:40', '2022-10-05 18:08:16', NULL, 35, '', '', '', 445, 4342, 'hotspot1', '08:00:27:7E:92:5A', 'User-Request', '', '', '10.10.50.251', '', '', '', '', NULL),
(111, '80c00020', 'c02a8a03c42555b2e234186421b64679', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:09:36', '2022-10-05 18:09:36', '2022-10-05 18:12:36', NULL, 180, '', '', '', 60, 2214, 'hotspot1', '08:00:27:7E:92:5A', 'User-Request', '', '', '10.10.50.251', '', '', '', '', NULL),
(112, '80c00021', 'ac358e5cf9309d29aaac218487cf9afa', 'anika', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:13:04', '2022-10-05 18:13:04', '2022-10-05 18:13:06', NULL, 2, '', '', '', 1231, 6365, 'hotspot1', '08:00:27:7E:92:5A', 'User-Request', '', '', '10.10.50.251', '', '', '', '', NULL),
(113, '80c00022', '0226d3bc66bac55b071c905b0fde17c1', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:13:13', '2022-10-05 18:13:13', '2022-10-05 18:13:16', NULL, 3, '', '', '', 533, 424, 'hotspot1', '08:00:27:7E:92:5A', 'User-Request', '', '', '10.10.50.251', '', '', '', '', NULL),
(114, '80c00023', 'efbb7957f62745dda9a65e5cfa970fe9', 'nahar', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:13:31', '2022-10-05 18:13:31', '2022-10-05 18:18:55', NULL, 324, '', '', '', 1115145, 36515268, 'hotspot1', '08:00:27:7E:92:5A', 'User-Request', '', '', '10.10.50.251', '', '', '', '', NULL),
(115, '80c00024', 'd056f0a18614abad56a80e25ab79eb5c', 'nahar', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:19:03', '2022-10-05 18:19:03', '2022-10-05 19:02:38', NULL, 2615, '', '', '', 1953933, 323988926, 'hotspot1', '08:00:27:7E:92:5A', 'User-Request', '', '', '10.10.50.251', '', '', '', '', NULL),
(116, '80c00025', 'b9063da972433f276aeef142c035da07', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:42:20', '2022-10-05 18:42:20', '2022-10-05 18:43:04', NULL, 44, '', '', '', 2943, 12043, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(117, '80c00027', 'cf77bd6fafd0141b780ebc77414d1bdc', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:43:38', '2022-10-05 18:43:38', '2022-10-05 18:50:18', NULL, 399, '', '', '', 18861, 68534, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(118, '80c00028', '5895c867b36c4cfd20e6783dfe0bd7c7', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:51:50', '2022-10-05 18:51:50', '2022-10-05 18:52:23', NULL, 33, '', '', '', 23395, 220759, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(119, '80c0002a', '0aeacbedca4d7399bcc71b292316e631', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:58:52', '2022-10-05 18:58:52', '2022-10-05 18:59:41', NULL, 49, '', '', '', 30381, 535500, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(120, '80c0002b', '375cd7693324c0722f49ce42ad01cf98', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 18:59:55', '2022-10-05 18:59:55', '2022-10-05 19:03:00', NULL, 186, '', '', '', 656, 728, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(121, '80c0002c', '26955c5c5e4c6b72a6858780bdbe6e48', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 19:03:01', '2022-10-05 19:03:01', '2022-10-05 19:21:59', NULL, 1138, '', '', '', 191835, 12336119, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(122, '80c0002d', '058bb6424f65b31e9e9176bd33b89ba4', 'nahar', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 19:05:34', '2022-10-05 19:05:34', '2022-10-05 22:06:15', NULL, 10841, '', '', '', 0, 0, 'hotspot1', '08:00:27:7E:92:5A', 'NAS-Reboot', '', '', '10.10.50.251', '', '', '', '', NULL),
(123, '80c0002e', 'fc161159356fd5bf5bd6d30880447072', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 19:22:04', '2022-10-05 19:22:04', '2022-10-05 19:36:22', NULL, 859, '', '', '', 87173, 8618680, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(124, '80c0002f', 'fb5296934d1cf9cb15c9c1c85aaf3052', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 19:36:23', '2022-10-05 19:36:23', '2022-10-05 19:36:33', NULL, 10, '', '', '', 205, 260, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(125, '80c00030', '206e5ec234536701d3cfc996235b6514', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 19:36:51', '2022-10-05 19:36:51', '2022-10-05 19:38:56', NULL, 125, '', '', '', 984, 1248, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(126, '80c00031', '3b49b3cb9207094541be7ef2bf57d239', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 19:38:58', '2022-10-05 19:38:58', '2022-10-05 19:41:38', NULL, 160, '', '', '', 600579, 15890233, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(127, '80c00034', '5527a88d20a62b2c4686522b8e726861', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 19:43:02', '2022-10-05 19:43:02', '2022-10-05 19:43:15', NULL, 12, '', '', '', 4056, 16055, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(128, '80c00035', '60cf1f4060023ac8321172255325c58b', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 19:44:24', '2022-10-05 19:44:24', '2022-10-05 19:44:32', NULL, 9, '', '', '', 2005, 2185, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(129, '80c00036', 'd3e50a356f5207ad67777b11741a5d9d', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 19:44:35', '2022-10-05 19:44:35', '2022-10-05 19:44:37', NULL, 2, '', '', '', 80, 240, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(130, '80c00037', '40b8b9408c23139ce39f94b40b91d4ee', 'anisa', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 19:44:40', '2022-10-05 19:44:40', '2022-10-05 19:44:52', NULL, 12, '', '', '', 3602, 9531, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(131, '80c00039', '6f2c10d9d27c6e0c689fbff0ab5fa9f9', 'tuhin', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 19:45:01', '2022-10-05 19:45:01', '2022-10-05 19:49:45', NULL, 284, '', '', '', 106953, 894088, 'hotspot1', '08:00:27:7D:FD:4F', 'NAS-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(132, '80c0003b', '7e5b176d0113a60c70a04b87a54a1cbe', 'marium', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 19:59:21', '2022-10-05 19:59:21', '2022-10-05 20:00:38', NULL, 77, '', '', '', 100207, 902104, 'hotspot1', '08:00:27:7D:FD:4F', 'NAS-Request', '', '', '10.10.50.253', '', '', '', '', NULL),
(134, '84000002', '326d8e608834d5b4baa4629a440887bd', 'murad', '', '192.168.137.2', '', '', '2022-10-06 10:05:13', '2022-10-06 10:05:13', '2022-10-06 10:02:28', NULL, 42935, '', '', '', 0, 0, '', '192.168.137.1', 'NAS-Reboot', 'Login-User', '', '', '', '', '', '', NULL),
(135, '80d00002', '90fbaa25600163695d4e073a91f9e1fe', 'aziz', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 23:06:03', '2022-10-05 23:06:03', '2022-10-05 23:07:01', NULL, 58, '', '', '', 34565, 3436301, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.254', '', '', '', '', NULL),
(136, '81a00000', '7bcc9f5a0e4c931850c89a356b9e4f1c', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 23:07:33', '2022-10-05 23:07:33', '2022-10-05 23:07:33', NULL, 0, 'RADIUS', '', '', 100, 68, 'service1', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(137, '81a00001', '6fbebb55671419ee75c28e0bd5c117c5', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 23:07:37', '2022-10-05 23:07:37', '2022-10-05 23:07:37', NULL, 0, 'RADIUS', '', '', 100, 68, 'service1', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(138, '81a00002', '34d6f51761398a63812542944ff57012', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 23:08:37', '2022-10-05 23:08:37', '2022-10-05 23:08:37', NULL, 0, 'RADIUS', '', '', 100, 68, 'service1', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(139, '81a00003', 'b12410c2dca8e0681e9486bfcb11b158', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 23:09:04', '2022-10-05 23:09:04', '2022-10-05 23:09:04', NULL, 0, 'RADIUS', '', '', 100, 68, 'service1', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(140, '81a00004', '7aacbfb04a5d78ca26e9e1134ea31930', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 23:09:05', '2022-10-05 23:09:05', '2022-10-05 23:09:05', NULL, 0, 'RADIUS', '', '', 100, 68, 'service1', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(141, '81a00006', 'ea50177a7b3e751bc97c73182e71347b', 'mamun', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 23:09:43', '2022-10-05 23:09:43', '2022-10-05 23:09:43', NULL, 0, 'RADIUS', '', '', 100, 68, 'service1', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(142, '81a00007', 'a6547522ab6a27f76a621fe8523f0da5', 'murad', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 23:09:54', '2022-10-05 23:10:54', '2022-10-05 23:11:31', 60, 97, 'RADIUS', '', '', 128806, 6751174, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.50', '', '', '', '', NULL),
(143, '81a00008', '4aea348ee2bef838b929089858edec41', 'murad', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 23:11:37', '2022-10-05 23:12:37', '2022-10-05 23:12:38', 60, 61, 'RADIUS', '', '', 102507, 7143489, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.150', '', '', '', '', NULL),
(144, '81a00009', 'c49d29a4cf361d9cacd91b3bf442ff5f', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 23:12:49', '2022-10-05 23:12:49', '2022-10-05 23:12:49', NULL, 0, 'RADIUS', '', '', 100, 68, 'service1', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(145, '81a0000a', '623a2abb3238c428eb67f4410eb2075b', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 23:13:49', '2022-10-05 23:13:49', '2022-10-05 23:13:55', NULL, 6, 'RADIUS', '', '', 3726, 3195, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.149', '', '', '', '', NULL),
(146, '81a0000c', 'fd437b143ef59a7bd97d4ad8611a50ad', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 23:14:25', '2022-10-05 23:19:25', '2022-10-05 23:19:50', 60, 325, 'RADIUS', '', '', 709328, 38700855, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.149', '', '', '', '', NULL),
(147, '80d00003', '3614501a6264397120b54d3860510240', 'aziz', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 23:17:48', '2022-10-05 23:17:48', '2022-10-05 23:19:32', NULL, 104, '', '', '', 30000, 11157928, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.254', '', '', '', '', NULL),
(148, '80d00004', '5ea17f019fc2f61d516d8524a5919aae', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-05 23:19:38', '2022-10-05 23:19:38', '2022-10-05 23:24:04', NULL, 266, '', '', '', 60, 76, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.10.50.254', '', '', '', '', NULL),
(149, '81a0000d', '876368ef62b709050af4122dd729663a', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-05 23:19:55', '2022-10-05 23:23:55', '2022-10-05 23:24:16', 60, 261, 'RADIUS', '', '', 3682, 40567, 'service1', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.100.149', '', '', '', '', NULL),
(152, '81b00000', '76201b5d11c7277c024c5d318f2bd728', 'esrat', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 10:12:18', '2022-10-06 10:17:18', '2022-10-06 10:17:50', 60, 332, 'RADIUS', '', '', 889366, 18144166, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.100', '', '', '', '', NULL),
(153, '81b00001', '851d41355f2c2e4263f198f57802740a', 'mehtab', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 10:18:01', '2022-10-06 10:19:01', '2022-10-06 10:19:23', 60, 82, 'RADIUS', '', '', 313886, 9972127, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.150', '', '', '', '', NULL),
(154, '81b00002', '94141a38cc2bdafc8d79e2c141226b2a', 'mehtab', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 10:19:28', '2022-10-06 10:55:28', '2022-10-06 10:55:33', 60, 2165, 'RADIUS', '', '', 16461046, 244517508, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.150', '', '', '', '', NULL),
(155, '81b00004', '7db9ef992015593288ab82e7ca30680d', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 10:56:51', '2022-10-06 11:11:51', '2022-10-06 11:12:25', 60, 934, 'RADIUS', '', '', 10985689, 105985892, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.199', '', '', '', '', NULL),
(158, '81b00005', 'c1dd1ddc259c6ade7bb9e04b2edef805', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 11:12:33', '2022-10-06 11:12:33', '2022-10-06 11:13:14', NULL, 41, 'RADIUS', '', '', 89724, 3011237, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.199', '', '', '', '', NULL),
(159, '81b00006', 'd571648a4d693fb9b9a51fbe9151b349', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 11:13:27', '2022-10-06 11:18:27', '2022-10-06 11:18:57', 60, 330, 'RADIUS', '', '', 992255, 39986211, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.149', '', '', '', '', NULL),
(160, '81b00007', '7bfe404d9e4a72c90b5be5b8258b1c6e', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 13:33:55', '2022-10-06 13:36:55', '2022-10-06 13:37:10', 60, 195, 'RADIUS', '', '', 3946754, 19330232, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.149', '', '', '', '', NULL),
(161, '81b00010', '9473aef7f02850a9ebda221ba0eae0e4', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 13:44:09', '2022-10-06 13:46:09', '2022-10-06 13:46:24', 60, 135, 'RADIUS', '', '', 454176, 15810581, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.149', '', '', '', '', NULL),
(162, '81b00011', '2b85e067d581e739e8567bcdb9b87672', 'aziz', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 13:46:47', '2022-10-06 14:24:48', '2022-10-06 14:24:59', 60, 2292, 'RADIUS', '', '', 7308084, 285541194, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.149', '', '', '', '', NULL),
(163, '81b00016', '2f1c1a49b7489830067af9aa60281286', 'anas', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 14:28:44', '2022-10-06 14:32:44', '2022-10-06 14:33:14', 60, 270, 'RADIUS', '', '', 723626, 30575329, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.148', '', '', '', '', NULL),
(164, '81b00019', '14496bb576c4018b3215ebe8fb34a4cb', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 14:35:11', '2022-10-06 14:49:11', '2022-10-06 21:59:27', 60, 26656, 'RADIUS', '', '', 2355531, 102744007, 'service1', '08:00:27:51:65:00', 'NAS-Reboot', 'Framed-User', 'PPP', '10.10.100.199', '', '', '', '', NULL),
(165, '81b0001e', '62fba59e86ce3e4648a4b332b065825c', 'zaib', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 14:44:25', '2022-10-06 14:44:25', '2022-10-06 14:44:31', NULL, 6, 'RADIUS', '', '', 116, 96, 'service1', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(166, '81b0001f', '247ca817848e17a9f51828ec4faef331', 'zaib', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 14:45:54', '2022-10-06 14:48:54', '2022-10-06 21:59:27', 60, 26013, 'RADIUS', '', '', 99150, 1481833, 'service1', '08:00:27:7E:92:5A', 'NAS-Reboot', 'Framed-User', 'PPP', '10.10.100.147', '', '', '', '', NULL),
(167, '81c00000', '13b8b0e48848fdba744a57ca21ea32af', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:03:07', '2022-10-06 22:06:07', '2022-10-06 22:06:28', 60, 201, 'RADIUS', '', '', 432221, 18327909, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.199', '', '', '', '', NULL),
(168, '81c00001', 'dfe5fb0d15f0a8ab935999ee614f6934', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:06:31', '2022-10-06 22:06:31', '2022-10-06 22:06:31', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(169, '81c00002', '21c9eaf81e0ddcce8f244bcfa51f0e4e', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:07:32', '2022-10-06 22:07:32', '2022-10-06 22:07:32', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(170, '81c00003', '43a582c8db8c046dec32c9afb5864a28', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:08:32', '2022-10-06 22:08:32', '2022-10-06 22:08:32', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(171, '81c00004', '60c0422031254091167e537fbc2c0144', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:09:32', '2022-10-06 22:09:32', '2022-10-06 22:09:32', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(172, '81c00008', '9fea8d8719e3b9433f28bf6b7ab4ebbd', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:15:45', '2022-10-06 22:15:45', '2022-10-06 22:15:45', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(173, '81c00009', '3cfa0a9be19c4eedf27808646024e423', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:16:45', '2022-10-06 22:16:45', '2022-10-06 22:16:45', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(174, '81c0000a', '51de59671ca1c1e07034570c15f01676', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:17:42', '2022-10-06 22:20:42', '2022-10-06 22:21:33', 60, 231, 'RADIUS', '', '', 605132, 26183439, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.199', '', '', '', '', NULL),
(175, '81c0000b', '30a48b4df268b1072470161efa9dc7b0', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:21:41', '2022-10-06 22:21:41', '2022-10-06 22:21:41', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(176, '81c0000c', 'f6a817d93594979e51b34c74e114dc42', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:22:12', '2022-10-06 22:24:12', '2022-10-06 22:24:41', 60, 149, 'RADIUS', '', '', 147831, 4486271, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.199', '', '', '', '', NULL),
(177, '81c0000d', '352a16a13adad2229a92e34acd54691a', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:24:48', '2022-10-06 22:25:48', '2022-10-06 22:25:54', 60, 66, 'RADIUS', '', '', 138381, 6150293, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.199', '', '', '', '', NULL),
(178, '81c0000e', '8dcbc210a9ef8a9cc73330ef8df615e8', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:25:57', '2022-10-06 22:25:57', '2022-10-06 22:26:44', NULL, 47, 'RADIUS', '', '', 128755, 5475540, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.199', '', '', '', '', NULL),
(179, '81c0000f', 'b8f8241dca4ab0294c2797d9b74f90c1', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:26:47', '2022-10-06 22:27:47', '2022-10-06 22:28:47', 60, 120, 'RADIUS', '', '', 341665, 14311952, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.199', '', '', '', '', NULL),
(180, '81c00010', 'afadcc39bd151f7f9903a4feeaa0dad9', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:28:50', '2022-10-06 22:37:50', '2022-10-06 22:38:17', 60, 567, 'RADIUS', '', '', 526805, 17544075, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.199', '', '', '', '', NULL),
(181, '81c00011', 'feb6f903f5c4fe3378805f9779082014', 'nayeem', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:38:21', '2022-10-06 22:38:21', '2022-10-06 22:38:21', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(182, '81c00012', '9a7044b15d5bc3aab5a39fd7a5651a73', 'nayeem', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:39:06', '2022-10-06 22:39:06', '2022-10-06 22:39:06', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(183, '81c00013', '1ba31d1d9c985cc547d226e6a3248cb3', 'nayeem', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:39:07', '2022-10-06 22:39:07', '2022-10-06 22:39:07', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(184, '81c00014', '0da38fe295b89304fa555b0e57de786f', 'nayeem', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:39:08', '2022-10-06 22:39:08', '2022-10-06 22:39:08', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(185, '81c00015', '002c0f42d599fe8153dccfbbf004659a', 'nayeem', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:39:09', '2022-10-06 22:39:09', '2022-10-06 22:39:09', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(186, '81c00016', '24c1cb58e773ce6ab493b460082d6960', 'nayeem', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:39:10', '2022-10-06 22:39:10', '2022-10-06 22:39:10', NULL, 0, 'RADIUS', '', '', 114, 68, 'service1', '08:00:27:51:65:00', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(187, '81c00017', '697821b4cf5252e8c006bc88751d152a', 'nayeem', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:39:38', '2022-10-06 22:48:38', '2022-10-06 22:48:50', 60, 552, 'RADIUS', '', '', 1003102, 41971347, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.210', '', '', '', '', NULL),
(188, '81c00018', '5b044ae892d40f3acfefbecab71cb127', 'muttaki', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:49:00', '2022-10-06 22:49:00', '2022-10-06 22:49:00', NULL, 0, 'RADIUS', '', '', 172, 92, 'service1', '08:00:27:51:65:00', 'Port-Error', 'Framed-User', 'PPP', '10.10.100.215', '', '', '', '', NULL),
(189, '81c00019', '500c382bcb1272dd0cf1b25546ab0058', 'muttaki', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:50:00', '2022-10-06 22:50:00', '2022-10-06 22:50:00', NULL, 0, 'RADIUS', '', '', 226, 92, 'service1', '08:00:27:51:65:00', 'Port-Error', 'Framed-User', 'PPP', '10.10.100.215', '', '', '', '', NULL),
(190, '81c0001a', '911242212cd4b917076be0a547c96790', 'muttaki', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:51:00', '2022-10-06 22:51:00', '2022-10-06 22:51:01', NULL, 1, 'RADIUS', '', '', 226, 92, 'service1', '08:00:27:51:65:00', 'Port-Error', 'Framed-User', 'PPP', '10.10.100.215', '', '', '', '', NULL),
(191, '81c0001b', '126747518fd50cd869a98f3898e7d578', 'muttaki', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:52:01', '2022-10-06 22:52:01', '2022-10-06 22:52:01', NULL, 0, 'RADIUS', '', '', 226, 92, 'service1', '08:00:27:51:65:00', 'Port-Error', 'Framed-User', 'PPP', '10.10.100.215', '', '', '', '', NULL),
(192, '81c0001c', '6e71786f94788dca1f84aba83d89bdb6', 'muttaki', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:52:19', '2022-10-06 22:55:19', '2022-10-06 22:55:32', 60, 193, 'RADIUS', '', '', 368620, 15435921, 'service1', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '10.10.100.215', '', '', '', '', NULL),
(193, '81c0001d', '6346d5c96673d3b80f96c760df37acc6', 'muttaki', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-06 22:55:43', '2022-10-06 22:56:43', '2022-10-06 22:57:38', 60, 115, 'RADIUS', '', '', 195715, 7935029, 'service1', '08:00:27:51:65:00', 'Lost-Carrier', 'Framed-User', 'PPP', '10.10.100.215', '', '', '', '', NULL),
(194, '8130000b', '01630531c48d1248fa7ae47fc79f4f74', 'mamun', '', '192.168.137.2', 'ether2', 'Ethernet', '2022-10-07 06:07:27', '2022-10-07 06:07:27', '2022-10-07 06:07:28', NULL, 1, 'RADIUS', '', '', 496, 172, 'pppoe_server', '08:00:27:51:65:00', 'Admin-Reboot', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(195, '81400000', 'e8900b3c55e4c98d0bf3f4e7798dc639', 'mamun', '', '192.168.137.2', 'ether2', 'Ethernet', '2022-10-07 06:08:22', '2022-10-07 06:08:22', '2022-10-07 06:08:55', NULL, 33, 'RADIUS', '', '', 1256, 248, 'pppoe_server', '08:00:27:51:65:00', 'User-Request', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(196, '81400001', 'b26c4c7602671b311275d9b9b8eb323a', 'muttaki', '', '192.168.137.2', 'ether2', 'Ethernet', '2022-10-07 06:09:01', '2022-10-07 06:09:01', '2022-10-07 09:01:05', NULL, 10324, 'RADIUS', '', '', 0, 0, 'pppoe_server', '08:00:27:51:65:00', 'NAS-Reboot', 'Framed-User', 'PPP', '10.10.10.20', '', '', '', '', NULL),
(197, '81500003', 'aab304502cfe254ba8df2f4001a5c72f', 'muttaki', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:02:14', '2022-10-07 07:02:14', '2022-10-07 07:18:01', NULL, 947, 'RADIUS', '', '', 774, 106, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.10.20', '', '', '', '', NULL),
(198, '81500004', '9e9114154b2541ae59aa4eae9d2333ed', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:18:07', '2022-10-07 07:18:07', '2022-10-07 07:18:07', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(199, '81500005', '30b6b5584f0105a2b4375e8ec0a1e4c9', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:19:07', '2022-10-07 07:19:07', '2022-10-07 07:19:07', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(200, '81500006', '626ca4edfbc984e99985c072ddc150a9', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:20:07', '2022-10-07 07:20:07', '2022-10-07 07:20:07', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(201, '81500007', '3c11417bd8b5e02c613147dc02209c49', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:22:05', '2022-10-07 07:22:05', '2022-10-07 07:22:05', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(202, '81500008', 'f94e06bc5bf92d81e40162d51df4d2c1', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:23:05', '2022-10-07 07:23:05', '2022-10-07 07:23:05', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(203, '81500009', 'afa1ebfe83e202868d53556edea20aab', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:24:06', '2022-10-07 07:24:06', '2022-10-07 07:24:06', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(204, '8150000a', '65152a4ad0dbfe23bda50da6355569f7', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:25:06', '2022-10-07 07:25:06', '2022-10-07 07:25:06', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(205, '8150000b', 'fc248f1d448a79f72152b6ad71ea8e3d', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:26:01', '2022-10-07 07:26:01', '2022-10-07 07:26:01', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(206, '8150000c', '69cad9174e9cd74a018f6d08ab442b17', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:26:03', '2022-10-07 07:26:03', '2022-10-07 07:26:03', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(207, '8150000d', '54e787e837a20a96b85034921b48cada', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:26:04', '2022-10-07 07:26:04', '2022-10-07 07:26:04', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(208, '8150000e', '2655ca2f5a4b0ba840b50f33fd50207c', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:28:18', '2022-10-07 07:28:18', '2022-10-07 07:28:18', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(209, '8150000f', 'cdf3c578bdd2cac141534c2ddc4b4a7f', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:29:01', '2022-10-07 07:29:01', '2022-10-07 07:29:01', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL);
INSERT INTO `radacct` (`radacctid`, `acctsessionid`, `acctuniqueid`, `username`, `realm`, `nasipaddress`, `nasportid`, `nasporttype`, `acctstarttime`, `acctupdatetime`, `acctstoptime`, `acctinterval`, `acctsessiontime`, `acctauthentic`, `connectinfo_start`, `connectinfo_stop`, `acctinputoctets`, `acctoutputoctets`, `calledstationid`, `callingstationid`, `acctterminatecause`, `servicetype`, `framedprotocol`, `framedipaddress`, `framedipv6address`, `framedipv6prefix`, `framedinterfaceid`, `delegatedipv6prefix`, `class`) VALUES
(210, '81500010', 'e23052f330d49a3cc54455c08669ed72', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:29:02', '2022-10-07 07:29:02', '2022-10-07 07:29:02', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(211, '81500011', 'fdc5b2f3a0cb508aedd3670488b13381', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:29:03', '2022-10-07 07:29:03', '2022-10-07 07:29:03', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(212, '81500012', '17b584c2de54b422baf22c43479e460f', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:29:03', '2022-10-07 07:29:03', '2022-10-07 07:29:03', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(213, '81500013', 'd44fcbecfc3fa7e60e98bcc2e2cd4300', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:29:10', '2022-10-07 07:29:10', '2022-10-07 07:29:10', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(214, '81500014', '8ad82ffe5530f7d4ee19d41cde6cc407', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:30:10', '2022-10-07 07:30:10', '2022-10-07 07:30:10', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(215, '81500015', 'c19000643976b2e26847f65169c043bb', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:30:47', '2022-10-07 07:30:47', '2022-10-07 07:30:47', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(216, '81500016', '9c6880381144c64007176b0dd2ad6079', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:30:48', '2022-10-07 07:30:48', '2022-10-07 07:30:48', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(217, '81500017', '75055df8b386591574e2bf614b627c3c', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:30:59', '2022-10-07 07:30:59', '2022-10-07 07:30:59', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(218, '81500018', '396c8cf335202404d3f44193b7448c1c', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:31:59', '2022-10-07 07:31:59', '2022-10-07 07:31:59', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(219, '81500019', '2ea9478958b27e00911400d585782591', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:32:27', '2022-10-07 07:32:27', '2022-10-07 07:58:55', NULL, 1588, 'RADIUS', '', '', 14979359, 14792985, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.10.30', '', '', '', '', NULL),
(220, '8150001a', 'bac02fd47479696cfcbdfcf5ad2fc529', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 07:59:03', '2022-10-07 07:59:03', '2022-10-07 08:05:01', NULL, 358, 'RADIUS', '', '', 8874126, 107028951, 'pppoe_server', '08:00:27:7E:92:5A', 'Session-Timeout', 'Framed-User', 'PPP', '10.10.10.30', '', '', '', '', NULL),
(221, '80700007', 'bc54baeb37ab01663a135d6db814516a', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-07 10:11:24', '2022-10-07 10:11:24', '2022-10-07 10:18:00', NULL, 396, '', '', '', 30928955, 39082731, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.254', '', '', '', '', NULL),
(222, '80700008', '9394a3c03927f191316e18cda6fb1bfd', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-07 10:18:03', '2022-10-07 10:18:03', '2022-10-07 10:26:19', NULL, 496, '', '', '', 20181609, 10547434, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.254', '', '', '', '', NULL),
(223, '80700009', '3bca998f33ce0beb49aafdb5b6aa5a01', 'mamun', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-07 10:26:20', '2022-10-07 10:26:20', '2022-10-07 10:26:22', NULL, 2, '', '', '', 0, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.254', '', '', '', '', NULL),
(224, '8070000a', 'e4545fc0524ae51d8f3a6071e5382d45', '4M_Hotspot_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-07 10:26:53', '2022-10-07 10:26:53', '2022-10-07 10:29:09', NULL, 137, '', '', '', 10380697, 10388415, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.254', '', '', '', '', NULL),
(225, '81500020', 'd51aeb024da09909bc023d6a8af0efc5', '4M_Hotspot_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 10:31:42', '2022-10-07 10:31:42', '2022-10-07 10:33:57', NULL, 136, 'RADIUS', '', '', 9563591, 9687602, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.5.50.252', '', '', '', '', NULL),
(226, '8070000b', '51bfcbac0369f3a7dbc72073d2f1cc29', '4M_Hotspot_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-07 10:34:01', '2022-10-07 10:34:01', '2022-10-07 10:35:23', NULL, 82, '', '', '', 10464621, 12131533, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.254', '', '', '', '', NULL),
(227, '8070000c', 'acc730bc293d8eff9b5126fb1f3ae62c', '4M_Hotspot_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-07 10:35:25', '2022-10-07 10:35:25', '2022-10-07 10:36:11', NULL, 46, '', '', '', 10172822, 254542, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.254', '', '', '', '', NULL),
(228, '8070000d', 'c8ea19bec9e362f719f905858c183946', '4M_Hotspot_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-07 10:36:12', '2022-10-07 10:36:12', '2022-10-07 10:38:39', NULL, 147, '', '', '', 10359790, 10129289, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.254', '', '', '', '', NULL),
(229, '8070000e', '21f51926dc8786d58daeca61cb7f6fcf', '4M_Hotspot_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-07 10:38:40', '2022-10-07 10:38:40', '2022-10-07 10:40:00', NULL, 80, '', '', '', 182, 220, 'hotspot1', '08:00:27:7D:FD:4F', 'Session-Timeout', '', '', '10.5.50.254', '', '', '', '', NULL),
(230, '80800002', '8f442eb0b6b2cd67f10f0892016b56c3', '4M_Hotspot_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-07 22:15:25', '2022-10-07 22:15:25', '2022-10-07 22:23:35', NULL, 490, '', '', '', 7586762, 7375857, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(231, '80800003', 'ebc4d4dc2537a8debb602a0e49ca1644', '4M_Hotspot_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-07 22:23:38', '2022-10-07 22:23:38', '2022-10-07 22:23:47', NULL, 9, '', '', '', 1368, 380, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(232, '80800004', '5ae0700ea62d1db8f64380847a959b25', 'sumon', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-07 22:23:56', '2022-10-07 22:23:56', '2022-10-07 22:24:27', NULL, 31, '', '', '', 188833, 10652661, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(233, '81600001', '50315b54f31988e3fef0ebfb909da245', '4M_Hotspot_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 22:27:23', '2022-10-07 22:27:23', '2022-10-07 22:28:21', NULL, 58, 'RADIUS', '', '', 9691049, 10060704, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.5.50.252', '', '', '', '', NULL),
(234, '81600002', 'ee407df5cc0bbf23f1cba4e8053c2e85', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 22:28:30', '2022-10-07 22:28:30', '2022-10-07 22:28:30', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(235, '81600003', '4173bb8cc5cd87a699ff3e1afdea6a84', 'sumon', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 22:29:35', '2022-10-07 22:29:35', '2022-10-07 22:41:10', NULL, 695, 'RADIUS', '', '', 9831, 9388, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.10.20', '', '', '', '', NULL),
(236, '80800005', '52c6aae49420629e05459b397be06cec', 'sumon', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-07 22:41:00', '2022-10-07 22:41:00', '2022-10-07 22:55:29', NULL, 869, '', '', '', 4889, 20823, 'hotspot1', '08:00:27:7D:FD:4F', 'Admin-Reboot', '', '', '10.5.50.253', '', '', '', '', NULL),
(237, '81600005', 'c78f8faaf4873a10b2c859c5be6e660d', '128k_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 22:42:08', '2022-10-07 22:42:08', '2022-10-07 22:42:08', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(238, '81600006', 'a9725b77e1df428f01fa9c5c6d0d911e', '128k_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 22:43:08', '2022-10-07 22:43:08', '2022-10-07 22:43:08', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(239, '81600007', 'e52efd2ececec5c962c8e6ab51aeea6b', '128k_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 22:44:08', '2022-10-07 22:44:08', '2022-10-07 22:44:08', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(240, '81600008', '0d63b49ce07a65529a74b15d19fd4fef', '128k_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 22:45:17', '2022-10-07 22:45:17', '2022-10-07 22:45:44', NULL, 27, 'RADIUS', '', '', 248047, 674721, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.10.19', '', '', '', '', NULL),
(241, '8160000a', 'e9824bf8e7c11d6c8a4da50444892a01', '256k_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 22:46:48', '2022-10-07 22:46:48', '2022-10-07 22:47:06', NULL, 19, 'RADIUS', '', '', 17716, 415998, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.10.18', '', '', '', '', NULL),
(242, '8160000c', 'ba9866f1a6a4d2e8612af2457c1b192d', '512k_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 22:47:56', '2022-10-07 22:47:56', '2022-10-07 22:52:44', NULL, 288, 'RADIUS', '', '', 5341841, 4779846, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.10.21', '', '', '', '', NULL),
(243, '8160000d', 'b23667317c96dc203f62b7fb664892c7', '1M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 22:52:53', '2022-10-07 22:52:53', '2022-10-07 22:53:51', NULL, 58, 'RADIUS', '', '', 3091474, 2536849, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.10.49', '', '', '', '', NULL),
(244, '8160000e', 'c70501309d74e230cab35cfdb2b589f4', '2M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-07 22:54:00', '2022-10-07 22:54:00', '2022-10-07 22:55:29', NULL, 89, 'RADIUS', '', '', 5565836, 5166273, 'pppoe_server', '08:00:27:7E:92:5A', 'Admin-Reboot', 'Framed-User', 'PPP', '10.10.10.59', '', '', '', '', NULL),
(245, '81700002', '312d3253979aa9c0ea3fe11a6490f08f', '2M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 03:18:59', '2022-10-08 03:18:59', '2022-10-08 03:23:14', NULL, 255, 'RADIUS', '', '', 5626025, 5604200, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.10.59', '', '', '', '', NULL),
(246, '81700003', 'f3e0f41c51595cc7bff254af2d3714e9', '1M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 03:23:24', '2022-10-08 03:23:24', '2022-10-08 03:32:43', NULL, 559, 'RADIUS', '', '', 2903431, 2479991, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.10.49', '', '', '', '', NULL),
(247, '81700010', '352fd7fa7200403478b3831169819a79', '5_Minutes_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 04:19:59', '2022-10-08 04:19:59', '2022-10-08 04:25:20', NULL, 321, 'RADIUS', '', '', 16167613, 92231440, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.10.30', '', '', '', '', NULL),
(248, '81700011', '3b1409429a171c7cdef6b47e1f676d70', '5_Minutes_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 04:25:34', '2022-10-08 04:25:34', '2022-10-08 04:25:56', NULL, 22, 'RADIUS', '', '', 3978, 7460, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.10.30', '', '', '', '', NULL),
(249, '80900000', '7a6428df527f5bfa277d3aa0d0baa44e', '4M_Hotspot_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:28:17', '2022-10-08 04:28:17', '2022-10-08 04:28:19', NULL, 2, '', '', '', 702, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(250, '80900001', 'f9b2fe1e657159f96c63d2acaab58a05', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:28:52', '2022-10-08 04:28:52', '2022-10-08 04:34:08', NULL, 316, '', '', '', 10285112, 10786465, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(251, '80900002', '98e03a2e1ee72f18fc487586b47a209d', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:34:09', '2022-10-08 04:34:09', '2022-10-08 04:36:10', NULL, 122, '', '', '', 897183, 72170996, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(252, '80900003', '261cdd94b5565ddeb8100d148addc7d9', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:36:14', '2022-10-08 04:36:14', '2022-10-08 04:38:40', NULL, 146, '', '', '', 732, 1052, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(253, '80900004', 'ca1ed6f0476c9e6db50da3c5d9d80258', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:38:42', '2022-10-08 04:38:42', '2022-10-08 04:39:40', NULL, 58, '', '', '', 386, 180, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(254, '80900005', 'd21d102061bbfd3ebfd754eb7e9d6715', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:39:41', '2022-10-08 04:39:41', '2022-10-08 04:39:42', NULL, 1, '', '', '', 0, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(255, '80900006', '87f266264b8b5480d7153b622d04097f', 'anika', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:40:20', '2022-10-08 04:40:20', '2022-10-08 04:40:30', NULL, 11, '', '', '', 0, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(256, '8090000a', '75cb7370ba906929b86661569de3a2e1', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:50:28', '2022-10-08 04:50:28', '2022-10-08 04:51:58', NULL, 90, '', '', '', 0, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(257, '8090000b', 'fc007d7ca6242f910051bccfd0af58ec', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:52:13', '2022-10-08 04:52:13', '2022-10-08 04:53:02', NULL, 49, '', '', '', 0, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(258, '8090000c', '04e573597ac77eef90999d30be20a2a3', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:53:13', '2022-10-08 04:53:13', '2022-10-08 04:54:09', NULL, 55, '', '', '', 60, 76, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(259, '8090000d', '46ce809639f7cc7b2146438c4abf15a0', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:54:26', '2022-10-08 04:54:26', '2022-10-08 04:54:46', NULL, 20, '', '', '', 0, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'Session-Timeout', '', '', '10.5.50.253', '', '', '', '', NULL),
(260, '8090000e', '166a5290440360db06f18fd591b6bc36', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:54:58', '2022-10-08 04:54:58', '2022-10-08 04:55:04', NULL, 6, '', '', '', 0, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(261, '8090000f', '4eae5d6a5f8e7a5a69429eb46d7d27c9', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 04:55:30', '2022-10-08 04:55:30', '2022-10-08 04:58:39', NULL, 188, '', '', '', 1648, 1416, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(262, '81700012', '23b6726241e5ed45c4ae640c2e1a3d00', '5_Minutes_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 04:58:51', '2022-10-08 04:58:51', '2022-10-08 04:58:51', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(263, '81700013', 'dd4ca95ce9c06070211882a4aed05467', '5_Minutes_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 04:59:51', '2022-10-08 04:59:51', '2022-10-08 04:59:51', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(264, '81700014', '90c0029ceda5c97120f011f8da277c64', '5_Minutes_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 05:00:09', '2022-10-08 05:00:09', '2022-10-08 05:03:35', NULL, 206, 'RADIUS', '', '', 15491, 15183, 'pppoe_server', '08:00:27:7E:92:5A', 'Session-Timeout', 'Framed-User', 'PPP', '10.10.10.58', '', '', '', '', NULL),
(265, '80900010', 'baebf59ba2f821c5bb32cee454e6ecd2', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 05:00:29', '2022-10-08 05:00:29', '2022-10-08 05:03:55', NULL, 206, '', '', '', 100, 196, 'hotspot1', '08:00:27:7D:FD:4F', 'Session-Timeout', '', '', '10.5.50.253', '', '', '', '', NULL),
(266, '80900012', '34c0a435e0028cb9f13063eed8eb814e', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 05:12:53', '2022-10-08 05:12:53', '2022-10-08 05:13:19', NULL, 27, '', '', '', 0, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(267, '80900013', 'a00e343f70cf5470ef60a2e9c2a79044', '5_Minutes_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 05:13:22', '2022-10-08 05:13:22', '2022-10-08 05:16:09', NULL, 167, '', '', '', 10896032, 10138198, 'hotspot1', '08:00:27:7D:FD:4F', 'Session-Timeout', '', '', '10.5.50.253', '', '', '', '', NULL),
(268, '81700019', '8fb515c4b405b0e78edcc6585e866422', '5_Minutes_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 05:13:29', '2022-10-08 05:13:29', '2022-10-08 05:16:16', NULL, 167, 'RADIUS', '', '', 5441132, 4982813, 'pppoe_server', '08:00:27:7E:92:5A', 'Session-Timeout', 'Framed-User', 'PPP', '10.10.10.58', '', '', '', '', NULL),
(269, '80900015', '9e3a09642fa5c47c573400207ddd4bec', '10_MB_Quota', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 05:21:27', '2022-10-08 05:21:27', '2022-10-08 05:22:04', NULL, 37, '', '', '', 120582, 9880003, 'hotspot1', '08:00:27:7D:FD:4F', 'NAS-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(270, '80900017', '921fb8637885ab0491f6c56db6d4f4a7', '10_MB_Quota', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 05:26:19', '2022-10-08 05:26:19', '2022-10-08 05:37:15', NULL, 656, '', '', '', 6419, 177501, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(271, '8170001f', '73258ba3827051d8a94fc7f88f14075d', '10_MB_Quota', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 05:27:32', '2022-10-08 05:27:32', '2022-10-08 05:27:32', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(272, '81700020', 'c0457f75e0c57582fb89ea52e3b11139', '10_MB_Quota', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 05:28:32', '2022-10-08 05:28:32', '2022-10-08 05:28:32', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(273, '81700021', '6ac32414a4f795f7477672e4be462e24', '10_MB_Quota', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 05:29:04', '2022-10-08 05:29:04', '2022-10-08 05:35:05', NULL, 362, 'RADIUS', '', '', 10412098, 151075765, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.5.50.252', '', '', '', '', NULL),
(274, '8090001a', 'ef53eb2eaef337efdba02df24ce538c7', '500_MB_30_Days', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 06:05:17', '2022-10-08 06:05:17', '2022-10-08 06:06:42', NULL, 84, '', '', '', 547453, 42817615, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(275, '8090001b', '8557baffad19b3fb844e9e552247a5f6', '500_MB_30_Days', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 06:06:58', '2022-10-08 06:06:58', '2022-10-08 06:08:46', NULL, 107, '', '', '', 701243, 54839226, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(276, '8090001c', '232220c803023dfcd92f1686f9ed7ba6', '500_MB_30_Days', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 06:09:03', '2022-10-08 06:09:03', '2022-10-08 06:11:51', NULL, 168, '', '', '', 1266814, 99828785, 'hotspot1', '08:00:27:7D:FD:4F', 'NAS-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(277, '8090001d', '7f6480a5efcf52154aaf82229694ce06', '500_MB_30_Days', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 06:13:32', '2022-10-08 06:13:32', '2022-10-08 06:16:26', NULL, 173, '', '', '', 1252685, 98747603, 'hotspot1', '08:00:27:7D:FD:4F', 'NAS-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(278, '8090001f', '48371ca8d22e7b95aff49c976ce01787', '500_MB_30_Days', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 06:19:07', '2022-10-08 06:19:07', '2022-10-08 06:22:57', NULL, 230, '', '', '', 1604348, 125169568, 'hotspot1', '08:00:27:7D:FD:4F', 'Session-Timeout', '', '', '10.5.50.253', '', '', '', '', NULL),
(279, '80900020', '0198efe6f65b84a81793d1152f715447', '4M_Hotspot_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 06:22:57', '2022-10-08 06:22:57', '2022-10-08 06:23:23', NULL, 25, '', '', '', 363, 636, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(280, '80900021', '1031baeb159154834c545643443896e0', '4M_Hotspot_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 06:32:16', '2022-10-08 06:32:16', '2022-10-08 06:32:31', NULL, 15, '', '', '', 0, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(281, '80900022', '31d5cede9ce1f9ea411579b36dd649da', '100_MB_30_Days', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 06:32:55', '2022-10-08 06:32:55', '2022-10-08 06:33:56', NULL, 61, '', '', '', 381372, 29700263, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(282, '80900023', '7a8d080c5b8aa7128c70ac03faeb10c9', '100_MB_30_Days', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 06:34:06', '2022-10-08 06:34:06', '2022-10-08 06:38:02', NULL, 237, '', '', '', 1438149, 136843709, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(283, '80900024', 'aaffd11a20a5329f68c5ffa24b244810', '100_MB_30_Days', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 06:38:14', '2022-10-08 06:38:14', '2022-10-08 06:39:14', NULL, 59, '', '', '', 396973, 31240147, 'hotspot1', '08:00:27:7D:FD:4F', 'NAS-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(284, '80a00006', '80c4146d57c2335b2c91369b70ea9354', 'hotspot_user1', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 17:53:42', '2022-10-08 17:53:42', '2022-10-08 22:45:58', NULL, 17536, '', '', '', 0, 0, 'hotspot1', '08:00:27:7D:FD:4F', 'NAS-Reboot', '', '', '10.5.50.253', '', '', '', '', NULL),
(285, '80b00000', '064acd2432c71de946f93d1e7364653a', 'hotspot_user1', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 18:15:13', '2022-10-08 18:15:13', '2022-10-08 18:22:29', NULL, 436, '', '', '', 1144441, 421873, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(286, '80b00001', '90f442234dff5fd349b18641b45e8503', 'hotspot_user1', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 18:22:38', '2022-10-08 18:22:38', '2022-10-08 18:27:56', NULL, 318, '', '', '', 9248974, 8759065, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(287, '80b00002', '6886866c9f2ce8a2a3ca98efc9c2f9bb', 'hotspot_user1', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 18:28:05', '2022-10-08 18:28:05', '2022-10-08 18:40:41', NULL, 756, '', '', '', 9358529, 8841145, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(288, '81900006', '35eeef346bfcf11b263a1d12a5860ae5', '3M_User', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 18:39:59', '2022-10-08 18:39:59', '2022-10-08 18:40:36', NULL, 36, 'RADIUS', '', '', 774, 106, 'pppoe_server', '08:00:27:7E:92:5A', 'User-Request', 'Framed-User', 'PPP', '10.10.10.30', '', '', '', '', NULL),
(289, '80b00003', '853d93257309daf087d842260282e6b9', '3M_User', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 18:40:52', '2022-10-08 18:40:52', '2022-10-08 18:43:54', NULL, 182, '', '', '', 10225990, 9970736, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(290, '81900007', '5cc10890ddb70ebe78f040d875552b0b', 'hotspot_user1', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 18:46:39', '2022-10-08 18:46:39', '2022-10-08 18:46:39', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(291, '80b00004', '83693c33a9d2d0cbc5749d2ed9e3091f', 'hotspot_user1', '', '192.168.137.2', 'ether3_hotspot', 'Wireless-802.11', '2022-10-08 18:47:07', '2022-10-08 18:47:07', '2022-10-08 18:52:33', NULL, 326, '', '', '', 60, 76, 'hotspot1', '08:00:27:7D:FD:4F', 'User-Request', '', '', '10.5.50.253', '', '', '', '', NULL),
(292, '81900008', 'aabfdfa849742554f8216ea2a1af0728', 'hotspot_user1', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 18:47:39', '2022-10-08 18:47:39', '2022-10-08 18:47:39', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(293, '81900009', 'fd4d72eabe54a2ea283b5e216a899c0c', 'hotspot_user1', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 18:48:39', '2022-10-08 18:48:39', '2022-10-08 18:48:39', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(294, '8190000a', '9550ac289698379e8cb6c2857ea83be9', 'hotspot_user1', '', '192.168.137.2', 'ether2_pppoe', 'Ethernet', '2022-10-08 18:49:39', '2022-10-08 18:49:39', '2022-10-08 18:49:39', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_server', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(295, '84000004', '51029fef3aeb457d706e3e242843f887', 'murad', '', '192.168.100.1', '', '', '2022-10-08 23:24:26', '2022-10-08 23:28:26', '2022-10-09 10:02:06', 60, 38260, '', '', '', 0, 0, '', '192.168.103.35', 'NAS-Reboot', 'Login-User', '', '', '', '', '', '', NULL),
(296, '84000005', '1fca687dde86b1f993fd8e75afdda452', 'murad', '', '192.168.100.1', '', '', '2022-10-08 23:24:26', '2022-10-08 23:28:26', '2022-10-09 10:02:06', 60, 38260, '', '', '', 0, 0, '', '192.168.103.35', 'NAS-Reboot', 'Login-User', '', '', '', '', '', '', NULL),
(297, '81f00000', '9c6176abd6d279e5562cef0b150e948e', '20mbps_User', '', '192.168.100.1', 'Lan_Bridge', 'Ethernet', '2022-10-08 23:41:51', '2022-10-08 23:41:51', '2022-10-08 23:41:51', NULL, 0, 'RADIUS', '', '', 100, 82, 'pppoe_service', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(298, '81f00001', 'b6e893ed29c389d246bdf5bcf969652f', '20mbps_User', '', '192.168.100.1', 'Lan_Bridge', 'Ethernet', '2022-10-08 23:42:56', '2022-10-08 23:42:56', '2022-10-08 23:42:56', NULL, 1, 'RADIUS', '', '', 100, 82, 'pppoe_service', '08:00:27:7E:92:5A', 'NAS-Error', 'Framed-User', 'PPP', '0.0.0.0', '', '', '', '', NULL),
(299, '81f00002', '36cf005bbf2bcc0cd2c9ee5ee3acfc1e', '20mbps_User', '', '192.168.100.1', 'Lan_Bridge', 'Ethernet', '2022-10-08 23:43:07', '2022-10-08 23:43:07', '2022-10-09 10:02:06', NULL, 37139, 'RADIUS', '', '', 0, 0, 'pppoe_service', '08:00:27:7E:92:5A', 'NAS-Reboot', 'Framed-User', 'PPP', '172.16.100.2', '', '', '', '', NULL);

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

--
-- Table structure for table `radcheck`
--

CREATE TABLE `radcheck` (
  `id` int(11) UNSIGNED NOT NULL,
  `username` varchar(64) NOT NULL DEFAULT '',
  `attribute` varchar(64) NOT NULL DEFAULT '',
  `op` char(2) DEFAULT ':=',
  `value` varchar(253) NOT NULL DEFAULT '',
  `remarks` varchar(5000) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

--
-- Dumping data for table `radcheck`
--

INSERT INTO `radcheck` (`id`, `username`, `attribute`, `op`, `value`, `remarks`) VALUES
(5, 'murad', 'Cleartext-Password', ':=', 'password', 'PPPoE User1'),
(6, 'esrat', 'Cleartext-Password', ':=', 'password', 'na'),
(7, 'mehtab', 'Cleartext-Password', ':=', 'password', '0'),
(9, 'esrat', 'User-Profile', ':=', '1M_Profile', '0'),
(10, 'mehtab', 'User-Profile', ':=', '2M_Profile', '0'),
(15, 'monir', 'Max-All-Session', ':=', '1800', 'Hotspot Time Limit'),
(17, 'anika', 'Cleartext-Password', ':=', 'password', 'Hotspot'),
(18, 'anika', 'Expire-After', ':=', '300', 'Hotspot'),
(19, 'anisa', 'Cleartext-Password', ':=', 'password', 'Hotspot'),
(20, 'anisa', 'Max-All-Session', ':=', '1600', 'Time Limit '),
(21, 'nahar', 'Cleartext-Password', ':=', 'password', 'Hotspot'),
(22, 'nahar', 'Mikrotik-Total-Limit', ':=', '100', 'Hotspot User Quota'),
(23, 'tuhin', 'Mikrotik-Total-Limit', ':=', '1000000', 'Total Bandwidth Limit Reached'),
(24, 'tuhin', 'Cleartext-Password', ':=', 'password', 'Hotspot'),
(25, 'marium', 'Mikrotik-Total-Limit', ':=', '1000000', 'Total Limit Reached'),
(26, 'marium', 'Cleartext-Password', ':=', 'password', 'Hotspot'),
(27, 'aziz', 'Cleartext-Password', ':=', 'password', NULL),
(28, 'aziz', 'User-Profile', ':=', '2M_Profile', '0'),
(29, 'aziz', 'Simultaneous-Use', ':=', '1', '0'),
(30, 'sumon', 'User-Profile', ':=', '256k_Profile', NULL),
(31, 'sumon', 'Cleartext-Password', ':=', 'password', NULL),
(32, 'aziz', 'Daily-Bandwidth', ':=', '100000000', 'Total Bandwidth Limit Reached'),
(33, 'anas', 'Cleartext-Password', ':=', 'password', NULL),
(34, 'anas', 'User-Profile', ':=', '2M_Profile', '0'),
(35, 'anas', 'Simultaneous-Use', ':=', '1', '0'),
(36, 'anas', 'Daily-Bandwidth', ':=', '20000000', 'Total Bandwidth Limit Reached'),
(37, 'zaib', 'Cleartext-Password', ':=', 'zaib', NULL),
(38, 'zaib', 'Expiration', ':=', '13 Jan 2019 11:00', NULL),
(39, 'zaib', 'Simultaneous-Use', ':=', '1', NULL),
(40, 'zaib', 'User-Profile', ':=', '2M_Profile', NULL),
(41, 'nayeem', 'User-Profile', ':=', '700k_Profile', NULL),
(42, 'nayeem', 'Cleartext-Password', ':=', 'password', NULL),
(43, 'muttaki', 'User-Profile', ':=', '2M_Profile', NULL),
(44, 'muttaki', 'Cleartext-Password', ':=', 'password', NULL),
(46, '3M_User', 'Cleartext-Password', ':=', 'password', NULL),
(47, '3M_User', 'User-Profile', ':=', '3M_Profile', NULL),
(48, '3M_User', 'Expiration', ':=', '07 Nov 2022 10:05', NULL),
(49, 'mamun', 'Cleartext-Password', ':=', 'password', 'Hotspot User'),
(50, '4M_Hotspot_User', 'User-Profile', ':=', '4M_Profile', 'Hotspot User'),
(51, '4M_Hotspot_User', 'Cleartext-Password', ':=', 'password', 'Hotspot User'),
(52, '4M_Hotspot_User', 'Expiration', ':=', '07 Oct 2023 12:40', 'Hotspot User'),
(53, '4M_Hotspot_User', 'Simultaneous-Use', ':=', '1', 'Hotspot User'),
(54, '128k_User', 'User-Profile', ':=', '128k_Profile', NULL),
(55, '128k_User', 'Cleartext-Password', ':=', 'password', '0'),
(56, '256k_User', 'User-Profile', ':=', '256k_Profile', NULL),
(57, '256k_User', 'Cleartext-Password', ':=', 'password', '0'),
(58, '512k_User', 'User-Profile', ':=', '512k_Profile', NULL),
(59, '512k_User', 'Cleartext-Password', ':=', 'password', '0'),
(60, '1M_User', 'Cleartext-Password', ':=', 'password', NULL),
(61, '1M_User', 'User-Profile', ':=', '1M_Profile', NULL),
(62, '2M_User', 'Cleartext-Password', ':=', 'password', NULL),
(63, '2M_User', 'User-Profile', ':=', '2M_Profile', NULL),
(65, '5_Minutes_User', 'Cleartext-Password', ':=', 'password', '5 minutes max all sessio nuser'),
(66, '5_Minutes_User', 'Max-All-Session', ':=', '2000', '5 minutes max all sessio nuser'),
(67, '5_Minutes_User', 'User-Profile', ':=', '2M_Profile', NULL),
(68, '10_MB_Quota', 'Mikrotik-Total-Limit', ':=', '100000000', NULL),
(69, '10_MB_Quota', 'Cleartext-Password', ':=', 'password', NULL),
(70, '10_MB_Quota', 'User-Profile', ':=', '4M_Profile', '10 MB Quota'),
(71, '500_MB_30_Days', 'Cleartext-Password', ':=', 'password', ''),
(72, '500_MB_30_Days', 'User-Profile', ':=', 'password', ''),
(73, '500_MB_30_Days', 'Mikrotik-Total-Limit', ':=', '500000000', '500 Mega Byte 30 Days'),
(74, '500_MB_30_Days', 'Expiration', ':=', '08 Oct 2022 :23', NULL),
(75, '100_MB_30_Days', 'Cleartext-Password', ':=', 'password', ''),
(76, '100_MB_30_Days', 'User-Profile', ':=', 'password', ''),
(77, '100_MB_30_Days', 'Mikrotik-Total-Limit', ':=', '200000000', '100 Mega Byte 30 Days'),
(78, '100_MB_30_Days', 'Expiration', ':=', '07 November 2022 12:00', NULL),
(79, 'hotspot_user1', 'Cleartext-Password', ':=', 'password', ''),
(80, '20mbps_User', 'Cleartext-Password', ':=', 'password', NULL),
(81, '20mbps_User', 'User-Profile', ':=', '20mbps_Profile', NULL),
(87, 'emran', 'Cleartext-Password', ':=', '123456', NULL),
(88, 'emran', 'User-Profile', ':=', '20mbps_Profile', NULL),
(89, 'emran', 'Expiration', ':=', '20 Oct 2022 11:40', NULL),
(90, 'emran', 'Simultaneous-Use', ':=', '1', NULL),
(91, 'adf', 'Cleartext-Password', ':=', 'adsf', NULL);

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

--
-- Table structure for table `radgroupcheck`
--

CREATE TABLE `radgroupcheck` (
  `id` int(11) UNSIGNED NOT NULL,
  `groupname` varchar(64) NOT NULL DEFAULT '',
  `attribute` varchar(64) NOT NULL DEFAULT '',
  `op` char(2) NOT NULL DEFAULT '==',
  `value` varchar(253) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

--
-- Dumping data for table `radgroupcheck`
--

INSERT INTO `radgroupcheck` (`id`, `groupname`, `attribute`, `op`, `value`) VALUES
(1, '512k', 'Framed-Protocol', '==', 'PPP'),
(2, '1M', 'Framed-Protocol', '==', 'PPP'),
(3, '2M', 'Framed-Protocol', '==', 'PPP'),
(4, '256k', 'Framed-Protocol', '==', 'PPP'),
(5, '700k', 'Framed-Protocol', '==', 'PPP'),
(7, '3M', 'Framed-Protocol', '==', 'PPP'),
(8, '4M', 'Framed-Protocol', '==', 'PPP'),
(9, '128k', 'Framed-Protocol', '==', 'PPP'),
(10, '64k', 'Framed-Protocol', '==', 'PPP'),
(11, '20mbps', 'Framed-Protocol', '==', 'PPP');

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

--
-- Table structure for table `radgroupreply`
--

CREATE TABLE `radgroupreply` (
  `id` int(11) UNSIGNED NOT NULL,
  `groupname` varchar(64) NOT NULL DEFAULT '',
  `attribute` varchar(64) NOT NULL DEFAULT '',
  `op` char(2) NOT NULL DEFAULT '=',
  `value` varchar(253) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

--
-- Dumping data for table `radgroupreply`
--

INSERT INTO `radgroupreply` (`id`, `groupname`, `attribute`, `op`, `value`) VALUES
(2, '512k', 'Framed-Pool', '=', '512k_pool'),
(3, '1M', 'Framed-Pool', '=', '1M_pool'),
(4, '2M', 'Framed-Pool', '=', '2M_pool'),
(5, '512k', 'Mikrotik-Rate-Limit', '=', '512k/512k 600k/600k 400k/400k 40/40'),
(6, '1M', 'Mikrotik-Rate-Limit', '=', '1024k/1024k 1200k/1200k 800k/800k 40/40'),
(8, 'fullaccess', 'Mikrotik-Group', ':=', 'full'),
(9, 'write', 'Mikrotik-Group', ':=', 'write'),
(10, 'read', 'Mikrotik-Group', ':=', 'read'),
(11, '5Mb', 'Mikrotik-Rate-Limit', '=', '5000k/5000k'),
(12, '5Mb', 'Mikrotik-Address-List', ':=', '5Mb'),
(16, '256k', 'Framed-Pool', '=', '256k_pool'),
(18, '256k', 'Mikrotik-Rate-Limit', '=', '256k/256k 300k/300k 200k/200k 40/40'),
(19, '700k', 'Framed-Pool', '=', '700k_pool'),
(20, '700k', 'Mikrotik-Rate-Limit', '=', '700k/700k 800k/800k 600k/600k 40/40'),
(21, '2M', 'Framed-Pool', '=', '2M_pool'),
(22, '2M', 'Mikrotik-Rate-Limit', '=', '2000k/2000k 2500k/2500k 1500k/1500k 40/40'),
(23, '3M', 'Framed-Pool', '=', '3M_pool'),
(24, '3M', 'Mikrotik-Rate-Limit', '=', '3000k/3000k 3500k/3500k 2500k/2500k 40/40'),
(25, '4M', 'Framed-Pool', '=', 'hs-pool'),
(26, '4M', 'Mikrotik-Rate-Limit', '=', '4000k/4000k 4500k/4500k 3500k/3500k 40/40'),
(27, '128k', 'Framed-Pool', '=', '128k_pool'),
(28, '128k', 'Mikrotik-Rate-Limit', '=', '128k/128k 200k/200k 90k/90k 40/40'),
(29, '100_MB_30_Days', ' Daily-Bandwidth', ':=', '100'),
(30, '20mbps', 'Mikrotik-Rate-Limit', '=', '20000k/20000k 25000k/25000k 1800k/1800k 40/40');

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

--
-- Table structure for table `radpostauth`
--

CREATE TABLE `radpostauth` (
  `id` int(11) NOT NULL,
  `username` varchar(64) NOT NULL DEFAULT '',
  `pass` varchar(64) NOT NULL DEFAULT '',
  `reply` varchar(32) NOT NULL DEFAULT '',
  `authdate` timestamp(6) NOT NULL DEFAULT current_timestamp(6) ON UPDATE current_timestamp(6),
  `class` varchar(64) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

--
-- Dumping data for table `radpostauth`
--

INSERT INTO `radpostauth` (`id`, `username`, `pass`, `reply`, `authdate`, `class`) VALUES
(1, 'bob', 'hello', 'Access-Accept', '2022-10-05 06:30:40.921665', NULL),
(2, 'murad', '123456', 'Access-Reject', '2022-10-05 06:32:58.325054', NULL),
(3, 'murad', '123456', 'Access-Reject', '2022-10-05 06:35:17.814231', NULL),
(4, 'murad', '123456', 'Access-Reject', '2022-10-05 06:41:08.504423', NULL),
(5, 'murad', '123456', 'Access-Reject', '2022-10-05 06:41:46.560437', NULL),
(6, 'murad', '123456', 'Access-Reject', '2022-10-05 06:43:04.880908', NULL),
(7, 'murad', '123456', 'Access-Reject', '2022-10-05 06:43:29.585614', NULL),
(8, 'bob', 'hello', 'Access-Accept', '2022-10-05 06:44:22.458931', NULL),
(9, 'murad', '123456', 'Access-Reject', '2022-10-05 06:44:36.497895', NULL),
(10, 'murad', '123456', 'Access-Reject', '2022-10-05 06:47:08.863860', NULL),
(11, 'murad', '123456', 'Access-Reject', '2022-10-05 06:48:35.418980', NULL),
(12, 'murad', '123456', 'Access-Reject', '2022-10-05 06:51:43.250875', NULL),
(13, 'bob', 'hello', 'Access-Accept', '2022-10-05 06:51:55.802895', NULL),
(14, 'murad', '123456', 'Access-Reject', '2022-10-05 06:52:22.087688', NULL),
(15, 'murad', '123456', 'Access-Reject', '2022-10-05 06:57:32.261915', NULL),
(16, 'bob', 'password', 'Access-Reject', '2022-10-05 06:58:07.375151', NULL),
(17, 'bob', 'hello', 'Access-Accept', '2022-10-05 06:58:18.093042', NULL),
(18, 'murad', 'password', 'Access-Accept', '2022-10-05 06:58:28.259863', NULL),
(19, 'murad', 'password', 'Access-Accept', '2022-10-05 07:00:31.738958', NULL),
(20, 'bob', 'hello', 'Access-Accept', '2022-10-05 07:09:15.820004', NULL),
(21, 'bob', 'hello', 'Access-Accept', '2022-10-05 07:16:35.244002', NULL),
(22, 'murad', 'password', 'Access-Accept', '2022-10-05 07:22:22.199954', NULL),
(23, 'murad', '', 'Access-Accept', '2022-10-05 07:34:10.891224', NULL),
(24, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.211203', NULL),
(25, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.235873', NULL),
(26, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.260833', NULL),
(27, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.262109', NULL),
(28, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.263655', NULL),
(29, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.273784', NULL),
(30, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.290085', NULL),
(31, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.294592', NULL),
(32, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.301588', NULL),
(33, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.301449', NULL),
(34, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.309936', NULL),
(35, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.320013', NULL),
(36, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.321163', NULL),
(37, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.322252', NULL),
(38, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.330189', NULL),
(39, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.331635', NULL),
(40, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.357436', NULL),
(41, 'murad', '', 'Access-Accept', '2022-10-05 07:34:11.384454', NULL),
(42, 'murad', '', 'Access-Accept', '2022-10-05 07:35:04.602721', NULL),
(43, 'murad', '', 'Access-Accept', '2022-10-05 07:35:04.926158', NULL),
(44, 'murad', '', 'Access-Accept', '2022-10-05 07:35:04.979993', NULL),
(45, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.015271', NULL),
(46, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.015451', NULL),
(47, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.015679', NULL),
(48, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.015105', NULL),
(49, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.062600', NULL),
(50, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.063927', NULL),
(51, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.079238', NULL),
(52, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.080806', NULL),
(53, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.072581', NULL),
(54, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.111703', NULL),
(55, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.113430', NULL),
(56, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.124205', NULL),
(57, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.123915', NULL),
(58, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.135612', NULL),
(59, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.178974', NULL),
(60, 'murad', '', 'Access-Accept', '2022-10-05 07:35:05.224072', NULL),
(61, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.585615', NULL),
(62, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.786626', NULL),
(63, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.812024', NULL),
(64, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.833307', NULL),
(65, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.834461', NULL),
(66, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.836300', NULL),
(67, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.847185', NULL),
(68, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.938885', NULL),
(69, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.941127', NULL),
(70, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.948343', NULL),
(71, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.949826', NULL),
(72, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.957074', NULL),
(73, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.972345', NULL),
(74, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.977382', NULL),
(75, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.982752', NULL),
(76, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.982287', NULL),
(77, 'murad', '', 'Access-Accept', '2022-10-05 07:36:35.991065', NULL),
(78, 'murad', '', 'Access-Accept', '2022-10-05 07:36:36.015104', NULL),
(79, 'murad', '', 'Access-Accept', '2022-10-05 07:36:36.041163', NULL),
(80, 'murad', 'password', 'Access-Accept', '2022-10-05 07:42:50.254184', NULL),
(81, 'murad', 'password', 'Access-Accept', '2022-10-05 07:44:23.216304', NULL),
(82, 'murad', '', 'Access-Accept', '2022-10-05 08:28:32.894911', NULL),
(83, 'murad', '0x01b07eecfac23452b7926a9b7a2a989753', 'Access-Reject', '2022-10-05 09:22:46.724391', NULL),
(84, 'murad', '', 'Access-Reject', '2022-10-05 09:23:17.027876', NULL),
(85, 'murad', '', 'Access-Reject', '2022-10-05 09:23:55.237413', NULL),
(86, 'murad', '', 'Access-Reject', '2022-10-05 09:32:22.764425', NULL),
(87, 'murad', '', 'Access-Reject', '2022-10-05 09:38:02.231948', NULL),
(88, 'murad', '', 'Access-Reject', '2022-10-05 09:38:05.598465', NULL),
(89, 'bob', '', 'Access-Accept', '2022-10-05 09:39:26.187630', NULL),
(90, 'murad', '', 'Access-Reject', '2022-10-05 09:39:32.117192', NULL),
(91, 'bob', '', 'Access-Accept', '2022-10-05 09:39:40.415666', NULL),
(92, 'bob', '', 'Access-Accept', '2022-10-05 09:39:49.386175', NULL),
(93, 'bob', '', 'Access-Accept', '2022-10-05 09:40:31.499096', NULL),
(94, 'murad', '', 'Access-Accept', '2022-10-05 09:41:08.410486', NULL),
(95, 'murad', 'password', 'Access-Reject', '2022-10-05 09:56:54.574025', NULL),
(96, 'murad', 'password', 'Access-Reject', '2022-10-05 09:57:06.269736', NULL),
(97, 'bob', 'hello', 'Access-Accept', '2022-10-05 09:57:43.050748', NULL),
(98, 'murad', '', 'Access-Reject', '2022-10-05 09:57:57.874513', NULL),
(99, 'bob', '', 'Access-Accept', '2022-10-05 09:59:19.172266', NULL),
(100, 'bob', '', 'Access-Accept', '2022-10-05 09:59:24.364659', NULL),
(101, 'murad', '', 'Access-Reject', '2022-10-05 09:59:24.369575', NULL),
(102, 'bob', '', 'Access-Accept', '2022-10-05 09:59:24.642391', NULL),
(103, 'bob', 'hello', 'Access-Accept', '2022-10-05 10:06:22.261248', NULL),
(104, 'murad', 'password', 'Access-Accept', '2022-10-05 10:06:28.459781', NULL),
(105, 'mehtab', 'password', 'Access-Accept', '2022-10-05 10:06:41.177233', NULL),
(106, 'esrat', 'password', 'Access-Accept', '2022-10-05 10:06:47.621315', NULL),
(107, 'murad', '', 'Access-Reject', '2022-10-05 10:07:10.577628', NULL),
(108, 'murad', '', 'Access-Accept', '2022-10-05 10:07:25.337256', NULL),
(109, 'murad', '', 'Access-Accept', '2022-10-05 10:07:25.502114', NULL),
(110, 'murad', '', 'Access-Accept', '2022-10-05 10:07:45.247875', NULL),
(111, 'murad', '', 'Access-Accept', '2022-10-05 10:07:45.430057', NULL),
(112, 'murad', '', 'Access-Reject', '2022-10-05 10:08:11.699089', NULL),
(113, 'murad', '', 'Access-Reject', '2022-10-05 10:09:05.696165', NULL),
(114, 'mehtab', '', 'Access-Reject', '2022-10-05 10:09:14.460153', NULL),
(115, 'esrat', '', 'Access-Accept', '2022-10-05 10:09:37.608234', NULL),
(116, 'mehtab', '', 'Access-Accept', '2022-10-05 10:10:00.125473', NULL),
(117, 'mehtab', '', 'Access-Accept', '2022-10-05 10:13:32.566397', NULL),
(118, 'mehtab', '', 'Access-Accept', '2022-10-05 10:13:32.734915', NULL),
(119, 'murad', '', 'Access-Accept', '2022-10-05 10:17:27.155266', NULL),
(120, 'murad', '', 'Access-Accept', '2022-10-05 10:17:27.332859', NULL),
(121, 'mehtab', 'password', 'Access-Accept', '2022-10-05 10:20:53.539683', NULL),
(122, 'murad', '', 'Access-Accept', '2022-10-05 10:22:33.713677', NULL),
(123, 'murad', '', 'Access-Accept', '2022-10-05 10:22:33.873734', NULL),
(124, 'mehtab', '', 'Access-Accept', '2022-10-05 10:30:04.726181', NULL),
(125, 'murad', '', 'Access-Accept', '2022-10-05 10:30:44.841600', NULL),
(126, 'esrat', '', 'Access-Accept', '2022-10-05 10:32:39.963838', NULL),
(127, 'esrat', '', 'Access-Accept', '2022-10-05 10:33:25.677924', NULL),
(128, 'mehtab', '', 'Access-Accept', '2022-10-05 10:33:43.342790', NULL),
(129, 'murad', '', 'Access-Reject', '2022-10-05 10:46:03.770848', NULL),
(130, 'murad', '', 'Access-Accept', '2022-10-05 10:47:04.881906', NULL),
(131, 'murad', '0xd7b17387d1571111f97e3eac8a5e1ad646', 'Access-Reject', '2022-10-05 11:13:10.142571', NULL),
(132, 'murad', '0xa584b6a151b0ae8fc92307307c3b13df3d', 'Access-Accept', '2022-10-05 11:13:22.236473', NULL),
(133, 'esrat', '0xb46577a86e5524fb5ba7de6d982810a65c', 'Access-Accept', '2022-10-05 11:13:35.179972', NULL),
(134, 'mamun', '0x99ec88658bf619dc41d6f9c4c79fbd2325', 'Access-Accept', '2022-10-05 11:15:29.999264', NULL),
(135, 'mamun', '0x99ec88658bf619dc41d6f9c4c79fbd2325', 'Access-Accept', '2022-10-05 11:16:49.435251', NULL),
(136, 'mamun', '0x99ec88658bf619dc41d6f9c4c79fbd2325', 'Access-Accept', '2022-10-05 11:17:49.847655', NULL),
(137, 'mamun', '0x99ec88658bf619dc41d6f9c4c79fbd2325', 'Access-Accept', '2022-10-05 11:19:22.180756', NULL),
(138, 'mamun', '0x99ec88658bf619dc41d6f9c4c79fbd2325', 'Access-Accept', '2022-10-05 17:21:14.704101', NULL),
(139, 'mamun', '0x99ec88658bf619dc41d6f9c4c79fbd2325', 'Access-Reject', '2022-10-05 17:22:46.371858', NULL),
(140, 'mamun', '0x8ceb2e69cd86bf449b4abca0fc9ba0ac68', 'Access-Accept', '2022-10-05 17:23:20.804800', NULL),
(141, 'mamun', '0x8ceb2e69cd86bf449b4abca0fc9ba0ac68', 'Access-Accept', '2022-10-05 17:26:31.811329', NULL),
(142, 'mamun', '0x8ceb2e69cd86bf449b4abca0fc9ba0ac68', 'Access-Reject', '2022-10-05 17:28:01.894786', NULL),
(143, 'mamun', '0xd12ac328920eb9cc2cd1a20d8c374fa2b1', 'Access-Reject', '2022-10-05 17:37:46.421808', NULL),
(144, 'mamun', '0x9799e70e613263161e8d10cde126e354f4', 'Access-Accept', '2022-10-05 17:37:53.231369', NULL),
(145, 'esrat', '', 'Access-Accept', '2022-10-05 18:08:56.446311', NULL),
(146, 'esrat', '', 'Access-Accept', '2022-10-05 18:09:23.698190', NULL),
(147, 'esrat', '', 'Access-Accept', '2022-10-05 18:10:09.990333', NULL),
(148, 'esrat', '', 'Access-Accept', '2022-10-05 18:11:57.061244', NULL),
(149, 'esrat', '', 'Access-Accept', '2022-10-05 18:15:03.169082', NULL),
(150, 'mamun', '0x9799e70e613263161e8d10cde126e354f4', 'Access-Accept', '2022-10-05 19:19:27.168053', NULL),
(151, 'monir', '0x715b388a4310f289281205a90dfd30083e', 'Access-Accept', '2022-10-05 19:19:47.801890', NULL),
(152, 'monir', '0x715b388a4310f289281205a90dfd30083e', 'Access-Reject', '2022-10-05 19:24:49.290666', NULL),
(153, 'monir', '0xa7d183a7b070ab2734e54429393a70ca34', 'Access-Accept', '2022-10-05 19:25:29.820596', NULL),
(154, 'monir', '0xa7d183a7b070ab2734e54429393a70ca34', 'Access-Accept', '2022-10-05 19:30:10.912010', NULL),
(155, 'monir', '0xa7d183a7b070ab2734e54429393a70ca34', 'Access-Accept', '2022-10-05 19:33:41.225681', NULL),
(156, 'mamun', '0x9799e70e613263161e8d10cde126e354f4', 'Access-Accept', '2022-10-05 19:39:34.945253', NULL),
(157, 'anika', '0x8353df9c7c4e310142b2db37cc8c684dc8', 'Access-Accept', '2022-10-05 19:41:19.923688', NULL),
(158, 'anika', '0x8353df9c7c4e310142b2db37cc8c684dc8', 'Access-Accept', '2022-10-05 19:43:39.137065', NULL),
(159, 'anika', '0x8353df9c7c4e310142b2db37cc8c684dc8', 'Access-Accept', '2022-10-05 19:53:19.428274', NULL),
(160, 'anika', '0x8353df9c7c4e310142b2db37cc8c684dc8', 'Access-Accept', '2022-10-05 20:02:26.084247', NULL),
(161, 'anisa', '0x83ac7d0bcc6d26518b7bb885380a81c4fd', 'Access-Accept', '2022-10-05 20:04:00.845845', NULL),
(162, 'anisa', '0x83ac7d0bcc6d26518b7bb885380a81c4fd', 'Access-Accept', '2022-10-05 20:05:44.468903', NULL),
(163, 'anisa', '0x83ac7d0bcc6d26518b7bb885380a81c4fd', 'Access-Accept', '2022-10-05 20:07:55.789327', NULL),
(164, 'anisa', '0x83ac7d0bcc6d26518b7bb885380a81c4fd', 'Access-Reject', '2022-10-05 20:08:32.704702', NULL),
(165, 'anisa', '0xed20d438f2ca2d6905cb68e797c3f7b936', 'Access-Reject', '2022-10-05 20:09:07.059891', NULL),
(166, 'anisa', '0x62d84e526d3726a32cc41ed02ac2b6069f', 'Access-Accept', '2022-10-05 20:09:51.877250', NULL),
(167, 'anika', '0x8353df9c7c4e310142b2db37cc8c684dc8', 'Access-Accept', '2022-10-05 20:13:19.469162', NULL),
(168, 'anisa', '0x62d84e526d3726a32cc41ed02ac2b6069f', 'Access-Accept', '2022-10-05 20:13:28.619531', NULL),
(169, 'nahar', '0x11ae08234e8b1a20f028490230e9cb55ef', 'Access-Accept', '2022-10-05 20:13:46.450955', NULL),
(170, 'nahar', '0x11ae08234e8b1a20f028490230e9cb55ef', 'Access-Accept', '2022-10-05 20:19:18.681986', NULL),
(171, 'anisa', '0xe3dafeabc13983843599809d41f383628e', 'Access-Accept', '2022-10-05 20:42:36.021646', NULL),
(172, 'anisa', '0xe3dafeabc13983843599809d41f383628e', 'Access-Reject', '2022-10-05 20:43:28.779883', NULL),
(173, 'anisa', '0xd3ed17d68ad34ad7da7c19e8f55d2b4572', 'Access-Accept', '2022-10-05 20:43:53.308844', NULL),
(174, 'mehtab', 'password', 'Access-Accept', '2022-10-05 20:45:44.480011', NULL),
(175, 'nahar', 'password', 'Access-Accept', '2022-10-05 20:45:52.996223', NULL),
(176, 'anisa', 'password', 'Access-Accept', '2022-10-05 20:46:03.975948', NULL),
(177, 'monir', 'password', 'Access-Accept', '2022-10-05 20:47:01.335118', NULL),
(178, 'mamun', 'password', 'Access-Accept', '2022-10-05 20:47:15.575213', NULL),
(179, 'monir', 'password', 'Access-Accept', '2022-10-05 20:47:24.450697', NULL),
(180, 'bob', 'password', 'Access-Reject', '2022-10-05 20:47:32.775255', NULL),
(181, 'bob', 'hello', 'Access-Accept', '2022-10-05 20:47:41.261492', NULL),
(182, 'mamun', 'password', 'Access-Accept', '2022-10-05 20:48:53.075432', NULL),
(183, 'anika', 'password', 'Access-Accept', '2022-10-05 20:49:11.134401', NULL),
(184, 'mamun', '0x9799e70e613263161e8d10cde126e354f4', 'Access-Accept', '2022-10-05 20:52:05.873690', NULL),
(185, 'nahar', '0x3d6022b999f467bb94a5a5c41d856ac9ae', 'Access-Accept', '2022-10-05 20:53:00.751196', NULL),
(186, 'anisa', '0x8a992f128bf37a5c8b4c3a3bb005b97955', 'Access-Accept', '2022-10-05 20:59:07.781209', NULL),
(187, 'anisa', '0x8a992f128bf37a5c8b4c3a3bb005b97955', 'Access-Accept', '2022-10-05 21:00:10.161313', NULL),
(188, 'anisa', '0x8a992f128bf37a5c8b4c3a3bb005b97955', 'Access-Accept', '2022-10-05 21:03:16.735953', NULL),
(189, 'nahar', '0x11ae08234e8b1a20f028490230e9cb55ef', 'Access-Accept', '2022-10-05 21:05:49.991814', NULL),
(190, 'anisa', '0x8a992f128bf37a5c8b4c3a3bb005b97955', 'Access-Accept', '2022-10-05 21:22:19.224429', NULL),
(191, 'anika', 'password', 'Access-Accept', '2022-10-05 21:23:38.845922', NULL),
(192, 'anisa', 'password', 'Access-Accept', '2022-10-05 21:23:44.834091', NULL),
(193, 'anisa', 'password', 'Access-Accept', '2022-10-05 21:23:58.040508', NULL),
(194, 'mamun', '0x9799e70e613263161e8d10cde126e354f4', 'Access-Accept', '2022-10-05 21:36:38.975640', NULL),
(195, 'anisa', '0x376e3d332cadcbdd7aeff6bc7fdc794774', 'Access-Accept', '2022-10-05 21:37:06.314277', NULL),
(196, 'anisa', 'password', 'Access-Accept', '2022-10-05 21:37:39.516137', NULL),
(197, 'anisa', 'password', 'Access-Accept', '2022-10-05 21:37:45.111752', NULL),
(198, 'anisa', 'password', 'Access-Accept', '2022-10-05 21:37:52.033808', NULL),
(199, 'anisa', '0x376e3d332cadcbdd7aeff6bc7fdc794774', 'Access-Accept', '2022-10-05 21:39:13.934841', NULL),
(200, 'anisa', 'password', 'Access-Reject', '2022-10-05 21:41:22.128566', NULL),
(201, 'anisa', '0x376e3d332cadcbdd7aeff6bc7fdc794774', 'Access-Reject', '2022-10-05 21:41:54.163730', NULL),
(202, 'anisa', 'password', 'Access-Reject', '2022-10-05 21:42:29.298901', NULL),
(203, 'anisa', '0x0a315a0f324edb3b0e76ebfef020c21665', 'Access-Reject', '2022-10-05 21:43:01.172874', NULL),
(204, 'anisa', '0x5b1718dad7ddb06134648c6eca95d8b200', 'Access-Accept', '2022-10-05 21:43:17.643265', NULL),
(205, 'anisa', '0x5b1718dad7ddb06134648c6eca95d8b200', 'Access-Accept', '2022-10-05 21:44:39.179187', NULL),
(206, 'anisa', '0x5b1718dad7ddb06134648c6eca95d8b200', 'Access-Accept', '2022-10-05 21:44:50.678636', NULL),
(207, 'anisa', '0x5b1718dad7ddb06134648c6eca95d8b200', 'Access-Accept', '2022-10-05 21:44:55.445823', NULL),
(208, 'anisa', '0x5b1718dad7ddb06134648c6eca95d8b200', 'Access-Reject', '2022-10-05 21:45:08.860452', NULL),
(209, 'tuhin', '0xca0313aaac611d2943f3384462c756ac81', 'Access-Accept', '2022-10-05 21:45:16.623563', NULL),
(210, 'anisa', 'password', 'Access-Reject', '2022-10-05 21:45:23.022398', NULL),
(211, 'tuhin', 'password', 'Access-Accept', '2022-10-05 21:45:30.921720', NULL),
(212, 'tuhin', 'password', 'Access-Accept', '2022-10-05 21:47:36.007209', NULL),
(213, 'anisa', 'password', 'Access-Reject', '2022-10-05 21:49:44.930150', NULL),
(214, 'tuhin', 'password', 'Access-Accept', '2022-10-05 21:49:48.325477', NULL),
(215, 'tuhin', 'password', 'Access-Accept', '2022-10-05 21:49:51.185259', NULL),
(216, 'tuhin', '0xca0313aaac611d2943f3384462c756ac81', 'Access-Reject', '2022-10-05 21:50:40.624607', NULL),
(217, 'tuhin', 'password', 'Access-Reject', '2022-10-05 21:51:25.137065', NULL),
(218, 'anisa', 'password', 'Access-Reject', '2022-10-05 21:52:11.760742', NULL),
(219, 'tuhin', 'password', 'Access-Reject', '2022-10-05 21:53:50.548981', NULL),
(220, 'tuhin', 'password', 'Access-Reject', '2022-10-05 21:57:59.176920', NULL),
(221, 'tuhin', 'password', 'Access-Reject', '2022-10-05 21:58:13.433573', NULL),
(222, 'anisa', 'password', 'Access-Reject', '2022-10-05 21:58:28.564172', NULL),
(223, 'marium', '0x15d5daf4c92628b8986626cd27c6dd1279', 'Access-Accept', '2022-10-05 21:59:36.555297', NULL),
(224, 'marium', '0x15d5daf4c92628b8986626cd27c6dd1279', 'Access-Reject', '2022-10-05 22:00:54.168949', NULL),
(225, 'anisa', 'password', 'Access-Reject', '2022-10-05 22:01:12.406970', NULL),
(226, 'tuhin', 'password', 'Access-Reject', '2022-10-05 22:01:15.837229', NULL),
(227, 'marium', 'password', 'Access-Reject', '2022-10-05 22:01:24.436895', NULL),
(228, 'murad', '', 'Access-Accept', '2022-10-05 16:06:53.105882', NULL),
(229, 'murad', '', 'Access-Accept', '2022-10-05 16:06:53.354702', NULL),
(230, 'marium', 'password', 'Access-Reject', '2022-10-05 16:07:23.927396', NULL),
(231, 'tuhin', 'password', 'Access-Reject', '2022-10-05 16:07:28.243370', NULL),
(232, 'anisa', 'password', 'Access-Reject', '2022-10-05 16:07:33.740172', NULL),
(233, 'aziz', 'password', 'Access-Accept', '2022-10-05 16:59:51.205371', NULL),
(234, 'aziz', '0x010d67ee01e5b57c318d487b8167fbcb55', 'Access-Reject', '2022-10-05 17:05:52.538871', NULL),
(235, 'aziz', '0xa915122b71d1fee65bbcc4bdfa4cfcf5af', 'Access-Accept', '2022-10-05 17:06:00.473093', NULL),
(236, 'aziz', '', 'Access-Accept', '2022-10-05 17:07:30.709631', NULL),
(237, 'aziz', '', 'Access-Accept', '2022-10-05 17:07:34.332730', NULL),
(238, 'aziz', '', 'Access-Accept', '2022-10-05 17:08:34.455148', NULL),
(239, 'aziz', '', 'Access-Accept', '2022-10-05 17:09:01.285449', NULL),
(240, 'aziz', '', 'Access-Accept', '2022-10-05 17:09:02.415568', NULL),
(241, 'murad', '', 'Access-Reject', '2022-10-05 17:09:30.329978', NULL),
(242, 'mamun', '', 'Access-Accept', '2022-10-05 17:09:41.028174', NULL),
(243, 'murad', '', 'Access-Accept', '2022-10-05 17:09:52.174160', NULL),
(244, 'murad', '', 'Access-Accept', '2022-10-05 17:11:34.281061', NULL),
(245, 'aziz', '', 'Access-Accept', '2022-10-05 17:12:46.253590', NULL),
(246, 'aziz', '', 'Access-Accept', '2022-10-05 17:13:46.390131', NULL),
(247, 'aziz', '', 'Access-Reject', '2022-10-05 17:13:59.866837', NULL),
(248, 'aziz', '', 'Access-Accept', '2022-10-05 17:14:22.380729', NULL),
(249, 'aziz', '0xa915122b71d1fee65bbcc4bdfa4cfcf5af', 'Access-Accept', '2022-10-05 17:17:45.840140', NULL),
(250, 'mamun', '0x9799e70e613263161e8d10cde126e354f4', 'Access-Accept', '2022-10-05 17:19:35.640981', NULL),
(251, 'aziz', '', 'Access-Accept', '2022-10-05 17:19:52.242279', NULL),
(252, 'aziz', 'password', 'Access-Reject', '2022-10-05 17:23:46.957315', NULL),
(253, 'aziz', 'password', 'Access-Reject', '2022-10-05 17:24:04.319377', NULL),
(254, 'aziz', 'password', 'Access-Accept', '2022-10-05 17:24:15.865900', NULL),
(255, 'murad', '', 'Access-Accept', '2022-10-06 04:05:13.043680', NULL),
(256, 'murad', '', 'Access-Accept', '2022-10-06 04:05:13.217512', NULL),
(257, 'esrat', '', 'Access-Accept', '2022-10-06 04:12:15.507492', NULL),
(258, 'mehtab', '', 'Access-Accept', '2022-10-06 04:17:58.672615', NULL),
(259, 'mehtab', '', 'Access-Accept', '2022-10-06 04:19:25.930700', NULL),
(260, 'sumon', '', 'Access-Reject', '2022-10-06 04:55:50.649466', NULL),
(261, 'sumon', '', 'Access-Accept', '2022-10-06 04:56:48.544478', NULL),
(262, 'murad', '', 'Access-Accept', '2022-10-06 05:05:50.473666', NULL),
(263, 'murad', '', 'Access-Accept', '2022-10-06 05:07:07.169811', NULL),
(264, 'tuhin', 'password', 'Access-Reject', '2022-10-06 05:10:37.315557', NULL),
(265, 'sumon', 'password', 'Access-Accept', '2022-10-06 05:10:46.929480', NULL),
(266, 'sumon', 'password', 'Access-Accept', '2022-10-06 05:10:59.402017', NULL),
(267, 'aziz', 'password', 'Access-Accept', '2022-10-06 05:11:26.919752', NULL),
(268, 'aziz', 'password', 'Access-Accept', '2022-10-06 05:12:04.340712', NULL),
(269, 'sumon', 'password', 'Access-Accept', '2022-10-06 05:12:05.902496', NULL),
(270, 'sumon', '', 'Access-Accept', '2022-10-06 05:12:30.942271', NULL),
(271, 'aziz', '', 'Access-Accept', '2022-10-06 05:13:24.420104', NULL),
(272, 'aziz', 'password', 'Access-Reject', '2022-10-06 05:13:51.432839', NULL),
(273, 'sumon', 'password', 'Access-Accept', '2022-10-06 05:13:56.458609', NULL),
(274, 'aziz', 'password', 'Access-Accept', '2022-10-06 05:30:28.035441', NULL),
(275, 'aziz', 'password', 'Access-Accept', '2022-10-06 05:30:30.190699', NULL),
(276, 'aziz', '', 'Access-Accept', '2022-10-06 07:33:52.284636', NULL),
(277, 'sumon', 'password', 'Access-Accept', '2022-10-06 07:36:31.027090', NULL),
(278, 'aziz', 'password', 'Access-Reject', '2022-10-06 07:36:36.427683', NULL),
(279, 'aziz', 'password', 'Access-Reject', '2022-10-06 07:37:19.872485', NULL),
(280, 'aziz', '', 'Access-Reject', '2022-10-06 07:37:33.428746', NULL),
(281, 'aziz', '', 'Access-Reject', '2022-10-06 07:38:35.156807', NULL),
(282, 'aziz', '', 'Access-Reject', '2022-10-06 07:39:36.197358', NULL),
(283, 'aziz', '', 'Access-Reject', '2022-10-06 07:40:37.229699', NULL),
(284, 'aziz', 'password', 'Access-Reject', '2022-10-06 07:40:48.324151', NULL),
(285, 'aziz', '', 'Access-Reject', '2022-10-06 07:41:56.989238', NULL),
(286, 'aziz', '', 'Access-Reject', '2022-10-06 07:42:13.236607', NULL),
(287, 'aziz', '', 'Access-Reject', '2022-10-06 07:42:20.397608', NULL),
(288, 'aziz', '', 'Access-Reject', '2022-10-06 07:42:31.267836', NULL),
(289, 'aziz', 'password', 'Access-Reject', '2022-10-06 07:42:37.202112', NULL),
(290, 'aziz', 'password', 'Access-Reject', '2022-10-06 07:43:08.612038', NULL),
(291, 'aziz', 'password', 'Access-Reject', '2022-10-06 07:43:28.284576', NULL),
(292, 'aziz', 'password', 'Access-Accept', '2022-10-06 07:43:56.546842', NULL),
(293, 'aziz', '', 'Access-Accept', '2022-10-06 07:44:06.278915', NULL),
(294, 'aziz', 'password', 'Access-Reject', '2022-10-06 07:46:08.758514', NULL),
(295, 'aziz', 'password', 'Access-Accept', '2022-10-06 07:46:25.790016', NULL),
(296, 'aziz', '', 'Access-Accept', '2022-10-06 07:46:45.064338', NULL),
(297, 'aziz', '', 'Access-Reject', '2022-10-06 08:25:06.748390', NULL),
(298, 'aziz', 'password', 'Access-Reject', '2022-10-06 08:25:15.088853', NULL),
(299, 'aziz', 'password', 'Access-Reject', '2022-10-06 08:25:29.241075', NULL),
(300, 'aziz', 'password', 'Access-Reject', '2022-10-06 08:25:55.806901', NULL),
(301, 'aziz', 'password', 'Access-Reject', '2022-10-06 08:26:00.332254', NULL),
(302, 'aziz', '', 'Access-Reject', '2022-10-06 08:26:07.788252', NULL),
(303, 'anas', 'password', 'Access-Accept', '2022-10-06 08:27:05.767906', NULL),
(304, 'aziz', '', 'Access-Reject', '2022-10-06 08:27:08.902787', NULL),
(305, 'anas', 'password', 'Access-Accept', '2022-10-06 08:27:25.504095', NULL),
(306, 'anas', 'password', 'Access-Accept', '2022-10-06 08:27:28.204426', NULL),
(307, 'aziz', '', 'Access-Reject', '2022-10-06 08:28:09.947551', NULL),
(308, 'anas', 'password', 'Access-Accept', '2022-10-06 08:28:25.837951', NULL),
(309, 'anas', 'password', 'Access-Accept', '2022-10-06 08:28:29.254478', NULL),
(310, 'anas', '', 'Access-Accept', '2022-10-06 08:28:41.499340', NULL),
(311, 'anas', 'password', 'Access-Reject', '2022-10-06 08:33:00.324453', NULL),
(312, 'anas', '', 'Access-Reject', '2022-10-06 08:33:22.306182', NULL),
(313, 'aziz', '', 'Access-Reject', '2022-10-06 08:34:09.008126', NULL),
(314, 'sumon', '', 'Access-Accept', '2022-10-06 08:35:08.826289', NULL),
(315, 'aziz', '', 'Access-Reject', '2022-10-06 08:35:10.120243', NULL),
(316, 'sumon', 'password', 'Access-Accept', '2022-10-06 08:35:40.012815', NULL),
(317, 'sumon', 'password', 'Access-Accept', '2022-10-06 08:36:06.366236', NULL),
(318, 'aziz', '', 'Access-Reject', '2022-10-06 08:36:14.764867', NULL),
(319, 'aziz', '', 'Access-Reject', '2022-10-06 08:37:22.405362', NULL),
(320, 'sumon', 'password', 'Access-Accept', '2022-10-06 08:38:12.330214', NULL),
(321, 'sumon', 'password', 'Access-Accept', '2022-10-06 08:38:27.546541', NULL),
(322, 'sumon', 'password', 'Access-Accept', '2022-10-06 08:38:33.028330', NULL),
(323, 'zaib', 'password', 'Access-Reject', '2022-10-06 08:41:59.674145', NULL),
(324, 'zaib', 'zaib', 'Access-Accept', '2022-10-06 08:42:19.709593', NULL),
(325, 'zaib', 'zaib', 'Access-Accept', '2022-10-06 08:42:27.191913', NULL),
(326, 'aziz', '', 'Access-Reject', '2022-10-06 08:43:50.487356', NULL),
(327, 'zaib', '', 'Access-Accept', '2022-10-06 08:44:22.995640', NULL),
(328, 'zaib', '', 'Access-Accept', '2022-10-06 08:45:51.513402', NULL),
(329, 'sumon', '', 'Access-Accept', '2022-10-06 16:03:04.691739', NULL),
(330, 'sumon', '', 'Access-Accept', '2022-10-06 16:06:28.728095', NULL),
(331, 'sumon', '', 'Access-Accept', '2022-10-06 16:07:29.289577', NULL),
(332, 'sumon', '', 'Access-Accept', '2022-10-06 16:08:29.326618', NULL),
(333, 'sumon', '', 'Access-Accept', '2022-10-06 16:09:29.371855', NULL),
(334, 'aziz', '', 'Access-Reject', '2022-10-06 16:13:54.963204', NULL),
(335, 'aziz', '', 'Access-Reject', '2022-10-06 16:14:30.740772', NULL),
(336, 'zaib', 'zaib', 'Access-Accept', '2022-10-06 16:14:53.192438', NULL),
(337, 'sumon', 'password', 'Access-Accept', '2022-10-06 16:15:08.030381', NULL),
(338, 'aziz', '', 'Access-Reject', '2022-10-06 16:15:31.772965', NULL),
(339, 'sumon', '', 'Access-Accept', '2022-10-06 16:15:42.615044', NULL),
(340, 'sumon', 'password', 'Access-Accept', '2022-10-06 16:16:05.081599', NULL),
(341, 'sumon', '', 'Access-Accept', '2022-10-06 16:16:42.651354', NULL),
(342, 'sumon', '', 'Access-Accept', '2022-10-06 16:17:39.889783', NULL),
(343, 'sumon', '', 'Access-Accept', '2022-10-06 16:21:38.815792', NULL),
(344, 'sumon', '', 'Access-Accept', '2022-10-06 16:22:09.326699', NULL),
(345, 'sumon', '', 'Access-Accept', '2022-10-06 16:24:46.142803', NULL),
(346, 'sumon', '', 'Access-Accept', '2022-10-06 16:25:54.818142', NULL),
(347, 'sumon', '', 'Access-Accept', '2022-10-06 16:26:44.862403', NULL),
(348, 'sumon', '', 'Access-Accept', '2022-10-06 16:28:47.439177', NULL),
(349, 'sumon', 'password', 'Access-Accept', '2022-10-06 16:30:27.051897', NULL),
(350, 'nayeem', '', 'Access-Accept', '2022-10-06 16:38:18.822930', NULL),
(351, 'nayeem', '', 'Access-Accept', '2022-10-06 16:39:03.623729', NULL),
(352, 'nayeem', '', 'Access-Accept', '2022-10-06 16:39:04.730188', NULL),
(353, 'nayeem', '', 'Access-Accept', '2022-10-06 16:39:05.769833', NULL),
(354, 'nayeem', '', 'Access-Accept', '2022-10-06 16:39:06.436343', NULL),
(355, 'nayeem', '', 'Access-Accept', '2022-10-06 16:39:08.083299', NULL),
(356, 'nayeem', '', 'Access-Accept', '2022-10-06 16:39:35.319589', NULL),
(357, 'muttaki', '', 'Access-Accept', '2022-10-06 16:48:57.952048', NULL),
(358, 'muttaki', '', 'Access-Accept', '2022-10-06 16:49:58.064948', NULL),
(359, 'muttaki', '', 'Access-Accept', '2022-10-06 16:50:58.156026', NULL),
(360, 'muttaki', '', 'Access-Accept', '2022-10-06 16:51:58.248623', NULL),
(361, 'muttaki', '', 'Access-Accept', '2022-10-06 16:52:16.832736', NULL),
(362, 'muttaki', '', 'Access-Accept', '2022-10-06 16:55:40.751011', NULL),
(363, 'muttaki', 'password', 'Access-Accept', '2022-10-06 17:55:47.610563', NULL),
(364, 'muttaki', 'password', 'Access-Accept', '2022-10-06 18:04:33.277987', NULL),
(365, 'mamun', '', 'Access-Accept', '2022-10-06 18:07:28.219965', NULL),
(366, 'murad', '', 'Access-Reject', '2022-10-06 18:08:06.429708', NULL),
(367, 'murad', '', 'Access-Reject', '2022-10-06 18:08:15.108852', NULL),
(368, 'mamun', '', 'Access-Accept', '2022-10-06 18:08:23.519427', NULL),
(369, 'muttaki', '', 'Access-Accept', '2022-10-06 18:09:02.824731', NULL),
(370, 'muttaki', 'password', 'Access-Accept', '2022-10-07 02:53:54.046489', NULL),
(371, 'muttaki', 'password', 'Access-Accept', '2022-10-07 02:55:56.472236', NULL),
(372, 'muttaki', 'password', 'Access-Accept', '2022-10-07 02:56:01.596972', NULL),
(373, 'muttaki', '', 'Access-Reject', '2022-10-07 03:01:30.700173', NULL),
(374, 'muttaki', '', 'Access-Reject', '2022-10-07 03:01:37.422861', NULL),
(375, 'muttaki', '', 'Access-Accept', '2022-10-07 03:02:13.563275', NULL),
(376, 'anas', '0x0083b9a24e13c6657859afb60548ee83e5', 'Access-Reject', '2022-10-07 03:02:24.986566', NULL),
(377, 'anisa', '0xd276bf1724143e58238d5a394b8155845c', 'Access-Reject', '2022-10-07 03:02:47.843126', NULL),
(378, 'aziz', '0x6e39a1da40b11c8aa36cda033cb6394c5f', 'Access-Reject', '2022-10-07 03:03:08.380392', NULL),
(379, 'marium', '0x1c2566f3840549e4827c98a8bf8e451d9c', 'Access-Reject', '2022-10-07 03:03:29.254106', NULL),
(380, 'mehtab', '0x7dc0deb20430951755c01a5dba2e52c6c8', 'Access-Accept', '2022-10-07 03:03:52.421431', NULL),
(381, '3M_User', '', 'Access-Accept', '2022-10-07 03:18:06.419269', NULL),
(382, '3M_User', '', 'Access-Accept', '2022-10-07 03:19:06.533835', NULL),
(383, '3M_User', '', 'Access-Accept', '2022-10-07 03:20:06.647462', NULL),
(384, '3M_User', '', 'Access-Accept', '2022-10-07 03:22:04.644601', NULL),
(385, '3M_User', '', 'Access-Accept', '2022-10-07 03:23:04.772454', NULL),
(386, '3M_User', '', 'Access-Accept', '2022-10-07 03:24:04.890483', NULL),
(387, '3M_User', '', 'Access-Accept', '2022-10-07 03:25:05.006693', NULL),
(388, '3M_User', '', 'Access-Accept', '2022-10-07 03:26:00.511549', NULL),
(389, '3M_User', '', 'Access-Accept', '2022-10-07 03:26:02.289888', NULL),
(390, '3M_User', '', 'Access-Accept', '2022-10-07 03:26:02.952441', NULL),
(391, '3M_User', '', 'Access-Accept', '2022-10-07 03:28:17.385241', NULL),
(392, '3M_User', '', 'Access-Accept', '2022-10-07 03:29:00.713071', NULL),
(393, '3M_User', '', 'Access-Accept', '2022-10-07 03:29:01.568852', NULL),
(394, '3M_User', '', 'Access-Accept', '2022-10-07 03:29:02.227665', NULL),
(395, '3M_User', '', 'Access-Accept', '2022-10-07 03:29:02.448776', NULL),
(396, '3M_User', '', 'Access-Accept', '2022-10-07 03:29:09.541997', NULL),
(397, '3M_User', '', 'Access-Accept', '2022-10-07 03:30:09.659183', NULL),
(398, '3M_User', '', 'Access-Accept', '2022-10-07 03:30:46.703759', NULL),
(399, '3M_User', '', 'Access-Accept', '2022-10-07 03:30:47.471826', NULL),
(400, '3M_User', '', 'Access-Accept', '2022-10-07 03:30:57.990688', NULL),
(401, '3M_User', '', 'Access-Accept', '2022-10-07 03:31:58.108810', NULL),
(402, '3M_User', '', 'Access-Accept', '2022-10-07 03:32:26.523160', NULL),
(403, '3M_User', '', 'Access-Accept', '2022-10-07 03:59:02.710830', NULL),
(404, '3M_User', '', 'Access-Reject', '2022-10-07 04:06:00.940481', NULL),
(405, '3M_User', '', 'Access-Reject', '2022-10-07 04:07:02.055021', NULL),
(406, '3M_User', '', 'Access-Reject', '2022-10-07 04:08:03.161197', NULL),
(407, '3M_User', '', 'Access-Reject', '2022-10-07 04:09:04.275078', NULL),
(408, '3M_User', '', 'Access-Reject', '2022-10-07 04:10:30.800143', NULL),
(409, '3M_User', 'password', 'Access-Reject', '2022-10-07 04:11:26.829582', NULL),
(410, 'mamun', '0xae5e171b1c3c79352fa8cbc2e699371f8a', 'Access-Accept', '2022-10-07 06:11:23.430511', NULL),
(411, 'mamun', '0xae5e171b1c3c79352fa8cbc2e699371f8a', 'Access-Accept', '2022-10-07 06:18:03.032887', NULL),
(412, 'mamun', '0xae5e171b1c3c79352fa8cbc2e699371f8a', 'Access-Accept', '2022-10-07 06:26:20.177860', NULL),
(413, '4M_Hotspot_User', '0xc7be508d09be57893904dcc583d655c09a', 'Access-Accept', '2022-10-07 06:26:53.167257', NULL),
(414, '4M_Hotspot_User', '', 'Access-Accept', '2022-10-07 06:31:41.819768', NULL),
(415, '4M_Hotspot_User', '0xc7be508d09be57893904dcc583d655c09a', 'Access-Accept', '2022-10-07 06:34:01.004161', NULL),
(416, '4M_Hotspot_User', '0xc7be508d09be57893904dcc583d655c09a', 'Access-Accept', '2022-10-07 06:35:24.633670', NULL),
(417, '4M_Hotspot_User', 'password', 'Access-Accept', '2022-10-07 06:36:01.349672', NULL),
(418, '4M_Hotspot_User', '0xc7be508d09be57893904dcc583d655c09a', 'Access-Accept', '2022-10-07 06:36:11.951045', NULL),
(419, '4M_Hotspot_User', '0xc7be508d09be57893904dcc583d655c09a', 'Access-Accept', '2022-10-07 06:38:40.322420', NULL),
(420, '4M_Hotspot_User', '0xc7be508d09be57893904dcc583d655c09a', 'Access-Reject', '2022-10-07 06:40:01.433818', NULL),
(421, '4M_Hotspot_User', '0x013151a6c59f3dc97241a174a3c210f99f', 'Access-Reject', '2022-10-07 10:12:11.580188', NULL),
(422, '4M_Hotspot_User', '0xf81ad56c68d5532023c4d66039c9644c28', 'Access-Reject', '2022-10-07 10:12:30.863308', NULL),
(423, '4M_Hotspot_User', '0xc66ebc27fd76b277716b9d54e62a201b01', 'Access-Accept', '2022-10-07 10:15:28.192027', NULL),
(424, '4M_Hotspot_User', '0xc66ebc27fd76b277716b9d54e62a201b01', 'Access-Accept', '2022-10-07 10:23:41.075741', NULL),
(425, 'sumon', '0x6de3a30d865a891425024e9cd05af048db', 'Access-Accept', '2022-10-07 10:23:59.149329', NULL),
(426, '4M_Hotspot_User', '', 'Access-Accept', '2022-10-07 10:27:25.969848', NULL),
(427, 'sumon', '', 'Access-Accept', '2022-10-07 10:28:32.629944', NULL),
(428, 'sumon', '', 'Access-Accept', '2022-10-07 10:29:37.768675', NULL),
(429, 'sumon', '0x6de3a30d865a891425024e9cd05af048db', 'Access-Accept', '2022-10-07 10:41:02.710617', NULL),
(430, '128k_User', '', 'Access-Reject', '2022-10-07 10:41:21.564375', NULL),
(431, '128k_User', '', 'Access-Accept', '2022-10-07 10:42:11.051152', NULL),
(432, '128k_User', '', 'Access-Accept', '2022-10-07 10:43:11.180774', NULL),
(433, '128k_User', '', 'Access-Accept', '2022-10-07 10:44:11.319133', NULL),
(434, '128k_User', '', 'Access-Accept', '2022-10-07 10:45:20.296459', NULL),
(435, '256k_User', '', 'Access-Reject', '2022-10-07 10:45:59.942005', NULL),
(436, '256k_User', '', 'Access-Accept', '2022-10-07 10:46:50.468762', NULL),
(437, '512k_User', '', 'Access-Reject', '2022-10-07 10:47:20.005744', NULL),
(438, '512k_User', '', 'Access-Accept', '2022-10-07 10:47:58.971695', NULL),
(439, '1M_User', '', 'Access-Accept', '2022-10-07 10:52:55.487993', NULL),
(440, '2M_User', '', 'Access-Accept', '2022-10-07 10:54:02.606158', NULL),
(441, '4M_User', '', 'Access-Reject', '2022-10-07 15:18:43.617286', NULL),
(442, '3M_User', '', 'Access-Reject', '2022-10-07 15:18:52.453430', NULL),
(443, '2M_User', '', 'Access-Accept', '2022-10-07 15:19:01.433024', NULL),
(444, '1M_User', '', 'Access-Accept', '2022-10-07 15:23:26.709754', NULL),
(445, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 16:08:19.556858', NULL),
(446, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 16:08:57.701647', NULL),
(447, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 16:09:58.835876', NULL),
(448, '4M_Hotspot_User', 'password', 'Access-Accept', '2022-10-07 16:10:00.366595', NULL),
(449, '5_Minutes_User', 'password', 'Access-Reject', '2022-10-07 16:10:12.230543', NULL),
(450, '5_Minutes_User', 'password', 'Access-Reject', '2022-10-07 16:10:32.303775', NULL),
(451, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 16:10:59.970695', NULL),
(452, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 16:12:01.105039', NULL),
(453, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 16:12:29.865533', NULL),
(454, '5_Minutes_User', 'password', 'Access-Reject', '2022-10-07 16:12:39.695230', NULL),
(455, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 16:13:27.803661', NULL),
(456, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 16:14:28.925891', NULL),
(457, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 16:15:04.964074', NULL),
(458, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 16:15:16.289825', NULL),
(459, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 16:15:26.978418', NULL),
(460, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 16:19:11.051139', NULL),
(461, '5_Minutes_User', '', 'Access-Accept', '2022-10-07 16:20:01.999739', NULL),
(462, '5_Minutes_User', '', 'Access-Accept', '2022-10-07 16:25:36.641001', NULL),
(463, '4M_Hotspot_User', '0xc66ebc27fd76b277716b9d54e62a201b01', 'Access-Accept', '2022-10-07 16:28:19.896152', NULL),
(464, '5_Minutes_User', '0xc1912537f3822c3a03daabe160533d597e', 'Access-Accept', '2022-10-07 16:28:54.646785', NULL),
(465, '5_Minutes_User', '0xc1912537f3822c3a03daabe160533d597e', 'Access-Accept', '2022-10-07 16:34:12.112881', NULL),
(466, '5_Minutes_User', '0xc1912537f3822c3a03daabe160533d597e', 'Access-Accept', '2022-10-07 16:36:16.901781', NULL),
(467, '5_Minutes_User', '0xc1912537f3822c3a03daabe160533d597e', 'Access-Accept', '2022-10-07 16:38:44.690496', NULL),
(468, '5_Minutes_User', '0xc1912537f3822c3a03daabe160533d597e', 'Access-Accept', '2022-10-07 16:39:44.016991', NULL),
(469, 'anika', '0x8f8d7cb86fca7a81d86436ce70aab6e763', 'Access-Accept', '2022-10-07 16:40:23.237361', NULL),
(470, 'anisa', '0xb9c4bcab3090b65952bfa8bcbc8f0a0dd3', 'Access-Reject', '2022-10-07 16:40:45.878272', NULL),
(471, '5_Minutes_User', '0x55c3aa5e56b18851c6cea34d5b703f1d5e', 'Access-Reject', '2022-10-07 16:47:28.388330', NULL),
(472, '5_Minutes_User', '0x0858e58be01bf2abb522702a239b0dd5c7', 'Access-Reject', '2022-10-07 16:48:31.178014', NULL),
(473, '5_Minutes_User', '0xcecd05fad3852ac9333d45f055c96cc978', 'Access-Accept', '2022-10-07 16:50:31.103948', NULL),
(474, '5_Minutes_User', '0xd6e68cae0ad424eb8d7254a2005c66946a', 'Access-Accept', '2022-10-07 16:52:16.124536', NULL),
(475, '5_Minutes_User', '0xba2ac76397870304351e8f9a41f578c324', 'Access-Accept', '2022-10-07 16:53:16.545169', NULL),
(476, '5_Minutes_User', '0x028aa6d0f9fa2c69ca0828b86baa5abcb5', 'Access-Accept', '2022-10-07 16:54:28.795553', NULL),
(477, '5_Minutes_User', '0x471f009dbe8fec9bdbc98da60f7b98bcab', 'Access-Accept', '2022-10-07 16:55:01.242456', NULL),
(478, '5_Minutes_User', '0x994eb1cde15669375f14f4c2ad3d244d0d', 'Access-Accept', '2022-10-07 16:55:33.514734', NULL),
(479, '5_Minutes_User', '', 'Access-Accept', '2022-10-07 16:58:54.081097', NULL),
(480, '5_Minutes_User', '', 'Access-Accept', '2022-10-07 16:59:54.214893', NULL),
(481, '5_Minutes_User', '', 'Access-Accept', '2022-10-07 17:00:12.392019', NULL),
(482, '5_Minutes_User', '0xe151efc0d9f279000a5eea4d583e8b5098', 'Access-Accept', '2022-10-07 17:00:32.378928', NULL),
(483, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 17:04:38.618872', NULL),
(484, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 17:05:39.748316', NULL),
(485, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 17:06:40.880087', NULL),
(486, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 17:07:42.011757', NULL),
(487, '5_Minutes_User', '0xeb089f592502ddf78c4ee5700deb3c8063', 'Access-Reject', '2022-10-07 17:12:48.939351', NULL),
(488, '5_Minutes_User', '0x89f811a88525931fd93976c2c909f8c054', 'Access-Accept', '2022-10-07 17:12:56.025491', NULL),
(489, '5_Minutes_User', '0x89f811a88525931fd93976c2c909f8c054', 'Access-Accept', '2022-10-07 17:13:24.995747', NULL),
(490, '5_Minutes_User', '', 'Access-Accept', '2022-10-07 17:13:32.257294', NULL),
(491, '5_Minutes_User', '0x89f811a88525931fd93976c2c909f8c054', 'Access-Reject', '2022-10-07 17:16:13.110951', NULL),
(492, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 17:17:19.545360', NULL),
(493, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 17:18:20.665982', NULL),
(494, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 17:19:21.783451', NULL),
(495, '5_Minutes_User', '', 'Access-Reject', '2022-10-07 17:20:22.915524', NULL),
(496, '10_MB_Quota', '0x1fa08fc39fc4fa488569c7b4f460599656', 'Access-Accept', '2022-10-07 17:21:30.184826', NULL),
(497, '10_MB_Quota', '0x18fd3ffa80a06a3836a4a4723cec01ec3f', 'Access-Accept', '2022-10-07 17:26:22.138471', NULL),
(498, '10_MB_User', '', 'Access-Reject', '2022-10-07 17:26:56.628590', NULL),
(499, '10_MB_Quota', '', 'Access-Accept', '2022-10-07 17:27:35.534666', NULL),
(500, '10_MB_Quota', '', 'Access-Accept', '2022-10-07 17:28:35.659541', NULL),
(501, '10_MB_Quota', '', 'Access-Accept', '2022-10-07 17:29:07.583780', NULL),
(502, '10_MB_Quota', 'password', 'Access-Accept', '2022-10-07 17:29:45.995215', NULL),
(503, '10_MB_Quota', 'password', 'Access-Accept', '2022-10-07 17:30:05.906753', NULL),
(504, '10_MB_Quota', 'password', 'Access-Accept', '2022-10-07 17:30:12.522385', NULL),
(505, '10_MB_Quota', 'password', 'Access-Accept', '2022-10-07 17:30:15.671632', NULL),
(506, '10_MB_Quota', '', 'Access-Reject', '2022-10-07 17:35:14.557153', NULL),
(507, '10_MB_Quota', 'password', 'Access-Reject', '2022-10-07 17:35:41.766503', NULL),
(508, '10_MB_Quota', '', 'Access-Reject', '2022-10-07 17:36:15.688068', NULL),
(509, '10_MB_Quota', '', 'Access-Reject', '2022-10-07 17:37:16.807142', NULL),
(510, '10_MB_Quota', '0x8ff613a10ba33b514bc512bd1c8b67272c', 'Access-Reject', '2022-10-07 17:37:31.716140', NULL),
(511, '10_MB_Quota', '', 'Access-Reject', '2022-10-07 17:38:17.920703', NULL),
(512, '500_MB_30_Days', '0x3f6cd91cb67720f0087c0b8729ab3078e4', 'Access-Reject', '2022-10-07 18:05:11.343319', NULL),
(513, '500_MB_30_Days', '0x3a313a293d84c712e7e673f23200fd1ded', 'Access-Accept', '2022-10-07 18:05:20.833275', NULL),
(514, '500_MB_30_Days', '0x1cc6bd03a3c48543c502a3933a8291f2c4', 'Access-Accept', '2022-10-07 18:07:01.986386', NULL),
(515, '500_MB_30_Days', 'password', 'Access-Accept', '2022-10-07 18:07:57.540509', NULL),
(516, '500_MB_30_Days', '0x98794011fbadc25635aa98f9b684226766', 'Access-Accept', '2022-10-07 18:09:06.204536', NULL),
(517, '500_MB_30_Days', 'password', 'Access-Reject', '2022-10-07 18:12:26.016768', NULL),
(518, '500_MB_30_Days', '0x9baa77c6715e5b71ffa2444dbd54557e4d', 'Access-Accept', '2022-10-07 18:13:35.897128', NULL),
(519, '500_MB_30_Days', 'password', 'Access-Accept', '2022-10-07 18:16:09.873228', NULL),
(520, '500_MB_30_Days', '0xdd81f1e811426dfc1e726e15e4775ae746', 'Access-Reject', '2022-10-07 18:17:02.364866', NULL),
(521, '500_MB_30_Days', '0x370070dec09e9d1b1a8d8d4914d517f10f', 'Access-Accept', '2022-10-07 18:19:10.512871', NULL),
(522, '4M_Hotspot_User', '0xc66ebc27fd76b277716b9d54e62a201b01', 'Access-Accept', '2022-10-07 18:23:00.866546', NULL),
(523, '4M_Hotspot_User', '0xc66ebc27fd76b277716b9d54e62a201b01', 'Access-Accept', '2022-10-07 18:32:19.619625', NULL),
(524, '100_MB_30_Days', '0x75694eb38da4ade643007ad58f07bc2da2', 'Access-Accept', '2022-10-07 18:32:58.311538', NULL),
(525, '100_MB_30_Days', '0xf03b1d662d124f789c6ffe6365e8b9077b', 'Access-Accept', '2022-10-07 18:34:09.310633', NULL),
(526, '100_MB_30_Days', '0xfdf64815886e208703bdebefdb1d2f27d1', 'Access-Accept', '2022-10-07 18:38:17.868895', NULL),
(527, '500_MB_30_Days', 'password', 'Access-Reject', '2022-10-08 05:09:35.840136', NULL),
(528, 'hotspot_user1', '0xc44fbdcd6b4048e02b16c7683e4e1a0729', 'Access-Reject', '2022-10-08 05:34:34.438380', NULL),
(529, '500_MB_30_Days', 'password', 'Access-Reject', '2022-10-08 05:35:08.325553', NULL),
(530, 'hotspot_user1', 'password', 'Access-Reject', '2022-10-08 05:35:18.891047', NULL),
(531, 'hotspot_user1', '0x31da8ee1a42aec36fb3157a1568cd8a20a', 'Access-Accept', '2022-10-08 05:44:13.320286', NULL),
(532, 'hotspot_user1', 'password', 'Access-Accept', '2022-10-08 05:44:29.351076', NULL),
(533, 'hotspot_user1', '0xf0667629ca3c08df25c9de25554e5c626e', 'Access-Accept', '2022-10-08 05:49:12.495486', NULL),
(534, 'hotspot_user1', '0x4b42f98e6398dba569aa9aeb7420c37f09', 'Access-Accept', '2022-10-08 05:50:55.941177', NULL),
(535, 'hotspot_user1', 'password', 'Access-Accept', '2022-10-08 05:51:03.313532', NULL),
(536, 'hotspot_user1', 'password', 'Access-Accept', '2022-10-08 05:51:51.750992', NULL),
(537, 'hotspot_user1', '0x5567c424bb3ec0fd49d942fccf417ed53d', 'Access-Accept', '2022-10-08 05:51:59.238712', NULL),
(538, 'hotspot_user1', 'password', 'Access-Accept', '2022-10-08 05:53:02.303981', NULL),
(539, 'hotspot_user1', '0x16ff541345fb286bb6f9668e6e1ee035e9', 'Access-Accept', '2022-10-08 05:53:09.832262', NULL),
(540, 'hotspot_user1', 'password', 'Access-Accept', '2022-10-08 05:53:37.231836', NULL),
(541, 'hotspot_user1', '0xd80ca1fa03c849d0642287d9211e5d159c', 'Access-Accept', '2022-10-08 05:53:44.402247', NULL),
(542, 'hotspot_user1', 'password', 'Access-Accept', '2022-10-08 06:01:38.958494', NULL),
(543, 'hotpot_user1', '', 'Access-Reject', '2022-10-08 06:14:53.729034', NULL),
(544, 'hotspot_user1', '0xcccbead883c2e8866f927d815c02bda293', 'Access-Accept', '2022-10-08 06:15:15.600430', NULL),
(545, 'hotpot_user1', '', 'Access-Reject', '2022-10-08 06:15:28.653447', NULL),
(546, 'hotpot_user1', '', 'Access-Reject', '2022-10-08 06:16:29.788821', NULL),
(547, 'hotpot_user1', '', 'Access-Reject', '2022-10-08 06:17:30.898714', NULL),
(548, 'hotspot_user1', '0x28a57ff4bcae0b1ded68c562737eb72e57', 'Access-Accept', '2022-10-08 06:22:41.782250', NULL),
(549, 'hotspot_user1', '0xfe690a455a5de40308db5e05570e1fa301', 'Access-Accept', '2022-10-08 06:28:08.586611', NULL),
(550, 'hotpot_user1', '', 'Access-Reject', '2022-10-08 06:28:46.397761', NULL),
(551, 'hotspot_user1', 'password', 'Access-Accept', '2022-10-08 06:33:18.737040', NULL),
(552, '3M_User', '', 'Access-Reject', '2022-10-08 06:39:31.685680', NULL),
(553, '3M_User', '', 'Access-Accept', '2022-10-08 06:40:02.776399', NULL),
(554, '3M_User', '0xdf8bbd8707e5f2e04dba39d76b97c80d51', 'Access-Accept', '2022-10-08 06:40:56.197259', NULL),
(555, 'hotspot_user1', '', 'Access-Accept', '2022-10-08 06:46:42.364293', NULL),
(556, 'hotspot_user1', '0x3db0a6d09e6406f5ccd7c9a1e5e72c138e', 'Access-Accept', '2022-10-08 06:47:10.559400', NULL),
(557, 'hotspot_user1', '', 'Access-Accept', '2022-10-08 06:47:42.477245', NULL),
(558, 'hotspot_user1', '', 'Access-Accept', '2022-10-08 06:48:42.591016', NULL),
(559, 'hotspot_user1', '', 'Access-Accept', '2022-10-08 06:49:42.704814', NULL),
(560, 'murad', '', 'Access-Accept', '2022-10-08 17:24:26.315323', NULL),
(561, 'murad', '', 'Access-Accept', '2022-10-08 17:24:26.680125', NULL),
(562, '20mbps_User', '', 'Access-Accept', '2022-10-08 17:41:51.664231', NULL),
(563, '20mbps_User', '', 'Access-Accept', '2022-10-08 17:42:56.978262', NULL),
(564, '20mbps_User', '', 'Access-Accept', '2022-10-08 17:43:07.536997', NULL);

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

--
-- Table structure for table `radreply`
--

CREATE TABLE `radreply` (
  `id` int(11) UNSIGNED NOT NULL,
  `username` varchar(64) NOT NULL DEFAULT '',
  `attribute` varchar(64) NOT NULL DEFAULT '',
  `op` char(2) NOT NULL DEFAULT '=',
  `value` varchar(253) NOT NULL DEFAULT '',
  `remarks` varchar(5000) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

--
-- Dumping data for table `radreply`
--

INSERT INTO `radreply` (`id`, `username`, `attribute`, `op`, `value`, `remarks`) VALUES
(6, 'aziz', 'Mikrotik-Address-List', ':=', '5Mb', NULL),
(7, 'aziz', 'Daily-Bandwidth', ':=', '100000000', NULL),
(8, 'anas', 'Daily-Bandwidth', ':=', '20000000', NULL),
(9, 'muttaki', 'Mikrotik-Rate-Limit', '==', '2000k/2000k', NULL),
(11, '4M_Hotspot_User', 'Mikrotik-Rate-Limit', '==', '4000k/4000k 4500k/4500k 3500k/3500k 40/40', NULL),
(15, 'hotspot_user1', 'Mikrotik-Group', '=', 'Hotspot_User_Profile', 'default is a hotspot group'),
(16, 'hotspot_user1', 'Mikrotik-Rate-Limit', '=', '4000k/4000k 4500k/4500k 3500k/3500k 40/40', NULL);

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

--
-- Table structure for table `radusergroup`
--

CREATE TABLE `radusergroup` (
  `id` int(11) UNSIGNED NOT NULL,
  `username` varchar(64) NOT NULL DEFAULT '',
  `groupname` varchar(64) NOT NULL DEFAULT '',
  `priority` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

--
-- Dumping data for table `radusergroup`
--

INSERT INTO `radusergroup` (`id`, `username`, `groupname`, `priority`) VALUES
(2, '512k_Profile', '512k', 10),
(3, '1M_Profile', '1M', 10),
(4, '2M_Profile', '2M', 10),
(5, 'murad', 'fullaccess', 10),
(6, 'esrat', 'write', 10),
(7, 'mehtab', 'read', 10),
(8, 'aziz', '5Mb', 1),
(9, '256k_Profile', '256k', 10),
(11, '700k_Profile', '700k', 10),
(12, '2000k_Profile', '2000k', 10),
(13, '3M_Profile', '3M', 10),
(14, '4M_Profile', '4M', 10),
(15, '128k_Profile', '256k', 10),
(17, '20mbps_Profile', '20mbps', 10);

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

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

CREATE TABLE `roles` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(255) 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 `settings`
--

CREATE TABLE `settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mobile` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `web` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `businessday` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `googlemaps` varchar(5000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `twitter` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `facebook` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `instagram` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `skype` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `linkedin` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `youtube` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `sliders`
--

CREATE TABLE `sliders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pictures` varchar(5000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `details` varchar(4000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `priority` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `testimonials` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pictures` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `designation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `details` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `tvdisplays`
--

CREATE TABLE `tvdisplays` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(1000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pictures` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `details` varchar(1000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `priority` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `users` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `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`, `email_verified_at`, `password`, `status`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Md Murad Hosen', 'muradbd.info@gmail.com', NULL, '$2y$10$KothURlE19Vs9c0wv7BPMeP9L71djpJ3uPgwxyu/pl5F5c7LF4mf.', 'pending', NULL, '2022-10-15 06:32:46', '2022-10-15 06:32:46');

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

--
-- Table structure for table `uservisitedlogs`
--

CREATE TABLE `uservisitedlogs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `logtime` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `srcip` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mac` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `clienttohost` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `extra` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `filename` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `uservisitedlogs`
--

INSERT INTO `uservisitedlogs` (`id`, `logtime`, `srcip`, `mac`, `clienttohost`, `url`, `extra`, `filename`, `created_at`, `updated_at`) VALUES
(1, '07/22/2022 00:21:30', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.105:443->192.168.250.221:1181', '142.251.12.105:443->(192.168.137.2:1181->192.168.250.221:1181), len 40\n', NULL, '20220722-002143', NULL, NULL),
(2, '07/22/2022 00:21:30', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1181->142.251.12.105:443', '(192.168.250.221:1181->192.168.137.2:1181)->142.251.12.105:443, len 40\n', NULL, '20220722-002143', NULL, NULL),
(3, '07/22/2022 00:21:32', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.105:443->192.168.250.221:1180', '142.251.12.105:443->(192.168.137.2:1180->192.168.250.221:1180), len 40\n', NULL, '20220722-002143', NULL, NULL),
(4, '07/22/2022 00:21:32', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.136:443->192.168.250.221:1184', '142.251.12.136:443->(192.168.137.2:1184->192.168.250.221:1184), len 284\n', NULL, '20220722-002143', NULL, NULL),
(5, '07/22/2022 00:21:32', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '74.125.24.119:443->192.168.250.221:1185', '74.125.24.119:443->(192.168.137.2:1185->192.168.250.221:1185), len 40\n', NULL, '20220722-002143', NULL, NULL),
(6, '07/22/2022 00:21:32', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1185->74.125.24.119:443', '(192.168.250.221:1185->192.168.137.2:1185)->74.125.24.119:443, len 40\n', NULL, '20220722-002143', NULL, NULL),
(7, '07/22/2022 00:21:32', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1186->172.217.194.95:443', '(192.168.250.221:1186->192.168.137.2:1186)->172.217.194.95:443, len 40\n', NULL, '20220722-002143', NULL, NULL),
(8, '07/22/2022 00:21:32', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1187->74.125.24.119:443', '(192.168.250.221:1187->192.168.137.2:1187)->74.125.24.119:443, len 40\n', NULL, '20220722-002143', NULL, NULL),
(9, '07/22/2022 00:21:33', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.105:443->192.168.250.221:1180', '142.251.12.105:443->(192.168.137.2:1180->192.168.250.221:1180), len 40\n', NULL, '20220722-002143', NULL, NULL),
(10, '07/22/2022 00:21:33', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '172.217.194.95:443->192.168.250.221:1186', '172.217.194.95:443->(192.168.137.2:1186->192.168.250.221:1186), len 40\n', NULL, '20220722-002143', NULL, NULL),
(11, '07/22/2022 00:21:33', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1180->142.251.12.105:443', '(192.168.250.221:1180->192.168.137.2:1180)->142.251.12.105:443, len 40\n', NULL, '20220722-002143', NULL, NULL),
(12, '07/22/2022 00:21:33', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1187->74.125.24.119:443', '(192.168.250.221:1187->192.168.137.2:1187)->74.125.24.119:443, len 40\n', NULL, '20220722-002143', NULL, NULL),
(13, '07/22/2022 00:21:35', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.10.94:443->192.168.250.221:1189', '142.251.10.94:443->(192.168.137.2:1189->192.168.250.221:1189), len 40\n', NULL, '20220722-002143', NULL, NULL),
(14, '07/22/2022 00:21:35', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.84:443->192.168.250.221:1190', '142.251.12.84:443->(192.168.137.2:1190->192.168.250.221:1190), len 1470\n', NULL, '20220722-002143', NULL, NULL),
(15, '07/22/2022 00:21:35', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.84:443->192.168.250.221:1190', '142.251.12.84:443->(192.168.137.2:1190->192.168.250.221:1190), len 40\n', NULL, '20220722-002143', NULL, NULL),
(16, '07/22/2022 00:21:36', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.84:443->192.168.250.221:1190', '142.251.12.84:443->(192.168.137.2:1190->192.168.250.221:1190), len 40\n', NULL, '20220722-002143', NULL, NULL),
(17, '07/22/2022 00:21:40', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.105:443->192.168.250.221:1181', '142.251.12.105:443->(192.168.137.2:1181->192.168.250.221:1181), len 40\n', NULL, '20220722-002143', NULL, NULL),
(18, '07/22/2022 00:21:40', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.136:443->192.168.250.221:1184', '142.251.12.136:443->(192.168.137.2:1184->192.168.250.221:1184), len 40\n', NULL, '20220722-002143', NULL, NULL),
(19, '07/22/2022 00:21:41', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1181->142.251.12.105:443', '(192.168.250.221:1181->192.168.137.2:1181)->142.251.12.105:443, len 40\n', NULL, '20220722-002143', NULL, NULL),
(20, '07/22/2022 00:21:43', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1187->74.125.24.119:443', '(192.168.250.221:1187->192.168.137.2:1187)->74.125.24.119:443, len 40\n', NULL, '20220722-002143', NULL, NULL),
(21, '07/22/2022 00:21:43', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1188->172.217.194.95:443', '(192.168.250.221:1188->192.168.137.2:1188)->172.217.194.95:443, len 40\n', NULL, '20220722-002143', NULL, NULL),
(23, '07/22/2022 00:21:30', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.105:443->192.168.250.221:1181', '142.251.12.105:443->(192.168.137.2:1181->192.168.250.221:1181)', NULL, '20220722-002143', NULL, NULL),
(24, '07/22/2022 00:21:30', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1181->142.251.12.105:443', '(192.168.250.221:1181->192.168.137.2:1181)->142.251.12.105:443', NULL, '20220722-002143', NULL, NULL),
(25, '07/22/2022 00:21:32', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.105:443->192.168.250.221:1180', '142.251.12.105:443->(192.168.137.2:1180->192.168.250.221:1180)', NULL, '20220722-002143', NULL, NULL),
(26, '07/22/2022 00:21:32', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.136:443->192.168.250.221:1184', '142.251.12.136:443->(192.168.137.2:1184->192.168.250.221:1184)', NULL, '20220722-002143', NULL, NULL),
(27, '07/22/2022 00:21:32', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '74.125.24.119:443->192.168.250.221:1185', '74.125.24.119:443->(192.168.137.2:1185->192.168.250.221:1185)', NULL, '20220722-002143', NULL, NULL),
(28, '07/22/2022 00:21:32', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1185->74.125.24.119:443', '(192.168.250.221:1185->192.168.137.2:1185)->74.125.24.119:443', NULL, '20220722-002143', NULL, NULL),
(29, '07/22/2022 00:21:32', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1186->172.217.194.95:443', '(192.168.250.221:1186->192.168.137.2:1186)->172.217.194.95:443', NULL, '20220722-002143', NULL, NULL),
(30, '07/22/2022 00:21:32', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1187->74.125.24.119:443', '(192.168.250.221:1187->192.168.137.2:1187)->74.125.24.119:443', NULL, '20220722-002143', NULL, NULL),
(31, '07/22/2022 00:21:33', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.105:443->192.168.250.221:1180', '142.251.12.105:443->(192.168.137.2:1180->192.168.250.221:1180)', NULL, '20220722-002143', NULL, NULL),
(32, '07/22/2022 00:21:33', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '172.217.194.95:443->192.168.250.221:1186', '172.217.194.95:443->(192.168.137.2:1186->192.168.250.221:1186)', NULL, '20220722-002143', NULL, NULL),
(33, '07/22/2022 00:21:33', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1180->142.251.12.105:443', '(192.168.250.221:1180->192.168.137.2:1180)->142.251.12.105:443', NULL, '20220722-002143', NULL, NULL),
(34, '07/22/2022 00:21:33', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1187->74.125.24.119:443', '(192.168.250.221:1187->192.168.137.2:1187)->74.125.24.119:443', NULL, '20220722-002143', NULL, NULL),
(35, '07/22/2022 00:21:35', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.10.94:443->192.168.250.221:1189', '142.251.10.94:443->(192.168.137.2:1189->192.168.250.221:1189)', NULL, '20220722-002143', NULL, NULL),
(36, '07/22/2022 00:21:35', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.84:443->192.168.250.221:1190', '142.251.12.84:443->(192.168.137.2:1190->192.168.250.221:1190)', NULL, '20220722-002143', NULL, NULL),
(37, '07/22/2022 00:21:35', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.84:443->192.168.250.221:1190', '142.251.12.84:443->(192.168.137.2:1190->192.168.250.221:1190)', NULL, '20220722-002143', NULL, NULL),
(38, '07/22/2022 00:21:36', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.84:443->192.168.250.221:1190', '142.251.12.84:443->(192.168.137.2:1190->192.168.250.221:1190)', NULL, '20220722-002143', NULL, NULL),
(39, '07/22/2022 00:21:40', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.105:443->192.168.250.221:1181', '142.251.12.105:443->(192.168.137.2:1181->192.168.250.221:1181)', NULL, '20220722-002143', NULL, NULL),
(40, '07/22/2022 00:21:40', 'in:ether1 out:ether2', '0a:00:27:00:00:13', '142.251.12.136:443->192.168.250.221:1184', '142.251.12.136:443->(192.168.137.2:1184->192.168.250.221:1184)', NULL, '20220722-002143', NULL, NULL),
(41, '07/22/2022 00:21:41', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1181->142.251.12.105:443', '(192.168.250.221:1181->192.168.137.2:1181)->142.251.12.105:443', NULL, '20220722-002143', NULL, NULL),
(42, '07/22/2022 00:21:43', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1187->74.125.24.119:443', '(192.168.250.221:1187->192.168.137.2:1187)->74.125.24.119:443', NULL, '20220722-002143', NULL, NULL),
(43, '07/22/2022 00:21:43', 'in:ether2 out:ether1', '08:00:27:76:3e:6c', '192.168.250.221:1188->172.217.194.95:443', '(192.168.250.221:1188->192.168.137.2:1188)->172.217.194.95:443', NULL, '20220722-002143', NULL, NULL),
(45, '07/24/2022 23:08:46', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.84:443->192.168.251.254:1065', '142.251.10.84:443->(192.168.137.2:1065->192.168.251.254:1065)', NULL, '20220724-231035', NULL, NULL),
(46, '07/24/2022 23:08:52', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.190:443->192.168.251.254:1059', '142.251.12.190:443->(192.168.137.2:1059->192.168.251.254:1059)', NULL, '20220724-231035', NULL, NULL),
(47, '07/24/2022 23:08:58', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '172.217.160.78:443->192.168.251.254:1072', '172.217.160.78:443->(192.168.137.2:1072->192.168.251.254:1072)', NULL, '20220724-231035', NULL, NULL),
(48, '07/24/2022 23:08:58', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.200.190:443->192.168.251.254:1070', '74.125.200.190:443->(192.168.137.2:1070->192.168.251.254:1070)', NULL, '20220724-231035', NULL, NULL),
(49, '07/24/2022 23:08:59', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '172.217.160.78:443->192.168.251.254:1072', '172.217.160.78:443->(192.168.137.2:1072->192.168.251.254:1072)', NULL, '20220724-231035', NULL, NULL),
(50, '07/24/2022 23:09:09', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.190:443->192.168.251.254:1059', '142.251.12.190:443->(192.168.137.2:1059->192.168.251.254:1059)', NULL, '20220724-231035', NULL, NULL),
(51, '07/24/2022 23:09:12', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.190:443->192.168.251.254:1059', '142.251.12.190:443->(192.168.137.2:1059->192.168.251.254:1059)', NULL, '20220724-231035', NULL, NULL),
(52, '07/24/2022 23:09:13', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.154:443->192.168.251.254:1074', '142.251.10.154:443->(192.168.137.2:1074->192.168.251.254:1074)', NULL, '20220724-231035', NULL, NULL),
(53, '07/24/2022 23:09:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.132:443->192.168.251.254:1078', '142.251.12.132:443->(192.168.137.2:1078->192.168.251.254:1078)', NULL, '20220724-231035', NULL, NULL),
(54, '07/24/2022 23:09:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.132:443->192.168.251.254:1079', '142.251.12.132:443->(192.168.137.2:1079->192.168.251.254:1079)', NULL, '20220724-231035', NULL, NULL),
(55, '07/24/2022 23:09:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.132:443->192.168.251.254:1080', '142.251.12.132:443->(192.168.137.2:1080->192.168.251.254:1080)', NULL, '20220724-231035', NULL, NULL),
(56, '07/24/2022 23:09:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.132:443->192.168.251.254:1081', '142.251.12.132:443->(192.168.137.2:1081->192.168.251.254:1081)', NULL, '20220724-231035', NULL, NULL),
(57, '07/24/2022 23:09:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.132:443->192.168.251.254:1082', '142.251.12.132:443->(192.168.137.2:1082->192.168.251.254:1082)', NULL, '20220724-231035', NULL, NULL),
(58, '07/24/2022 23:09:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.132:443->192.168.251.254:1083', '142.251.12.132:443->(192.168.137.2:1083->192.168.251.254:1083)', NULL, '20220724-231035', NULL, NULL),
(59, '07/24/2022 23:09:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.190:443->192.168.251.254:1059', '142.251.12.190:443->(192.168.137.2:1059->192.168.251.254:1059)', NULL, '20220724-231035', NULL, NULL),
(60, '07/24/2022 23:09:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.190:443->192.168.251.254:1059', '142.251.12.190:443->(192.168.137.2:1059->192.168.251.254:1059)', NULL, '20220724-231035', NULL, NULL),
(61, '07/24/2022 23:09:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.190:443->192.168.251.254:1059', '142.251.12.190:443->(192.168.137.2:1059->192.168.251.254:1059)', NULL, '20220724-231035', NULL, NULL),
(62, '07/24/2022 23:09:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.94:443->192.168.251.254:1064', '142.251.12.94:443->(192.168.137.2:1064->192.168.251.254:1064)', NULL, '20220724-231035', NULL, NULL),
(63, '07/24/2022 23:09:17', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.132:443->192.168.251.254:1083', '142.251.12.132:443->(192.168.137.2:1083->192.168.251.254:1083)', NULL, '20220724-231035', NULL, NULL),
(64, '07/24/2022 23:09:21', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.95:443->192.168.251.254:1061', '142.251.12.95:443->(192.168.137.2:1061->192.168.251.254:1061)', NULL, '20220724-231035', NULL, NULL),
(65, '07/24/2022 23:09:21', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.24.119:443->192.168.251.254:1060', '74.125.24.119:443->(192.168.137.2:1060->192.168.251.254:1060)', NULL, '20220724-231035', NULL, NULL),
(66, '07/24/2022 23:09:23', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.24.119:443->192.168.251.254:1060', '74.125.24.119:443->(192.168.137.2:1060->192.168.251.254:1060)', NULL, '20220724-231035', NULL, NULL),
(67, '07/24/2022 23:09:24', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.94:443->192.168.251.254:1086', '142.251.10.94:443->(192.168.137.2:1086->192.168.251.254:1086)', NULL, '20220724-231035', NULL, NULL),
(68, '07/24/2022 23:09:24', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.94:443->192.168.251.254:1086', '142.251.10.94:443->(192.168.137.2:1086->192.168.251.254:1086)', NULL, '20220724-231035', NULL, NULL),
(69, '07/24/2022 23:09:24', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.190:443->192.168.251.254:1059', '142.251.12.190:443->(192.168.137.2:1059->192.168.251.254:1059)', NULL, '20220724-231035', NULL, NULL),
(70, '07/24/2022 23:09:24', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.190:443->192.168.251.254:1077', '142.251.12.190:443->(192.168.137.2:1077->192.168.251.254:1077)', NULL, '20220724-231035', NULL, NULL),
(71, '07/24/2022 23:09:24', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.24.113:443->192.168.251.254:1068', '74.125.24.113:443->(192.168.137.2:1068->192.168.251.254:1068)', NULL, '20220724-231035', NULL, NULL),
(72, '07/24/2022 23:09:24', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.24.94:443->192.168.251.254:1087', '74.125.24.94:443->(192.168.137.2:1087->192.168.251.254:1087)', NULL, '20220724-231035', NULL, NULL),
(73, '07/24/2022 23:09:24', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.24.94:443->192.168.251.254:1087', '74.125.24.94:443->(192.168.137.2:1087->192.168.251.254:1087)', NULL, '20220724-231035', NULL, NULL),
(74, '07/24/2022 23:09:25', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.24.83:80->192.168.251.254:1090', '74.125.24.83:80->(192.168.137.2:1090->192.168.251.254:1090)', NULL, '20220724-231035', NULL, NULL),
(75, '07/24/2022 23:09:26', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.250.4.17:443->192.168.251.254:1093', '142.250.4.17:443->(192.168.137.2:1093->192.168.251.254:1093)', NULL, '20220724-231035', NULL, NULL),
(76, '07/24/2022 23:09:26', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.250.4.17:443->192.168.251.254:1094', '142.250.4.17:443->(192.168.137.2:1094->192.168.251.254:1094)', NULL, '20220724-231035', NULL, NULL),
(77, '07/24/2022 23:09:27', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.190:443->192.168.251.254:1059', '142.251.12.190:443->(192.168.137.2:1059->192.168.251.254:1059)', NULL, '20220724-231035', NULL, NULL),
(78, '07/24/2022 23:09:27', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.95:443->192.168.251.254:1061', '142.251.12.95:443->(192.168.137.2:1061->192.168.251.254:1061)', NULL, '20220724-231035', NULL, NULL),
(79, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.132:443->192.168.251.254:1101', '142.251.10.132:443->(192.168.137.2:1101->192.168.251.254:1101)', NULL, '20220724-231035', NULL, NULL),
(80, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.132:443->192.168.251.254:1101', '142.251.10.132:443->(192.168.137.2:1101->192.168.251.254:1101)', NULL, '20220724-231035', NULL, NULL),
(81, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.132:443->192.168.251.254:1102', '142.251.10.132:443->(192.168.137.2:1102->192.168.251.254:1102)', NULL, '20220724-231035', NULL, NULL),
(82, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.132:443->192.168.251.254:1102', '142.251.10.132:443->(192.168.137.2:1102->192.168.251.254:1102)', NULL, '20220724-231035', NULL, NULL),
(83, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.132:443->192.168.251.254:1103', '142.251.10.132:443->(192.168.137.2:1103->192.168.251.254:1103)', NULL, '20220724-231035', NULL, NULL),
(84, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.132:443->192.168.251.254:1104', '142.251.10.132:443->(192.168.137.2:1104->192.168.251.254:1104)', NULL, '20220724-231035', NULL, NULL),
(85, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.132:443->192.168.251.254:1104', '142.251.10.132:443->(192.168.137.2:1104->192.168.251.254:1104)', NULL, '20220724-231035', NULL, NULL),
(86, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.132:443->192.168.251.254:1105', '142.251.10.132:443->(192.168.137.2:1105->192.168.251.254:1105)', NULL, '20220724-231035', NULL, NULL),
(87, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.132:443->192.168.251.254:1106', '142.251.10.132:443->(192.168.137.2:1106->192.168.251.254:1106)', NULL, '20220724-231035', NULL, NULL),
(88, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.94:443->192.168.251.254:1096', '142.251.10.94:443->(192.168.137.2:1096->192.168.251.254:1096)', NULL, '20220724-231035', NULL, NULL),
(89, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.97:443->192.168.251.254:1097', '142.251.10.97:443->(192.168.137.2:1097->192.168.251.254:1097)', NULL, '20220724-231035', NULL, NULL),
(90, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.120:443->192.168.251.254:1099', '142.251.12.120:443->(192.168.137.2:1099->192.168.251.254:1099)', NULL, '20220724-231035', NULL, NULL),
(91, '07/24/2022 23:09:28', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.120:443->192.168.251.254:1099', '142.251.12.120:443->(192.168.137.2:1099->192.168.251.254:1099)', NULL, '20220724-231035', NULL, NULL),
(92, '07/24/2022 23:09:29', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '172.217.197.91:443->192.168.251.254:1062', '172.217.197.91:443->(192.168.137.2:1062->192.168.251.254:1062)', NULL, '20220724-231035', NULL, NULL),
(93, '07/24/2022 23:09:30', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.94:443->192.168.251.254:1096', '142.251.10.94:443->(192.168.137.2:1096->192.168.251.254:1096)', NULL, '20220724-231035', NULL, NULL),
(94, '07/24/2022 23:09:30', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.97:443->192.168.251.254:1097', '142.251.10.97:443->(192.168.137.2:1097->192.168.251.254:1097)', NULL, '20220724-231035', NULL, NULL),
(95, '07/24/2022 23:09:30', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.94:443->192.168.251.254:1064', '142.251.12.94:443->(192.168.137.2:1064->192.168.251.254:1064)', NULL, '20220724-231035', NULL, NULL),
(96, '07/24/2022 23:09:31', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.97:443->192.168.251.254:1097', '142.251.10.97:443->(192.168.137.2:1097->192.168.251.254:1097)', NULL, '20220724-231035', NULL, NULL),
(97, '07/24/2022 23:09:32', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.138:443->192.168.251.254:1107', '142.251.10.138:443->(192.168.137.2:1107->192.168.251.254:1107)', NULL, '20220724-231035', NULL, NULL),
(98, '07/24/2022 23:09:32', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.138:443->192.168.251.254:1107', '142.251.10.138:443->(192.168.137.2:1107->192.168.251.254:1107)', NULL, '20220724-231035', NULL, NULL),
(99, '07/24/2022 23:09:32', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.138:443->192.168.251.254:1108', '142.251.10.138:443->(192.168.137.2:1108->192.168.251.254:1108)', NULL, '20220724-231035', NULL, NULL),
(100, '07/24/2022 23:09:32', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.138:443->192.168.251.254:1108', '142.251.10.138:443->(192.168.137.2:1108->192.168.251.254:1108)', NULL, '20220724-231035', NULL, NULL),
(101, '07/24/2022 23:09:32', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.97:443->192.168.251.254:1097', '142.251.10.97:443->(192.168.137.2:1097->192.168.251.254:1097)', NULL, '20220724-231035', NULL, NULL),
(102, '07/24/2022 23:09:41', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.250.4.17:443->192.168.251.254:1095', '142.250.4.17:443->(192.168.137.2:1095->192.168.251.254:1095)', NULL, '20220724-231035', NULL, NULL),
(103, '07/24/2022 23:09:41', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.94:443->192.168.251.254:1088', '142.251.10.94:443->(192.168.137.2:1088->192.168.251.254:1088)', NULL, '20220724-231035', NULL, NULL),
(104, '07/24/2022 23:09:41', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.97:443->192.168.251.254:1098', '142.251.10.97:443->(192.168.137.2:1098->192.168.251.254:1098)', NULL, '20220724-231035', NULL, NULL),
(105, '07/24/2022 23:09:41', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.120:443->192.168.251.254:1100', '142.251.12.120:443->(192.168.137.2:1100->192.168.251.254:1100)', NULL, '20220724-231035', NULL, NULL),
(106, '07/24/2022 23:09:41', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.24.94:443->192.168.251.254:1089', '74.125.24.94:443->(192.168.137.2:1089->192.168.251.254:1089)', NULL, '20220724-231035', NULL, NULL),
(107, '07/24/2022 23:09:43', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.200.190:443->192.168.251.254:1070', '74.125.200.190:443->(192.168.137.2:1070->192.168.251.254:1070)', NULL, '20220724-231035', NULL, NULL),
(108, '07/24/2022 23:09:44', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '172.217.160.78:443->192.168.251.254:1072', '172.217.160.78:443->(192.168.137.2:1072->192.168.251.254:1072)', NULL, '20220724-231035', NULL, NULL),
(109, '07/24/2022 23:09:49', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.190:443->192.168.251.254:1059', '142.251.12.190:443->(192.168.137.2:1059->192.168.251.254:1059)', NULL, '20220724-231035', NULL, NULL),
(110, '07/24/2022 23:09:58', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.154:443->192.168.251.254:1074', '142.251.10.154:443->(192.168.137.2:1074->192.168.251.254:1074)', NULL, '20220724-231035', NULL, NULL),
(111, '07/24/2022 23:09:59', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.94:443->192.168.251.254:1076', '142.251.10.94:443->(192.168.137.2:1076->192.168.251.254:1076)', NULL, '20220724-231035', NULL, NULL),
(112, '07/24/2022 23:10:00', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.132:443->192.168.251.254:1105', '142.251.10.132:443->(192.168.137.2:1105->192.168.251.254:1105)', NULL, '20220724-231035', NULL, NULL),
(113, '07/24/2022 23:10:04', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.132:443->192.168.251.254:1083', '142.251.12.132:443->(192.168.137.2:1083->192.168.251.254:1083)', NULL, '20220724-231035', NULL, NULL),
(114, '07/24/2022 23:10:05', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.132:443->192.168.251.254:1105', '142.251.10.132:443->(192.168.137.2:1105->192.168.251.254:1105)', NULL, '20220724-231035', NULL, NULL),
(115, '07/24/2022 23:10:08', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.250.4.93:443->192.168.251.254:1084', '142.250.4.93:443->(192.168.137.2:1084->192.168.251.254:1084)', NULL, '20220724-231035', NULL, NULL),
(116, '07/24/2022 23:10:09', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.94:443->192.168.251.254:1096', '142.251.10.94:443->(192.168.137.2:1096->192.168.251.254:1096)', NULL, '20220724-231035', NULL, NULL),
(117, '07/24/2022 23:10:10', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.190:443->192.168.251.254:1077', '142.251.12.190:443->(192.168.137.2:1077->192.168.251.254:1077)', NULL, '20220724-231035', NULL, NULL),
(118, '07/24/2022 23:10:10', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.24.113:443->192.168.251.254:1068', '74.125.24.113:443->(192.168.137.2:1068->192.168.251.254:1068)', NULL, '20220724-231035', NULL, NULL),
(119, '07/24/2022 23:10:10', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.24.83:80->192.168.251.254:1090', '74.125.24.83:80->(192.168.137.2:1090->192.168.251.254:1090)', NULL, '20220724-231035', NULL, NULL),
(120, '07/24/2022 23:10:12', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.250.4.17:443->192.168.251.254:1093', '142.250.4.17:443->(192.168.137.2:1093->192.168.251.254:1093)', NULL, '20220724-231035', NULL, NULL),
(121, '07/24/2022 23:10:12', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.84:443->192.168.251.254:1065', '142.251.10.84:443->(192.168.137.2:1065->192.168.251.254:1065)', NULL, '20220724-231035', NULL, NULL),
(122, '07/24/2022 23:10:12', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.24.119:443->192.168.251.254:1060', '74.125.24.119:443->(192.168.137.2:1060->192.168.251.254:1060)', NULL, '20220724-231035', NULL, NULL),
(123, '07/24/2022 23:10:13', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.95:443->192.168.251.254:1061', '142.251.12.95:443->(192.168.137.2:1061->192.168.251.254:1061)', NULL, '20220724-231035', NULL, NULL),
(124, '07/24/2022 23:10:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.94:443->192.168.251.254:1073', '142.251.10.94:443->(192.168.137.2:1073->192.168.251.254:1073)', NULL, '20220724-231035', NULL, NULL),
(125, '07/24/2022 23:10:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.120:443->192.168.251.254:1099', '142.251.12.120:443->(192.168.137.2:1099->192.168.251.254:1099)', NULL, '20220724-231035', NULL, NULL),
(126, '07/24/2022 23:10:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.94:443->192.168.251.254:1064', '142.251.12.94:443->(192.168.137.2:1064->192.168.251.254:1064)', NULL, '20220724-231035', NULL, NULL),
(127, '07/24/2022 23:10:16', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '172.217.197.91:443->192.168.251.254:1062', '172.217.197.91:443->(192.168.137.2:1062->192.168.251.254:1062)', NULL, '20220724-231035', NULL, NULL),
(128, '07/24/2022 23:10:18', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.97:443->192.168.251.254:1097', '142.251.10.97:443->(192.168.137.2:1097->192.168.251.254:1097)', NULL, '20220724-231035', NULL, NULL),
(129, '07/24/2022 23:10:20', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.10.138:443->192.168.251.254:1107', '142.251.10.138:443->(192.168.137.2:1107->192.168.251.254:1107)', NULL, '20220724-231035', NULL, NULL),
(130, '07/24/2022 23:10:22', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.130.95:443->192.168.251.254:1109', '74.125.130.95:443->(192.168.137.2:1109->192.168.251.254:1109)', NULL, '20220724-231035', NULL, NULL),
(131, '07/24/2022 23:10:29', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '74.125.200.190:443->192.168.251.254:1070', '74.125.200.190:443->(192.168.137.2:1070->192.168.251.254:1070)', NULL, '20220724-231035', NULL, NULL),
(132, '07/24/2022 23:10:30', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '172.217.160.78:443->192.168.251.254:1072', '172.217.160.78:443->(192.168.137.2:1072->192.168.251.254:1072)', NULL, '20220724-231035', NULL, NULL),
(133, '07/24/2022 23:10:34', 'in:ether1 out:<pppoe-monir>', '0a:00:27:00:00:13', '142.251.12.190:443->192.168.251.254:1059', '142.251.12.190:443->(192.168.137.2:1059->192.168.251.254:1059)', NULL, '20220724-231035', NULL, NULL),
(135, '10/15/2022 23:16:29', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '35.244.181.201:443->172.16.101.254:1043', '35.244.181.201:443->(192.168.137.2:1043->172.16.101.254:1043)', NULL, '20221015-232501.txt', NULL, NULL),
(136, '10/15/2022 23:16:33', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.10.95:443->172.16.101.254:1069', '142.251.10.95:443->(192.168.137.2:1069->172.16.101.254:1069)', NULL, '20221015-232501.txt', NULL, NULL),
(137, '10/15/2022 23:16:33', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.150.221.170:80->172.16.101.254:1060', '202.150.221.170:80->(192.168.137.2:1060->172.16.101.254:1060)', NULL, '20221015-232501.txt', NULL, NULL),
(138, '10/15/2022 23:16:33', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.150.221.170:80->172.16.101.254:1061', '202.150.221.170:80->(192.168.137.2:1061->172.16.101.254:1061)', NULL, '20221015-232501.txt', NULL, NULL),
(139, '10/15/2022 23:16:33', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.150.221.170:80->172.16.101.254:1062', '202.150.221.170:80->(192.168.137.2:1062->172.16.101.254:1062)', NULL, '20221015-232501.txt', NULL, NULL),
(140, '10/15/2022 23:16:33', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.150.221.170:80->172.16.101.254:1063', '202.150.221.170:80->(192.168.137.2:1063->172.16.101.254:1063)', NULL, '20221015-232501.txt', NULL, NULL),
(141, '10/15/2022 23:16:33', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.150.221.170:80->172.16.101.254:1064', '202.150.221.170:80->(192.168.137.2:1064->172.16.101.254:1064)', NULL, '20221015-232501.txt', NULL, NULL),
(142, '10/15/2022 23:16:33', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.150.221.170:80->172.16.101.254:1065', '202.150.221.170:80->(192.168.137.2:1065->172.16.101.254:1065)', NULL, '20221015-232501.txt', NULL, NULL),
(143, '10/15/2022 23:16:33', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.150.221.170:80->172.16.101.254:1066', '202.150.221.170:80->(192.168.137.2:1066->172.16.101.254:1066)', NULL, '20221015-232501.txt', NULL, NULL),
(144, '10/15/2022 23:16:34', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.88.15:443->172.16.101.254:1076', '13.33.88.15:443->(192.168.137.2:1076->172.16.101.254:1076)', NULL, '20221015-232501.txt', NULL, NULL),
(145, '10/15/2022 23:16:34', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.150.221.170:80->172.16.101.254:1077', '202.150.221.170:80->(192.168.137.2:1077->172.16.101.254:1077)', NULL, '20221015-232501.txt', NULL, NULL),
(146, '10/15/2022 23:16:35', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '125.56.219.80:80->172.16.101.254:1051', '125.56.219.80:80->(192.168.137.2:1051->172.16.101.254:1051)', NULL, '20221015-232501.txt', NULL, NULL),
(147, '10/15/2022 23:16:35', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '151.101.194.219:443->172.16.101.254:1090', '151.101.194.219:443->(192.168.137.2:1090->172.16.101.254:1090)', NULL, '20221015-232501.txt', NULL, NULL),
(148, '10/15/2022 23:16:36', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.150.221.170:80->172.16.101.254:1089', '202.150.221.170:80->(192.168.137.2:1089->172.16.101.254:1089)', NULL, '20221015-232501.txt', NULL, NULL),
(149, '10/15/2022 23:16:37', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.215.6.110:443->172.16.101.254:1056', '34.215.6.110:443->(192.168.137.2:1056->172.16.101.254:1056)', NULL, '20221015-232501.txt', NULL, NULL),
(150, '10/15/2022 23:16:37', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.215.6.110:443->172.16.101.254:1057', '34.215.6.110:443->(192.168.137.2:1057->172.16.101.254:1057)', NULL, '20221015-232501.txt', NULL, NULL),
(151, '10/15/2022 23:16:39', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '151.101.2.219:80->172.16.101.254:1081', '151.101.2.219:80->(192.168.137.2:1081->172.16.101.254:1081)', NULL, '20221015-232501.txt', NULL, NULL),
(152, '10/15/2022 23:16:39', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.150.221.170:8080->172.16.101.254:1092', '202.150.221.170:8080->(192.168.137.2:1092->172.16.101.254:1092)', NULL, '20221015-232501.txt', NULL, NULL),
(153, '10/15/2022 23:16:40', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '151.101.194.219:80->172.16.101.254:1086', '151.101.194.219:80->(192.168.137.2:1086->172.16.101.254:1086)', NULL, '20221015-232501.txt', NULL, NULL),
(154, '10/15/2022 23:16:40', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.94:80->172.16.101.254:1085', '74.125.24.94:80->(192.168.137.2:1085->172.16.101.254:1085)', NULL, '20221015-232501.txt', NULL, NULL),
(155, '10/15/2022 23:17:02', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.150.221.170:8080->172.16.101.254:1102', '202.150.221.170:8080->(192.168.137.2:1102->172.16.101.254:1102)', NULL, '20221015-232501.txt', NULL, NULL),
(156, '10/15/2022 23:17:34', 'in:ether1_wan out:ether2_pppoe', '0a:00:27:00:00:13', '202.150.221.170:8080->172.16.101.254:1097', '202.150.221.170:8080->(192.168.137.2:1097->172.16.101.254:1097)', NULL, '20221015-232501.txt', NULL, NULL),
(157, '10/15/2022 23:17:34', 'in:ether1_wan out:ether2_pppoe', '0a:00:27:00:00:13', '202.150.221.170:8080->172.16.101.254:1098', '202.150.221.170:8080->(192.168.137.2:1098->172.16.101.254:1098)', NULL, '20221015-232501.txt', NULL, NULL),
(158, '10/15/2022 23:17:34', 'in:ether1_wan out:ether2_pppoe', '0a:00:27:00:00:13', '202.150.221.170:8080->172.16.101.254:1099', '202.150.221.170:8080->(192.168.137.2:1099->172.16.101.254:1099)', NULL, '20221015-232501.txt', NULL, NULL),
(159, '10/15/2022 23:17:34', 'in:ether1_wan out:ether2_pppoe', '0a:00:27:00:00:13', '202.150.221.170:8080->172.16.101.254:1100', '202.150.221.170:8080->(192.168.137.2:1100->172.16.101.254:1100)', NULL, '20221015-232501.txt', NULL, NULL),
(160, '10/15/2022 23:17:36', 'in:ether1_wan out:ether2_pppoe', '0a:00:27:00:00:13', '34.215.6.110:443->172.16.101.254:1055', '34.215.6.110:443->(192.168.137.2:1055->172.16.101.254:1055)', NULL, '20221015-232501.txt', NULL, NULL),
(161, '10/15/2022 23:20:31', 'in:ether1_wan out:ether2_pppoe', '0a:00:27:00:00:13', '18.155.145.106:443->172.16.101.254:1054', '18.155.145.106:443->(192.168.137.2:1054->172.16.101.254:1054)', NULL, '20221015-232501.txt', NULL, NULL),
(162, '10/15/2022 23:20:32', 'in:ether1_wan out:ether2_pppoe', '0a:00:27:00:00:13', '18.155.145.106:443->172.16.101.254:1054', '18.155.145.106:443->(192.168.137.2:1054->172.16.101.254:1054)', NULL, '20221015-232501.txt', NULL, NULL),
(163, '10/15/2022 23:20:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.35:443->172.16.101.254:1133', '157.240.7.35:443->(192.168.137.2:1133->172.16.101.254:1133)', NULL, '20221015-232501.txt', NULL, NULL),
(164, '10/15/2022 23:20:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.26:443->172.16.101.254:1135', '157.240.7.26:443->(192.168.137.2:1135->172.16.101.254:1135)', NULL, '20221015-232501.txt', NULL, NULL),
(165, '10/15/2022 23:20:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.26:443->172.16.101.254:1137', '157.240.7.26:443->(192.168.137.2:1137->172.16.101.254:1137)', NULL, '20221015-232501.txt', NULL, NULL),
(166, '10/15/2022 23:20:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.26:443->172.16.101.254:1138', '157.240.7.26:443->(192.168.137.2:1138->172.16.101.254:1138)', NULL, '20221015-232501.txt', NULL, NULL),
(167, '10/15/2022 23:20:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.26:443->172.16.101.254:1139', '157.240.7.26:443->(192.168.137.2:1139->172.16.101.254:1139)', NULL, '20221015-232501.txt', NULL, NULL),
(168, '10/15/2022 23:20:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.35:443->172.16.101.254:1142', '157.240.7.35:443->(192.168.137.2:1142->172.16.101.254:1142)', NULL, '20221015-232501.txt', NULL, NULL),
(169, '10/15/2022 23:20:55', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.26:443->172.16.101.254:1146', '157.240.7.26:443->(192.168.137.2:1146->172.16.101.254:1146)', NULL, '20221015-232501.txt', NULL, NULL),
(170, '10/15/2022 23:20:56', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.10.95:443->172.16.101.254:1153', '142.251.10.95:443->(192.168.137.2:1153->172.16.101.254:1153)', NULL, '20221015-232501.txt', NULL, NULL),
(171, '10/15/2022 23:20:58', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.10.94:443->172.16.101.254:1165', '142.251.10.94:443->(192.168.137.2:1165->172.16.101.254:1165)', NULL, '20221015-232501.txt', NULL, NULL),
(172, '10/15/2022 23:21:03', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.155:443->172.16.101.254:1171', '74.125.24.155:443->(192.168.137.2:1171->172.16.101.254:1171)', NULL, '20221015-232501.txt', NULL, NULL),
(173, '10/15/2022 23:21:03', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.68.101:80->172.16.101.254:1161', '74.125.68.101:80->(192.168.137.2:1161->172.16.101.254:1161)', NULL, '20221015-232501.txt', NULL, NULL),
(174, '10/15/2022 23:21:09', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '96.44.142.106:80->172.16.101.254:1178', '96.44.142.106:80->(192.168.137.2:1178->172.16.101.254:1178)', NULL, '20221015-232501.txt', NULL, NULL),
(175, '10/15/2022 23:21:12', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.194.132:443->172.16.101.254:1191', '172.217.194.132:443->(192.168.137.2:1191->172.16.101.254:1191)', NULL, '20221015-232501.txt', NULL, NULL),
(176, '10/15/2022 23:21:12', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.194.132:443->172.16.101.254:1192', '172.217.194.132:443->(192.168.137.2:1192->172.16.101.254:1192)', NULL, '20221015-232501.txt', NULL, NULL),
(177, '10/15/2022 23:21:12', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.194.132:443->172.16.101.254:1193', '172.217.194.132:443->(192.168.137.2:1193->172.16.101.254:1193)', NULL, '20221015-232501.txt', NULL, NULL),
(178, '10/15/2022 23:21:12', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.194.132:443->172.16.101.254:1194', '172.217.194.132:443->(192.168.137.2:1194->172.16.101.254:1194)', NULL, '20221015-232501.txt', NULL, NULL),
(179, '10/15/2022 23:21:12', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.64.202.28:443->172.16.101.254:1184', '172.64.202.28:443->(192.168.137.2:1184->172.16.101.254:1184)', NULL, '20221015-232501.txt', NULL, NULL),
(180, '10/15/2022 23:21:12', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.64.202.28:443->172.16.101.254:1186', '172.64.202.28:443->(192.168.137.2:1186->172.16.101.254:1186)', NULL, '20221015-232501.txt', NULL, NULL),
(181, '10/15/2022 23:21:12', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.64.202.28:443->172.16.101.254:1187', '172.64.202.28:443->(192.168.137.2:1187->172.16.101.254:1187)', NULL, '20221015-232501.txt', NULL, NULL),
(182, '10/15/2022 23:21:12', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.64.202.28:443->172.16.101.254:1188', '172.64.202.28:443->(192.168.137.2:1188->172.16.101.254:1188)', NULL, '20221015-232501.txt', NULL, NULL),
(183, '10/15/2022 23:21:12', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.94:443->172.16.101.254:1182', '74.125.24.94:443->(192.168.137.2:1182->172.16.101.254:1182)', NULL, '20221015-232501.txt', NULL, NULL),
(184, '10/15/2022 23:21:13', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.95:443->172.16.101.254:1201', '142.250.4.95:443->(192.168.137.2:1201->172.16.101.254:1201)', NULL, '20221015-232501.txt', NULL, NULL),
(185, '10/15/2022 23:21:15', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.12.148:443->172.16.101.254:1205', '142.251.12.148:443->(192.168.137.2:1205->172.16.101.254:1205)', NULL, '20221015-232501.txt', NULL, NULL),
(186, '10/15/2022 23:21:15', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.194.95:443->172.16.101.254:1207', '172.217.194.95:443->(192.168.137.2:1207->172.16.101.254:1207)', NULL, '20221015-232501.txt', NULL, NULL),
(187, '10/15/2022 23:21:16', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.194.95:443->172.16.101.254:1209', '172.217.194.95:443->(192.168.137.2:1209->172.16.101.254:1209)', NULL, '20221015-232501.txt', NULL, NULL),
(188, '10/15/2022 23:21:16', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.200.95:443->172.16.101.254:1210', '74.125.200.95:443->(192.168.137.2:1210->172.16.101.254:1210)', NULL, '20221015-232501.txt', NULL, NULL),
(189, '10/15/2022 23:21:16', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.200.95:443->172.16.101.254:1211', '74.125.200.95:443->(192.168.137.2:1211->172.16.101.254:1211)', NULL, '20221015-232501.txt', NULL, NULL),
(190, '10/15/2022 23:21:16', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.200.95:443->172.16.101.254:1212', '74.125.200.95:443->(192.168.137.2:1212->172.16.101.254:1212)', NULL, '20221015-232501.txt', NULL, NULL),
(191, '10/15/2022 23:21:16', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.200.95:443->172.16.101.254:1213', '74.125.200.95:443->(192.168.137.2:1213->172.16.101.254:1213)', NULL, '20221015-232501.txt', NULL, NULL),
(192, '10/15/2022 23:21:18', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.12.91:443->172.16.101.254:1218', '142.251.12.91:443->(192.168.137.2:1218->172.16.101.254:1218)', NULL, '20221015-232501.txt', NULL, NULL),
(193, '10/15/2022 23:21:19', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '23.52.171.202:443->172.16.101.254:1232', '23.52.171.202:443->(192.168.137.2:1232->172.16.101.254:1232)', NULL, '20221015-232501.txt', NULL, NULL),
(194, '10/15/2022 23:21:20', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '23.52.171.202:443->172.16.101.254:1229', '23.52.171.202:443->(192.168.137.2:1229->172.16.101.254:1229)', NULL, '20221015-232501.txt', NULL, NULL),
(195, '10/15/2022 23:21:20', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '23.52.171.202:443->172.16.101.254:1230', '23.52.171.202:443->(192.168.137.2:1230->172.16.101.254:1230)', NULL, '20221015-232501.txt', NULL, NULL),
(196, '10/15/2022 23:21:20', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.200.148:443->172.16.101.254:1236', '74.125.200.148:443->(192.168.137.2:1236->172.16.101.254:1236)', NULL, '20221015-232501.txt', NULL, NULL),
(197, '10/15/2022 23:21:21', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '125.56.219.2:443->172.16.101.254:1244', '125.56.219.2:443->(192.168.137.2:1244->172.16.101.254:1244)', NULL, '20221015-232501.txt', NULL, NULL),
(198, '10/15/2022 23:21:21', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '125.56.219.2:443->172.16.101.254:1245', '125.56.219.2:443->(192.168.137.2:1245->172.16.101.254:1245)', NULL, '20221015-232501.txt', NULL, NULL),
(199, '10/15/2022 23:21:21', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '125.56.219.2:443->172.16.101.254:1246', '125.56.219.2:443->(192.168.137.2:1246->172.16.101.254:1246)', NULL, '20221015-232501.txt', NULL, NULL),
(200, '10/15/2022 23:21:21', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '125.56.219.2:443->172.16.101.254:1248', '125.56.219.2:443->(192.168.137.2:1248->172.16.101.254:1248)', NULL, '20221015-232501.txt', NULL, NULL),
(201, '10/15/2022 23:21:23', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.156:443->172.16.101.254:1252', '142.250.4.156:443->(192.168.137.2:1252->172.16.101.254:1252)', NULL, '20221015-232501.txt', NULL, NULL),
(202, '10/15/2022 23:21:23', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '23.59.168.98:443->172.16.101.254:1251', '23.59.168.98:443->(192.168.137.2:1251->172.16.101.254:1251)', NULL, '20221015-232501.txt', NULL, NULL),
(203, '10/15/2022 23:21:24', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.65.229.158:443->172.16.101.254:1264', '104.65.229.158:443->(192.168.137.2:1264->172.16.101.254:1264)', NULL, '20221015-232501.txt', NULL, NULL),
(204, '10/15/2022 23:21:24', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.10.157:443->172.16.101.254:1259', '142.251.10.157:443->(192.168.137.2:1259->172.16.101.254:1259)', NULL, '20221015-232501.txt', NULL, NULL),
(205, '10/15/2022 23:21:25', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.132:443->172.16.101.254:1260', '142.250.4.132:443->(192.168.137.2:1260->172.16.101.254:1260)', NULL, '20221015-232501.txt', NULL, NULL),
(206, '10/15/2022 23:21:25', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.132:443->172.16.101.254:1266', '142.250.4.132:443->(192.168.137.2:1266->172.16.101.254:1266)', NULL, '20221015-232501.txt', NULL, NULL),
(207, '10/15/2022 23:21:25', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.156:443->172.16.101.254:1263', '142.250.4.156:443->(192.168.137.2:1263->172.16.101.254:1263)', NULL, '20221015-232501.txt', NULL, NULL),
(208, '10/15/2022 23:21:27', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.213.127.212:443->172.16.101.254:1276', '13.213.127.212:443->(192.168.137.2:1276->172.16.101.254:1276)', NULL, '20221015-232501.txt', NULL, NULL),
(209, '10/15/2022 23:21:28', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '54.169.0.90:443->172.16.101.254:1278', '54.169.0.90:443->(192.168.137.2:1278->172.16.101.254:1278)', NULL, '20221015-232501.txt', NULL, NULL),
(210, '10/15/2022 23:21:29', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.91.15:443->172.16.101.254:1288', '13.33.91.15:443->(192.168.137.2:1288->172.16.101.254:1288)', NULL, '20221015-232501.txt', NULL, NULL),
(211, '10/15/2022 23:21:29', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '52.231.207.240:443->172.16.101.254:1286', '52.231.207.240:443->(192.168.137.2:1286->172.16.101.254:1286)', NULL, '20221015-232501.txt', NULL, NULL),
(212, '10/15/2022 23:21:30', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.130.94:80->172.16.101.254:1270', '74.125.130.94:80->(192.168.137.2:1270->172.16.101.254:1270)', NULL, '20221015-232501.txt', NULL, NULL),
(213, '10/15/2022 23:21:30', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.200.157:443->172.16.101.254:1302', '74.125.200.157:443->(192.168.137.2:1302->172.16.101.254:1302)', NULL, '20221015-232501.txt', NULL, NULL),
(214, '10/15/2022 23:21:32', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '15.188.95.229:443->172.16.101.254:1314', '15.188.95.229:443->(192.168.137.2:1314->172.16.101.254:1314)', NULL, '20221015-232501.txt', NULL, NULL),
(215, '10/15/2022 23:21:32', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.196.134.239:443->172.16.101.254:1308', '34.196.134.239:443->(192.168.137.2:1308->172.16.101.254:1308)', NULL, '20221015-232501.txt', NULL, NULL),
(216, '10/15/2022 23:21:32', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.196.134.239:443->172.16.101.254:1311', '34.196.134.239:443->(192.168.137.2:1311->172.16.101.254:1311)', NULL, '20221015-232501.txt', NULL, NULL),
(217, '10/15/2022 23:21:34', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.33.29:443->172.16.101.254:1289', '13.33.33.29:443->(192.168.137.2:1289->172.16.101.254:1289)', NULL, '20221015-232501.txt', NULL, NULL),
(218, '10/15/2022 23:21:35', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '18.155.68.104:443->172.16.101.254:1299', '18.155.68.104:443->(192.168.137.2:1299->172.16.101.254:1299)', NULL, '20221015-232501.txt', NULL, NULL),
(219, '10/15/2022 23:21:35', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '199.232.46.219:80->172.16.101.254:1327', '199.232.46.219:80->(192.168.137.2:1327->172.16.101.254:1327)', NULL, '20221015-232501.txt', NULL, NULL),
(220, '10/15/2022 23:21:35', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '52.209.94.223:443->172.16.101.254:1291', '52.209.94.223:443->(192.168.137.2:1291->172.16.101.254:1291)', NULL, '20221015-232501.txt', NULL, NULL),
(221, '10/15/2022 23:21:35', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '52.209.94.223:443->172.16.101.254:1294', '52.209.94.223:443->(192.168.137.2:1294->172.16.101.254:1294)', NULL, '20221015-232501.txt', NULL, NULL),
(222, '10/15/2022 23:21:36', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '107.178.111.138:80->172.16.101.254:1337', '107.178.111.138:80->(192.168.137.2:1337->172.16.101.254:1337)', NULL, '20221015-232501.txt', NULL, NULL);
INSERT INTO `uservisitedlogs` (`id`, `logtime`, `srcip`, `mac`, `clienttohost`, `url`, `extra`, `filename`, `created_at`, `updated_at`) VALUES
(223, '10/15/2022 23:21:36', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '54.170.174.97:443->172.16.101.254:1328', '54.170.174.97:443->(192.168.137.2:1328->172.16.101.254:1328)', NULL, '20221015-232501.txt', NULL, NULL),
(224, '10/15/2022 23:21:37', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '107.178.111.138:80->172.16.101.254:1353', '107.178.111.138:80->(192.168.137.2:1353->172.16.101.254:1353)', NULL, '20221015-232501.txt', NULL, NULL),
(225, '10/15/2022 23:21:37', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '107.178.111.138:80->172.16.101.254:1354', '107.178.111.138:80->(192.168.137.2:1354->172.16.101.254:1354)', NULL, '20221015-232501.txt', NULL, NULL),
(226, '10/15/2022 23:21:37', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '107.178.111.138:80->172.16.101.254:1355', '107.178.111.138:80->(192.168.137.2:1355->172.16.101.254:1355)', NULL, '20221015-232501.txt', NULL, NULL),
(227, '10/15/2022 23:21:37', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '117.18.237.29:80->172.16.101.254:1320', '117.18.237.29:80->(192.168.137.2:1320->172.16.101.254:1320)', NULL, '20221015-232501.txt', NULL, NULL),
(228, '10/15/2022 23:21:37', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '117.18.237.29:80->172.16.101.254:1321', '117.18.237.29:80->(192.168.137.2:1321->172.16.101.254:1321)', NULL, '20221015-232501.txt', NULL, NULL),
(229, '10/15/2022 23:21:38', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.69.169.110:80->172.16.101.254:1368', '104.69.169.110:80->(192.168.137.2:1368->172.16.101.254:1368)', NULL, '20221015-232501.txt', NULL, NULL),
(230, '10/15/2022 23:21:39', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '125.56.219.2:443->172.16.101.254:1234', '125.56.219.2:443->(192.168.137.2:1234->172.16.101.254:1234)', NULL, '20221015-232501.txt', NULL, NULL),
(231, '10/15/2022 23:21:39', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '54.150.10.110:443->172.16.101.254:1367', '54.150.10.110:443->(192.168.137.2:1367->172.16.101.254:1367)', NULL, '20221015-232501.txt', NULL, NULL),
(232, '10/15/2022 23:21:41', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.65.229.158:443->172.16.101.254:1383', '104.65.229.158:443->(192.168.137.2:1383->172.16.101.254:1383)', NULL, '20221015-232501.txt', NULL, NULL),
(233, '10/15/2022 23:21:41', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.65.229.158:443->172.16.101.254:1384', '104.65.229.158:443->(192.168.137.2:1384->172.16.101.254:1384)', NULL, '20221015-232501.txt', NULL, NULL),
(234, '10/15/2022 23:21:41', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.69.165.52:443->172.16.101.254:1335', '104.69.165.52:443->(192.168.137.2:1335->172.16.101.254:1335)', NULL, '20221015-232501.txt', NULL, NULL),
(235, '10/15/2022 23:21:42', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.165.107.49:443->172.16.101.254:1392', '202.165.107.49:443->(192.168.137.2:1392->172.16.101.254:1392)', NULL, '20221015-232501.txt', NULL, NULL),
(236, '10/15/2022 23:21:42', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '98.137.11.163:443->172.16.101.254:1386', '98.137.11.163:443->(192.168.137.2:1386->172.16.101.254:1386)', NULL, '20221015-232501.txt', NULL, NULL),
(237, '10/15/2022 23:21:43', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.96.122.219:443->172.16.101.254:1387', '34.96.122.219:443->(192.168.137.2:1387->172.16.101.254:1387)', NULL, '20221015-232501.txt', NULL, NULL),
(238, '10/15/2022 23:21:44', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.69.169.110:80->172.16.101.254:1369', '104.69.169.110:80->(192.168.137.2:1369->172.16.101.254:1369)', NULL, '20221015-232501.txt', NULL, NULL),
(239, '10/15/2022 23:21:44', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.12:443->172.16.101.254:1395', '119.161.10.12:443->(192.168.137.2:1395->172.16.101.254:1395)', NULL, '20221015-232501.txt', NULL, NULL),
(240, '10/15/2022 23:21:44', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.12:443->172.16.101.254:1396', '119.161.10.12:443->(192.168.137.2:1396->172.16.101.254:1396)', NULL, '20221015-232501.txt', NULL, NULL),
(241, '10/15/2022 23:21:44', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.12:443->172.16.101.254:1398', '119.161.10.12:443->(192.168.137.2:1398->172.16.101.254:1398)', NULL, '20221015-232501.txt', NULL, NULL),
(242, '10/15/2022 23:21:44', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.12:443->172.16.101.254:1399', '119.161.10.12:443->(192.168.137.2:1399->172.16.101.254:1399)', NULL, '20221015-232501.txt', NULL, NULL),
(243, '10/15/2022 23:21:44', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '180.222.102.158:443->172.16.101.254:1402', '180.222.102.158:443->(192.168.137.2:1402->172.16.101.254:1402)', NULL, '20221015-232501.txt', NULL, NULL),
(244, '10/15/2022 23:21:46', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.33.41:80->172.16.101.254:1381', '13.33.33.41:80->(192.168.137.2:1381->172.16.101.254:1381)', NULL, '20221015-232501.txt', NULL, NULL),
(245, '10/15/2022 23:21:47', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.11:443->172.16.101.254:1414', '119.161.10.11:443->(192.168.137.2:1414->172.16.101.254:1414)', NULL, '20221015-232501.txt', NULL, NULL),
(246, '10/15/2022 23:21:47', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.11:443->172.16.101.254:1415', '119.161.10.11:443->(192.168.137.2:1415->172.16.101.254:1415)', NULL, '20221015-232501.txt', NULL, NULL),
(247, '10/15/2022 23:21:47', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.11:443->172.16.101.254:1416', '119.161.10.11:443->(192.168.137.2:1416->172.16.101.254:1416)', NULL, '20221015-232501.txt', NULL, NULL),
(248, '10/15/2022 23:21:47', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.11:443->172.16.101.254:1418', '119.161.10.11:443->(192.168.137.2:1418->172.16.101.254:1418)', NULL, '20221015-232501.txt', NULL, NULL),
(249, '10/15/2022 23:21:47', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.11:443->172.16.101.254:1419', '119.161.10.11:443->(192.168.137.2:1419->172.16.101.254:1419)', NULL, '20221015-232501.txt', NULL, NULL),
(250, '10/15/2022 23:21:47', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '152.195.61.203:443->172.16.101.254:1420', '152.195.61.203:443->(192.168.137.2:1420->172.16.101.254:1420)', NULL, '20221015-232501.txt', NULL, NULL),
(251, '10/15/2022 23:21:48', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.250.192.86:443->172.16.101.254:1422', '13.250.192.86:443->(192.168.137.2:1422->172.16.101.254:1422)', NULL, '20221015-232501.txt', NULL, NULL),
(252, '10/15/2022 23:21:48', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '152.195.61.157:443->172.16.101.254:1423', '152.195.61.157:443->(192.168.137.2:1423->172.16.101.254:1423)', NULL, '20221015-232501.txt', NULL, NULL),
(253, '10/15/2022 23:21:48', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '152.199.43.18:443->172.16.101.254:1437', '152.199.43.18:443->(192.168.137.2:1437->172.16.101.254:1437)', NULL, '20221015-232501.txt', NULL, NULL),
(254, '10/15/2022 23:21:48', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '52.74.172.143:443->172.16.101.254:1424', '52.74.172.143:443->(192.168.137.2:1424->172.16.101.254:1424)', NULL, '20221015-232501.txt', NULL, NULL),
(255, '10/15/2022 23:21:49', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '106.10.236.37:443->172.16.101.254:1444', '106.10.236.37:443->(192.168.137.2:1444->172.16.101.254:1444)', NULL, '20221015-232501.txt', NULL, NULL),
(256, '10/15/2022 23:21:49', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.250.192.86:443->172.16.101.254:1425', '13.250.192.86:443->(192.168.137.2:1425->172.16.101.254:1425)', NULL, '20221015-232501.txt', NULL, NULL),
(257, '10/15/2022 23:21:49', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '152.199.43.18:443->172.16.101.254:1435', '152.199.43.18:443->(192.168.137.2:1435->172.16.101.254:1435)', NULL, '20221015-232501.txt', NULL, NULL),
(258, '10/15/2022 23:21:50', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '52.74.162.2:443->172.16.101.254:1440', '52.74.162.2:443->(192.168.137.2:1440->172.16.101.254:1440)', NULL, '20221015-232501.txt', NULL, NULL),
(259, '10/15/2022 23:21:50', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '52.74.162.2:443->172.16.101.254:1442', '52.74.162.2:443->(192.168.137.2:1442->172.16.101.254:1442)', NULL, '20221015-232501.txt', NULL, NULL),
(260, '10/15/2022 23:21:50', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '52.74.162.2:443->172.16.101.254:1443', '52.74.162.2:443->(192.168.137.2:1443->172.16.101.254:1443)', NULL, '20221015-232501.txt', NULL, NULL),
(261, '10/15/2022 23:21:51', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.65.229.158:443->172.16.101.254:1457', '104.65.229.158:443->(192.168.137.2:1457->172.16.101.254:1457)', NULL, '20221015-232501.txt', NULL, NULL),
(262, '10/15/2022 23:21:51', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.65.229.158:443->172.16.101.254:1459', '104.65.229.158:443->(192.168.137.2:1459->172.16.101.254:1459)', NULL, '20221015-232501.txt', NULL, NULL),
(263, '10/15/2022 23:21:51', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.65.229.158:443->172.16.101.254:1460', '104.65.229.158:443->(192.168.137.2:1460->172.16.101.254:1460)', NULL, '20221015-232501.txt', NULL, NULL),
(264, '10/15/2022 23:21:52', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.156:443->172.16.101.254:1467', '142.250.4.156:443->(192.168.137.2:1467->172.16.101.254:1467)', NULL, '20221015-232501.txt', NULL, NULL),
(265, '10/15/2022 23:21:52', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.10.157:443->172.16.101.254:1466', '142.251.10.157:443->(192.168.137.2:1466->172.16.101.254:1466)', NULL, '20221015-232501.txt', NULL, NULL),
(266, '10/15/2022 23:21:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.132:443->172.16.101.254:1470', '142.250.4.132:443->(192.168.137.2:1470->172.16.101.254:1470)', NULL, '20221015-232501.txt', NULL, NULL),
(267, '10/15/2022 23:21:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.132:443->172.16.101.254:1474', '142.250.4.132:443->(192.168.137.2:1474->172.16.101.254:1474)', NULL, '20221015-232501.txt', NULL, NULL),
(268, '10/15/2022 23:21:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '180.222.102.158:443->172.16.101.254:1476', '180.222.102.158:443->(192.168.137.2:1476->172.16.101.254:1476)', NULL, '20221015-232501.txt', NULL, NULL),
(269, '10/15/2022 23:21:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.11:443->172.16.101.254:1477', '119.161.10.11:443->(192.168.137.2:1477->172.16.101.254:1477)', NULL, '20221015-232501.txt', NULL, NULL),
(270, '10/15/2022 23:21:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.11:443->172.16.101.254:1478', '119.161.10.11:443->(192.168.137.2:1478->172.16.101.254:1478)', NULL, '20221015-232501.txt', NULL, NULL),
(271, '10/15/2022 23:21:55', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '117.18.237.29:80->172.16.101.254:1450', '117.18.237.29:80->(192.168.137.2:1450->172.16.101.254:1450)', NULL, '20221015-232501.txt', NULL, NULL),
(272, '10/15/2022 23:21:55', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '117.18.237.29:80->172.16.101.254:1454', '117.18.237.29:80->(192.168.137.2:1454->172.16.101.254:1454)', NULL, '20221015-232501.txt', NULL, NULL),
(273, '10/15/2022 23:22:00', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.254.148.251:443->172.16.101.254:1448', '104.254.148.251:443->(192.168.137.2:1448->172.16.101.254:1448)', NULL, '20221015-232501.txt', NULL, NULL),
(274, '10/15/2022 23:22:01', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.254.148.251:443->172.16.101.254:1447', '104.254.148.251:443->(192.168.137.2:1447->172.16.101.254:1447)', NULL, '20221015-232501.txt', NULL, NULL),
(275, '10/15/2022 23:22:02', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '15.188.95.229:443->172.16.101.254:1313', '15.188.95.229:443->(192.168.137.2:1313->172.16.101.254:1313)', NULL, '20221015-232501.txt', NULL, NULL),
(276, '10/15/2022 23:22:19', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.200.148:443->172.16.101.254:1239', '74.125.200.148:443->(192.168.137.2:1239->172.16.101.254:1239)', NULL, '20221015-232501.txt', NULL, NULL),
(277, '10/15/2022 23:22:20', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '52.74.162.2:443->172.16.101.254:1438', '52.74.162.2:443->(192.168.137.2:1438->172.16.101.254:1438)', NULL, '20221015-232501.txt', NULL, NULL),
(278, '10/15/2022 23:22:26', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '54.169.0.90:443->172.16.101.254:1279', '54.169.0.90:443->(192.168.137.2:1279->172.16.101.254:1279)', NULL, '20221015-232501.txt', NULL, NULL),
(279, '10/15/2022 23:22:31', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '18.136.225.45:443->172.16.101.254:1293', '18.136.225.45:443->(192.168.137.2:1293->172.16.101.254:1293)', NULL, '20221015-232501.txt', NULL, NULL),
(280, '10/15/2022 23:22:31', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '52.209.94.223:443->172.16.101.254:1292', '52.209.94.223:443->(192.168.137.2:1292->172.16.101.254:1292)', NULL, '20221015-232501.txt', NULL, NULL),
(281, '10/15/2022 23:22:36', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '96.44.142.106:443->172.16.101.254:1179', '96.44.142.106:443->(192.168.137.2:1179->172.16.101.254:1179)', NULL, '20221015-232501.txt', NULL, NULL),
(282, '10/15/2022 23:22:45', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '18.139.20.120:443->172.16.101.254:1405', '18.139.20.120:443->(192.168.137.2:1405->172.16.101.254:1405)', NULL, '20221015-232501.txt', NULL, NULL),
(283, '10/15/2022 23:22:47', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '108.157.229.33:443->172.16.101.254:1129', '108.157.229.33:443->(192.168.137.2:1129->172.16.101.254:1129)', NULL, '20221015-232501.txt', NULL, NULL),
(284, '10/15/2022 23:23:01', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.104.35.70:443->172.16.101.254:1490', '34.104.35.70:443->(192.168.137.2:1490->172.16.101.254:1490)', NULL, '20221015-232501.txt', NULL, NULL),
(285, '10/15/2022 23:23:01', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.104.35.70:443->172.16.101.254:1492', '34.104.35.70:443->(192.168.137.2:1492->172.16.101.254:1492)', NULL, '20221015-232501.txt', NULL, NULL),
(286, '10/15/2022 23:23:01', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.104.35.70:443->172.16.101.254:1493', '34.104.35.70:443->(192.168.137.2:1493->172.16.101.254:1493)', NULL, '20221015-232501.txt', NULL, NULL),
(287, '10/15/2022 23:23:01', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.104.35.70:443->172.16.101.254:1494', '34.104.35.70:443->(192.168.137.2:1494->172.16.101.254:1494)', NULL, '20221015-232501.txt', NULL, NULL),
(288, '10/15/2022 23:23:20', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '23.59.168.98:443->172.16.101.254:1220', '23.59.168.98:443->(192.168.137.2:1220->172.16.101.254:1220)', NULL, '20221015-232501.txt', NULL, NULL),
(289, '10/15/2022 23:23:21', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '23.59.168.98:443->172.16.101.254:1220', '23.59.168.98:443->(192.168.137.2:1220->172.16.101.254:1220)', NULL, '20221015-232501.txt', NULL, NULL),
(290, '10/15/2022 23:23:24', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '15.188.95.229:443->172.16.101.254:1487', '15.188.95.229:443->(192.168.137.2:1487->172.16.101.254:1487)', NULL, '20221015-232501.txt', NULL, NULL),
(291, '10/15/2022 23:23:25', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.33.29:443->172.16.101.254:1290', '13.33.33.29:443->(192.168.137.2:1290->172.16.101.254:1290)', NULL, '20221015-232501.txt', NULL, NULL),
(292, '10/15/2022 23:23:26', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '18.155.68.104:443->172.16.101.254:1297', '18.155.68.104:443->(192.168.137.2:1297->172.16.101.254:1297)', NULL, '20221015-232501.txt', NULL, NULL),
(293, '10/15/2022 23:23:29', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '23.52.171.202:443->172.16.101.254:1233', '23.52.171.202:443->(192.168.137.2:1233->172.16.101.254:1233)', NULL, '20221015-232501.txt', NULL, NULL),
(294, '10/15/2022 23:23:34', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '18.155.68.104:443->172.16.101.254:1497', '18.155.68.104:443->(192.168.137.2:1497->172.16.101.254:1497)', NULL, '20221015-232501.txt', NULL, NULL),
(295, '10/15/2022 23:23:34', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.104.35.70:443->172.16.101.254:1489', '34.104.35.70:443->(192.168.137.2:1489->172.16.101.254:1489)', NULL, '20221015-232501.txt', NULL, NULL),
(296, '10/15/2022 23:23:37', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.33.41:443->172.16.101.254:1382', '13.33.33.41:443->(192.168.137.2:1382->172.16.101.254:1382)', NULL, '20221015-232501.txt', NULL, NULL),
(297, '10/15/2022 23:23:40', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.69.169.110:443->172.16.101.254:1372', '104.69.169.110:443->(192.168.137.2:1372->172.16.101.254:1372)', NULL, '20221015-232501.txt', NULL, NULL),
(298, '10/15/2022 23:23:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '104.65.229.158:443->172.16.101.254:1456', '104.65.229.158:443->(192.168.137.2:1456->172.16.101.254:1456)', NULL, '20221015-232501.txt', NULL, NULL),
(299, '10/15/2022 23:23:56', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.26:443->172.16.101.254:1134', '157.240.7.26:443->(192.168.137.2:1134->172.16.101.254:1134)', NULL, '20221015-232501.txt', NULL, NULL),
(300, '10/15/2022 23:23:56', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.35:443->172.16.101.254:1141', '157.240.7.35:443->(192.168.137.2:1141->172.16.101.254:1141)', NULL, '20221015-232501.txt', NULL, NULL),
(301, '10/15/2022 23:23:56', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.35:443->172.16.101.254:1145', '157.240.7.35:443->(192.168.137.2:1145->172.16.101.254:1145)', NULL, '20221015-232501.txt', NULL, NULL),
(302, '10/15/2022 23:23:58', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.84:443->172.16.101.254:1156', '142.250.4.84:443->(192.168.137.2:1156->172.16.101.254:1156)', NULL, '20221015-232501.txt', NULL, NULL),
(303, '10/15/2022 23:23:58', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.119:443->172.16.101.254:1151', '74.125.24.119:443->(192.168.137.2:1151->172.16.101.254:1151)', NULL, '20221015-232501.txt', NULL, NULL),
(304, '10/15/2022 23:24:00', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.10.94:443->172.16.101.254:1162', '142.251.10.94:443->(192.168.137.2:1162->172.16.101.254:1162)', NULL, '20221015-232501.txt', NULL, NULL),
(305, '10/15/2022 23:24:00', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.194.93:443->172.16.101.254:1149', '172.217.194.93:443->(192.168.137.2:1149->172.16.101.254:1149)', NULL, '20221015-232501.txt', NULL, NULL),
(306, '10/15/2022 23:24:00', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.26.67:443->172.16.101.254:1163', '172.217.26.67:443->(192.168.137.2:1163->172.16.101.254:1163)', NULL, '20221015-232501.txt', NULL, NULL),
(307, '10/15/2022 23:24:01', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.253.118.138:443->172.16.101.254:1167', '172.253.118.138:443->(192.168.137.2:1167->172.16.101.254:1167)', NULL, '20221015-232501.txt', NULL, NULL),
(308, '10/15/2022 23:24:04', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.84:443->172.16.101.254:1176', '142.250.4.84:443->(192.168.137.2:1176->172.16.101.254:1176)', NULL, '20221015-232501.txt', NULL, NULL),
(309, '10/15/2022 23:24:14', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.194.132:443->172.16.101.254:1190', '172.217.194.132:443->(192.168.137.2:1190->172.16.101.254:1190)', NULL, '20221015-232501.txt', NULL, NULL),
(310, '10/15/2022 23:24:14', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.119:443->172.16.101.254:1174', '74.125.24.119:443->(192.168.137.2:1174->172.16.101.254:1174)', NULL, '20221015-232501.txt', NULL, NULL),
(311, '10/15/2022 23:24:15', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.64.202.28:443->172.16.101.254:1189', '172.64.202.28:443->(192.168.137.2:1189->172.16.101.254:1189)', NULL, '20221015-232501.txt', NULL, NULL),
(312, '10/15/2022 23:24:16', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.12.148:443->172.16.101.254:1204', '142.251.12.148:443->(192.168.137.2:1204->172.16.101.254:1204)', NULL, '20221015-232501.txt', NULL, NULL),
(313, '10/15/2022 23:24:18', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.10.95:443->172.16.101.254:1175', '142.251.10.95:443->(192.168.137.2:1175->172.16.101.254:1175)', NULL, '20221015-232501.txt', NULL, NULL),
(314, '10/15/2022 23:24:20', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.12.91:443->172.16.101.254:1217', '142.251.12.91:443->(192.168.137.2:1217->172.16.101.254:1217)', NULL, '20221015-232501.txt', NULL, NULL),
(315, '10/15/2022 23:24:20', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '199.232.46.217:443->172.16.101.254:1226', '199.232.46.217:443->(192.168.137.2:1226->172.16.101.254:1226)', NULL, '20221015-232501.txt', NULL, NULL),
(316, '10/15/2022 23:24:20', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.97:443->172.16.101.254:1221', '74.125.24.97:443->(192.168.137.2:1221->172.16.101.254:1221)', NULL, '20221015-232501.txt', NULL, NULL),
(317, '10/15/2022 23:24:24', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.88.129:443->172.16.101.254:1241', '13.33.88.129:443->(192.168.137.2:1241->172.16.101.254:1241)', NULL, '20221015-232501.txt', NULL, NULL),
(318, '10/15/2022 23:24:25', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.10.157:443->172.16.101.254:1258', '142.251.10.157:443->(192.168.137.2:1258->172.16.101.254:1258)', NULL, '20221015-232501.txt', NULL, NULL),
(319, '10/15/2022 23:24:25', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.94:443->172.16.101.254:1183', '74.125.24.94:443->(192.168.137.2:1183->172.16.101.254:1183)', NULL, '20221015-232501.txt', NULL, NULL),
(320, '10/15/2022 23:24:26', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.156:443->172.16.101.254:1262', '142.250.4.156:443->(192.168.137.2:1262->172.16.101.254:1262)', NULL, '20221015-232501.txt', NULL, NULL),
(321, '10/15/2022 23:24:29', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.213.127.212:443->172.16.101.254:1277', '13.213.127.212:443->(192.168.137.2:1277->172.16.101.254:1277)', NULL, '20221015-232501.txt', NULL, NULL),
(322, '10/15/2022 23:24:30', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.91.15:443->172.16.101.254:1287', '13.33.91.15:443->(192.168.137.2:1287->172.16.101.254:1287)', NULL, '20221015-232501.txt', NULL, NULL),
(323, '10/15/2022 23:24:30', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.12.106:443->172.16.101.254:1128', '142.251.12.106:443->(192.168.137.2:1128->172.16.101.254:1128)', NULL, '20221015-232501.txt', NULL, NULL),
(324, '10/15/2022 23:24:30', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '199.232.45.44:443->172.16.101.254:1284', '199.232.45.44:443->(192.168.137.2:1284->172.16.101.254:1284)', NULL, '20221015-232501.txt', NULL, NULL),
(325, '10/15/2022 23:24:31', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.132:443->172.16.101.254:1261', '142.250.4.132:443->(192.168.137.2:1261->172.16.101.254:1261)', NULL, '20221015-232501.txt', NULL, NULL),
(326, '10/15/2022 23:24:31', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.26:443->172.16.101.254:1140', '157.240.7.26:443->(192.168.137.2:1140->172.16.101.254:1140)', NULL, '20221015-232501.txt', NULL, NULL),
(327, '10/15/2022 23:24:32', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.200.157:443->172.16.101.254:1300', '74.125.200.157:443->(192.168.137.2:1300->172.16.101.254:1300)', NULL, '20221015-232501.txt', NULL, NULL),
(328, '10/15/2022 23:24:34', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.88.113:443->172.16.101.254:1315', '13.33.88.113:443->(192.168.137.2:1315->172.16.101.254:1315)', NULL, '20221015-232501.txt', NULL, NULL),
(329, '10/15/2022 23:24:34', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '54.192.150.79:443->172.16.101.254:1322', '54.192.150.79:443->(192.168.137.2:1322->172.16.101.254:1322)', NULL, '20221015-232501.txt', NULL, NULL),
(330, '10/15/2022 23:24:36', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '52.220.89.204:443->172.16.101.254:1323', '52.220.89.204:443->(192.168.137.2:1323->172.16.101.254:1323)', NULL, '20221015-232501.txt', NULL, NULL),
(331, '10/15/2022 23:24:37', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '54.170.174.97:443->172.16.101.254:1326', '54.170.174.97:443->(192.168.137.2:1326->172.16.101.254:1326)', NULL, '20221015-232501.txt', NULL, NULL),
(332, '10/15/2022 23:24:39', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.12.94:443->172.16.101.254:1202', '142.251.12.94:443->(192.168.137.2:1202->172.16.101.254:1202)', NULL, '20221015-232501.txt', NULL, NULL),
(333, '10/15/2022 23:24:39', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '143.244.33.159:443->172.16.101.254:1375', '143.244.33.159:443->(192.168.137.2:1375->172.16.101.254:1375)', NULL, '20221015-232501.txt', NULL, NULL),
(334, '10/15/2022 23:24:40', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '54.150.10.110:443->172.16.101.254:1366', '54.150.10.110:443->(192.168.137.2:1366->172.16.101.254:1366)', NULL, '20221015-232501.txt', NULL, NULL),
(335, '10/15/2022 23:24:43', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.96.122.219:443->172.16.101.254:1388', '34.96.122.219:443->(192.168.137.2:1388->172.16.101.254:1388)', NULL, '20221015-232501.txt', NULL, NULL),
(336, '10/15/2022 23:24:43', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '98.137.11.163:443->172.16.101.254:1385', '98.137.11.163:443->(192.168.137.2:1385->172.16.101.254:1385)', NULL, '20221015-232501.txt', NULL, NULL),
(337, '10/15/2022 23:24:44', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '106.10.218.137:443->172.16.101.254:1393', '106.10.218.137:443->(192.168.137.2:1393->172.16.101.254:1393)', NULL, '20221015-232501.txt', NULL, NULL),
(338, '10/15/2022 23:24:46', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.194.102:443->172.16.101.254:1407', '172.217.194.102:443->(192.168.137.2:1407->172.16.101.254:1407)', NULL, '20221015-232501.txt', NULL, NULL),
(339, '10/15/2022 23:24:46', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.194.102:443->172.16.101.254:1408', '172.217.194.102:443->(192.168.137.2:1408->172.16.101.254:1408)', NULL, '20221015-232501.txt', NULL, NULL),
(340, '10/15/2022 23:24:47', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.88.129:443->172.16.101.254:1410', '13.33.88.129:443->(192.168.137.2:1410->172.16.101.254:1410)', NULL, '20221015-232501.txt', NULL, NULL),
(341, '10/15/2022 23:24:48', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.11:443->172.16.101.254:1413', '119.161.10.11:443->(192.168.137.2:1413->172.16.101.254:1413)', NULL, '20221015-232501.txt', NULL, NULL),
(342, '10/15/2022 23:24:49', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '152.195.61.203:443->172.16.101.254:1421', '152.195.61.203:443->(192.168.137.2:1421->172.16.101.254:1421)', NULL, '20221015-232501.txt', NULL, NULL),
(343, '10/15/2022 23:24:49', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.165.107.49:443->172.16.101.254:1390', '202.165.107.49:443->(192.168.137.2:1390->172.16.101.254:1390)', NULL, '20221015-232501.txt', NULL, NULL),
(344, '10/15/2022 23:24:49', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '202.165.107.49:443->172.16.101.254:1412', '202.165.107.49:443->(192.168.137.2:1412->172.16.101.254:1412)', NULL, '20221015-232501.txt', NULL, NULL),
(345, '10/15/2022 23:24:50', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.12:443->172.16.101.254:1400', '119.161.10.12:443->(192.168.137.2:1400->172.16.101.254:1400)', NULL, '20221015-232501.txt', NULL, NULL),
(346, '10/15/2022 23:24:50', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '152.195.61.157:443->172.16.101.254:1426', '152.195.61.157:443->(192.168.137.2:1426->172.16.101.254:1426)', NULL, '20221015-232501.txt', NULL, NULL),
(347, '10/15/2022 23:24:50', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '152.199.40.143:443->172.16.101.254:1411', '152.199.40.143:443->(192.168.137.2:1411->172.16.101.254:1411)', NULL, '20221015-232501.txt', NULL, NULL),
(348, '10/15/2022 23:24:50', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '152.199.43.18:443->172.16.101.254:1436', '152.199.43.18:443->(192.168.137.2:1436->172.16.101.254:1436)', NULL, '20221015-232501.txt', NULL, NULL),
(349, '10/15/2022 23:24:52', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.213.127.212:443->172.16.101.254:1455', '13.213.127.212:443->(192.168.137.2:1455->172.16.101.254:1455)', NULL, '20221015-232501.txt', NULL, NULL),
(350, '10/15/2022 23:24:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.154:443->172.16.101.254:1461', '142.250.4.154:443->(192.168.137.2:1461->172.16.101.254:1461)', NULL, '20221015-232501.txt', NULL, NULL),
(351, '10/15/2022 23:24:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.10.157:443->172.16.101.254:1463', '142.251.10.157:443->(192.168.137.2:1463->172.16.101.254:1463)', NULL, '20221015-232501.txt', NULL, NULL),
(352, '10/15/2022 23:24:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '15.188.95.229:443->172.16.101.254:1500', '15.188.95.229:443->(192.168.137.2:1500->172.16.101.254:1500)', NULL, '20221015-232501.txt', NULL, NULL),
(353, '10/15/2022 23:24:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '52.74.172.143:443->172.16.101.254:1428', '52.74.172.143:443->(192.168.137.2:1428->172.16.101.254:1428)', NULL, '20221015-232501.txt', NULL, NULL),
(354, '10/15/2022 23:24:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.156:443->172.16.101.254:1473', '142.250.4.156:443->(192.168.137.2:1473->172.16.101.254:1473)', NULL, '20221015-232501.txt', NULL, NULL),
(355, '10/15/2022 23:24:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '180.222.102.158:443->172.16.101.254:1417', '180.222.102.158:443->(192.168.137.2:1417->172.16.101.254:1417)', NULL, '20221015-232501.txt', NULL, NULL),
(356, '10/15/2022 23:24:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.155:443->172.16.101.254:1172', '74.125.24.155:443->(192.168.137.2:1172->172.16.101.254:1172)', NULL, '20221015-232501.txt', NULL, NULL),
(357, '10/15/2022 23:24:55', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '119.161.10.12:443->172.16.101.254:1394', '119.161.10.12:443->(192.168.137.2:1394->172.16.101.254:1394)', NULL, '20221015-232501.txt', NULL, NULL),
(358, '10/15/2022 23:24:55', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.4.132:443->172.16.101.254:1469', '142.250.4.132:443->(192.168.137.2:1469->172.16.101.254:1469)', NULL, '20221015-232501.txt', NULL, NULL),
(359, '10/15/2022 23:24:55', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.10.95:443->172.16.101.254:1152', '142.251.10.95:443->(192.168.137.2:1152->172.16.101.254:1152)', NULL, '20221015-232501.txt', NULL, NULL),
(360, '10/15/2022 23:24:55', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.12.94:443->172.16.101.254:1157', '142.251.12.94:443->(192.168.137.2:1157->172.16.101.254:1157)', NULL, '20221015-232501.txt', NULL, NULL),
(361, '10/15/2022 23:24:55', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '180.222.102.158:443->172.16.101.254:1401', '180.222.102.158:443->(192.168.137.2:1401->172.16.101.254:1401)', NULL, '20221015-232501.txt', NULL, NULL),
(362, '10/15/2022 23:24:57', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.194.149:443->172.16.101.254:1482', '172.217.194.149:443->(192.168.137.2:1482->172.16.101.254:1482)', NULL, '20221015-232501.txt', NULL, NULL),
(363, '10/15/2022 23:24:57', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '18.155.63.114:443->172.16.101.254:1479', '18.155.63.114:443->(192.168.137.2:1479->172.16.101.254:1479)', NULL, '20221015-232501.txt', NULL, NULL),
(364, '10/15/2022 23:24:57', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.97:443->172.16.101.254:1480', '74.125.24.97:443->(192.168.137.2:1480->172.16.101.254:1480)', NULL, '20221015-232501.txt', NULL, NULL),
(365, '10/15/2022 23:24:58', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.100:443->172.16.101.254:1166', '74.125.24.100:443->(192.168.137.2:1166->172.16.101.254:1166)', NULL, '20221015-232501.txt', NULL, NULL),
(366, '01/01/1970 00:00:00', '', '', '', '', NULL, '20221015-232501.txt', NULL, NULL),
(367, '10/15/2022 23:25:05', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.88.98:443->172.16.101.254:1507', '13.33.88.98:443->(192.168.137.2:1507->172.16.101.254:1507)', NULL, '20221015-233001.txt', NULL, NULL),
(368, '10/15/2022 23:25:09', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.35:443->172.16.101.254:1131', '157.240.7.35:443->(192.168.137.2:1131->172.16.101.254:1131)', NULL, '20221015-233001.txt', NULL, NULL),
(369, '10/15/2022 23:25:25', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '18.155.68.104:443->172.16.101.254:1496', '18.155.68.104:443->(192.168.137.2:1496->172.16.101.254:1496)', NULL, '20221015-233001.txt', NULL, NULL),
(370, '10/15/2022 23:25:28', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.251.12.106:443->172.16.101.254:1181', '142.251.12.106:443->(192.168.137.2:1181->172.16.101.254:1181)', NULL, '20221015-233001.txt', NULL, NULL),
(371, '10/15/2022 23:25:29', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.104.35.70:443->172.16.101.254:1504', '34.104.35.70:443->(192.168.137.2:1504->172.16.101.254:1504)', NULL, '20221015-233001.txt', NULL, NULL),
(372, '10/15/2022 23:25:45', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.194.93:443->172.16.101.254:1170', '172.217.194.93:443->(192.168.137.2:1170->172.16.101.254:1170)', NULL, '20221015-233001.txt', NULL, NULL),
(373, '10/15/2022 23:26:00', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '108.157.229.27:443->172.16.101.254:1488', '108.157.229.27:443->(192.168.137.2:1488->172.16.101.254:1488)', NULL, '20221015-233001.txt', NULL, NULL),
(374, '10/15/2022 23:26:04', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '35.244.181.201:443->172.16.101.254:1495', '35.244.181.201:443->(192.168.137.2:1495->172.16.101.254:1495)', NULL, '20221015-233001.txt', NULL, NULL),
(375, '10/15/2022 23:26:11', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.155:443->172.16.101.254:1180', '74.125.24.155:443->(192.168.137.2:1180->172.16.101.254:1180)', NULL, '20221015-233001.txt', NULL, NULL),
(376, '10/15/2022 23:26:23', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '15.188.95.229:443->172.16.101.254:1509', '15.188.95.229:443->(192.168.137.2:1509->172.16.101.254:1509)', NULL, '20221015-233001.txt', NULL, NULL),
(377, '10/15/2022 23:26:55', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.88.66:443->172.16.101.254:1501', '13.33.88.66:443->(192.168.137.2:1501->172.16.101.254:1501)', NULL, '20221015-233001.txt', NULL, NULL),
(378, '10/15/2022 23:26:56', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.33.88.98:443->172.16.101.254:1506', '13.33.88.98:443->(192.168.137.2:1506->172.16.101.254:1506)', NULL, '20221015-233001.txt', NULL, NULL),
(379, '10/15/2022 23:27:07', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.120.208.123:443->172.16.101.254:1498', '34.120.208.123:443->(192.168.137.2:1498->172.16.101.254:1498)', NULL, '20221015-233001.txt', NULL, NULL),
(380, '10/15/2022 23:27:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '15.188.95.229:443->172.16.101.254:1513', '15.188.95.229:443->(192.168.137.2:1513->172.16.101.254:1513)', NULL, '20221015-233001.txt', NULL, NULL),
(381, '10/15/2022 23:28:00', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.160.144.191:443->172.16.101.254:1502', '34.160.144.191:443->(192.168.137.2:1502->172.16.101.254:1502)', NULL, '20221015-233001.txt', NULL, NULL),
(382, '10/15/2022 23:28:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.155:443->172.16.101.254:1508', '74.125.24.155:443->(192.168.137.2:1508->172.16.101.254:1508)', NULL, '20221015-233001.txt', NULL, NULL),
(383, '10/15/2022 23:29:10', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '157.240.7.35:443->172.16.101.254:1510', '157.240.7.35:443->(192.168.137.2:1510->172.16.101.254:1510)', NULL, '20221015-233001.txt', NULL, NULL),
(384, '10/15/2022 23:29:24', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '15.188.95.229:443->172.16.101.254:1517', '15.188.95.229:443->(192.168.137.2:1517->172.16.101.254:1517)', NULL, '20221015-233001.txt', NULL, NULL),
(385, '10/15/2022 23:29:39', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '18.138.205.213:443->172.16.101.254:1512', '18.138.205.213:443->(192.168.137.2:1512->172.16.101.254:1512)', NULL, '20221015-233001.txt', NULL, NULL),
(386, '10/15/2022 23:29:45', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '34.196.134.239:443->172.16.101.254:1309', '34.196.134.239:443->(192.168.137.2:1309->172.16.101.254:1309)', NULL, '20221015-233001.txt', NULL, NULL),
(387, '01/01/1970 00:00:00', '', '', '', '', NULL, '20221015-233001.txt', NULL, NULL),
(388, '10/15/2022 23:30:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '63.140.48.177:443->172.16.101.254:1518', '63.140.48.177:443->(192.168.137.2:1518->172.16.101.254:1518)', NULL, '20221015-233501.txt', NULL, NULL),
(389, '10/15/2022 23:31:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '74.125.24.155:443->172.16.101.254:1516', '74.125.24.155:443->(192.168.137.2:1516->172.16.101.254:1516)', NULL, '20221015-233501.txt', NULL, NULL),
(390, '10/15/2022 23:31:55', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.193.193:443->172.16.101.254:1515', '142.250.193.193:443->(192.168.137.2:1515->172.16.101.254:1515)', NULL, '20221015-233501.txt', NULL, NULL),
(391, '10/15/2022 23:32:02', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.206.163:443->172.16.101.254:1524', '142.250.206.163:443->(192.168.137.2:1524->172.16.101.254:1524)', NULL, '20221015-233501.txt', NULL, NULL),
(392, '10/15/2022 23:32:02', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.206.163:443->172.16.101.254:1525', '142.250.206.163:443->(192.168.137.2:1525->172.16.101.254:1525)', NULL, '20221015-233501.txt', NULL, NULL),
(393, '10/15/2022 23:32:10', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.206.163:443->172.16.101.254:1526', '142.250.206.163:443->(192.168.137.2:1526->172.16.101.254:1526)', NULL, '20221015-233501.txt', NULL, NULL),
(394, '10/15/2022 23:32:10', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.206.163:443->172.16.101.254:1527', '142.250.206.163:443->(192.168.137.2:1527->172.16.101.254:1527)', NULL, '20221015-233501.txt', NULL, NULL),
(395, '10/15/2022 23:32:23', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '63.140.48.177:443->172.16.101.254:1522', '63.140.48.177:443->(192.168.137.2:1522->172.16.101.254:1522)', NULL, '20221015-233501.txt', NULL, NULL),
(396, '10/15/2022 23:33:53', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '63.140.48.177:443->172.16.101.254:1531', '63.140.48.177:443->(192.168.137.2:1531->172.16.101.254:1531)', NULL, '20221015-233501.txt', NULL, NULL),
(397, '10/15/2022 23:34:01', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '52.4.65.159:443->172.16.101.254:1519', '52.4.65.159:443->(192.168.137.2:1519->172.16.101.254:1519)', NULL, '20221015-233501.txt', NULL, NULL),
(398, '10/15/2022 23:34:23', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '18.138.205.213:443->172.16.101.254:1520', '18.138.205.213:443->(192.168.137.2:1520->172.16.101.254:1520)', NULL, '20221015-233501.txt', NULL, NULL),
(399, '10/15/2022 23:34:46', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.194.238:443->172.16.101.254:1521', '142.250.194.238:443->(192.168.137.2:1521->172.16.101.254:1521)', NULL, '20221015-233501.txt', NULL, NULL),
(400, '01/01/1970 00:00:00', '', '', '', '', NULL, '20221015-233501.txt', NULL, NULL),
(401, '10/15/2022 23:35:24', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '63.140.48.177:443->172.16.101.254:1534', '63.140.48.177:443->(192.168.137.2:1534->172.16.101.254:1534)', NULL, '20221015-234001.txt', NULL, NULL),
(402, '10/15/2022 23:36:23', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.77.194:443->172.16.101.254:1530', '142.250.77.194:443->(192.168.137.2:1530->172.16.101.254:1530)', NULL, '20221015-234001.txt', NULL, NULL),
(403, '10/15/2022 23:36:24', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '142.250.206.162:443->172.16.101.254:1532', '142.250.206.162:443->(192.168.137.2:1532->172.16.101.254:1532)', NULL, '20221015-234001.txt', NULL, NULL),
(404, '10/15/2022 23:36:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '63.140.48.177:443->172.16.101.254:1536', '63.140.48.177:443->(192.168.137.2:1536->172.16.101.254:1536)', NULL, '20221015-234001.txt', NULL, NULL),
(405, '10/15/2022 23:38:16', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '18.233.76.133:443->172.16.101.254:1535', '18.233.76.133:443->(192.168.137.2:1535->172.16.101.254:1535)', NULL, '20221015-234001.txt', NULL, NULL),
(406, '10/15/2022 23:38:24', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.36.218.177:443->172.16.101.254:1539', '13.36.218.177:443->(192.168.137.2:1539->172.16.101.254:1539)', NULL, '20221015-234001.txt', NULL, NULL),
(407, '10/15/2022 23:39:46', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '172.217.166.206:443->172.16.101.254:1537', '172.217.166.206:443->(192.168.137.2:1537->172.16.101.254:1537)', NULL, '20221015-234001.txt', NULL, NULL),
(408, '10/15/2022 23:39:54', 'in:ether1_wan out:<pppoe-emran>', '0a:00:27:00:00:13', '13.36.218.177:443->172.16.101.254:1541', '13.36.218.177:443->(192.168.137.2:1541->172.16.101.254:1541)', NULL, '20221015-234001.txt', NULL, NULL);

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

--
-- Table structure for table `user_roles`
--

CREATE TABLE `user_roles` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `role_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Indexes for dumped tables
--

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

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

--
-- Indexes for table `careers`
--
ALTER TABLE `careers`
  ADD PRIMARY KEY (`id`),
  ADD KEY `careers_category_id_foreign` (`category_id`);

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

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

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

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

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

--
-- Indexes for table `nas`
--
ALTER TABLE `nas`
  ADD PRIMARY KEY (`id`),
  ADD KEY `nasname` (`nasname`);

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

--
-- Indexes for table `notices`
--
ALTER TABLE `notices`
  ADD PRIMARY KEY (`id`),
  ADD KEY `notices_category_id_foreign` (`category_id`);

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

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

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

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

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

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

--
-- Indexes for table `radacct`
--
ALTER TABLE `radacct`
  ADD PRIMARY KEY (`radacctid`),
  ADD UNIQUE KEY `acctuniqueid` (`acctuniqueid`),
  ADD KEY `username` (`username`),
  ADD KEY `framedipaddress` (`framedipaddress`),
  ADD KEY `framedipv6address` (`framedipv6address`),
  ADD KEY `framedipv6prefix` (`framedipv6prefix`),
  ADD KEY `framedinterfaceid` (`framedinterfaceid`),
  ADD KEY `delegatedipv6prefix` (`delegatedipv6prefix`),
  ADD KEY `acctsessionid` (`acctsessionid`),
  ADD KEY `acctsessiontime` (`acctsessiontime`),
  ADD KEY `acctstarttime` (`acctstarttime`),
  ADD KEY `acctinterval` (`acctinterval`),
  ADD KEY `acctstoptime` (`acctstoptime`),
  ADD KEY `nasipaddress` (`nasipaddress`),
  ADD KEY `class` (`class`);

--
-- Indexes for table `radcheck`
--
ALTER TABLE `radcheck`
  ADD PRIMARY KEY (`id`),
  ADD KEY `username` (`username`(32));

--
-- Indexes for table `radgroupcheck`
--
ALTER TABLE `radgroupcheck`
  ADD PRIMARY KEY (`id`),
  ADD KEY `groupname` (`groupname`(32));

--
-- Indexes for table `radgroupreply`
--
ALTER TABLE `radgroupreply`
  ADD PRIMARY KEY (`id`),
  ADD KEY `groupname` (`groupname`(32));

--
-- Indexes for table `radpostauth`
--
ALTER TABLE `radpostauth`
  ADD PRIMARY KEY (`id`),
  ADD KEY `username` (`username`),
  ADD KEY `class` (`class`);

--
-- Indexes for table `radreply`
--
ALTER TABLE `radreply`
  ADD PRIMARY KEY (`id`),
  ADD KEY `username` (`username`(32));

--
-- Indexes for table `radusergroup`
--
ALTER TABLE `radusergroup`
  ADD PRIMARY KEY (`id`),
  ADD KEY `username` (`username`(32));

--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
  ADD PRIMARY KEY (`id`),
  ADD KEY `roles_slug_index` (`slug`);

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

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

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

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

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

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

--
-- Indexes for table `user_roles`
--
ALTER TABLE `user_roles`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `user_roles_user_id_role_id_unique` (`user_id`,`role_id`),
  ADD KEY `user_roles_role_id_foreign` (`role_id`);

--
-- AUTO_INCREMENT for dumped tables
--

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

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

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

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

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

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

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

--
-- AUTO_INCREMENT for table `nas`
--
ALTER TABLE `nas`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

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

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

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

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

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

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

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

--
-- AUTO_INCREMENT for table `radacct`
--
ALTER TABLE `radacct`
  MODIFY `radacctid` bigint(21) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=300;

--
-- AUTO_INCREMENT for table `radcheck`
--
ALTER TABLE `radcheck`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=92;

--
-- AUTO_INCREMENT for table `radgroupcheck`
--
ALTER TABLE `radgroupcheck`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `radgroupreply`
--
ALTER TABLE `radgroupreply`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;

--
-- AUTO_INCREMENT for table `radpostauth`
--
ALTER TABLE `radpostauth`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=565;

--
-- AUTO_INCREMENT for table `radreply`
--
ALTER TABLE `radreply`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `radusergroup`
--
ALTER TABLE `radusergroup`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;

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

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

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

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

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

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

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

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

--
-- Constraints for dumped tables
--

--
-- Constraints for table `careers`
--
ALTER TABLE `careers`
  ADD CONSTRAINT `careers_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `careercategories` (`id`);

--
-- Constraints for table `galleries`
--
ALTER TABLE `galleries`
  ADD CONSTRAINT `galleries_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `gallerycategories` (`id`);

--
-- Constraints for table `notices`
--
ALTER TABLE `notices`
  ADD CONSTRAINT `notices_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `noticecategories` (`id`);

--
-- Constraints for table `pages`
--
ALTER TABLE `pages`
  ADD CONSTRAINT `pages_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `pagecategories` (`id`);

--
-- Constraints for table `user_roles`
--
ALTER TABLE `user_roles`
  ADD CONSTRAINT `user_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `user_roles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE 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 */;
