File "database.sql"

Full Path: /home/trinadezambia/public_html/gambling/public/install/database.sql
File size: 201.52 KB
MIME-type: text/plain
Charset: utf-8

-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Mar 12, 2026 at 06:55 AM
-- Server version: 8.0.30
-- PHP Version: 8.3.6

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


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

--
-- Database: `xaxino`
--

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

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

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

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

INSERT INTO `admins` (`id`, `name`, `email`, `username`, `email_verified_at`, `image`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Super Admin', 'admin@site.com', 'admin', NULL, '67206a2c18ac61730177580.png', '$2y$12$xmtRzBzqvjc/W7hXwun8vuezU.mMp62Op79vr.KNYJ0Myb51we1lG', 'Vi88PFbczNZ4OcIryDxDV8TkjruZAPEIESo39nlynVElGv0yKKmwjoqVocAI', NULL, '2024-10-28 22:53:01');

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

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

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

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

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

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

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

--
-- Table structure for table `balance_transfers`
--

CREATE TABLE `balance_transfers` (
  `id` bigint UNSIGNED NOT NULL,
  `sender_id` int UNSIGNED NOT NULL,
  `receiver_id` int UNSIGNED NOT NULL,
  `amount` decimal(28,8) NOT NULL,
  `charge` decimal(28,8) NOT NULL,
  `final_amount` decimal(28,8) NOT NULL,
  `trx` varchar(40) CHARACTER SET utf8mb4 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 `cron_jobs`
--

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

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

INSERT INTO `cron_jobs` (`id`, `name`, `alias`, `action`, `url`, `cron_schedule_id`, `next_run`, `last_run`, `is_running`, `is_default`, `created_at`, `updated_at`) VALUES
(1, 'Incomplete Game', 'incomplete_game', '[\"App\\\\Http\\\\Controllers\\\\CronController\", \"incompleteGame\"]', NULL, 1, '2026-03-11 07:10:03', '2026-03-10 07:10:03', 1, 1, '2024-01-09 08:11:00', '2026-03-10 07:10:03');

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

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

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

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

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

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

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

INSERT INTO `cron_schedules` (`id`, `name`, `interval`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Day', 86400, 1, '2024-01-09 08:06:11', '2024-01-09 08:18:07');

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

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

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

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

--
-- Table structure for table `diamond_requests`
--

CREATE TABLE `diamond_requests` (
  `id` bigint NOT NULL,
  `user_id` int NOT NULL DEFAULT '0',
  `amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `trx` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '0',
  `rejection_reason` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

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

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

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

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

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

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

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

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

CREATE TABLE `frontends` (
  `id` bigint UNSIGNED NOT NULL,
  `tempname` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `data_keys` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `data_values` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `seo_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `views` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `frontends` (`id`, `tempname`, `slug`, `data_keys`, `data_values`, `seo_content`, `views`, `created_at`, `updated_at`) VALUES
(41, NULL, NULL, 'cookie.data', '{\"short_desc\":\"We may use cookies or any other tracking technologies when you visit our website, including any other media form, mobile website, or mobile application related or connected to help customize the Site and improve your experience.\",\"description\":\"<div><h3><font>What information do we collect?<\\/font><\\/h3><p><font>We gather data from you when you register on our site, submit a request, buy any services, react to an overview, or round out a structure. At the point when requesting any assistance or enrolling on our site, as suitable, you might be approached to enter your: name, email address, or telephone number. You may, nonetheless, visit our site anonymously.<\\/font><\\/p><p><font><br><\\/font><\\/p><\\/div><div><h3><font>How do we protect your information?<\\/font><\\/h3><p><font>All provided delicate\\/credit data is sent through Stripe.<br>After an exchange, your private data (credit cards, social security numbers, financials, and so on) won\'t be put away on our workers.<\\/font><\\/p><p><font><br><\\/font><\\/p><\\/div><div><h3><font>Do we disclose any information to outside parties?<\\/font><\\/h3><p><font>We don\'t sell, exchange, or in any case move to outside gatherings by and by recognizable data. This does exclude confided in outsiders who help us in working our site, leading our business, or adjusting you, since those gatherings consent to keep this data private. We may likewise deliver your data when we accept discharge is suitable to follow the law, implement our site strategies, or ensure our own or others\' rights, property, or wellbeing.<\\/font><\\/p><p><font><br><\\/font><\\/p><\\/div><div><h3><font>Children\'s Online Privacy Protection Act Compliance<\\/font><\\/h3><p><font>We are consistent with the prerequisites of COPPA (Children\'s Online Privacy Protection Act), we don\'t gather any data from anybody under 13 years old. Our site, items, and administrations are completely coordinated to individuals who are in any event 13 years of age or more established.<\\/font><\\/p><p><font><br><\\/font><\\/p><\\/div><div><h3><font>Changes to our Privacy Policy<\\/font><\\/h3><p><font>If we decide to change our privacy policy, we will post those changes on this page.<\\/font><\\/p><p><font><br><\\/font><\\/p><\\/div><div><h3><font>How long we retain your information?<\\/font><\\/h3><p><font>At the point when you register for our site, we cycle and keep your information we have about you however long you don\'t erase the record or profit yourself (subject to laws and guidelines).<\\/font><\\/p><p><font><br><\\/font><\\/p><\\/div><div><h3><font>What we don\\u2019t do with your data<\\/font><\\/h3><p><font>We don\'t and will never share, unveil, sell, or in any case give your information to different organizations for the promoting of their items or administrations.<\\/font><\\/p><\\/div>\",\"status\":1}', NULL, 0, '2020-07-04 23:42:52', '2025-04-23 00:48:56'),
(42, 'basic', 'privacy-policy', 'policy_pages.element', '{\"title\":\"Privacy Policy\",\"details\":\"<p><font>Privacy Policy<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>1. Introduction<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>Welcome to Xaxino (\\\"Company\\\", \\\"we\\\", \\\"our\\\", \\\"us\\\"). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information.<\\/font><\\/p><p><font>2. Information We Collect<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We collect personal information that you voluntarily provide to us when you register on the website, express an interest in obtaining information about us or our products and services, when you participate in activities on the website (such as posting messages in our online forums or entering competitions, contests or giveaways), or otherwise when you contact us.<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>The personal information that we collect depends on the context of your interactions with us and the website, the choices you make, and the products and features you use. The personal information we collect can include the following:<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>Personal Information Provided by You: We collect names; phone numbers; email addresses; mailing addresses; job titles; usernames; passwords; contact preferences; contact or authentication data; billing addresses; and other similar information.<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>Social Media Login Data: We may provide you with the option to register using social media account details, like your Facebook, Twitter, or other social media account.<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>3. How We Use Your Information<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We use personal information collected via our website for a variety of business purposes described below. We process your personal information for these purposes in reliance on our legitimate business interests (\\\"Business Purposes\\\"), in order to enter into or perform a contract with you (\\\"Contractual\\\"), with your consent (\\\"Consent\\\"), and\\/or for compliance with our legal obligations (\\\"Legal Reasons\\\"). We indicate the specific processing grounds we rely on next to each purpose listed below:<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>To facilitate account creation and logon process.<\\/font><\\/p><p><font>To send administrative information to you for Business Purposes, Legal Reasons, and\\/or possibly for Contractual reasons.<\\/font><\\/p><p><font>To fulfill and manage your orders for Contractual reasons.<\\/font><\\/p><p><font>To manage user accounts for Business Purposes and\\/or Contractual reasons.<\\/font><\\/p><p><font>To enforce our terms, conditions, and policies for Business Purposes and\\/or Legal Reasons.<\\/font><\\/p><p><font>To respond to legal requests and prevent harm for Legal Reasons.<\\/font><\\/p><p><font>4. Sharing Your Information<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We may process or share your data that we hold based on the following legal basis:<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>Consent: We may process your data if you have given us specific consent to use your personal information in a specific purpose.<\\/font><\\/p><p><font>Legitimate Interests: We may process your data when it is reasonably necessary to achieve our legitimate business interests.<\\/font><\\/p><p><font>Performance of a Contract: Where we have entered into a contract with you, we may process your personal information to fulfill the terms of our contract.<\\/font><\\/p><p><font>Legal Obligations: We may disclose your information where we are legally required to do so in order to comply with applicable law, governmental requests, a judicial proceeding, court order, or legal process.<\\/font><\\/p><p><font>5. Cookies and Other Tracking Technologies<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We may use cookies and similar tracking technologies to access or store information. Specific information about how we use such technologies and how you can refuse certain cookies is set out in our Cookie Policy.<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>6. Data Retention<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We will only keep your personal information for as long as it is necessary for the purposes set out in this privacy policy, unless a longer retention period is required or permitted by law (such as tax, accounting, or other legal requirements).<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>7. Data Security<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We aim to protect your personal information through a system of organizational and technical security measures. However, despite our safeguards and efforts to secure your information, no electronic transmission over the Internet or information storage technology can be guaranteed to be 100% secure.<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>8. Your Privacy Rights<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>In some regions, such as the European Economic Area (EEA), you have rights that allow you greater access to and control over your personal information. These rights may include:<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>The right to request access and obtain a copy of your personal information.<\\/font><\\/p><p><font>The right to request rectification or erasure.<\\/font><\\/p><p><font>The right to restrict the processing of your personal information.<\\/font><\\/p><p><font>The right to data portability.<\\/font><\\/p><p><font>9. Updates to This Policy<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We may update this privacy policy from time to time in order to reflect, for example, changes to our practices or for other operational, legal, or regulatory reasons.<\\/font><\\/p><div><br \\/><\\/div>\"}', NULL, 0, '2021-06-09 08:50:42', '2026-03-11 02:05:21'),
(43, 'basic', 'terms-of-service', 'policy_pages.element', '{\"title\":\"Terms of Service\",\"details\":\"<p>Terms of Service<\\/p><p><br \\/><\\/p><p>1. Introduction<\\/p><p><br \\/><\\/p><p>Welcome to Xaxino (\\\"Company\\\", \\\"we\\\", \\\"our\\\", \\\"us\\\"). These Terms of Service (\\\"Terms\\\") govern your use of our website located at [Website URL] (the \\\"Site\\\") and our services (collectively, the \\\"Services\\\"). By accessing or using the Services, you agree to be bound by these Terms. If you do not agree to these Terms, please do not use the Services.<\\/p><p><br \\/><\\/p><p>2. Use of the Services<\\/p><p><br \\/><\\/p><p>Eligibility: You must be at least 18 years old to use the Services. By using the Services, you represent and warrant that you have the legal capacity to enter into these Terms.<\\/p><p><br \\/><\\/p><p>Account Registration: To access certain features of the Services, you may need to register for an account. You agree to provide accurate, current, and complete information during the registration process and to update such information to keep it accurate, current, and complete. You are responsible for safeguarding your account credentials and for all activities that occur under your account.<\\/p><p><br \\/><\\/p><p>Prohibited Conduct: You agree not to use the Services for any unlawful purpose or in any way that could harm the Services, or any person or entity, as determined by us in our sole discretion. Prohibited conduct includes, but is not limited to:<\\/p><p><br \\/><\\/p><p>Violating any applicable laws or regulations.<\\/p><p>Infringing on the rights of others.<\\/p><p>Interfering with the security or operation of the Services.<\\/p><p>Sending spam or engaging in other disruptive or harmful activities.<\\/p><p>3. Intellectual Property<\\/p><p><br \\/><\\/p><p>All content, trademarks, service marks, logos, and other intellectual property displayed on the Services are the property of Xaxino or its licensors. You are not permitted to use these without our prior written consent.<\\/p><p><br \\/><\\/p><p>4. User Content<\\/p><p><br \\/><\\/p><p>You may be able to submit, post, or upload content to the Services (\\\"User Content\\\"). By submitting User Content, you grant Xaxino a non-exclusive, worldwide, royalty-free, perpetual, irrevocable license to use, reproduce, modify, distribute, display, and perform the User Content in connection with the Services. You represent and warrant that you have all rights necessary to grant this license.<\\/p><p><br \\/><\\/p><p>5. Termination<\\/p><p><br \\/><\\/p><p>We may terminate or suspend your access to the Services, without prior notice or liability, for any reason, including if you breach these Terms. Upon termination, your right to use the Services will immediately cease.<\\/p><p><br \\/><\\/p><p>6. Disclaimers and Limitation of Liability<\\/p><p><br \\/><\\/p><p>Disclaimer of Warranties: The Services are provided \\\"as is\\\" and \\\"as available\\\" without warranties of any kind, either express or implied. We disclaim all warranties, including any implied warranties of merchantability, fitness for a particular purpose, title, and non-infringement.<\\/p><p><br \\/><\\/p><p>Limitation of Liability: To the fullest extent permitted by law, in no event shall [Company Name], its affiliates, directors, employees, or agents be liable for any indirect, incidental, special, consequential, or punitive damages, or any loss of profits or revenues, whether incurred directly or indirectly, or any loss of data, use, goodwill, or other intangible losses, resulting from (a) your use of or inability to use the Services; (b) any unauthorized access to or use of our servers and\\/or any personal information stored therein; (c) any interruption or cessation of transmission to or from the Services; (d) any bugs, viruses, trojan horses, or the like that may be transmitted to or through our Services by any third party; (e) any errors or omissions in any content or for any loss or damage incurred as a result of the use of any content posted, emailed, transmitted, or otherwise made available through the Services; and\\/or (f) the defamatory, offensive, or illegal conduct of any third party.<\\/p><p><br \\/><\\/p><p>7. Indemnification<\\/p><p><br \\/><\\/p><p>You agree to indemnify, defend, and hold harmless [Company Name], its affiliates, officers, directors, employees, and agents, from and against any and all claims, liabilities, damages, losses, costs, and expenses, including, but not limited to, reasonable legal and accounting fees, arising out of or in any way connected with your access to or use of the Services, or your violation of these Terms.<\\/p><p><br \\/><\\/p><p>8. Governing Law and Dispute Resolution<\\/p><p><br \\/><\\/p><p>These Terms shall be governed by and construed in accordance with the laws of [Your State\\/Country], without regard to its conflict of law principles. Any dispute arising out of or relating to these Terms or the Services shall be resolved through binding arbitration conducted in [Your City\\/State], except that either party may seek injunctive or other equitable relief in a court of competent jurisdiction.<\\/p><p><br \\/><\\/p><p>9. Changes to These Terms<\\/p><p><br \\/><\\/p><p>We reserve the right to modify these Terms at any time. If we make changes, we will provide notice of such changes by posting the updated Terms on the Site or through other communications. Your continued use of the Services after the changes become effective constitutes your acceptance of the new Terms.<\\/p>\"}', NULL, 0, '2021-06-09 08:51:18', '2024-05-21 03:04:33'),
(44, NULL, NULL, 'maintenance.data', '{\"description\":\"<div><h3 style=\\\"text-align: center; \\\">We\'ll Be Right Back!<\\/h3><p style=\\\"text-align: center; \\\">Sorry, we are down for maintenance but we will be back as soon as possible.<\\/p><\\/div>\",\"image\":\"664c4d013dfba1716276481.png\"}', NULL, 0, '2020-07-04 23:42:52', '2024-05-21 01:28:01'),
(45, 'basic', NULL, 'banner.content', '{\"has_image\":\"1\",\"heading\":\"Play online games and win a lot of bonuses\",\"subheading\":\"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos error quo cum illum, alias similique, suscipit nihil tempore.\",\"button_one\":\"Sign Up\",\"button_url_one\":\"user\\/register\",\"button_two\":\"Sign In\",\"button_url_two\":\"user\\/login\",\"image\":\"6305cef1a72c51661325041.jpg\"}', NULL, 0, '2022-08-24 05:40:41', '2022-10-19 06:11:22'),
(46, 'basic', NULL, 'about.content', '{\"has_image\":\"1\",\"heading\":\"About\",\"description\":\"Maecenas sagittis turpis vel orci malesuada\",\"button\":\"Learn More\",\"button_url\":\"about-us\",\"image\":\"6305cf36ddbcf1661325110.png\"}', NULL, 0, '2022-08-24 05:41:50', '2022-09-25 07:47:59'),
(47, 'basic', NULL, 'about.element', '{\"icon\":\"<i class=\\\"las la-cogs\\\"><\\/i>\",\"title\":\"Best Platform\"}', NULL, 0, '2022-08-24 05:42:12', '2022-08-24 05:42:12'),
(48, 'basic', '', 'about.element', '{\"icon\":\"<i class=\\\"las la-gem\\\"><\\/i>\",\"title\":\"Register Bonus\"}', NULL, 0, '2022-08-24 05:42:24', '2026-03-07 05:00:13'),
(49, 'basic', '', 'about.element', '{\"icon\":\"<i class=\\\"las la-times\\\"><\\/i>\",\"title\":\"No Hidden Charge\"}', NULL, 0, '2022-08-24 05:42:34', '2026-03-07 05:00:42'),
(50, 'basic', NULL, 'about.element', '{\"icon\":\"<i class=\\\"las la-hands-helping\\\"><\\/i>\",\"title\":\"24\\/7 Support\"}', NULL, 0, '2022-08-24 05:42:44', '2022-08-24 05:42:44'),
(52, 'basic', NULL, 'game.content', '{\"heading\":\"Our Awesome Games\",\"subheading\":\"Dolor sit amet consectetur adipisicing elit. Ipsa, harum quidem fuga ipsam dolores odio architecto, non neque minima atque nisi temporibus ullam\"}', NULL, 0, '2022-08-24 05:43:37', '2022-08-24 05:43:37'),
(53, 'basic', NULL, 'trx_win.content', '{\"heading\":\"Latest Transactions And Winners\",\"subheading\":\"Dolor sit amet consectetur adipisicing elit. Ipsa, harum quidem fuga ipsam dolores odio architecto, non neque minima atque nisi temporibus ullam\"}', NULL, 0, '2022-08-24 05:44:18', '2022-08-24 05:44:18'),
(54, 'basic', NULL, 'why_choose_us.content', '{\"has_image\":\"1\",\"heading\":\"Why Choose Xaxino\",\"subheading\":\"Dolor sit amet consectetur adipisicing elit. Ipsa, harum quidem fuga ipsam dolores odio architecto, non neque minima atque nisi tempor\",\"image\":\"6305d01520d811661325333.jpg\"}', NULL, 0, '2022-08-24 05:45:33', '2022-08-24 05:45:33'),
(55, 'basic', NULL, 'why_choose_us.element', '{\"icon\":\"<i class=\\\"far fa-heart\\\"><\\/i>\",\"title\":\"Awesome Gaming Platform\",\"description\":\"Adipisci harum cum, ipsum nulla hic earum quidem repellat ad! At quam odio non harum minima nihil exercitationem ex, distinctio.\"}', NULL, 0, '2022-08-24 05:45:47', '2022-08-24 05:45:47'),
(56, 'basic', '', 'why_choose_us.element', '{\"icon\":\"<i class=\\\"fab fa-hubspot\\\"><\\/i>\",\"title\":\"Demo Play System\",\"description\":\"Adipisci harum cum, ipsum nulla hic earum quidem repellat ad! At quam odio non harum minima nihil exercitationem ex, distinctio.\"}', NULL, 0, '2022-08-24 05:46:00', '2026-03-07 05:01:24'),
(57, 'basic', '', 'why_choose_us.element', '{\"icon\":\"<i class=\\\"las la-headset\\\"><\\/i>\",\"title\":\"Fast & Reliable Support\",\"description\":\"Got a question or need help? Our 24\\/7 customer support team is always here to assist you. We\\u2019re committed to providing quick and friendly service whenever you need it.\"}', NULL, 0, '2022-08-24 05:46:12', '2025-04-23 00:46:18'),
(58, 'basic', NULL, 'why_choose_us.element', '{\"icon\":\"<i class=\\\"las la-dollar-sign\\\"><\\/i>\",\"title\":\"Invest Win And Earn\",\"description\":\"Adipisci harum cum, ipsum nulla hic earum quidem repellat ad! At quam odio non harum minima nihil exercitationem ex, distinctio.\"}', NULL, 0, '2022-08-24 05:46:24', '2022-08-24 05:46:24'),
(59, 'basic', NULL, 'why_choose_us.element', '{\"icon\":\"<i class=\\\"lar la-hand-paper\\\"><\\/i>\",\"title\":\"Quick Response\",\"description\":\"Adipisci harum cum, ipsum nulla hic earum quidem repellat ad! At quam odio non harum minima nihil exercitationem ex, distinctio.\"}', NULL, 0, '2022-08-24 05:46:37', '2022-08-24 05:46:37'),
(60, 'basic', '', 'why_choose_us.element', '{\"icon\":\"<i class=\\\"lab la-amazon-pay\\\"><\\/i>\",\"title\":\"Balance Transfer System\",\"description\":\"Adipisci harum cum, ipsum nulla hic earum quidem repellat ad! At quam odio non harum minima nihil exercitationem ex, distinctio.\"}', NULL, 0, '2022-08-24 05:46:48', '2026-03-07 05:01:33'),
(61, 'basic', NULL, 'statistics.element', '{\"icon\":\"<i class=\\\"las la-users\\\"><\\/i>\",\"title\":\"Total User\",\"amount\":\"1,255,000\"}', NULL, 0, '2022-08-24 05:52:06', '2022-08-24 05:52:06'),
(62, 'basic', NULL, 'statistics.element', '{\"icon\":\"<i class=\\\"las la-trophy\\\"><\\/i>\",\"title\":\"Total Winners\",\"amount\":\"845,000\"}', NULL, 0, '2022-08-24 05:52:22', '2022-08-24 05:52:22'),
(63, 'basic', '', 'statistics.element', '{\"icon\":\"<i class=\\\"las la-gem\\\"><\\/i>\",\"title\":\"Total Played\",\"amount\":\"4,845,000\"}', NULL, 0, '2022-08-24 05:52:36', '2026-03-07 04:59:09'),
(64, 'basic', '', 'statistics.element', '{\"icon\":\"<i class=\\\"las la-gift\\\"><\\/i>\",\"title\":\"Total Bonus\",\"amount\":\"945,000\"}', NULL, 0, '2022-08-24 05:52:48', '2026-03-07 04:59:41'),
(65, 'basic', NULL, 'faq.content', '{\"heading\":\"Frequently Asked Questions\",\"subheading\":\"Dolor sit amet consectetur adipisicing elit. Ipsa, harum quidem fuga ipsam dolores odio architecto, non neque minima atque nisi temporibus ullam\"}', NULL, 0, '2022-08-24 05:53:26', '2022-08-24 05:53:26'),
(66, 'basic', NULL, 'faq.element', '{\"question\":\"Why Xaxino?\",\"answer\":\"Donec quisque sem molestie tortor ut, libero libero interdum nec quisque, et scelerisque nam, elit lectus mauris sed maecenas. Veniam urna eget habitasse aliquam\"}', NULL, 0, '2022-08-24 05:53:34', '2022-08-24 05:53:34'),
(67, 'basic', NULL, 'faq.element', '{\"question\":\"How to prediction?\",\"answer\":\"Donec quisque sem molestie tortor ut, libero libero interdum nec quisque, et scelerisque nam, elit lectus mauris sed maecenas. Veniam urna eget habitasse aliquam\"}', NULL, 0, '2022-08-24 05:53:43', '2022-08-24 05:53:43'),
(68, 'basic', NULL, 'faq.element', '{\"question\":\"Our vission And mission?\",\"answer\":\"Donec quisque sem molestie tortor ut, libero libero interdum nec quisque, et scelerisque nam, elit lectus mauris sed maecenas. Veniam urna eget habitasse aliquam\"}', NULL, 0, '2022-08-24 05:53:52', '2022-08-24 05:53:52'),
(69, 'basic', NULL, 'faq.element', '{\"question\":\"Why Xaxino?\",\"answer\":\"Donec quisque sem molestie tortor ut, libero libero interdum nec quisque, et scelerisque nam, elit lectus mauris sed maecenas. Veniam urna eget habitasse aliquam\"}', NULL, 0, '2022-08-24 05:54:02', '2022-08-24 05:54:02'),
(70, 'basic', NULL, 'faq.element', '{\"question\":\"How to prediction?\",\"answer\":\"Donec quisque sem molestie tortor ut, libero libero interdum nec quisque, et scelerisque nam, elit lectus mauris sed maecenas. Veniam urna eget habitasse aliquam\"}', NULL, 0, '2022-08-24 05:54:15', '2022-08-24 05:54:15'),
(71, 'basic', NULL, 'faq.element', '{\"question\":\"Our vission And mission?\",\"answer\":\"Donec quisque sem molestie tortor ut, libero libero interdum nec quisque, et scelerisque nam, elit lectus mauris sed maecenas. Veniam urna eget habitasse aliquam\"}', NULL, 0, '2022-08-24 05:54:23', '2022-08-24 05:54:23'),
(72, 'basic', NULL, 'faq.element', '{\"question\":\"Our vission And mission?\",\"answer\":\"Donec quisque sem molestie tortor ut, libero libero interdum nec quisque, et scelerisque nam, elit lectus mauris sed maecenas. Veniam urna eget habitasse aliquam\"}', NULL, 0, '2022-08-24 05:54:31', '2022-08-24 05:54:31'),
(73, 'basic', NULL, 'faq.element', '{\"question\":\"How to predict?\",\"answer\":\"Donec quisque sem molestie tortor ut, libero libero interdum nec quisque, et scelerisque nam, elit lectus mauris sed maecenas. Veniam urna eget habitasse aliquam\"}', NULL, 0, '2022-08-24 05:54:38', '2022-08-24 05:54:38'),
(74, 'basic', NULL, 'how_work.content', '{\"heading\":\"How Work Xaxino\"}', NULL, 0, '2022-08-24 05:56:32', '2022-08-24 05:56:32'),
(75, 'basic', '', 'how_work.element', '{\"icon\":\"<i class=\\\"las la-user-plus\\\"><\\/i>\",\"title\":\"Sign Up\",\"description\":\"Amet odit iure eaeos autiste perferendis numquam sint excepturi.\"}', NULL, 0, '2022-08-24 05:56:43', '2026-03-07 05:02:26'),
(76, 'basic', '', 'how_work.element', '{\"icon\":\"<i class=\\\"las la-gem\\\"><\\/i>\",\"title\":\"Get Bonus\",\"description\":\"Amet odit iure eaeos autiste perferendis numquam sint excepturi.\"}', NULL, 0, '2022-08-24 05:56:54', '2026-03-07 05:02:47'),
(77, 'basic', '', 'how_work.element', '{\"icon\":\"<i class=\\\"las la-trophy\\\"><\\/i>\",\"title\":\"Play Game\",\"description\":\"Amet odit iure eaeos autiste perferendis numquam sint excepturi.\"}', NULL, 0, '2022-08-24 05:57:06', '2026-03-07 05:03:02'),
(78, 'basic', '', 'how_work.element', '{\"icon\":\"<i class=\\\"las la-gift\\\"><\\/i>\",\"title\":\"Win Bonus\",\"description\":\"Amet odit iure eaeos autiste perferendis numquam sint excepturi.\"}', NULL, 0, '2022-08-24 05:57:19', '2026-03-07 05:03:13'),
(79, 'basic', NULL, 'cta.content', '{\"has_image\":\"1\",\"heading\":\"Buy ticket and get million dollars for a click\",\"button\":\"Play Now\",\"button_url\":\"games\",\"image\":\"6305d32481af81661326116.jpg\"}', NULL, 0, '2022-08-24 05:58:36', '2022-09-03 07:19:55'),
(80, 'basic', NULL, 'referral.content', '{\"has_image\":\"1\",\"heading\":\"15% Referral Commission\",\"description\":\"<p style=\\\"margin-right:0px;margin-left:0px;font-size:16px;color:rgba(255,255,255,0.7);font-family:\'Open Sans\', sans-serif;background-color:rgb(6,3,34);\\\">Lorem\\r\\n ipsum dolor sit amet consectetur adipisicing elit. Reiciendis omnis \\r\\nrecusandae non quos aspernatur? Quisquam excepturi nobis laborum minima \\r\\nrecusandae, quidem voluptas, iusto fuga animi omnis eius eos assumenda \\r\\ndolore ipsum adipisci, iure aliquam exercitationem qui aliquid aperiam \\r\\ndolorum voluptate? Esse corrupti quia voluptatum minima natus voluptas \\r\\naspernatur quisquam id.<\\/p><p style=\\\"margin-right:0px;margin-left:0px;color:rgba(255,255,255,0.85);font-family:Roboto, sans-serif;font-size:16px;background-color:rgb(2,12,37);\\\"><\\/p><ul class=\\\"cmn-list\\\" style=\\\"margin-top:20px;color:rgba(255,255,255,0.85);font-family:Roboto, sans-serif;background-color:rgb(2,12,37);\\\"><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;padding-left:40px;\\\">10% Bibendum purus feugiat at, dolor convallis auctor congue Aliquam urna et neque nulla proin<\\/li><li style=\\\"margin-top:15px;margin-right:0px;margin-left:0px;padding-left:40px;\\\">03% Magnis faucibus amet irure metus, adipiscing ultricies elit interdum odio vel nibh.<\\/li><li style=\\\"margin-top:15px;margin-right:0px;margin-left:0px;padding-left:40px;\\\">02% Magnis faucibus amet irure metus, adipiscing ultricies elit interdu<\\/li><\\/ul>\",\"image\":\"6305d36b4f7971661326187.png\"}', NULL, 0, '2022-08-24 05:59:47', '2022-08-24 05:59:47'),
(81, 'basic', NULL, 'testimonial.content', '{\"heading\":\"What User Say About Xaxino\"}', NULL, 0, '2022-08-24 06:00:21', '2022-08-24 06:00:21'),
(82, 'basic', NULL, 'testimonial.element', '{\"has_image\":\"1\",\"name\":\"Auyesha Hatun\",\"quote\":\"Doloribus porro nobis in provident rem eum reandae quasi voluptatum, quibusdam et itaque tenetur quos alias quo harum officiis quis vero. Enim omnis porro, cupiditate repellat harum et eius distinctio neque dolorem expedita obcaecati commodi.\",\"image\":\"6305d39d9015f1661326237.jpg\"}', NULL, 0, '2022-08-24 06:00:37', '2022-08-24 06:00:37'),
(83, 'basic', NULL, 'testimonial.element', '{\"has_image\":\"1\",\"name\":\"Raba Khan\",\"quote\":\"Doloribus porro nobis in provident rem eum reandae quasi voluptatum, quibusdam et itaque tenetur quos alias quo harum officiis quis vero. Enim omnis porro, cupiditate repellat harum et eius distinctio neque dolorem expedita obcaecati commodi.\",\"image\":\"6305d3aa9b8261661326250.jpg\"}', NULL, 0, '2022-08-24 06:00:50', '2022-08-24 06:00:50'),
(84, 'basic', NULL, 'testimonial.element', '{\"has_image\":\"1\",\"name\":\"Shunil Bhat\",\"quote\":\"Doloribus porro nobis in provident rem eum reandae quasi voluptatum, quibusdam et itaque tenetur quos alias quo harum officiis quis vero. Enim omnis porro, cupiditate repellat harum et eius distinctio neque dolorem expedita obcaecati commodi.\",\"image\":\"6305d3b9248db1661326265.jpg\"}', NULL, 0, '2022-08-24 06:01:05', '2022-08-24 06:01:05'),
(85, 'basic', NULL, 'testimonial.element', '{\"has_image\":\"1\",\"name\":\"Raziya Khanam\",\"quote\":\"Doloribus porro nobis in provident rem eum reandae quasi voluptatum, quibusdam et itaque tenetur quos alias quo harum officiis quis vero. Enim omnis porro, cupiditate repellat harum et eius distinctio neque dolorem expedita obcaecati commodi.\",\"image\":\"6305d3c84dc131661326280.jpg\"}', NULL, 0, '2022-08-24 06:01:20', '2022-08-24 06:01:20'),
(98, 'basic', NULL, 'blog.content', '{\"heading\":\"Our Blog News\",\"subheading\":\"Dolor sit amet consectetur adipisicing elit. Ipsa, harum quidem fuga ipsam dolores odio architecto, non neque minima atque nisi temporibus ullam\"}', NULL, 0, '2022-08-24 07:03:26', '2022-08-24 07:03:26'),
(99, 'basic', 'suspendisse-faucibus-nunc-et-pellentesque-egestas', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Suspendisse faucibus, nunc et pellentesque egestas\",\"description\":\"<p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Pellentesque\\r\\n magna vel fermentum, libero nulla fermentum integer elit ut maecenas, \\r\\ndiam suspendisse lectus, felis elit cras sint orci. Neque sit donec \\r\\narcu, ornare odio pulvinar ante aliquam, luctus ac ut justo sapien orci \\r\\na, eros blan proin vehicula morbi. Sed dui ut odio tristique, \\r\\nsuspendisse sapien laoreet, placerat lectus ornare placerat, libero ac \\r\\nsapien tincidunt consectetuer, vestibulum vivamus at nonummy sem. Nunc \\r\\nconvallis ornare non eget vitae, lectus pleradibus molestie, egestas \\r\\namet vestibulum ac faucibus mi, ultricies atque ornare malesuada morbi \\r\\nparturient, donec tempus suspendisse scelerisque phasellus. Porttitor \\r\\nultricies porttitor lacus arcu ultricies vitae, tempor mattis arcu sed \\r\\nviverra arcu natus, in wisi wisi dictum commodo erat justo, volutpat \\r\\nelit iaculis. Sit vel mauris nec magna odio. Et vel lobortis et. Aliquam\\r\\n enim felis turpis quis magnis consectetuer, tristique justo pulvinar mi\\r\\n libero maxime lectus. In massa semper reiciendis nulla a ante, quis \\r\\nvel, cras morbi sed.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Malesuada\\r\\n massa nibh interdum vel, adipiscing amet, vestibulum pede, nec ut vitae\\r\\n eros volutpat cras. Sed venenatis hymenaeos vestibulum at magna, ipsa \\r\\nmollis posuere ante lorem, sed erat, pulvinar vestibulum. Litora \\r\\npraesent duis eu amet at. Interdum urna eu malesuada vestibulum \\r\\ncurabitur velit, wisi vitae. Nulla sem. Mauris venenatis a vivamus sit, \\r\\negestas magna commodo vestibulum amet libero.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Turpis\\r\\n fusce dui, sed dui donec pharetra, integer imperdiet molestie \\r\\ntristique. Eros non et consectetuer sem, saepe nec nunc, feugiat ut \\r\\ntortor cras senectus fusce, euismod etiam mollis pharetra, commodo \\r\\ninceptos arcu aliquam lormet dui sit rutrum feugiat vivamus, integer \\r\\nleo. Hac eu urna eleifend quisque, at urna. Urna vel cras, pulvinar a \\r\\nnam leo gravida pede curabitur. Id justo dignissim pellentesque at, amet\\r\\n odit fusce, sit rutrum justo. Ornare nec nunc nibh consectetuer, \\r\\nullamcorper montes sociis. Etiam luctus porta velit, sed pellentesque \\r\\nmetus commodo<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Enim\\r\\n malesuada massa nibh interdum vel, adipiscing amet, vestibulum pede, \\r\\nnec ut vitae eros volutpat crasSeivenatis hymenaeos vestibulum at magna,\\r\\n ipsa mollis posuere ante lorem, sed erat, pulvinar vestibulum. Litora \\r\\npesent duis eu amet at. Interdum urna eu malesuada vestibulum curabitur \\r\\nvelit, wisi vitae. Nulla sem. Mauris venenatis a vivamus sit, egestas \\r\\nmagna commodo vestibulum, amet libero. commodo erat justo, volutpat elit\\r\\n iaculis. Sit vel mauris nec magna odio. Et vel lobortis et. Aliquam \\r\\nenim felis turpis quis magnis consectetuer, tristique justo pulvinar mi \\r\\nlibero maxime lectus. In massa semper reiciendis nulla a ante quis \\r\\nvelcras morbi sed.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Feugiat\\r\\n nibh, dis magna fusce turpis ut ante quam, ante neque non condimentum \\r\\nnec montes, enim vitae interdum. Id elementum enim volutpat pharetra \\r\\nerat sapien. Penatibus tincidunt praesent fringilla, dui eget in \\r\\ntristique nam nullam feugiat, sit auctor integer arcu risus. Aliquam \\r\\ninterdum nulla vestibulum sit, molestie elit eros mi, at nunc eget \\r\\nposuere duis. Gravida cum sit, nam nibh interdum nulla, suspendisse \\r\\nadipiscing fusce wisi. Curabitur ac non aptent volutpat nascetur sed, \\r\\nodio iaculis placerat, neque integer. Sagittis mauris egestas consequat \\r\\nsunt cras, sapien ac nunc magnis nisl, sed mi integer in. Accumsan dui, \\r\\nerat tristique tristique vitae mi augue.<\\/p>\",\"image\":\"630600f0daf711661337840.jpg\"}', NULL, 232, '2022-08-24 07:05:20', '2024-05-21 00:43:10'),
(100, 'basic', 'aenean-leo-ligula-porttitor-eu-consequat-vitae-eleifend-ac-enim', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim\",\"description\":\"<p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Pellentesque\\r\\n magna vel fermentum, libero nulla fermentum integer elit ut maecenas, \\r\\ndiam suspendisse lectus, felis elit cras sint orci. Neque sit donec \\r\\narcu, ornare odio pulvinar ante aliquam, luctus ac ut justo sapien orci \\r\\na, eros blan proin vehicula morbi. Sed dui ut odio tristique, \\r\\nsuspendisse sapien laoreet, placerat lectus ornare placerat, libero ac \\r\\nsapien tincidunt consectetuer, vestibulum vivamus at nonummy sem. Nunc \\r\\nconvallis ornare non eget vitae, lectus pleradibus molestie, egestas \\r\\namet vestibulum ac faucibus mi, ultricies atque ornare malesuada morbi \\r\\nparturient, donec tempus suspendisse scelerisque phasellus. Porttitor \\r\\nultricies porttitor lacus arcu ultricies vitae, tempor mattis arcu sed \\r\\nviverra arcu natus, in wisi wisi dictum commodo erat justo, volutpat \\r\\nelit iaculis. Sit vel mauris nec magna odio. Et vel lobortis et. Aliquam\\r\\n enim felis turpis quis magnis consectetuer, tristique justo pulvinar mi\\r\\n libero maxime lectus. In massa semper reiciendis nulla a ante, quis \\r\\nvel, cras morbi sed.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Malesuada\\r\\n massa nibh interdum vel, adipiscing amet, vestibulum pede, nec ut vitae\\r\\n eros volutpat cras. Sed venenatis hymenaeos vestibulum at magna, ipsa \\r\\nmollis posuere ante lorem, sed erat, pulvinar vestibulum. Litora \\r\\npraesent duis eu amet at. Interdum urna eu malesuada vestibulum \\r\\ncurabitur velit, wisi vitae. Nulla sem. Mauris venenatis a vivamus sit, \\r\\negestas magna commodo vestibulum amet libero.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Turpis\\r\\n fusce dui, sed dui donec pharetra, integer imperdiet molestie \\r\\ntristique. Eros non et consectetuer sem, saepe nec nunc, feugiat ut \\r\\ntortor cras senectus fusce, euismod etiam mollis pharetra, commodo \\r\\ninceptos arcu aliquam lormet dui sit rutrum feugiat vivamus, integer \\r\\nleo. Hac eu urna eleifend quisque, at urna. Urna vel cras, pulvinar a \\r\\nnam leo gravida pede curabitur. Id justo dignissim pellentesque at, amet\\r\\n odit fusce, sit rutrum justo. Ornare nec nunc nibh consectetuer, \\r\\nullamcorper montes sociis. Etiam luctus porta velit, sed pellentesque \\r\\nmetus commodo<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Enim\\r\\n malesuada massa nibh interdum vel, adipiscing amet, vestibulum pede, \\r\\nnec ut vitae eros volutpat crasSeivenatis hymenaeos vestibulum at magna,\\r\\n ipsa mollis posuere ante lorem, sed erat, pulvinar vestibulum. Litora \\r\\npesent duis eu amet at. Interdum urna eu malesuada vestibulum curabitur \\r\\nvelit, wisi vitae. Nulla sem. Mauris venenatis a vivamus sit, egestas \\r\\nmagna commodo vestibulum, amet libero. commodo erat justo, volutpat elit\\r\\n iaculis. Sit vel mauris nec magna odio. Et vel lobortis et. Aliquam \\r\\nenim felis turpis quis magnis consectetuer, tristique justo pulvinar mi \\r\\nlibero maxime lectus. In massa semper reiciendis nulla a ante quis \\r\\nvelcras morbi sed.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Feugiat\\r\\n nibh, dis magna fusce turpis ut ante quam, ante neque non condimentum \\r\\nnec montes, enim vitae interdum. Id elementum enim volutpat pharetra \\r\\nerat sapien. Penatibus tincidunt praesent fringilla, dui eget in \\r\\ntristique nam nullam feugiat, sit auctor integer arcu risus. Aliquam \\r\\ninterdum nulla vestibulum sit, molestie elit eros mi, at nunc eget \\r\\nposuere duis. Gravida cum sit, nam nibh interdum nulla, suspendisse \\r\\nadipiscing fusce wisi. Curabitur ac non aptent volutpat nascetur sed, \\r\\nodio iaculis placerat, neque integer. Sagittis mauris egestas consequat \\r\\nsunt cras, sapien ac nunc magnis nisl, sed mi integer in. Accumsan dui, \\r\\nerat tristique tristique vitae mi augue.<\\/p>\",\"image\":\"630600fc05c8a1661337852.jpg\"}', NULL, 276, '2022-08-24 07:05:44', '2026-03-07 23:08:57'),
(101, 'basic', 'pellentesque-posuere-vivamus-in-erat-ut-urna-cursus-vestibulum', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Pellentesque posuere. Vivamus in erat ut urna cursus vestibulum.\",\"description\":\"<p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Pellentesque\\r\\n magna vel fermentum, libero nulla fermentum integer elit ut maecenas, \\r\\ndiam suspendisse lectus, felis elit cras sint orci. Neque sit donec \\r\\narcu, ornare odio pulvinar ante aliquam, luctus ac ut justo sapien orci \\r\\na, eros blan proin vehicula morbi. Sed dui ut odio tristique, \\r\\nsuspendisse sapien laoreet, placerat lectus ornare placerat, libero ac \\r\\nsapien tincidunt consectetuer, vestibulum vivamus at nonummy sem. Nunc \\r\\nconvallis ornare non eget vitae, lectus pleradibus molestie, egestas \\r\\namet vestibulum ac faucibus mi, ultricies atque ornare malesuada morbi \\r\\nparturient, donec tempus suspendisse scelerisque phasellus. Porttitor \\r\\nultricies porttitor lacus arcu ultricies vitae, tempor mattis arcu sed \\r\\nviverra arcu natus, in wisi wisi dictum commodo erat justo, volutpat \\r\\nelit iaculis. Sit vel mauris nec magna odio. Et vel lobortis et. Aliquam\\r\\n enim felis turpis quis magnis consectetuer, tristique justo pulvinar mi\\r\\n libero maxime lectus. In massa semper reiciendis nulla a ante, quis \\r\\nvel, cras morbi sed.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Malesuada\\r\\n massa nibh interdum vel, adipiscing amet, vestibulum pede, nec ut vitae\\r\\n eros volutpat cras. Sed venenatis hymenaeos vestibulum at magna, ipsa \\r\\nmollis posuere ante lorem, sed erat, pulvinar vestibulum. Litora \\r\\npraesent duis eu amet at. Interdum urna eu malesuada vestibulum \\r\\ncurabitur velit, wisi vitae. Nulla sem. Mauris venenatis a vivamus sit, \\r\\negestas magna commodo vestibulum amet libero.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Turpis\\r\\n fusce dui, sed dui donec pharetra, integer imperdiet molestie \\r\\ntristique. Eros non et consectetuer sem, saepe nec nunc, feugiat ut \\r\\ntortor cras senectus fusce, euismod etiam mollis pharetra, commodo \\r\\ninceptos arcu aliquam lormet dui sit rutrum feugiat vivamus, integer \\r\\nleo. Hac eu urna eleifend quisque, at urna. Urna vel cras, pulvinar a \\r\\nnam leo gravida pede curabitur. Id justo dignissim pellentesque at, amet\\r\\n odit fusce, sit rutrum justo. Ornare nec nunc nibh consectetuer, \\r\\nullamcorper montes sociis. Etiam luctus porta velit, sed pellentesque \\r\\nmetus commodo<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Enim\\r\\n malesuada massa nibh interdum vel, adipiscing amet, vestibulum pede, \\r\\nnec ut vitae eros volutpat crasSeivenatis hymenaeos vestibulum at magna,\\r\\n ipsa mollis posuere ante lorem, sed erat, pulvinar vestibulum. Litora \\r\\npesent duis eu amet at. Interdum urna eu malesuada vestibulum curabitur \\r\\nvelit, wisi vitae. Nulla sem. Mauris venenatis a vivamus sit, egestas \\r\\nmagna commodo vestibulum, amet libero. commodo erat justo, volutpat elit\\r\\n iaculis. Sit vel mauris nec magna odio. Et vel lobortis et. Aliquam \\r\\nenim felis turpis quis magnis consectetuer, tristique justo pulvinar mi \\r\\nlibero maxime lectus. In massa semper reiciendis nulla a ante quis \\r\\nvelcras morbi sed.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Feugiat\\r\\n nibh, dis magna fusce turpis ut ante quam, ante neque non condimentum \\r\\nnec montes, enim vitae interdum. Id elementum enim volutpat pharetra \\r\\nerat sapien. Penatibus tincidunt praesent fringilla, dui eget in \\r\\ntristique nam nullam feugiat, sit auctor integer arcu risus. Aliquam \\r\\ninterdum nulla vestibulum sit, molestie elit eros mi, at nunc eget \\r\\nposuere duis. Gravida cum sit, nam nibh interdum nulla, suspendisse \\r\\nadipiscing fusce wisi. Curabitur ac non aptent volutpat nascetur sed, \\r\\nodio iaculis placerat, neque integer. Sagittis mauris egestas consequat \\r\\nsunt cras, sapien ac nunc magnis nisl, sed mi integer in. Accumsan dui, \\r\\nerat tristique tristique vitae mi augue.<\\/p>\",\"image\":\"6306010648eec1661337862.jpg\"}', NULL, 245, '2022-08-24 07:06:08', '2024-05-21 00:42:35'),
(102, 'basic', 'curabitur-at-lacus-ac-velit-ornare-lobortis-phasellus-blandit-leo-ut-odio', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Curabitur at lacus ac velit ornare lobortis. Phasellus blandit leo ut odio.\",\"description\":\"<p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Pellentesque\\r\\n magna vel fermentum, libero nulla fermentum integer elit ut maecenas, \\r\\ndiam suspendisse lectus, felis elit cras sint orci. Neque sit donec \\r\\narcu, ornare odio pulvinar ante aliquam, luctus ac ut justo sapien orci \\r\\na, eros blan proin vehicula morbi. Sed dui ut odio tristique, \\r\\nsuspendisse sapien laoreet, placerat lectus ornare placerat, libero ac \\r\\nsapien tincidunt consectetuer, vestibulum vivamus at nonummy sem. Nunc \\r\\nconvallis ornare non eget vitae, lectus pleradibus molestie, egestas \\r\\namet vestibulum ac faucibus mi, ultricies atque ornare malesuada morbi \\r\\nparturient, donec tempus suspendisse scelerisque phasellus. Porttitor \\r\\nultricies porttitor lacus arcu ultricies vitae, tempor mattis arcu sed \\r\\nviverra arcu natus, in wisi wisi dictum commodo erat justo, volutpat \\r\\nelit iaculis. Sit vel mauris nec magna odio. Et vel lobortis et. Aliquam\\r\\n enim felis turpis quis magnis consectetuer, tristique justo pulvinar mi\\r\\n libero maxime lectus. In massa semper reiciendis nulla a ante, quis \\r\\nvel, cras morbi sed.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Malesuada\\r\\n massa nibh interdum vel, adipiscing amet, vestibulum pede, nec ut vitae\\r\\n eros volutpat cras. Sed venenatis hymenaeos vestibulum at magna, ipsa \\r\\nmollis posuere ante lorem, sed erat, pulvinar vestibulum. Litora \\r\\npraesent duis eu amet at. Interdum urna eu malesuada vestibulum \\r\\ncurabitur velit, wisi vitae. Nulla sem. Mauris venenatis a vivamus sit, \\r\\negestas magna commodo vestibulum amet libero.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Turpis\\r\\n fusce dui, sed dui donec pharetra, integer imperdiet molestie \\r\\ntristique. Eros non et consectetuer sem, saepe nec nunc, feugiat ut \\r\\ntortor cras senectus fusce, euismod etiam mollis pharetra, commodo \\r\\ninceptos arcu aliquam lormet dui sit rutrum feugiat vivamus, integer \\r\\nleo. Hac eu urna eleifend quisque, at urna. Urna vel cras, pulvinar a \\r\\nnam leo gravida pede curabitur. Id justo dignissim pellentesque at, amet\\r\\n odit fusce, sit rutrum justo. Ornare nec nunc nibh consectetuer, \\r\\nullamcorper montes sociis. Etiam luctus porta velit, sed pellentesque \\r\\nmetus commodo<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Enim\\r\\n malesuada massa nibh interdum vel, adipiscing amet, vestibulum pede, \\r\\nnec ut vitae eros volutpat crasSeivenatis hymenaeos vestibulum at magna,\\r\\n ipsa mollis posuere ante lorem, sed erat, pulvinar vestibulum. Litora \\r\\npesent duis eu amet at. Interdum urna eu malesuada vestibulum curabitur \\r\\nvelit, wisi vitae. Nulla sem. Mauris venenatis a vivamus sit, egestas \\r\\nmagna commodo vestibulum, amet libero. commodo erat justo, volutpat elit\\r\\n iaculis. Sit vel mauris nec magna odio. Et vel lobortis et. Aliquam \\r\\nenim felis turpis quis magnis consectetuer, tristique justo pulvinar mi \\r\\nlibero maxime lectus. In massa semper reiciendis nulla a ante quis \\r\\nvelcras morbi sed.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Feugiat\\r\\n nibh, dis magna fusce turpis ut ante quam, ante neque non condimentum \\r\\nnec montes, enim vitae interdum. Id elementum enim volutpat pharetra \\r\\nerat sapien. Penatibus tincidunt praesent fringilla, dui eget in \\r\\ntristique nam nullam feugiat, sit auctor integer arcu risus. Aliquam \\r\\ninterdum nulla vestibulum sit, molestie elit eros mi, at nunc eget \\r\\nposuere duis. Gravida cum sit, nam nibh interdum nulla, suspendisse \\r\\nadipiscing fusce wisi. Curabitur ac non aptent volutpat nascetur sed, \\r\\nodio iaculis placerat, neque integer. Sagittis mauris egestas consequat \\r\\nsunt cras, sapien ac nunc magnis nisl, sed mi integer in. Accumsan dui, \\r\\nerat tristique tristique vitae mi augue.<\\/p>\",\"image\":\"63060112437731661337874.jpg\"}', NULL, 474, '2022-08-24 07:06:28', '2026-03-11 03:30:19');
INSERT INTO `frontends` (`id`, `tempname`, `slug`, `data_keys`, `data_values`, `seo_content`, `views`, `created_at`, `updated_at`) VALUES
(103, 'basic', 'sed-aliquam-ultrices-mauris-proin-viverra-ligula-sit-amet-ultrices-semper', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Sed aliquam ultrices mauris. Proin viverra, ligula sit amet ultrices semper\",\"description\":\"<p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Pellentesque\\r\\n magna vel fermentum, libero nulla fermentum integer elit ut maecenas, \\r\\ndiam suspendisse lectus, felis elit cras sint orci. Neque sit donec \\r\\narcu, ornare odio pulvinar ante aliquam, luctus ac ut justo sapien orci \\r\\na, eros blan proin vehicula morbi. Sed dui ut odio tristique, \\r\\nsuspendisse sapien laoreet, placerat lectus ornare placerat, libero ac \\r\\nsapien tincidunt consectetuer, vestibulum vivamus at nonummy sem. Nunc \\r\\nconvallis ornare non eget vitae, lectus pleradibus molestie, egestas \\r\\namet vestibulum ac faucibus mi, ultricies atque ornare malesuada morbi \\r\\nparturient, donec tempus suspendisse scelerisque phasellus. Porttitor \\r\\nultricies porttitor lacus arcu ultricies vitae, tempor mattis arcu sed \\r\\nviverra arcu natus, in wisi wisi dictum commodo erat justo, volutpat \\r\\nelit iaculis. Sit vel mauris nec magna odio. Et vel lobortis et. Aliquam\\r\\n enim felis turpis quis magnis consectetuer, tristique justo pulvinar mi\\r\\n libero maxime lectus. In massa semper reiciendis nulla a ante, quis \\r\\nvel, cras morbi sed.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Malesuada\\r\\n massa nibh interdum vel, adipiscing amet, vestibulum pede, nec ut vitae\\r\\n eros volutpat cras. Sed venenatis hymenaeos vestibulum at magna, ipsa \\r\\nmollis posuere ante lorem, sed erat, pulvinar vestibulum. Litora \\r\\npraesent duis eu amet at. Interdum urna eu malesuada vestibulum \\r\\ncurabitur velit, wisi vitae. Nulla sem. Mauris venenatis a vivamus sit, \\r\\negestas magna commodo vestibulum amet libero.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Turpis\\r\\n fusce dui, sed dui donec pharetra, integer imperdiet molestie \\r\\ntristique. Eros non et consectetuer sem, saepe nec nunc, feugiat ut \\r\\ntortor cras senectus fusce, euismod etiam mollis pharetra, commodo \\r\\ninceptos arcu aliquam lormet dui sit rutrum feugiat vivamus, integer \\r\\nleo. Hac eu urna eleifend quisque, at urna. Urna vel cras, pulvinar a \\r\\nnam leo gravida pede curabitur. Id justo dignissim pellentesque at, amet\\r\\n odit fusce, sit rutrum justo. Ornare nec nunc nibh consectetuer, \\r\\nullamcorper montes sociis. Etiam luctus porta velit, sed pellentesque \\r\\nmetus commod<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Enim\\r\\n malesuada massa nibh interdum vel, adipiscing amet, vestibulum pede, \\r\\nnec ut vitae eros volutpat crasSeivenatis hymenaeos vestibulum at magna,\\r\\n ipsa mollis posuere ante lorem, sed erat, pulvinar vestibulum. Litora \\r\\npesent duis eu amet at. Interdum urna eu malesuada vestibulum curabitur \\r\\nvelit, wisi vitae. Nulla sem. Mauris venenatis a vivamus sit, egestas \\r\\nmagna commodo vestibulum, amet libero. commodo erat justo, volutpat elit\\r\\n iaculis. Sit vel mauris nec magna odio. Et vel lobortis et. Aliquam \\r\\nenim felis turpis quis magnis consectetuer, tristique justo pulvinar mi \\r\\nlibero maxime lectus. In massa semper reiciendis nulla a ante quis \\r\\nvelcras morbi sed.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Feugiat\\r\\n nibh, dis magna fusce turpis ut ante quam, ante neque non condimentum \\r\\nnec montes, enim vitae interdum. Id elementum enim volutpat pharetra \\r\\nerat sapien. Penatibus tincidunt praesent fringilla, dui eget in \\r\\ntristique nam nullam feugiat, sit auctor integer arcu risus. Aliquam \\r\\ninterdum nulla vestibulum sit, molestie elit eros mi, at nunc eget \\r\\nposuere duis. Gravida cum sit, nam nibh interdum nulla, suspendisse \\r\\nadipiscing fusce wisi. Curabitur ac non aptent volutpat nascetur sed, \\r\\nodio iaculis placerat, neque integer. Sagittis mauris egestas consequat \\r\\nsunt cras, sapien ac nunc magnis nisl, sed mi integer in. Accumsan dui, \\r\\nerat tristique tristique vitae mi augue.<\\/p>\",\"image\":\"6306011c5afd11661337884.jpg\"}', NULL, 521, '2022-08-24 07:06:51', '2026-03-10 20:32:50'),
(104, 'basic', 'cras-sagittis-in-ut-quam-vitae-odio-lacinia-tincidunt', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Cras sagittis. In ut quam vitae odio lacinia tincidunt.\",\"description\":\"<p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Pellentesque\\r\\n magna vel fermentum, libero nulla fermentum integer elit ut maecenas, \\r\\ndiam suspendisse lectus, felis elit cras sint orci. Neque sit donec \\r\\narcu, ornare odio pulvinar ante aliquam, luctus ac ut justo sapien orci \\r\\na, eros blan proin vehicula morbi. Sed dui ut odio tristique, \\r\\nsuspendisse sapien laoreet, placerat lectus ornare placerat, libero ac \\r\\nsapien tincidunt consectetuer, vestibulum vivamus at nonummy sem. Nunc \\r\\nconvallis ornare non eget vitae, lectus pleradibus molestie, egestas \\r\\namet vestibulum ac faucibus mi, ultricies atque ornare malesuada morbi \\r\\nparturient, donec tempus suspendisse scelerisque phasellus. Porttitor \\r\\nultricies porttitor lacus arcu ultricies vitae, tempor mattis arcu sed \\r\\nviverra arcu natus, in wisi wisi dictum commodo erat justo, volutpat \\r\\nelit iaculis. Sit vel mauris nec magna odio. Et vel lobortis et. Aliquam\\r\\n enim felis turpis quis magnis consectetuer, tristique justo pulvinar mi\\r\\n libero maxime lectus. In massa semper reiciendis nulla a ante, quis \\r\\nvel, cras morbi sed.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Malesuada\\r\\n massa nibh interdum vel, adipiscing amet, vestibulum pede, nec ut vitae\\r\\n eros volutpat cras. Sed venenatis hymenaeos vestibulum at magna, ipsa \\r\\nmollis posuere ante lorem, sed erat, pulvinar vestibulum. Litora \\r\\npraesent duis eu amet at. Interdum urna eu malesuada vestibulum \\r\\ncurabitur velit, wisi vitae. Nulla sem. Mauris venenatis a vivamus sit, \\r\\negestas magna commodo vestibulum amet libero.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Turpis\\r\\n fusce dui, sed dui donec pharetra, integer imperdiet molestie \\r\\ntristique. Eros non et consectetuer sem, saepe nec nunc, feugiat ut \\r\\ntortor cras senectus fusce, euismod etiam mollis pharetra, commodo \\r\\ninceptos arcu aliquam lormet dui sit rutrum feugiat vivamus, integer \\r\\nleo. Hac eu urna eleifend quisque, at urna. Urna vel cras, pulvinar a \\r\\nnam leo gravida pede curabitur. Id justo dignissim pellentesque at, amet\\r\\n odit fusce, sit rutrum justo. Ornare nec nunc nibh consectetuer, \\r\\nullamcorper montes sociis. Etiam luctus porta velit, sed pellentesque \\r\\nmetus commodo<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Enim\\r\\n malesuada massa nibh interdum vel, adipiscing amet, vestibulum pede, \\r\\nnec ut vitae eros volutpat crasSeivenatis hymenaeos vestibulum at magna,\\r\\n ipsa mollis posuere ante lorem, sed erat, pulvinar vestibulum. Litora \\r\\npesent duis eu amet at. Interdum urna eu malesuada vestibulum curabitur \\r\\nvelit, wisi vitae. Nulla sem. Mauris venenatis a vivamus sit, egestas \\r\\nmagna commodo vestibulum, amet libero. commodo erat justo, volutpat elit\\r\\n iaculis. Sit vel mauris nec magna odio. Et vel lobortis et. Aliquam \\r\\nenim felis turpis quis magnis consectetuer, tristique justo pulvinar mi \\r\\nlibero maxime lectus. In massa semper reiciendis nulla a ante quis \\r\\nvelcras morbi sed.<\\/p><p style=\\\"margin-top:20px;margin-right:0px;margin-left:0px;color:rgb(151,175,213);font-size:16px;font-family:Roboto, sans-serif;\\\">Feugiat\\r\\n nibh, dis magna fusce turpis ut ante quam, ante neque non condimentum \\r\\nnec montes, enim vitae interdum. Id elementum enim volutpat pharetra \\r\\nerat sapien. Penatibus tincidunt praesent fringilla, dui eget in \\r\\ntristique nam nullam feugiat, sit auctor integer arcu risus. Aliquam \\r\\ninterdum nulla vestibulum sit, molestie elit eros mi, at nunc eget \\r\\nposuere duis. Gravida cum sit, nam nibh interdum nulla, suspendisse \\r\\nadipiscing fusce wisi. Curabitur ac non aptent volutpat nascetur sed, \\r\\nodio iaculis placerat, neque integer. Sagittis mauris egestas consequat \\r\\nsunt cras, sapien ac nunc magnis nisl, sed mi integer in. Accumsan dui, \\r\\nerat tristique tristique vitae mi augue.<\\/p>\",\"image\":\"63060126b38011661337894.jpg\"}', NULL, 540, '2022-08-24 07:07:24', '2026-03-09 17:09:13'),
(105, 'basic', NULL, 'login.content', '{\"has_image\":\"1\",\"title\":\"Welcome to Xaxino\",\"subtitle\":\"Sit iste delectus iure animi facere. Est veritatis illo officia.\",\"image\":\"6305e36cea4e31661330284.jpg\"}', NULL, 0, '2022-08-24 07:08:04', '2022-08-24 07:08:05'),
(106, 'basic', NULL, 'register.content', '{\"has_image\":\"1\",\"title\":\"Welcome to Xaxino\",\"subtitle\":\"Sit iste delectus iure animi facere. Est veritatis illo officia.\",\"image\":\"6305e38a6e8981661330314.jpg\"}', NULL, 0, '2022-08-24 07:08:34', '2022-08-24 07:08:34'),
(107, 'basic', NULL, 'contact_us.content', '{\"has_image\":\"1\",\"heading\":\"Quick Support\",\"subheading\":\"You can get all information\",\"title\":\"Get in touch\",\"image\":\"6305e3b0bf5fe1661330352.jpg\"}', NULL, 0, '2022-08-24 07:09:12', '2022-10-12 03:28:54'),
(108, 'basic', NULL, 'footer.content', '{\"footer_content\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ea possimus facilis aut veritatis, voluptate ullam, dolorem fugiat maxime cupiditate reiciendis voluptatum  incidunt deserunt.\",\"subscribe_title\":\"Subscribe to get updates\",\"subscribe_content\":\"Lorem ipsum dolor sit amet soluta consectetur adipisicing elit. Iste amet soluta possimus veniam non eaque.\"}', NULL, 0, '2022-08-24 07:10:20', '2022-08-24 07:10:20'),
(109, 'basic', NULL, 'social_icon.element', '{\"title\":\"Facebook\",\"social_icon\":\"<i class=\\\"fab fa-facebook-f\\\"><\\/i>\",\"url\":\"https:\\/\\/www.facebook.com\\/\"}', NULL, 0, '2022-08-24 07:11:53', '2022-08-31 10:05:49'),
(110, 'basic', NULL, 'social_icon.element', '{\"title\":\"Linkedin\",\"social_icon\":\"<i class=\\\"lab la-linkedin-in\\\"><\\/i>\",\"url\":\"https:\\/\\/www.google.com\\/\"}', NULL, 0, '2022-08-24 07:12:15', '2022-10-19 06:19:47'),
(111, 'basic', NULL, 'social_icon.element', '{\"title\":\"Twitter\",\"social_icon\":\"<i class=\\\"fab fa-twitter\\\"><\\/i>\",\"url\":\"https:\\/\\/www.twitter.com\\/\"}', NULL, 0, '2022-08-24 07:12:29', '2022-08-24 07:12:29'),
(112, 'basic', NULL, 'social_icon.element', '{\"title\":\"Instagram\",\"social_icon\":\"<i class=\\\"fab fa-instagram\\\"><\\/i>\",\"url\":\"https:\\/\\/www.instagram.com\\/\"}', NULL, 0, '2022-08-24 07:18:46', '2022-08-24 07:18:46'),
(113, 'basic', NULL, 'breadcrumb.content', '{\"has_image\":\"1\",\"image\":\"6305e6a01b29d1661331104.jpg\"}', NULL, 0, '2022-08-24 07:21:44', '2022-08-24 07:21:44'),
(114, 'basic', NULL, 'user_kyc.content', '{\"verification_content\":\"Lorem ipsum, dolor sit amet consectetur adipisicing elit. Hic officia quod natus, non dicta perspiciatis, quae repellendus ea illum aut debitis sint amet? Ratione voluptates beatae numquam.\",\"pending_content\":\"Lorem ipsum, dolor sit amet consectetur adipisicing elit. Hic officia quod natus, non dicta perspiciatis, quae repellendus ea illum aut debitis sint amet .\"}', NULL, 0, '2022-08-31 05:32:19', '2022-08-31 05:32:19'),
(116, 'basic', NULL, 'contact_us.element', '{\"icon\":\"<i class=\\\"las la-phone\\\"><\\/i>\",\"title\":\"Call Us\",\"contact_info\":\"+7556555555555\"}', NULL, 0, '2022-10-12 03:23:54', '2022-10-12 03:23:54'),
(117, 'basic', '', 'contact_us.element', '{\"icon\":\"<i class=\\\"far fa-envelope\\\"><\\/i>\",\"title\":\"Mail Us\",\"contact_info\":\"support@xaxino.com\"}', NULL, 0, '2022-10-12 03:24:25', '2025-04-23 00:47:39'),
(119, 'basic', '', 'contact_us.element', '{\"icon\":\"<i class=\\\"las la-map-marker\\\"><\\/i>\",\"title\":\"Visit Us\",\"contact_info\":\"987 Main St, Peekskill, New York\"}', NULL, 0, '2022-10-12 03:25:02', '2025-04-23 00:47:59'),
(120, 'basic', NULL, 'banned.content', '{\"has_image\":\"1\",\"heading\":\"You Are Banned\",\"image\":\"63467ec50796c1665564357.png\"}', NULL, 0, '2022-10-12 06:15:57', '2022-10-12 06:15:57'),
(121, NULL, '', 'seo.data', '{\"seo_image\":\"1\",\"keywords\":[\"live game\",\"xaxino game\",\"casino platform\",\"casino\",\"poker\",\"blackjack\",\"mines\"],\"meta_robots\":null,\"description\":\"Welcome to Xaxino - The ultimate casino platform! Join the fun and excitement of our extensive selection of games, including Head and tail, Spin Wheel, Number Guessing, Dice Rolling, Number Slot, and Casino Dice games. With top-notch security measures and 24\\/7 customer support, you can enjoy a safe and seamless gaming experience. Sign up today and get ready to win big!\",\"social_title\":\"Xaxino - Ultimate Casino Platform\",\"social_description\":\"Get ready for non-stop entertainment and big wins with Xaxino - Ultimate Casino Platform! Our platform offers various games, including Head and tail, Spin Wheel, Number Guessing, Dice Rolling, Number Slot, and Casino Dice games, and thrilling live dealer options. With seamless mobile compatibility, you can enjoy your favourite games anytime. Our friendly and knowledgeable customer support team is available 24\\/7 to ensure a smooth and enjoyable gaming experience. Join now and experience the excitement of our Casino Platform!\",\"image\":\"697065888f1751768973704.png\"}', NULL, 0, '2020-07-05 03:42:52', '2026-01-20 23:35:05'),
(122, 'sunfyre', NULL, 'banner.content', '{\"has_image\":\"1\",\"image\":\"658aae753443d1703587445.png\",\"background_image\":\"658bb8c4e21681703655620.png\"}', NULL, 0, '2023-12-26 09:44:05', '2023-12-27 04:40:21'),
(123, 'sunfyre', NULL, 'banner.element', '{\"has_image\":\"1\",\"title\":\"Lucky Dwarfs\",\"subtitle\":\"Get insane prizes every week\",\"button_name\":\"Play Now\",\"button_url\":\"games\",\"image\":\"658ab14ab8da21703588170.png\"}', NULL, 0, '2023-12-26 09:56:10', '2024-01-02 12:59:05'),
(124, 'sunfyre', NULL, 'banner.element', '{\"has_image\":\"1\",\"title\":\"Lucky Dwarfs\",\"subtitle\":\"Get insane prizes every week\",\"button_name\":\"Play Now\",\"button_url\":\"games\",\"image\":\"658ab2c38d5ce1703588547.png\"}', NULL, 0, '2023-12-26 10:02:27', '2024-01-02 12:59:16'),
(125, 'sunfyre', NULL, 'banner.element', '{\"has_image\":\"1\",\"title\":\"Lucky Dwarfs\",\"subtitle\":\"Get insane prizes every week\",\"button_name\":\"Play Now\",\"button_url\":\"games\",\"image\":\"658ab2e54c9261703588581.png\"}', NULL, 0, '2023-12-26 10:03:01', '2024-01-02 12:59:20'),
(126, 'sunfyre', NULL, 'banner.element', '{\"has_image\":\"1\",\"title\":\"Lucky Dwarfs\",\"subtitle\":\"Get insane prizes every week\",\"button_name\":\"Play Now\",\"button_url\":\"games\",\"image\":\"658ab2faae0551703588602.png\"}', NULL, 0, '2023-12-26 10:03:22', '2024-01-02 12:59:24'),
(127, 'sunfyre', NULL, 'game.content', '{\"heading\":\"Our Awesome Games\",\"subheading\":\"Dolor sit amet consectetur adipisicing elit. Ipsaharum quidem fuga ipsam dolores odio architecto\"}', NULL, 0, '2023-12-26 10:07:50', '2023-12-26 10:07:50'),
(128, 'sunfyre', NULL, 'referral.content', '{\"has_image\":\"1\",\"heading\":\"Get 15% Referral Commission\",\"description\":\"Referral commissions are also known as a finders fee and referral rewards. Learn how to structure them\",\"button_name\":\"Know More\",\"button_url\":\"\\/user\\/login\",\"image\":\"658ab65a7bd351703589466.png\"}', NULL, 0, '2023-12-26 10:17:46', '2024-01-03 05:31:03'),
(129, 'sunfyre', '', 'why_choose_us.content', '{\"heading\":\"Why You Should Choose XAXINO\",\"subheading\":\"Dolor sit amet consectetur adipisicing elit. Ipsaharum quidem fuga ipsam dolores odio architecto\",\"first_achievement_icon\":\"<i class=\\\"fas fa-user\\\"><\\/i>\",\"first_achievement_title\":\"Total User\",\"first_achievement_digit\":\"1,25,000\",\"second_achievement_icon\":\"<i class=\\\"fas fa-trophy\\\"><\\/i>\",\"second_achievement_title\":\"Total Winner\",\"second_achievement_digit\":\"2,25,000\"}', NULL, 0, '2023-12-26 10:19:19', '2026-03-07 04:49:42'),
(132, 'sunfyre', '', 'why_choose_us.element', '{\"has_image\":\"1\",\"title\":\"Balance Transfer System\",\"description\":\"Adipisci harum cumipsum nulla hic earum quidem repellat ad! At quam odio non harum\",\"image\":\"658ab77451be51703589748.png\"}', NULL, 0, '2023-12-26 10:22:28', '2026-03-07 22:58:54'),
(133, 'sunfyre', NULL, 'why_choose_us.element', '{\"has_image\":\"1\",\"title\":\"Awsome Gaming Platform\",\"description\":\"Adipisci harum cumipsum nulla hic earum quidem repellat ad!\\r\\n At quam odio non harum\",\"image\":\"658ab78c6e2521703589772.png\"}', NULL, 0, '2023-12-26 10:22:52', '2024-01-03 05:27:25'),
(134, 'sunfyre', '', 'why_choose_us.element', '{\"has_image\":\"1\",\"title\":\"Register Commission System\",\"description\":\"Adipisci harum cumipsum nulla hic earum quidem repellat ad!    At quam odio non harum\",\"image\":\"658ab7ef7c7ab1703589871.png\"}', NULL, 0, '2023-12-26 10:24:31', '2026-03-07 22:57:49'),
(135, 'sunfyre', NULL, 'why_choose_us.element', '{\"has_image\":\"1\",\"title\":\"Awsome Gaming Platform\",\"description\":\"Adipisci harum cumipsum nulla hic earum quidem repellat ad!\\r\\n At quam odio non harum\",\"image\":\"658ab805efeeb1703589893.png\"}', NULL, 0, '2023-12-26 10:24:53', '2023-12-26 10:24:53'),
(136, 'sunfyre', '', 'trx_win.content', '{\"heading\":\"Latest Transactions & Winners\",\"subheading\":\"Dolor sit amet consectetur adipisicing elit. Ipsaharum quidem fuga ipsam dolores odio architecto\"}', NULL, 0, '2023-12-26 10:25:36', '2026-03-10 16:17:36'),
(137, 'sunfyre', NULL, 'about.content', '{\"has_image\":\"1\",\"heading\":\"Know About XAXINO\",\"description\":\"Casinos offer a wide variety of games, each with its own set of rules, strategies, and odds. Here are brief descriptions of some popular casino games:\",\"image\":\"658ac1bf367351703592383.png\"}', NULL, 0, '2023-12-26 10:31:29', '2023-12-26 11:06:23'),
(138, 'sunfyre', NULL, 'how_work.content', '{\"has_image\":\"1\",\"heading\":\"How to Win Casion Game\",\"subheading\":\"Dolor sit amet consectetur adipisicing elit. Ipsaharum quidem fuga ipsam dolores odio architecto\",\"image\":\"658abe39086401703591481.png\"}', NULL, 0, '2023-12-26 10:47:03', '2023-12-26 10:51:21'),
(139, 'sunfyre', NULL, 'how_work.element', '{\"has_image\":\"1\",\"title\":\"Sign Up Account\",\"image\":\"658abd5b051d71703591259.png\"}', NULL, 0, '2023-12-26 10:47:39', '2023-12-26 10:47:39'),
(140, 'sunfyre', '', 'how_work.element', '{\"has_image\":\"1\",\"title\":\"Get Signup Bonus\",\"image\":\"658abd6c9e3b71703591276.png\"}', NULL, 0, '2023-12-26 10:47:56', '2026-03-07 04:50:24'),
(141, 'sunfyre', '', 'how_work.element', '{\"has_image\":\"1\",\"title\":\"Play Game\",\"image\":\"658abd91917d81703591313.png\"}', NULL, 0, '2023-12-26 10:48:33', '2026-03-07 04:53:04'),
(142, 'sunfyre', '', 'how_work.element', '{\"has_image\":\"1\",\"title\":\"Win Bonus\",\"image\":\"658abda1a4ac21703591329.png\"}', NULL, 0, '2023-12-26 10:48:49', '2026-03-07 04:53:15'),
(143, 'sunfyre', NULL, 'faq.content', '{\"has_image\":\"1\",\"heading\":\"Asked Your Question About XAX\",\"subheading\":\"Dolor sit amet consectetur adipisicing elit. Ipsaharum quidem fuga ipsam dolores odio architecto\",\"title_color\":\"INO\",\"image\":\"658ac2b6c78061703592630.png\",\"background_image\":\"658ac2b6e1df21703592630.png\"}', NULL, 0, '2023-12-26 10:57:11', '2023-12-27 05:49:24'),
(144, 'sunfyre', NULL, 'faq.element', '{\"question\":\"Why Xaxino?\",\"answer\":\"Quisque sem molestie tortor ut, libero libero interdum nec quisque, et scelerisque nam, elit lectus mauris sed maecenas. Veniam urna eget habitasse aliquam\"}', NULL, 0, '2023-12-26 10:58:08', '2023-12-26 10:58:08'),
(145, 'sunfyre', NULL, 'faq.element', '{\"question\":\"Our Mission and Vission\",\"answer\":\"Quisque sem molestie tortor ut, libero libero interdum nec quisque, et scelerisque nam, elit lectus mauris sed maecenas. Veniam urna eget habitasse aliquam\"}', NULL, 0, '2023-12-26 10:58:30', '2023-12-26 10:58:30'),
(146, 'sunfyre', NULL, 'faq.element', '{\"question\":\"How to Prediction?\",\"answer\":\"Quisque sem molestie tortor ut, libero libero interdum nec quisque, et scelerisque nam, elit lectus mauris sed maecenas. Veniam urna eget habitasse aliquam\"}', NULL, 0, '2023-12-26 10:59:31', '2023-12-26 10:59:31'),
(147, 'sunfyre', NULL, 'faq.element', '{\"question\":\"How to Play?\",\"answer\":\"Quisque sem molestie tortor ut, libero libero interdum nec quisque, et scelerisque nam, elit lectus mauris sed maecenas. Veniam urna eget habitasse aliquam\"}', NULL, 0, '2023-12-26 10:59:56', '2023-12-26 10:59:56'),
(148, 'sunfyre', '', 'testimonial.content', '{\"heading\":\"What User Say About XAXINO\",\"description\":\"Dolor sit amet consectetur adipisicing elit. Ipsaharum quidem fuga ipsam dolores odio architecto\",\"button_name\":\"Play Now\",\"button_url\":\"\\/games\"}', NULL, 0, '2023-12-26 11:03:22', '2026-03-07 22:56:26'),
(149, 'sunfyre', NULL, 'testimonial.element', '{\"has_image\":\"1\",\"name\":\"Aymond\",\"quote\":\"Vivamus in erat ut urna cursus vestibulum. Sed hendrerit. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo.\",\"image\":\"658ac11f93a501703592223.png\"}', NULL, 0, '2023-12-26 11:03:43', '2023-12-26 11:03:43'),
(150, 'sunfyre', NULL, 'testimonial.element', '{\"has_image\":\"1\",\"name\":\"Daymon\",\"quote\":\"Vivamus in erat ut urna cursus vestibulum. Sed hendrerit. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo.\",\"image\":\"658ac12775ad71703592231.png\"}', NULL, 0, '2023-12-26 11:03:51', '2023-12-26 11:03:51'),
(151, 'sunfyre', NULL, 'testimonial.element', '{\"has_image\":\"1\",\"name\":\"Alicent\",\"quote\":\"Vivamus in erat ut urna cursus vestibulum. Sed hendrerit. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo.\",\"image\":\"658ac133ef30e1703592243.png\"}', NULL, 0, '2023-12-26 11:04:03', '2023-12-26 11:04:03'),
(152, 'sunfyre', NULL, 'about.element', '{\"icon\":\"<i class=\\\"icon-poker-1-1\\\"><\\/i>\",\"title\":\"Best Platform\"}', NULL, 0, '2023-12-26 11:07:02', '2023-12-26 11:07:02'),
(153, 'sunfyre', '', 'about.element', '{\"icon\":\"<i class=\\\"las la-gift\\\"><\\/i>\",\"title\":\"Signup Bonus\"}', NULL, 0, '2023-12-26 11:07:31', '2026-03-11 01:00:47'),
(154, 'sunfyre', '', 'about.element', '{\"icon\":\"<i class=\\\"las la-percent\\\"><\\/i>\",\"title\":\"No Hidden Cost\"}', NULL, 0, '2023-12-26 11:08:03', '2026-03-11 01:01:19'),
(155, 'sunfyre', NULL, 'about.element', '{\"icon\":\"<i class=\\\"icon-Suppport\\\"><\\/i>\",\"title\":\"24\\/7 Support\"}', NULL, 0, '2023-12-26 11:08:28', '2023-12-26 11:08:28'),
(156, 'sunfyre', NULL, 'cta.content', '{\"has_image\":\"1\",\"heading\":\"Buy ticket and get million dollars for a click\",\"description\":\"Dolor sit amet consectetur adipisicing elit. Ipsaharum quidem fuga ipsam dolores odio architecto\",\"button\":\"Play Now\",\"button_url\":\"\\/games\",\"image\":\"658ac3481c6941703592776.png\"}', NULL, 0, '2023-12-26 11:12:56', '2023-12-26 11:12:56'),
(164, 'sunfyre', NULL, 'social_icon.element', '{\"social_icon\":\"<i class=\\\"fab fa-facebook\\\"><\\/i>\",\"url\":\"https:\\/\\/www.facebook.com\"}', NULL, 0, '2023-12-26 11:15:12', '2023-12-26 11:15:12'),
(165, 'sunfyre', NULL, 'social_icon.element', '{\"social_icon\":\"<i class=\\\"fab fa-twitter\\\"><\\/i>\",\"url\":\"https:\\/\\/www.twitter.com\\/\"}', NULL, 0, '2023-12-26 11:15:27', '2023-12-26 11:15:27'),
(166, 'sunfyre', NULL, 'social_icon.element', '{\"social_icon\":\"<i class=\\\"fab fa-instagram\\\"><\\/i>\",\"url\":\"https:\\/\\/www.instagram.com\\/\"}', NULL, 0, '2023-12-26 11:15:44', '2023-12-26 11:15:44'),
(167, 'sunfyre', NULL, 'social_icon.element', '{\"social_icon\":\"<i class=\\\"fab fa-linkedin-in\\\"><\\/i>\",\"url\":\"https:\\/\\/www.linkedin.com\\/\"}', NULL, 0, '2023-12-26 11:16:00', '2023-12-26 11:16:00'),
(168, 'sunfyre', 'privacy-policy', 'policy_pages.element', '{\"title\":\"Privacy Policy\",\"details\":\"<p><font>Privacy Policy<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>1. Introduction<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>Welcome to Xaxino (\\\"Company\\\", \\\"we\\\", \\\"our\\\", \\\"us\\\"). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information.<\\/font><\\/p><p><font>2. Information We Collect<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We collect personal information that you voluntarily provide to us when you register on the website, express an interest in obtaining information about us or our products and services, when you participate in activities on the website (such as posting messages in our online forums or entering competitions, contests or giveaways), or otherwise when you contact us.<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>The personal information that we collect depends on the context of your interactions with us and the website, the choices you make, and the products and features you use. The personal information we collect can include the following:<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>Personal Information Provided by You: We collect names; phone numbers; email addresses; mailing addresses; job titles; usernames; passwords; contact preferences; contact or authentication data; billing addresses; and other similar information.<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>Social Media Login Data: We may provide you with the option to register using social media account details, like your Facebook, Twitter, or other social media account.<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>3. How We Use Your Information<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We use personal information collected via our website for a variety of business purposes described below. We process your personal information for these purposes in reliance on our legitimate business interests (\\\"Business Purposes\\\"), in order to enter into or perform a contract with you (\\\"Contractual\\\"), with your consent (\\\"Consent\\\"), and\\/or for compliance with our legal obligations (\\\"Legal Reasons\\\"). We indicate the specific processing grounds we rely on next to each purpose listed below:<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>To facilitate account creation and logon process.<\\/font><\\/p><p><font>To send administrative information to you for Business Purposes, Legal Reasons, and\\/or possibly for Contractual reasons.<\\/font><\\/p><p><font>To fulfill and manage your orders for Contractual reasons.<\\/font><\\/p><p><font>To manage user accounts for Business Purposes and\\/or Contractual reasons.<\\/font><\\/p><p><font>To enforce our terms, conditions, and policies for Business Purposes and\\/or Legal Reasons.<\\/font><\\/p><p><font>To respond to legal requests and prevent harm for Legal Reasons.<\\/font><\\/p><p><font>4. Sharing Your Information<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We may process or share your data that we hold based on the following legal basis:<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>Consent: We may process your data if you have given us specific consent to use your personal information in a specific purpose.<\\/font><\\/p><p><font>Legitimate Interests: We may process your data when it is reasonably necessary to achieve our legitimate business interests.<\\/font><\\/p><p><font>Performance of a Contract: Where we have entered into a contract with you, we may process your personal information to fulfill the terms of our contract.<\\/font><\\/p><p><font>Legal Obligations: We may disclose your information where we are legally required to do so in order to comply with applicable law, governmental requests, a judicial proceeding, court order, or legal process.<\\/font><\\/p><p><font>5. Cookies and Other Tracking Technologies<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We may use cookies and similar tracking technologies to access or store information. Specific information about how we use such technologies and how you can refuse certain cookies is set out in our Cookie Policy.<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>6. Data Retention<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We will only keep your personal information for as long as it is necessary for the purposes set out in this privacy policy, unless a longer retention period is required or permitted by law (such as tax, accounting, or other legal requirements).<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>7. Data Security<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We aim to protect your personal information through a system of organizational and technical security measures. However, despite our safeguards and efforts to secure your information, no electronic transmission over the Internet or information storage technology can be guaranteed to be 100% secure.<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>8. Your Privacy Rights<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>In some regions, such as the European Economic Area (EEA), you have rights that allow you greater access to and control over your personal information. These rights may include:<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>The right to request access and obtain a copy of your personal information.<\\/font><\\/p><p><font>The right to request rectification or erasure.<\\/font><\\/p><p><font>The right to restrict the processing of your personal information.<\\/font><\\/p><p><font>The right to data portability.<\\/font><\\/p><p><font>9. Updates to This Policy<\\/font><\\/p><p><font><br \\/><\\/font><\\/p><p><font>We may update this privacy policy from time to time in order to reflect, for example, changes to our practices or for other operational, legal, or regulatory reasons.<\\/font><\\/p><div><br \\/><\\/div>\"}', NULL, 0, '2023-12-26 11:19:15', '2026-03-11 02:04:15'),
(169, 'sunfyre', 'terms-of-service', 'policy_pages.element', '{\"title\":\"Terms of Service\",\"details\":\"<div>Terms of Service<\\/div><div><br \\/><\\/div><div>1. Introduction<\\/div><div><br \\/><\\/div><div>Welcome to Xaxino (\\\"Company\\\", \\\"we\\\", \\\"our\\\", \\\"us\\\"). These Terms of Service (\\\"Terms\\\") govern your use of our website located at [Website URL] (the \\\"Site\\\") and our services (collectively, the \\\"Services\\\"). By accessing or using the Services, you agree to be bound by these Terms. If you do not agree to these Terms, please do not use the Services.<\\/div><div><br \\/><\\/div><div>2. Use of the Services<\\/div><div><br \\/><\\/div><div>Eligibility: You must be at least 18 years old to use the Services. By using the Services, you represent and warrant that you have the legal capacity to enter into these Terms.<\\/div><div><br \\/><\\/div><div>Account Registration: To access certain features of the Services, you may need to register for an account. You agree to provide accurate, current, and complete information during the registration process and to update such information to keep it accurate, current, and complete. You are responsible for safeguarding your account credentials and for all activities that occur under your account.<\\/div><div><br \\/><\\/div><div>Prohibited Conduct: You agree not to use the Services for any unlawful purpose or in any way that could harm the Services, or any person or entity, as determined by us in our sole discretion. Prohibited conduct includes, but is not limited to:<\\/div><div><br \\/><\\/div><div>Violating any applicable laws or regulations.<\\/div><div>Infringing on the rights of others.<\\/div><div>Interfering with the security or operation of the Services.<\\/div><div>Sending spam or engaging in other disruptive or harmful activities.<\\/div><div>3. Intellectual Property<\\/div><div><br \\/><\\/div><div>All content, trademarks, service marks, logos, and other intellectual property displayed on the Services are the property of Xaxino or its licensors. You are not permitted to use these without our prior written consent.<\\/div><div><br \\/><\\/div><div>4. User Content<\\/div><div><br \\/><\\/div><div>You may be able to submit, post, or upload content to the Services (\\\"User Content\\\"). By submitting User Content, you grant Xaxino a non-exclusive, worldwide, royalty-free, perpetual, irrevocable license to use, reproduce, modify, distribute, display, and perform the User Content in connection with the Services. You represent and warrant that you have all rights necessary to grant this license.<\\/div><div><br \\/><\\/div><div>5. Termination<\\/div><div><br \\/><\\/div><div>We may terminate or suspend your access to the Services, without prior notice or liability, for any reason, including if you breach these Terms. Upon termination, your right to use the Services will immediately cease.<\\/div><div><br \\/><\\/div><div>6. Disclaimers and Limitation of Liability<\\/div><div><br \\/><\\/div><div>Disclaimer of Warranties: The Services are provided \\\"as is\\\" and \\\"as available\\\" without warranties of any kind, either express or implied. We disclaim all warranties, including any implied warranties of merchantability, fitness for a particular purpose, title, and non-infringement.<\\/div><div><br \\/><\\/div><div>Limitation of Liability: To the fullest extent permitted by law, in no event shall [Company Name], its affiliates, directors, employees, or agents be liable for any indirect, incidental, special, consequential, or punitive damages, or any loss of profits or revenues, whether incurred directly or indirectly, or any loss of data, use, goodwill, or other intangible losses, resulting from (a) your use of or inability to use the Services; (b) any unauthorized access to or use of our servers and\\/or any personal information stored therein; (c) any interruption or cessation of transmission to or from the Services; (d) any bugs, viruses, trojan horses, or the like that may be transmitted to or through our Services by any third party; (e) any errors or omissions in any content or for any loss or damage incurred as a result of the use of any content posted, emailed, transmitted, or otherwise made available through the Services; and\\/or (f) the defamatory, offensive, or illegal conduct of any third party.<\\/div><div><br \\/><\\/div><div>7. Indemnification<\\/div><div><br \\/><\\/div><div>You agree to indemnify, defend, and hold harmless [Company Name], its affiliates, officers, directors, employees, and agents, from and against any and all claims, liabilities, damages, losses, costs, and expenses, including, but not limited to, reasonable legal and accounting fees, arising out of or in any way connected with your access to or use of the Services, or your violation of these Terms.<\\/div><div><br \\/><\\/div><div>8. Governing Law and Dispute Resolution<\\/div><div><br \\/><\\/div><div>These Terms shall be governed by and construed in accordance with the laws of [Your State\\/Country], without regard to its conflict of law principles. Any dispute arising out of or relating to these Terms or the Services shall be resolved through binding arbitration conducted in [Your City\\/State], except that either party may seek injunctive or other equitable relief in a court of competent jurisdiction.<\\/div><div><br \\/><\\/div><div>9. Changes to These Terms<\\/div><div><br \\/><\\/div><div>We reserve the right to modify these Terms at any time. If we make changes, we will provide notice of such changes by posting the updated Terms on the Site or through other communications. Your continued use of the Services after the changes become effective constitutes your acceptance of the new Terms.<\\/div>\"}', NULL, 0, '2023-12-26 11:19:36', '2024-05-21 03:05:24'),
(170, 'sunfyre', '', 'contact_us.content', '{\"has_image\":\"1\",\"heading\":\"Get in touch\",\"contact_address\":\"4517 Washington Ave.Manchester, Kentucky 39495\",\"contact_number\":\"+408-777-8745\",\"email_address\":\"support@xaxino.com\",\"image\":\"658accb3c03db1703595187.png\"}', NULL, 0, '2023-12-26 11:53:07', '2025-07-09 02:41:42'),
(171, 'sunfyre', NULL, 'banned.content', '{\"has_image\":\"1\",\"heading\":\"You Are Banned\",\"image\":\"658acce94d5e11703595241.png\"}', NULL, 0, '2023-12-26 11:54:00', '2023-12-26 11:54:01'),
(172, 'sunfyre', NULL, 'breadcrumb.content', '{\"has_image\":\"1\",\"image\":\"658acd3f282ad1703595327.png\"}', NULL, 0, '2023-12-26 11:55:27', '2023-12-26 11:55:27'),
(173, 'sunfyre', '', 'login.content', '{\"has_image\":\"1\",\"heading\":\"Welcome to Xaxino\",\"image\":\"658ace17d1ff21703595543.png\"}', NULL, 0, '2023-12-26 11:59:03', '2024-05-21 03:15:46'),
(174, 'sunfyre', '', 'register.content', '{\"has_image\":\"1\",\"heading\":\"Welcome to Xaxino\",\"image\":\"658ace354794b1703595573.png\"}', NULL, 0, '2023-12-26 11:59:33', '2024-05-21 03:16:06'),
(175, 'sunfyre', NULL, 'footer.content', '{\"has_image\":\"1\",\"image\":\"658adaf2e91771703598834.png\"}', NULL, 0, '2023-12-26 12:53:54', '2023-12-26 12:53:55'),
(176, 'sunfyre', '', 'user_kyc.content', '{\"verification_content\":\"Phasellus a est. Vivamus elementum semper nisi. In turpis. Proin sapien ipsum, porta a, auctor quis, euismod ut, mi. Praesent nec nisl a purus blandit viverra. Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi. Aenean posuere, tortor sed cursus feugiat, nunc augue blandit nunc, eu sollicitudin urna dolor sagittis lacus.\",\"pending_content\":\"Pellentesque egestas, neque sit amet convallis pulvinar, justo nulla eleifend augue, ac auctor orci leo non est. Fusce fermentum odio nec arcu. Ut id nisl quis enim dignissim sagittis. Vivamus elementum semper nisi. Sed magna purus, fermentum eu, tincidunt eu, varius ut, felis.\",\"reject\":\"Your KYC application has been rejected. Please resubmit the required documents as per our guidelines. For assistance, contact our support team.\"}', NULL, 0, '2023-12-28 11:27:07', '2024-05-21 03:16:46'),
(177, 'sunfyre', 'sint-sit-dolore-dic', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Sint sit dolore dic\",\"description\":\"<div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><div>\\u00a0<\\/div><div><div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><\\/div>\",\"image\":\"659406c6072931704199878.png\"}', NULL, 32, '2024-01-02 06:04:31', '2024-05-05 14:04:29'),
(178, 'sunfyre', 'aenean-posuere-tortor-sed-cursus-feugiat', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Aenean posuere, tortor sed cursus feugiat\",\"description\":\"<div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><div>\\u00a0<\\/div><div><div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><\\/div>\",\"image\":\"659406ea405701704199914.png\"}', NULL, 93, '2024-01-02 06:05:40', '2024-05-05 14:02:41'),
(179, 'sunfyre', 'morbi-nec-metus-fusce-convallis-metus', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Morbi nec metus. Fusce convallis metus\",\"description\":\"<div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><div>\\u00a0<\\/div><div><div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><\\/div>\",\"image\":\"659406f92cbbf1704199929.png\"}', NULL, 67, '2024-01-02 06:06:01', '2026-03-10 19:19:56'),
(180, 'sunfyre', NULL, 'blog.content', '{\"heading\":\"Our Latest Update\",\"subheading\":\"Dolor sit amet consectetur adipisicing elit. Ipsaharum quidem fuga ipsam dolores odio architecto\"}', NULL, 0, '2024-01-02 10:27:21', '2024-01-02 10:27:21');
INSERT INTO `frontends` (`id`, `tempname`, `slug`, `data_keys`, `data_values`, `seo_content`, `views`, `created_at`, `updated_at`) VALUES
(181, 'sunfyre', 'suspendisse-enim-turpis-dictum-sed-iaculis-a', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Suspendisse enim turpis, dictum sed, iaculis a\",\"description\":\"<div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><div>\\u00a0<\\/div><div><div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><\\/div>\",\"image\":\"659407120d8351704199954.png\"}', NULL, 51, '2024-01-02 11:52:34', '2026-03-10 18:48:48'),
(182, 'sunfyre', 'donec-sodales-sagittis-magna-in-dui-magna', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Donec sodales sagittis magna. In dui magna\",\"description\":\"<div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><div>\\u00a0<\\/div><div><div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><\\/div>\",\"image\":\"6594072461d421704199972.png\"}', NULL, 56, '2024-01-02 11:52:52', '2026-03-10 19:20:06'),
(183, 'sunfyre', 'maecenas-vestibulum-mollis-diam', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Maecenas vestibulum mollis diam\",\"description\":\"<div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><div>\\u00a0<\\/div><div><div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><\\/div>\",\"image\":\"65940733290761704199987.png\"}', NULL, 46, '2024-01-02 11:53:07', '2026-03-10 20:48:48'),
(184, 'sunfyre', 'etiam-rhoncus-sed-a-libero-sed-hendrerit', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Etiam rhoncus. Sed a libero. Sed hendrerit.\",\"description\":\"<div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><div>\\u00a0<\\/div><div><div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><\\/div>\",\"image\":\"6594073d3327a1704199997.png\"}', NULL, 49, '2024-01-02 11:53:17', '2026-03-10 19:20:03'),
(185, 'sunfyre', 'etiam-ultricies-nisi-vel-augue-pellentesque-commodo-eros-a-enim', 'blog.element', '{\"has_image\":[\"1\"],\"title\":\"Etiam ultricies nisi vel augue. Pellentesque commodo eros a enim.\",\"description\":\"<div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><div>\\u00a0<\\/div><div><div>Vestibulum volutpat pretium libero. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur blandit mollis lacus. Aliquam eu nunc. Nullam dictum felis eu pede mollis pretium.<\\/div><div><br \\/><\\/div><div>Nunc interdum lacus sit amet orci. Sed libero. Duis lobortis massa imperdiet quam. Vestibulum fringilla pede sit amet augue. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<\\/div><div><br \\/><\\/div><div>Nam at tortor in tellus interdum sagittis. Praesent nec nisl a purus blandit viverra. Pellentesque ut neque. Aenean viverra rhoncus pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus.<\\/div><div><br \\/><\\/div><div>Praesent vestibulum dapibus nibh. Nunc interdum lacus sit amet orci. Duis lobortis massa imperdiet quam. Praesent ut ligula non mi varius sagittis. In hac habitasse platea dictumst.<\\/div><div><br \\/><\\/div><div>Cras non dolor.. Nunc egestas, augue at pellentesque laoreet, felis eros vehicula leo, at malesuada velit leo quis pede. Cras dapibus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.<\\/div><\\/div>\",\"image\":\"6594074a276571704200010.png\"}', NULL, 60, '2024-01-02 11:53:30', '2026-03-10 19:20:11'),
(188, 'sunfyre', '', 'partner.content', '{\"heading\":\"Partners Who Power Our Success\"}', NULL, 0, '2026-03-07 07:28:37', '2026-03-07 07:28:37'),
(189, 'sunfyre', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad0139050791772945721.png\"}', NULL, 0, '2026-03-07 07:29:15', '2026-03-07 22:55:21'),
(190, 'sunfyre', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad013356f8c1772945715.png\"}', NULL, 0, '2026-03-07 07:29:26', '2026-03-07 22:55:15'),
(191, 'sunfyre', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad01248a28b1772945700.png\"}', NULL, 0, '2026-03-07 07:29:33', '2026-03-07 22:55:00'),
(192, 'sunfyre', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad011cd904b1772945692.png\"}', NULL, 0, '2026-03-07 07:29:43', '2026-03-07 22:54:52'),
(193, 'sunfyre', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad0115d58461772945685.png\"}', NULL, 0, '2026-03-07 07:29:51', '2026-03-07 22:54:45'),
(194, 'sunfyre', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad010e4777a1772945678.png\"}', NULL, 0, '2026-03-07 07:30:00', '2026-03-07 22:54:38'),
(195, 'sunfyre', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad010303fe61772945667.png\"}', NULL, 0, '2026-03-07 07:30:09', '2026-03-07 22:54:28'),
(196, 'sunfyre', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad01404c4ec1772945728.png\"}', NULL, 0, '2026-03-07 22:55:28', '2026-03-07 22:55:28'),
(197, 'sunfyre', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad01473780b1772945735.png\"}', NULL, 0, '2026-03-07 22:55:35', '2026-03-07 22:55:35'),
(198, 'basic', '', 'partner.content', '{\"heading\":\"Partners Who Power Our Success\"}', NULL, 0, '2026-03-07 23:06:39', '2026-03-07 23:06:39'),
(199, 'basic', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad03e683a281772946406.png\"}', NULL, 0, '2026-03-07 23:06:46', '2026-03-07 23:06:48'),
(200, 'basic', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad03ec8f8011772946412.png\"}', NULL, 0, '2026-03-07 23:06:52', '2026-03-07 23:06:52'),
(201, 'basic', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad03f41b11e1772946420.png\"}', NULL, 0, '2026-03-07 23:07:00', '2026-03-07 23:07:00'),
(202, 'basic', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad03f89e12f1772946424.png\"}', NULL, 0, '2026-03-07 23:07:04', '2026-03-07 23:07:04'),
(203, 'basic', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad03fcdc9051772946428.png\"}', NULL, 0, '2026-03-07 23:07:08', '2026-03-07 23:07:08'),
(204, 'basic', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad040a650b81772946442.png\"}', NULL, 0, '2026-03-07 23:07:22', '2026-03-07 23:07:22'),
(205, 'basic', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad040fc52821772946447.png\"}', NULL, 0, '2026-03-07 23:07:27', '2026-03-07 23:07:27'),
(206, 'basic', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad0413f33fe1772946451.png\"}', NULL, 0, '2026-03-07 23:07:31', '2026-03-07 23:07:32'),
(207, 'basic', '', 'partner.element', '{\"has_image\":\"1\",\"image\":\"69ad0418a1fce1772946456.png\"}', NULL, 0, '2026-03-07 23:07:36', '2026-03-07 23:07:36');

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

--
-- Table structure for table `gameplay_bonus_logs`
--

CREATE TABLE `gameplay_bonus_logs` (
  `id` bigint UNSIGNED NOT NULL,
  `user_id` int NOT NULL DEFAULT '0',
  `game_id` int NOT NULL DEFAULT '0',
  `amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `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 `games`
--

CREATE TABLE `games` (
  `id` bigint UNSIGNED NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `alias` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `trending` tinyint(1) NOT NULL DEFAULT '0',
  `featured` tinyint(1) NOT NULL DEFAULT '0',
  `win` decimal(28,8) DEFAULT '0.00000000' COMMENT 'Win Bonus',
  `max_limit` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `min_limit` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `invest_back` tinyint(1) DEFAULT '0',
  `probable_win` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `probable_win_demo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `level` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `instruction` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `short_desc` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `games`
--

INSERT INTO `games` (`id`, `name`, `alias`, `image`, `status`, `trending`, `featured`, `win`, `max_limit`, `min_limit`, `invest_back`, `probable_win`, `probable_win_demo`, `type`, `level`, `instruction`, `short_desc`, `created_at`, `updated_at`) VALUES
(1, 'Head & Tail', 'head_tail', '6592b9b5aace01704114613.png', 1, 1, 1, 50.00000000, 100.00000000, 1.00000000, 1, '\"90\"', '\"100\"', NULL, NULL, '<p>\nAt the start of a round in the <strong>Head and Tail Game</strong>, players choose between two possible outcomes: <strong>Head</strong> or <strong>Tail</strong>. Once selections are made, the system flips a virtual coin to determine the result.\n</p>\n\n<p>\nThe game uses a standard coin with two sides:\n</p>\n\n<ul>\n    <li><strong>Head:</strong> One side of the coin</li>\n    <li><strong>Tail:</strong> The opposite side of the coin</li>\n</ul>\n\n<p>\nAfter the coin is flipped, the side that lands face up determines the outcome of the round. \nPlayers who selected the matching side are considered correct.\n</p>\n\n<p>\nEach round is independent, and the result is generated randomly every time, \nmaking every round unique and unpredictable.\n</p>', NULL, NULL, '2026-03-09 18:27:42'),
(2, 'Rock Paper scissors', 'rock_paper_scissors', '610515f76a27a1627723255.jpg', 1, 0, 0, 20.00000000, 100.00000000, 1.00000000, 1, '\"15\"', '\"100\"', NULL, NULL, '<p>\r\nAt the start of a round in the <strong>Rock, Paper, Scissors Game</strong>, players select one of three options: <strong>Rock</strong>, <strong>Paper</strong>, or <strong>Scissors</strong>. Once all selections are made, the system or opponent reveals their choice to determine the result of the round.\r\n</p>\r\n\r\n<p>\r\nThe rules for determining the winner are simple:\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Rock</strong> defeats <strong>Scissors</strong></li>\r\n    <li><strong>Scissors</strong> defeats <strong>Paper</strong></li>\r\n    <li><strong>Paper</strong> defeats <strong>Rock</strong></li>\r\n    <li>If both players choose the same option, the round ends in a <strong>tie</strong></li>\r\n</ul>\r\n\r\n<p>\r\nAfter all selections are revealed, the winner is determined based on these rules. \r\nEach round is independent, and the results are randomly generated, ensuring that every round is unique and unpredictable.\r\n</p>', NULL, NULL, '2026-03-09 18:28:06'),
(3, 'Spin Wheel', 'spin_wheel', '61051d8469d731627725188.jpg', 1, 0, 0, 50.00000000, 10000.00000000, 1.00000000, 1, '\"100\"', '\"100\"', NULL, NULL, '<p>\r\nAt the start of a round in the <strong>Spin Wheel Game</strong>, players select one or more segments on the wheel before it is spun. Once all selections are made, the wheel is spun, and the result is determined by the segment where the pointer stops.\r\n</p>\r\n\r\n<p>\r\nThe wheel is divided into multiple segments, which can include numbers, colors, or special multipliers depending on the game version. Each segment has an equal or predetermined chance of being selected.\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Numbered Segments:</strong> Represent specific values on the wheel</li>\r\n    <li><strong>Color Segments:</strong> Indicate different categories or outcomes</li>\r\n    <li><strong>Multiplier Segments:</strong> Can enhance the outcome of the next spin</li>\r\n</ul>\r\n\r\n<p>\r\nAfter the wheel comes to a stop, the pointer indicates the winning segment. Some versions may include multipliers or bonus rounds that activate when certain segments are landed on.\r\n</p>\r\n\r\n<p>\r\nEach round is independent, and the wheel is spun randomly every time, ensuring that every spin produces a unique and unpredictable outcome.\r\n</p>', NULL, NULL, '2026-03-09 18:33:16'),
(4, 'Number Guessing', 'number_guess', '61051a9ed28511627724446.jpg', 1, 0, 1, NULL, 100.00000000, 1.00000000, 0, NULL, NULL, NULL, NULL, '<p>\r\nAt the start of a round in the <strong>Number Guessing Game</strong>, the system selects a hidden number within a specific range, \r\nfor example, from 0 to 9. Players try to predict which number will be chosen before the round ends.\r\n</p>\r\n\r\n<p>\r\nThe game typically includes <strong>10 options</strong> corresponding to numbers 0 through 9. \r\nPlayers select one number as their prediction.\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Number Range:</strong> 0–9</li>\r\n    <li><strong>Selection:</strong> Players pick one number before the round ends</li>\r\n    <li><strong>Random Result:</strong> The system generates a number at the end of the round</li>\r\n</ul>\r\n\r\n<p>\r\nWhen the round concludes, the system reveals the hidden number. \r\nIf a player’s selected number matches the revealed number, it is considered a correct prediction.\r\n</p>\r\n\r\n<p>\r\nEach round is independent, and the number is randomly generated every time, ensuring that every round is unique and unpredictable.\r\n</p>', NULL, NULL, '2026-03-09 18:27:01'),
(5, 'Dice Rolling', 'dice_rolling', '61051cb37ad601627724979.jpg', 1, 0, 0, 5.00000000, 100.00000000, 1.00000000, 1, '\"5\"', '\"100\"', NULL, NULL, '<p>\r\nAt the start of a round in the <strong>Dice Rolling Game</strong>, players choose a number or range of numbers before the dice are rolled. Once selections are made, the system rolls one or more dice to determine the result of the round.\r\n</p>\r\n\r\n<p>\r\nThe game typically uses <strong>one or two standard six-sided dice</strong>, each numbered from 1 to 6. The total value of the dice determines the outcome.\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Single Die:</strong> Possible results are 1 through 6</li>\r\n    <li><strong>Two Dice:</strong> Possible totals range from 2 to 12</li>\r\n    <li><strong>Random Outcome:</strong> The dice results are generated randomly</li>\r\n</ul>\r\n\r\n<p>\r\nAfter the dice are rolled, the result is displayed, showing the number or total rolled. The round outcome is determined by whether the rolled number matches the selected number or falls within the chosen range.\r\n</p>\r\n\r\n<p>\r\nEach round is independent, and the dice results are randomized every time, making each roll unique and unpredictable.\r\n</p>', NULL, NULL, '2026-03-09 18:32:52'),
(6, 'Card Finding', 'card_finding', '610521608fde21627726176.jpg', 1, 0, 0, 50.00000000, 100.00000000, 1.00000000, 1, '\"10\"', '\"100\"', NULL, NULL, '<p>\r\nAt the start of a round in the <strong>Card Finding Game</strong>, a set of cards is placed face down on the table or virtual board. Players select one or more cards, aiming to find a target card or match specific criteria revealed at the start of the round.\r\n</p>\r\n\r\n<p>\r\nThe game typically uses a standard <strong>52-card deck</strong>, and the cards are shuffled and laid out randomly at the beginning of each round.\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Face-Down Cards:</strong> All cards are initially hidden from view</li>\r\n    <li><strong>Selection:</strong> Players choose one or more cards to reveal</li>\r\n    <li><strong>Target Card:</strong> The card that players aim to find or match</li>\r\n</ul>\r\n\r\n<p>\r\nOnce the selected cards are revealed, the round outcome is determined by whether the chosen cards match the target or meet the round’s criteria. Players can attempt to find multiple target cards if the rules allow.\r\n</p>\r\n\r\n<p>\r\nEach round is independent, and the card arrangement is randomized every time, ensuring that every round is unique and unpredictable.\r\n</p>', NULL, NULL, '2026-03-09 18:34:02'),
(7, 'Number Slot', 'number_slot', '61052482a60ed1627726978.jpg', 1, 1, 0, NULL, 100.00000000, 1.00000000, 0, '[\"50\",\"40\",\"6\",\"4\"]', '[\"50\",\"40\",\"6\",\"4\"]', NULL, '[\"100\",\"150\",\"200\"]', '<p>\r\nAt the start of a round in the <strong>Number Slot Game</strong>, players select a number or a combination of numbers they wish to match. Once selections are made, the slot reels spin and eventually stop to reveal the outcome.\r\n</p>\r\n\r\n<p>\r\nThe game uses digital reels, each displaying a series of numbers. When the reels stop, the numbers shown on the payline determine the round’s result.\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Numbered Reels:</strong> Each reel contains multiple numbers in a randomized order</li>\r\n    <li><strong>Payline:</strong> The line across the reels that determines the outcome</li>\r\n    <li><strong>Random Result:</strong> The reels stop in a random position each round</li>\r\n</ul>\r\n\r\n<p>\r\nAfter the reels stop spinning, the numbers displayed on the payline are compared with the selected numbers. The round outcome is based on whether the numbers match the selections.\r\n</p>\r\n\r\n<p>\r\nEach round is independent, and the reels are randomized every time, making each spin unique and unpredictable.\r\n</p>', NULL, NULL, '2026-03-09 18:34:31'),
(8, 'Pool Number', 'number_pool', '610526fa315241627727610.jpg', 1, 1, 1, 50.00000000, 1000.00000000, 1.00000000, 1, '\"3\"', '\"100\"', NULL, NULL, '<p>\r\nAt the start of a round in the <strong>Pool Number Game</strong>, a set of numbered balls is placed in the pool table or virtual board. \r\nPlayers select one or more numbers from the available pool before the round begins.\r\n</p>\r\n\r\n<p>\r\nThe pool typically contains <strong>8 numbered balls</strong>, depending on the game version. \r\nEach ball has a unique number, and all numbers are randomly arranged at the beginning of the round.\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Numbered Balls:</strong> Unique numbers assigned to each ball</li>\r\n    <li><strong>Selection:</strong> Players choose numbers before the round starts</li>\r\n    <li><strong>Random Draw:</strong> Numbers are drawn or revealed randomly during the round</li>\r\n</ul>\r\n\r\n<p>\r\nAfter the draw, the numbers are revealed one by one or all at once. The final outcome is determined based on which selected numbers match the drawn numbers.\r\n</p>\r\n\r\n<p>\r\nPlayers can choose as many numbers as they like, and the game continues until all drawn numbers are revealed. \r\nEach round is independent, and the arrangement of numbers is randomized every time, making each game unique.\r\n</p>', NULL, NULL, '2026-03-09 18:20:30'),
(9, 'Roulette', 'roulette', '63fc71d5784ce1677488597.jpg', 1, 0, 0, NULL, 1000.00000000, 1.00000000, 0, NULL, NULL, NULL, NULL, '<p>\r\nAt the start of a round in <strong>Roulette</strong>, players select numbers, colors, or groups of numbers on the roulette table. \r\nOnce selections are made, the dealer spins the roulette wheel and releases the ball.\r\n</p>\r\n\r\n<p>\r\nThe roulette wheel contains <strong>37 or 38 slots</strong> depending on the version: European roulette has 37 slots (numbers 0–36), while American roulette has 38 slots (numbers 0–36 plus 00). \r\nThe slots alternate between red and black, except for 0 (and 00), which are green.\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Numbers:</strong> 0–36 (and 00 in American roulette)</li>\r\n    <li><strong>Colors:</strong> Red, Black, Green</li>\r\n    <li><strong>Groups:</strong> Even/Odd, 1–18 / 19–36, Dozens, Columns</li>\r\n</ul>\r\n\r\n<p>\r\nAfter the ball lands in a slot, the winning number and color are revealed. All correct selections are highlighted, and results are displayed according to the outcome.\r\n</p>\r\n\r\n<p>\r\nRoulette offers different types of selections including:\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Inside Options:</strong> Choosing specific numbers or small groups of numbers</li>\r\n    <li><strong>Outside Options:</strong> Choosing larger groups, colors, or ranges of numbers</li>\r\n</ul>\r\n\r\n<p>\r\nEach round is independent, and the spin results are random, ensuring that every round is unique and unpredictable.\r\n</p>', NULL, NULL, '2026-03-09 18:19:26'),
(10, 'Casino Dice', 'casino_dice', '657ff2e06f55f1702884064.jpg', 1, 0, 0, NULL, 1000.00000000, 1.00000000, 0, NULL, NULL, NULL, NULL, '<p>\r\nAt the start of a round in the <strong>Casino Dice Game</strong>, players choose a prediction based on the possible outcomes of rolling dice. After the selection phase ends, the system rolls the dice and displays the result. The outcome of the round is determined by the total value shown on the dice.\r\n</p>\r\n\r\n<p>\r\nThe game typically uses <strong>two standard six-sided dice</strong>. Each die contains numbers from <strong>1 to 6</strong>, and the combined total of both dice can range from <strong>2 to 12</strong>.\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Minimum Total:</strong> 2</li>\r\n    <li><strong>Maximum Total:</strong> 12</li>\r\n    <li><strong>Possible Combinations:</strong> Various combinations of two dice create totals between 2 and 12</li>\r\n</ul>\r\n\r\n<p>\r\nOnce the dice are rolled, the total value determines the final result of the round. Some game versions also categorize the results into different groups, such as <strong>low totals</strong>, <strong>high totals</strong>, or <strong>specific numbers</strong>.\r\n</p>\r\n\r\n<p>\r\nEvery round is independent, and the dice results are randomly generated each time. This ensures that each roll is unique and not influenced by previous outcomes.\r\n</p>', NULL, NULL, '2026-03-09 18:18:31'),
(11, 'Keno', 'keno', '6492c056a362e1687339094.png', 1, 1, 1, NULL, 100.00000000, 10.00000000, 0, '\"30\"', '\"100\"', NULL, '{\"max_select_number\":\"10\",\"levels\":[{\"level\":\"4\",\"percent\":\"10\"},{\"level\":\"5\",\"percent\":\"20\"},{\"level\":\"6\",\"percent\":\"30\"},{\"level\":\"7\",\"percent\":\"40\"},{\"level\":\"8\",\"percent\":\"50\"},{\"level\":\"9\",\"percent\":\"60\"},{\"level\":\"10\",\"percent\":\"70\"}]}', '<p>\r\nAt the start of a round in the <strong>Keno Game</strong>, players select several numbers from a large number grid. \r\nThe grid usually contains numbers ranging from <strong>1 to 80</strong>. After the selection phase ends, \r\nthe system randomly draws a set of winning numbers.\r\n</p>\r\n\r\n<p>\r\nIn a typical round, the system draws <strong>20 numbers</strong> from the total pool of 80 numbers. \r\nThese numbers are revealed one by one or all at once, depending on the game interface.\r\n</p>\r\n\r\n<p>\r\nPlayers win when their selected numbers match the numbers drawn during the round. \r\nThe more numbers that match, the higher the reward level associated with the result.\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Number Grid:</strong> Contains numbers from 1 to 80</li>\r\n    <li><strong>Selected Numbers:</strong> Players can choose multiple numbers before the round starts</li>\r\n    <li><strong>Drawn Numbers:</strong> 20 numbers are randomly drawn in each round</li>\r\n</ul>\r\n\r\n<p>\r\nAfter the draw is completed, the matched numbers are highlighted on the grid. \r\nThe outcome of the round is determined based on how many selected numbers match the drawn numbers.\r\n</p>\r\n\r\n<p>\r\nEach round is independent, and the numbers are randomly generated every time, \r\nmaking the results unpredictable and ensuring that every round is unique.\r\n</p>', NULL, NULL, '2026-03-09 18:14:22'),
(12, 'Black Jack', 'blackjack', '641820a7bb36e1679302823.jpg', 1, 0, 0, 20.00000000, 100.00000000, 10.00000000, 0, NULL, NULL, NULL, NULL, '<p>\r\nAt the start of a round in <strong>Blackjack</strong>, each player and the dealer receive cards from a standard deck. \r\nThe main objective of the game is to achieve a card total that is closer to <strong>21</strong> than the dealer’s hand \r\nwithout exceeding it.\r\n</p>\r\n\r\n<p>\r\nBlackjack uses a standard <strong>52-card deck</strong> consisting of four suits:\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Hearts (♥)</strong></li>\r\n    <li><strong>Diamonds (♦)</strong></li>\r\n    <li><strong>Clubs (♣)</strong></li>\r\n    <li><strong>Spades (♠)</strong></li>\r\n</ul>\r\n\r\n<p>\r\nEach card has a specific value in the game:\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Number Cards (2–10):</strong> Count as their face value</li>\r\n    <li><strong>Jack, Queen, King:</strong> Each counts as 10</li>\r\n    <li><strong>Ace:</strong> Can count as 1 or 11 depending on the hand</li>\r\n</ul>\r\n\r\n<p>\r\nAt the beginning of the round, players receive two cards and the dealer also receives two cards, \r\nusually with one card facing up. Players then decide how to proceed based on their total.\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Hit:</strong> Receive another card to increase the total</li>\r\n    <li><strong>Stand:</strong> Keep the current hand and end the turn</li>\r\n</ul>\r\n\r\n<p>\r\nIf a player’s total exceeds <strong>21</strong>, the hand is considered a <strong>bust</strong> and the round ends for that player. \r\nAfter all players finish their turns, the dealer reveals their cards and draws additional cards according to the game rules.\r\n</p>\r\n\r\n<p>\r\nThe round concludes when the dealer stops drawing cards. The player with a hand closer to <strong>21</strong> \r\nthan the dealer without going over is considered the winner of the round.\r\n</p>', 'Blackjack, also known as \"21,\" is a popular casino card game where players compete against the dealer. The objective is to get a hand total as close as possible to 21 without exceeding it. Players are dealt two cards at the beginning, and can choose to \"hit\" (take another card) or \"stand\" (keep their current hand).', NULL, '2026-03-09 18:13:38'),
(13, 'Mines', 'mines', '658138687ef751702967400.png', 1, 0, 0, NULL, 100.00000000, 10.00000000, 0, '\"100\"', '\"100\"', NULL, NULL, '<p>\r\nAt the start of a round in the <strong>Mines Game</strong>, a grid of tiles is displayed on the screen. \r\nSome of these tiles contain hidden mines, while the rest contain safe spots. The objective of the game \r\nis to reveal as many safe tiles as possible without selecting a tile that contains a mine.\r\n</p>\r\n\r\n<p>\r\nBefore the round begins, players choose how many mines will be placed on the grid. \r\nThe more mines that are present, the higher the potential multiplier for each safe tile revealed.\r\n</p>\r\n\r\n<p>\r\nThe game grid typically contains <strong>25 tiles</strong> arranged in a <strong>5 × 5 layout</strong>. \r\nMines are randomly hidden among these tiles at the start of each round.\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Safe Tile:</strong> Revealing a safe tile increases the multiplier.</li>\r\n    <li><strong>Mine Tile:</strong> If a mine is revealed, the round ends immediately.</li>\r\n    <li><strong>Multiplier:</strong> The value increases with every safe tile uncovered.</li>\r\n</ul>\r\n\r\n<p>\r\nPlayers can choose to stop revealing tiles at any time to secure their current multiplier. \r\nIf a mine is uncovered before stopping, the round ends and the revealed tiles no longer count.\r\n</p>\r\n\r\n<p>\r\nEach round is independent, and the mine positions are randomly generated every time, \r\nmaking every game unique and unpredictable.\r\n</p>', NULL, NULL, '2026-03-09 18:12:45'),
(14, 'Poker', 'poker', '659d119dc8d811704792477.png', 1, 0, 0, NULL, 100.00000000, 10.00000000, 0, '\"50\"', '\"100\"', NULL, NULL, '<p>\r\nAt the start of a round in <strong>Poker</strong>, each participant receives a set of playing cards from a standard deck. The goal of the game is to create the strongest possible hand using the cards dealt during the round.\r\n</p>\r\n\r\n<p>\r\nA standard poker deck contains <strong>52 cards</strong>, divided into four suits:\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Hearts (♥)</strong></li>\r\n    <li><strong>Diamonds (♦)</strong></li>\r\n    <li><strong>Clubs (♣)</strong></li>\r\n    <li><strong>Spades (♠)</strong></li>\r\n</ul>\r\n\r\n<p>\r\nEach suit includes cards numbered from <strong>2 to 10</strong>, along with four face cards and one ace:\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Jack (J)</strong></li>\r\n    <li><strong>Queen (Q)</strong></li>\r\n    <li><strong>King (K)</strong></li>\r\n    <li><strong>Ace (A)</strong></li>\r\n</ul>\r\n\r\n<p>\r\nDuring the game, players combine their cards to form different hand rankings. The strength of a hand determines the outcome of the round.\r\n</p>\r\n\r\n<p>\r\nCommon poker hand rankings include:\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>High Card</strong></li>\r\n    <li><strong>One Pair</strong></li>\r\n    <li><strong>Two Pair</strong></li>\r\n    <li><strong>Three of a Kind</strong></li>\r\n    <li><strong>Straight</strong></li>\r\n    <li><strong>Flush</strong></li>\r\n    <li><strong>Full House</strong></li>\r\n    <li><strong>Four of a Kind</strong></li>\r\n    <li><strong>Straight Flush</strong></li>\r\n    <li><strong>Royal Flush</strong></li>\r\n</ul>\r\n\r\n<p>\r\nThe player with the highest-ranking hand at the end of the round is declared the winner.\r\n</p>', NULL, NULL, '2026-03-09 18:12:06'),
(15, 'Color Prediction', 'color_prediction', '670f5b2d8af5a1729059629.png', 1, 0, 0, NULL, 100.00000000, 10.00000000, 0, '\"100\"', '\"100\"', NULL, NULL, '<p>\r\nAt the start of each round in the <strong>Color Prediction Game</strong>, players choose one of the available color or number options. After the selection period ends, the system generates a random result. When the result appears, the color or number displayed determines the outcome of the round.\r\n</p>\r\n\r\n<p>\r\nThe game includes <strong>10 number segments</strong> ranging from <strong>0 to 9</strong>. Each number is associated with a specific color category:\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Green:</strong> 1, 3, 7, 9</li>\r\n    <li><strong>Red:</strong> 2, 4, 6, 8</li>\r\n    <li><strong>Violet:</strong> 0, 5</li>\r\n</ul>\r\n\r\n<p>\r\nSome numbers also represent mixed color outcomes. For example, <strong>0</strong> can represent a combination of red and violet, while <strong>5</strong> can represent a combination of green and violet.\r\n</p>\r\n\r\n<p>\r\nAfter the countdown ends, a single number from <strong>0 to 9</strong> is displayed as the result. The corresponding color linked with that number determines the final outcome for the round.\r\n</p>', NULL, NULL, '2026-03-09 18:11:31'),
(16, 'Crazy Times', 'crazy_times', '6720d9aaa6d211730206122.png', 1, 0, 0, NULL, 100.00000000, 10.00000000, 0, '\"100\"', '\"50\"', NULL, '[\"30\",\"40\",\"50\",\"60\"]', '<p>\r\nAt the beginning of each round in \r\n<strong>Crazy Time</strong>, players choose one or more segments available on the wheel. \r\nOnce the selection phase ends, the host spins the large colorful wheel. When the wheel stops, \r\nthe result is determined by the segment where the flapper lands.\r\n</p>\r\n\r\n<p>\r\nThe wheel contains <strong>54 segments</strong> in total, divided into the following:\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>1</strong> – 21 segments</li>\r\n    <li><strong>2</strong> – 13 segments</li>\r\n    <li><strong>5</strong> – 7 segments</li>\r\n    <li><strong>10</strong> – 4 segments</li>\r\n    <li><strong>Coin Flip</strong> – 4 segments</li>\r\n    <li><strong>Cash Hunt</strong> – 2 segments</li>\r\n    <li><strong>Pachinko</strong> – 2 segments</li>\r\n    <li><strong>Crazy Time</strong> – 1 segment</li>\r\n</ul>\r\n\r\n<p>\r\nNumbered segments appear more frequently, while the special bonus segments appear less often. \r\nIf the wheel lands on a bonus segment such as <strong>Coin Flip</strong>, \r\n<strong>Cash Hunt</strong>, <strong>Pachinko</strong>, or <strong>Crazy Time</strong>, \r\na special bonus round is triggered with additional gameplay and potential rewards.\r\n</p>', NULL, NULL, '2026-03-09 18:10:54'),
(17, 'Dream Catcher', 'dream_catcher', '6815d25acd2e71746260570.png', 1, 1, 1, 0.00000000, 1000.00000000, 1.00000000, 0, '{\"one\":\"43\",\"two\":\"28\",\"five\":\"13\",\"ten\":\"7\",\"twenty\":\"4\",\"forty\":\"2\",\"twox\":\"2\",\"sevenx\":\"1\"}', '{\"one\":\"43\",\"two\":\"28\",\"five\":\"13\",\"ten\":\"7\",\"twenty\":\"4\",\"forty\":\"2\",\"twox\":\"1\",\"sevenx\":\"2\"}', NULL, NULL, '<p>\r\nAt the start of each round, players select one or more numbered segments available on the wheel. \r\nAfter the selection phase ends, the host spins the wheel. When the wheel stops, the segment \r\nwhere the flapper lands determines the result of the round.\r\n</p>\r\n\r\n<p>\r\nThe wheel contains <strong>54 segments</strong> in total, divided as follows:\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>1</strong> – 23 segments</li>\r\n    <li><strong>2</strong> – 15 segments</li>\r\n    <li><strong>5</strong> – 7 segments</li>\r\n    <li><strong>10</strong> – 4 segments</li>\r\n    <li><strong>20</strong> – 2 segments</li>\r\n    <li><strong>40</strong> – 1 segment</li>\r\n    <li><strong>2x Multiplier</strong> – 1 segment</li>\r\n    <li><strong>7x Multiplier</strong> – 1 segment</li>\r\n</ul>\r\n\r\n<p>\r\nSegments with smaller numbers appear more frequently, while higher numbers are rarer.\r\n</p>', NULL, NULL, '2026-03-09 18:09:44'),
(18, 'Andar Bahar', 'andar_bahar', '695373ce3ff591767076814.png', 1, 1, 1, 50.00000000, 1000.00000000, 1.00000000, 1, '\"50\"', '\"20\"', NULL, NULL, '<p>\r\nAt the start of a round in the <strong>Andar Bahar Game</strong>, a single card, called the <strong>joker card</strong>, is revealed in the center of the table. Players then predict whether a card matching the joker’s value will appear in the <strong>Andar</strong> side (left) or the <strong>Bahar</strong> side (right) first.\r\n</p>\r\n\r\n<p>\r\nThe game uses a standard deck of <strong>52 cards</strong>, excluding jokers. Cards are dealt alternately to the Andar and Bahar sides until a card matching the joker’s value appears.\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Joker Card:</strong> The first card revealed to set the target value</li>\r\n    <li><strong>Andar Side:</strong> Cards dealt to the left side</li>\r\n    <li><strong>Bahar Side:</strong> Cards dealt to the right side</li>\r\n</ul>\r\n\r\n<p>\r\nThe round continues with cards being dealt alternately to each side. The first side to reveal a card matching the joker’s value determines the outcome of the round.\r\n</p>\r\n\r\n<p>\r\nEach round is independent, and the card order is randomized every time, making each round unique and unpredictable.\r\n</p>', NULL, '2025-05-03 02:32:05', '2026-03-09 18:30:17'),
(19, 'Pai Gow Poker', 'pai_gow_poker', '6952166d1b1ba1766987373.png', 1, 1, 1, 50.00000000, 1000.00000000, 1.00000000, 1, '\"50\"', '\"0\"', NULL, NULL, '<p>\r\nAt the start of a round in <strong>Pai Gow Poker</strong>, each player is dealt <strong>seven cards</strong> from a standard 52-card deck plus a single joker. The objective is to create two separate hands: a <strong>five-card hand</strong> (the “high hand”) and a <strong>two-card hand</strong> (the “low hand”) that are both stronger than the dealer’s corresponding hands.\r\n</p>\r\n\r\n<p>\r\nThe game uses a standard deck of <strong>52 cards</strong> plus a joker, which can act as an ace or to complete a straight, flush, or straight flush. Each card has a specific rank used to compare hands:\r\n</p>\r\n\r\n<ul>\r\n    <li><strong>Ace:</strong> Can be high or low</li>\r\n    <li><strong>Face Cards:</strong> King, Queen, Jack</li>\r\n    <li><strong>Number Cards:</strong> 2 through 10</li>\r\n    <li><strong>Joker:</strong> Wild card for completing straights or flushes</li>\r\n</ul>\r\n\r\n<p>\r\nPlayers arrange their seven cards into the high hand (five cards) and the low hand (two cards). \r\nThe dealer then arranges their cards in the same manner. The round outcome is determined by comparing the player’s hands to the dealer’s hands:\r\n</p>\r\n\r\n<ul>\r\n    <li>If both player hands are stronger than the dealer’s, the round is considered a win.</li>\r\n    <li>If only one hand is stronger, the round is a tie.</li>\r\n    <li>If both hands are weaker, the round is lost.</li>\r\n</ul>\r\n\r\n<p>\r\nEach round is independent, and the card distribution is randomized every time, making each game unique and unpredictable.\r\n</p>', NULL, '2025-05-03 02:32:05', '2026-03-09 18:30:40');

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

--
-- Table structure for table `game_logs`
--

CREATE TABLE `game_logs` (
  `id` bigint UNSIGNED NOT NULL,
  `user_id` int NOT NULL DEFAULT '0',
  `game_id` int NOT NULL DEFAULT '0',
  `user_select` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `demo_play` tinyint(1) NOT NULL DEFAULT '0',
  `result` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `shuffled_cards` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` tinyint(1) NOT NULL DEFAULT '0',
  `invest` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `win_amo` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `try` int DEFAULT '0',
  `win_status` tinyint(1) DEFAULT '0',
  `game_name` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mines` tinyint NOT NULL DEFAULT '0',
  `mine_available` int NOT NULL DEFAULT '0',
  `gold_count` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `general_settings` (
  `id` bigint UNSIGNED NOT NULL,
  `site_name` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cur_text` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'currency text',
  `cur_sym` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'currency symbol',
  `email_from` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_from_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_template` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `sms_template` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sms_from` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `push_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `push_template` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `base_color` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `secondary_color` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mail_config` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'email configuration',
  `sms_config` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `firebase_config` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `global_shortcodes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `kv` tinyint(1) NOT NULL DEFAULT '0',
  `ev` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'email verification, 0 - dont check, 1 - check',
  `en` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'email notification, 0 - dont send, 1 - send',
  `sv` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'mobile verication, 0 - dont check, 1 - check',
  `sn` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'sms notification, 0 - dont send, 1 - send',
  `pn` tinyint(1) NOT NULL DEFAULT '1',
  `force_ssl` tinyint(1) NOT NULL DEFAULT '0',
  `maintenance_mode` tinyint(1) NOT NULL DEFAULT '0',
  `secure_password` tinyint(1) NOT NULL DEFAULT '0',
  `agree` tinyint(1) NOT NULL DEFAULT '0',
  `multi_language` tinyint(1) NOT NULL DEFAULT '1',
  `dc` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'dc => win commission',
  `rb` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'rb => register bonus\r\n',
  `registration` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: Off	, 1: On',
  `active_template` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `system_customized` tinyint(1) NOT NULL DEFAULT '0',
  `paginate_number` int NOT NULL DEFAULT '0',
  `currency_format` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1=>Both\r\n2=>Text Only\r\n3=>Symbol Only',
  `config_progress` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `register_bonus` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `last_cron` datetime DEFAULT NULL,
  `available_version` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `socialite_credentials` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `demo_balance` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `min_balance` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `balance_transfer_fixed_charge` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `balance_transfer_percent_charge` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `gameplay_number_for_bonus` int NOT NULL DEFAULT '0',
  `gameplay_bonus` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `game_play` tinyint NOT NULL DEFAULT '0',
  `balance_transfer` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `general_settings` (`id`, `site_name`, `cur_text`, `cur_sym`, `email_from`, `email_from_name`, `email_template`, `sms_template`, `sms_from`, `push_title`, `push_template`, `base_color`, `secondary_color`, `mail_config`, `sms_config`, `firebase_config`, `global_shortcodes`, `kv`, `ev`, `en`, `sv`, `sn`, `pn`, `force_ssl`, `maintenance_mode`, `secure_password`, `agree`, `multi_language`, `dc`, `rb`, `registration`, `active_template`, `system_customized`, `paginate_number`, `currency_format`, `config_progress`, `register_bonus`, `last_cron`, `available_version`, `socialite_credentials`, `demo_balance`, `min_balance`, `balance_transfer_fixed_charge`, `balance_transfer_percent_charge`, `gameplay_number_for_bonus`, `gameplay_bonus`, `game_play`, `balance_transfer`, `created_at`, `updated_at`) VALUES
(1, 'Xaxino', 'Diamond', '💎', 'no-reply@viserlab.com', 'ViserAdmin', '<html>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n<title>\r\n</title>\r\n<style type=\"text/css\">\r\n	.ReadMsgBody {\r\n		width: 100%;\r\n		background-color: #ffffff;\r\n	}\r\n	.ExternalClass {\r\n		width: 100%;\r\n		background-color: #ffffff;\r\n	}\r\n	.ExternalClass,\r\n	.ExternalClass p,\r\n	.ExternalClass span,\r\n	.ExternalClass font,\r\n	.ExternalClass td,\r\n	.ExternalClass div {\r\n		line-height: 100%;\r\n	}\r\n	html {\r\n		width: 100%;\r\n	}\r\n	body {\r\n		-webkit-text-size-adjust: none;\r\n		-ms-text-size-adjust: none;\r\n		margin: 0;\r\n		padding: 0;\r\n	}\r\n	table {\r\n		border-spacing: 0;\r\n		table-layout: fixed;\r\n		margin: 0 auto;\r\n		border-collapse: collapse;\r\n	}\r\n	table table table {\r\n		table-layout: auto;\r\n	}\r\n	.yshortcuts a {\r\n		border-bottom: none !important;\r\n	}\r\n	img:hover {\r\n		opacity: 0.9 !important;\r\n	}\r\n	a {\r\n		color: #0087ff;\r\n		text-decoration: none;\r\n	}\r\n	.textbutton a {\r\n		font-family: \"open sans\", arial, sans-serif !important;\r\n	}\r\n	.btn-link a {\r\n		color: #ffffff !important;\r\n	}\r\n	@media only screen and (max-width: 480px) {\r\n		body {\r\n			width: auto !important;\r\n		}\r\n		*[class=\"table-inner\"] {\r\n			width: 90% !important;\r\n			text-align: center !important;\r\n		}\r\n		*[class=\"table-full\"] {\r\n			width: 100% !important;\r\n			text-align: center !important;\r\n		} /* image */\r\n		img[class=\"img1\"] {\r\n			width: 100% !important;\r\n			height: auto !important;\r\n		}\r\n	}\r\n\r\n</style>\r\n<table bgcolor=\"#030442\" width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n	<tbody>\r\n		<tr>\r\n			<td height=\"50\">\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td align=\"center\" style=\"text-align:center;vertical-align:top;font-size:0;\">\r\n				<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n					<tbody>\r\n						<tr>\r\n							<td align=\"center\" width=\"600\">\r\n								<table class=\"table-inner\" width=\"95%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n									<tbody>\r\n										<tr>\r\n											<td bgcolor=\"#0087ff\" style=\"border-top-left-radius:6px; border-top-right-radius:6px;text-align:center;vertical-align:top;font-size:0;\" align=\"center\">\r\n												<table width=\"90%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n													<tbody>\r\n														<tr>\r\n															<td height=\"20\">\r\n															</td>\r\n														</tr>\r\n														<tr>\r\n															<td align=\"center\" style=\"font-family: Open sans, Arial, sans-serif; color:#FFFFFF; font-size:16px; font-weight: bold;\">\r\n															This is a System Generated Email</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"20\">\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n									</tbody>\r\n								</table>\r\n								<table class=\"table-inner\" width=\"95%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n									<tbody>\r\n										<tr>\r\n											<td bgcolor=\"#FFFFFF\" align=\"center\" style=\"text-align:center;vertical-align:top;font-size:0;\">\r\n												<table align=\"center\" width=\"90%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n													<tbody>\r\n														<tr>\r\n															<td height=\"35\">\r\n															</td>\r\n														</tr>\r\n														<tr>\r\n															<td align=\"center\" style=\"vertical-align:top;font-size:0;\">\r\n																<a href=\"#\">\r\n																	<img style=\"display:block; line-height:0px; font-size:0px; border:0px; width: 240px;\" width=\"240px\" src=\"https://viserlab.com/assets/images/logoIcon/logo-dark.png\" alt=\"img\">\r\n																</a>\r\n															</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"40\"></td>\r\n														</tr>\r\n														<tr>\r\n															<td align=\"center\" style=\"font-family: Open Sans, Arial, sans-serif; font-size: 22px;color:#414a51;font-weight: bold;\">\r\n															Hello {{fullname}} ({{username}}) </td>\r\n														</tr>\r\n														<tr>\r\n															<td align=\"center\" style=\"text-align:center;vertical-align:top;font-size:0;\">\r\n																<table width=\"40\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n																	<tbody>\r\n																		<tr>\r\n																			<td height=\"20\" style=\" border-bottom:3px solid #0087ff;\">\r\n																			</td>\r\n																		</tr>\r\n																	</tbody>\r\n																</table>\r\n															</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"30\"></td>\r\n														</tr>\r\n														<tr>\r\n															<td align=\"left\" style=\"font-family: Open sans, Arial, sans-serif; color:#7f8c8d; font-size:16px; line-height: 28px;\">\r\n															{{message}}</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"60\"></td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n										<tr>\r\n											<td height=\"45\" align=\"center\" bgcolor=\"#f4f4f4\" style=\"border-bottom-left-radius:6px;border-bottom-right-radius:6px;\">\r\n												<table align=\"center\" width=\"90%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n													<tbody>\r\n														<tr>\r\n															<td height=\"10\"></td>\r\n														</tr>\r\n														<tr>\r\n															<td class=\"preference-link\" align=\"center\" style=\"font-family: Open sans, Arial, sans-serif; color:#95a5a6; font-size:14px;\">\r\n																© 2023 <a href=\"#\">{{site_name}}</a> &nbsp;. All Rights Reserved. </td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"10\"></td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n					</tbody>\r\n				</table>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td height=\"60\"></td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n</html>', 'hi {{fullname}} ({{username}}), {{message}}', 'ViserAdmin', NULL, NULL, 'ac7a35', '', '{\"name\":\"php\"}', '{\"name\":\"nexmo\",\"clickatell\":{\"api_key\":\"----------------\"},\"infobip\":{\"username\":\"------------8888888\",\"password\":\"-----------------\"},\"message_bird\":{\"api_key\":\"-------------------\"},\"nexmo\":{\"api_key\":\"----------------------\",\"api_secret\":\"----------------------\"},\"sms_broadcast\":{\"username\":\"----------------------\",\"password\":\"-----------------------------\"},\"twilio\":{\"account_sid\":\"-----------------------\",\"auth_token\":\"---------------------------\",\"from\":\"----------------------\"},\"text_magic\":{\"username\":\"-----------------------\",\"apiv2_key\":\"-------------------------------\"},\"custom\":{\"method\":\"get\",\"url\":\"https:\\/\\/hostname\\/demo-api-v1\",\"headers\":{\"name\":[\"api_key\"],\"value\":[\"test_api 555\"]},\"body\":{\"name\":[\"from_number\"],\"value\":[\"5657545757\"]}}}', '{\"apiKey\":\"---------------------\",\"authDomain\":\"---------------------\",\"projectId\":\"---------------------\",\"storageBucket\":\"---------------------\",\"messagingSenderId\":\"---------------------\",\"appId\":\"---------------------\",\"measurementId\":\"---------------------\"}', '{\n    \"site_name\":\"Name of your site\",\n    \"site_currency\":\"Currency of your site\",\n    \"currency_symbol\":\"Symbol of currency\"\n}', 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 'basic', 0, 100, 3, '[]', 100000.00000000, '2026-03-11 06:40:03', '3.9', '{\"google\":{\"client_id\":\"----------------------\",\"client_secret\":\"----------------------\",\"status\":0},\"facebook\":{\"client_id\":\"----------------------\",\"client_secret\":\"----------------------\",\"status\":0},\"linkedin\":{\"client_id\":\"----------------------\",\"client_secret\":\"----------------------\",\"status\":0}}', 100000.00000000, 1000.00000000, 1.00000000, 1.00000000, 2, 2.00000000, 0, 1, NULL, '2026-03-12 00:48:51');

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

--
-- Table structure for table `guess_bonuses`
--

CREATE TABLE `guess_bonuses` (
  `id` bigint UNSIGNED NOT NULL,
  `chance` int NOT NULL DEFAULT '0',
  `percent` decimal(5,2) DEFAULT '0.00',
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `alias` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `guess_bonuses`
--

INSERT INTO `guess_bonuses` (`id`, `chance`, `percent`, `status`, `alias`, `created_at`, `updated_at`) VALUES
(1, 1, 15.00, 1, NULL, NULL, NULL),
(2, 2, 10.00, 1, NULL, NULL, NULL),
(3, 3, 5.00, 1, NULL, NULL, NULL),
(4, 1, 1.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(5, 2, 2.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(6, 3, 3.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(7, 4, 4.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(8, 5, 5.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(9, 6, 6.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(10, 7, 7.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(11, 8, 8.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(12, 9, 9.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(13, 10, 10.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(14, 11, 11.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(15, 12, 12.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(16, 13, 13.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(17, 14, 14.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(18, 15, 15.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(19, 16, 16.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(20, 17, 17.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(21, 18, 18.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(22, 19, 19.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(23, 20, 20.00, 1, 'mines', '2023-12-25 05:16:34', NULL),
(24, 1, 50.00, 1, 'poker', '2023-12-25 05:22:29', NULL),
(25, 2, 45.00, 1, 'poker', '2023-12-25 05:22:29', NULL),
(26, 3, 40.00, 1, 'poker', '2023-12-25 05:22:29', NULL),
(27, 4, 35.00, 1, 'poker', '2023-12-25 05:22:29', NULL),
(28, 5, 30.00, 1, 'poker', '2023-12-25 05:22:29', NULL),
(29, 6, 25.00, 1, 'poker', '2023-12-25 05:22:29', NULL),
(30, 7, 20.00, 1, 'poker', '2023-12-25 05:22:29', NULL),
(31, 8, 15.00, 1, 'poker', '2023-12-25 05:22:29', NULL),
(32, 9, 10.00, 1, 'poker', '2023-12-25 05:22:29', NULL),
(33, 10, 5.00, 1, 'poker', '2023-12-25 05:22:29', NULL),
(34, 1, 130.00, 1, 'number_guess', '2024-01-31 16:11:13', NULL),
(35, 2, 110.00, 1, 'number_guess', '2024-01-31 16:11:13', NULL),
(36, 3, 100.00, 1, 'number_guess', '2024-01-31 16:11:13', NULL),
(37, 4, 90.00, 1, 'number_guess', '2024-01-31 16:11:13', NULL),
(38, 5, 10.00, 1, 'number_guess', '2024-01-31 16:11:13', NULL);

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

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

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

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

INSERT INTO `languages` (`id`, `name`, `code`, `is_default`, `image`, `created_at`, `updated_at`) VALUES
(1, 'English', 'en', 1, '69ad10613b3c01772949601.png', '2020-07-06 03:47:55', '2026-03-08 00:00:01'),
(15, 'Hindi', 'hi', 0, '69ad10699a5cb1772949609.png', '2026-03-08 00:00:09', '2026-03-08 00:00:09'),
(16, 'Bangla', 'bn', 0, '69ad10728ce781772949618.png', '2026-03-08 00:00:18', '2026-03-08 00:00:18');

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

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

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

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

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

CREATE TABLE `notification_templates` (
  `id` bigint UNSIGNED NOT NULL,
  `act` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `push_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_body` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `sms_body` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `push_body` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `shortcodes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `email_status` tinyint(1) NOT NULL DEFAULT '1',
  `email_sent_from_name` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_sent_from_address` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sms_status` tinyint(1) NOT NULL DEFAULT '1',
  `sms_sent_from` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `push_status` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `notification_templates` (`id`, `act`, `name`, `subject`, `push_title`, `email_body`, `sms_body`, `push_body`, `shortcodes`, `email_status`, `email_sent_from_name`, `email_sent_from_address`, `sms_status`, `sms_sent_from`, `push_status`, `created_at`, `updated_at`) VALUES
(1, 'BAL_ADD', 'Balance - Added', 'Your Account has been Credited', '{{site_name}}', '<div><div style=\"font-family: Montserrat, sans-serif;\">{{amount}} {{site_currency}} has been added to your account .</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><span style=\"color: rgb(33, 37, 41); font-family: Montserrat, sans-serif;\">Your Current Balance is :&nbsp;</span><font style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">{{post_balance}}&nbsp; {{site_currency}}&nbsp;</span></font><br></div><div><font style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></font></div><div>Admin note:&nbsp;<span style=\"color: rgb(33, 37, 41); font-size: 12px; font-weight: 600; white-space: nowrap; text-align: var(--bs-body-text-align);\">{{remark}}</span></div>', '{{amount}} {{site_currency}} credited in your account. Your Current Balance {{post_balance}} {{site_currency}} . Transaction: #{{trx}}. Admin note is \"{{remark}}\"', '{{site_name}}', '{\"trx\":\"Transaction number for the action\",\"amount\":\"Amount inserted by the admin\",\"remark\":\"Remark inserted by the admin\",\"post_balance\":\"Balance of the user after this transaction\"}', 1, '{{site_name}}', NULL, 0, NULL, 0, '2021-11-03 12:00:00', '2022-04-03 02:18:28'),
(2, 'BAL_SUB', 'Balance - Subtracted', 'Your Account has been Debited', '{{site_name}}', '<div style=\"font-family: Montserrat, sans-serif;\">{{amount}} {{site_currency}} has been subtracted from your account .</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Transaction Number : {{trx}}</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><span style=\"color: rgb(33, 37, 41); font-family: Montserrat, sans-serif;\">Your Current Balance is :&nbsp;</span><font style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\">{{post_balance}}&nbsp; {{site_currency}}</span></font><br><div><font style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></font></div><div>Admin Note: {{remark}}</div>', '{{amount}} {{site_currency}} debited from your account. Your Current Balance {{post_balance}} {{site_currency}} . Transaction: #{{trx}}. Admin Note is {{remark}}', '{{site_name}}', '{\"trx\":\"Transaction number for the action\",\"amount\":\"Amount inserted by the admin\",\"remark\":\"Remark inserted by the admin\",\"post_balance\":\"Balance of the user after this transaction\"}', 1, '{{site_name}}', NULL, 1, NULL, 0, '2021-11-03 12:00:00', '2022-04-03 02:24:11'),
(7, 'PASS_RESET_CODE', 'Password - Reset - Code', 'Password Reset', '{{site_name}}', '<div style=\"font-family: Montserrat, sans-serif;\">We have received a request to reset the password for your account on&nbsp;<span style=\"font-weight: bolder;\">{{time}} .<br></span></div><div style=\"font-family: Montserrat, sans-serif;\">Requested From IP:&nbsp;<span style=\"font-weight: bolder;\">{{ip}}</span>&nbsp;using&nbsp;<span style=\"font-weight: bolder;\">{{browser}}</span>&nbsp;on&nbsp;<span style=\"font-weight: bolder;\">{{operating_system}}&nbsp;</span>.</div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><br style=\"font-family: Montserrat, sans-serif;\"><div style=\"font-family: Montserrat, sans-serif;\"><div>Your account recovery code is:&nbsp;&nbsp;&nbsp;<font size=\"6\"><span style=\"font-weight: bolder;\">{{code}}</span></font></div><div><br></div></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\"><font size=\"4\" color=\"#CC0000\">If you do not wish to reset your password, please disregard this message.&nbsp;</font><br></div><div><font size=\"4\" color=\"#CC0000\"><br></font></div>', 'Your account recovery code is: {{code}}', '{{site_name}}', '{\"code\":\"Verification code for password reset\",\"ip\":\"IP address of the user\",\"browser\":\"Browser of the user\",\"operating_system\":\"Operating system of the user\",\"time\":\"Time of the request\"}', 1, '{{site_name}}', NULL, 0, NULL, 0, '2021-11-03 12:00:00', '2022-03-20 20:47:05'),
(8, 'PASS_RESET_DONE', 'Password - Reset - Confirmation', 'You have reset your password', '{{site_name}}', '<p style=\"font-family: Montserrat, sans-serif;\">You have successfully reset your password.</p><p style=\"font-family: Montserrat, sans-serif;\">You changed from&nbsp; IP:&nbsp;<span style=\"font-weight: bolder;\">{{ip}}</span>&nbsp;using&nbsp;<span style=\"font-weight: bolder;\">{{browser}}</span>&nbsp;on&nbsp;<span style=\"font-weight: bolder;\">{{operating_system}}&nbsp;</span>&nbsp;on&nbsp;<span style=\"font-weight: bolder;\">{{time}}</span></p><p style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><br></span></p><p style=\"font-family: Montserrat, sans-serif;\"><span style=\"font-weight: bolder;\"><font color=\"#ff0000\">If you did not change that, please contact us as soon as possible.</font></span></p>', 'Your password has been changed successfully', '{{site_name}}', '{\"ip\":\"IP address of the user\",\"browser\":\"Browser of the user\",\"operating_system\":\"Operating system of the user\",\"time\":\"Time of the request\"}', 1, '{{site_name}}', NULL, 1, NULL, 0, '2021-11-03 12:00:00', '2022-04-05 03:46:35'),
(9, 'ADMIN_SUPPORT_REPLY', 'Support - Reply', 'Reply Support Ticket', '{{site_name}}', '<div><p><span data-mce-style=\"font-size: 11pt;\" style=\"font-size: 11pt;\"><span style=\"font-weight: bolder;\">A member from our support team has replied to the following ticket:</span></span></p><p><span style=\"font-weight: bolder;\"><span data-mce-style=\"font-size: 11pt;\" style=\"font-size: 11pt;\"><span style=\"font-weight: bolder;\"><br></span></span></span></p><p><span style=\"font-weight: bolder;\">[Ticket#{{ticket_id}}] {{ticket_subject}}<br><br>Click here to reply:&nbsp; {{link}}</span></p><p>----------------------------------------------</p><p>Here is the reply :<br></p><p>{{reply}}<br></p></div><div><br style=\"font-family: Montserrat, sans-serif;\"></div>', 'Your Ticket#{{ticket_id}} :  {{ticket_subject}} has been replied.', '{{site_name}}', '{\"ticket_id\":\"ID of the support ticket\",\"ticket_subject\":\"Subject  of the support ticket\",\"reply\":\"Reply made by the admin\",\"link\":\"URL to view the support ticket\"}', 1, '{{site_name}}', NULL, 1, NULL, 0, '2021-11-03 12:00:00', '2022-03-20 20:47:51'),
(10, 'EVER_CODE', 'Verification - Email', 'Please verify your email address', '{{site_name}}', '<div><div style=\"font-family: Montserrat, sans-serif;\">Thanks For joining us.<br></div><div style=\"font-family: Montserrat, sans-serif;\">Please use the below code to verify your email address.<br></div><div style=\"font-family: Montserrat, sans-serif;\"><br></div><div style=\"font-family: Montserrat, sans-serif;\">Your email verification code is:<font size=\"6\"><span style=\"font-weight: bolder;\">&nbsp;{{code}}</span></font></div></div>', 'Your email verification code is: {{code}}', '{{site_name}}', '{\"code\":\"Email verification code\"}', 1, '{{site_name}}', NULL, 0, NULL, 0, '2021-11-03 12:00:00', '2022-10-12 06:19:59'),
(11, 'SVER_CODE', 'Verification - SMS', 'Verify Your Mobile Number', '{{site_name}}', '---', 'Your phone verification code is: {{code}}', '{{site_name}}', '{\"code\":\"SMS Verification Code\"}', 0, '{{site_name}}', NULL, 1, NULL, 0, '2021-11-03 12:00:00', '2022-03-20 19:24:37'),
(15, 'DEFAULT', 'Default Template', '{{subject}}', '{{site_name}}', '{{message}}', '{{message}}', '{{site_name}}', '{\"subject\":\"Subject\",\"message\":\"Message\"}', 1, '{{site_name}}', NULL, 1, NULL, 0, '2019-09-14 13:14:22', '2021-11-04 09:38:55'),
(16, 'KYC_APPROVE', 'KYC Approved', 'KYC has been approved', '{{site_name}}', 'Your KYC has been approved by Admin', 'Your KYC has been approved by Admin', '{{site_name}}', '[]', 1, '{{site_name}}', NULL, 1, NULL, 0, NULL, '2022-10-12 06:21:25'),
(17, 'KYC_REJECT', 'KYC Rejected', 'KYC has been rejected', '{{site_name}}', '<span style=\"color: rgb(33, 37, 41);\">Your KYC has been rejected by Admin</span><br>', 'Your KYC has been rejected by Admin', '{{site_name}}', '{\"reason\":\"Rejection Reason\"}', 1, '{{site_name}}', NULL, 1, NULL, 0, NULL, '2022-10-12 06:22:07'),
(19, 'REGISTER_BONUS', 'Register Bonus', 'User Register Bonus', '{{site_name}}', '<div>Hi, {{username}}</div><div></div><div>You have got {{amount}} {{site_currency}} for register bonus.&nbsp;<br></div><div>Your current Balance: {{post_balance}} {{site_currency}},</div><div>Transaction Number : {{trx}},</div>', 'You have got {{amount}} {{site_currency}} for register bonus. \r\nTransaction: {{trx}},', '{{site_name}}', '{\"trx\":\"Transaction number\",\"amount\":\"Bonus Amount\",\"username\":\"User name\",\"post_balance\":\"Balance of the user after this transaction\"}', 1, '{{site_name}}', NULL, 1, NULL, 0, NULL, '2022-09-01 10:50:58'),
(20, 'BALANCE_TRANSFER', 'Balance Transfer', 'Balance Transfer', '{{site_name}}', '<div></div><div>You have got {{amount}} {{site_currency}} from {{sender}}.&nbsp;<br></div><div>Your current Balance: {{post_balance}} {{site_currency}},</div><div>Transaction Number : {{trx}},</div>', 'You have got {{amount}} {{site_currency}} from {{sender}}. \r\nTransaction: {{trx}},', '{{site_name}}', '{\"trx\":\"Transaction number\",\"amount\":\"Transfer Amount\",\"sender\":\"Sender name\",\"post_balance\":\"Balance of the user after this transaction\",\"sent_at\":\"Balance Transfer Time\"}', 1, '{{site_name}}', NULL, 1, NULL, 0, NULL, '2022-09-01 10:50:58'),
(21, 'GAMEPLAY_BONUS', 'Gameplay Bonus', 'Gameplay Bonus Received', '{{site_name}}', '<div>Gameplay bonus amount received.</div><div>You have got {{amount}} {{site_currency}}.&nbsp;<br></div><div>Your current Balance: {{post_balance}} {{site_currency}},</div><div>Transaction Number : {{trx}},</div><div>Regards</div><br><div>{{site_name}} Team </div>', 'You have got {{amount}} {{site_currency}} for gameplay. \r\nTransaction: {{trx}},', '{{site_name}}', '{\"trx\":\"Transaction number\",\"amount\":\"Bonus Amount\",\"post_balance\":\"Balance of the user after this transaction\"}', 1, '{{site_name}}', NULL, 1, NULL, 0, NULL, '2022-09-01 10:50:58'),
(22, 'DIAMOND_REQUEST_APPROVED', 'Diamond Request Approved', 'Diamond Request Approved', '{{site_name}}', '<div>You diamond request has been approved.</div><div>Your requested amount {{amount}} {{site_currency}}.&nbsp;</div><div>Transaction Number : {{trx}},</div><div>Regards</div><div>{{site_name}} Team</div>', 'You have got {{amount}} {{site_currency}} for gameplay. \r\nTransaction: {{trx}},', '{{site_name}}', '{\r\n            \"amount\":\"Request diamond amount\",\r\n            \"trx\":\"Request diamond trx\"\r\n        }', 1, '{{site_name}}', NULL, 1, NULL, 0, NULL, '2026-03-12 00:18:28'),
(23, 'DIAMOND_REQUEST_REJECTED', 'Diamond Request Rejected', 'Diamond Request Rejected', '{{site_name}}', '<div>You diamond request has been rejected.</div><div>Your requested amount {{amount}} {{site_currency}}.&nbsp;</div><div>Transaction Number : {{trx}},</div><div>Regards</div><div>{{site_name}} Team </div>', 'You have got {{amount}} {{site_currency}} for gameplay. \r\nTransaction: {{trx}},', '{{site_name}}', '{\r\n            \"amount\":\"Request diamond amount\",\r\n            \"trx\":\"Request diamond trx\"\r\n        }', 1, '{{site_name}}', NULL, 1, NULL, 0, NULL, '2026-03-12 00:18:16'),
(24, 'DIAMOND_REQUEST_PENDING', 'Diamond Request Pending', 'Diamond Request Pending', '{{site_name}}', '<div>You diamond request has been pending.</div><div>Your requested amount {{amount}} {{site_currency}}.&nbsp;</div><div>Transaction Number : {{trx}},</div><div>Regards</div><div>{{site_name}} Team</div>', 'You have got {{amount}} {{site_currency}} for gameplay. \r\nTransaction: {{trx}},', '{{site_name}}', '{\r\n            \"amount\":\"Request diamond amount\",\r\n            \"trx\":\"Request diamond trx\"\r\n        }', 1, '{{site_name}}', NULL, 1, NULL, 0, NULL, '2026-03-12 00:18:37');

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

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

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

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

INSERT INTO `pages` (`id`, `name`, `slug`, `tempname`, `secs`, `seo_content`, `is_default`, `created_at`, `updated_at`) VALUES
(1, 'HOME', '/', 'templates.basic.', '[\"statistics\",\"game\",\"about\",\"why_choose_us\",\"trx_win\",\"cta\",\"how_work\",\"faq\",\"testimonial\",\"blog\"]', NULL, 1, '2020-07-11 06:23:58', '2026-03-07 05:03:52'),
(4, 'Blog', 'blog', 'templates.basic.', NULL, NULL, 1, '2020-10-22 01:14:43', '2022-08-31 07:46:38'),
(5, 'Contact', 'contact', 'templates.basic.', NULL, NULL, 1, '2020-10-22 01:14:53', '2022-08-31 07:48:18'),
(19, 'About Us', 'about-us', 'templates.basic.', '[\"about\",\"why_choose_us\",\"faq\",\"testimonial\"]', NULL, 0, '2022-08-24 09:25:39', '2022-08-24 09:26:12'),
(20, 'Games', 'games', 'templates.basic.', '[\"why_choose_us\"]', NULL, 1, '2022-08-24 09:26:42', '2025-04-23 00:46:59'),
(21, 'HOME', '/', 'templates.sunfyre.', '[\"game\",\"why_choose_us\",\"trx_win\",\"testimonial\",\"how_work\",\"faq\",\"blog\",\"cta\"]', NULL, 1, '2020-07-11 10:23:58', '2024-01-02 10:27:35'),
(22, 'About', 'about', 'templates.sunfyre.', '[\"about\",\"how_work\",\"testimonial\",\"faq\"]', NULL, 0, '2023-12-27 09:46:30', '2026-03-07 04:43:12'),
(23, 'Game', 'game', 'templates.sunfyre.', NULL, NULL, 1, '2023-12-27 09:47:34', '2023-12-27 09:47:34'),
(24, 'Blog', 'blog', 'templates.sunfyre.', NULL, NULL, 1, '2024-01-02 10:29:47', '2024-01-02 11:57:04');

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

CREATE TABLE `transactions` (
  `id` bigint UNSIGNED NOT NULL,
  `user_id` int UNSIGNED NOT NULL DEFAULT '0',
  `amount` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `charge` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `post_balance` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `trx_type` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trx` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `details` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remark` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

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

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

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

CREATE TABLE `users` (
  `id` bigint UNSIGNED NOT NULL,
  `firstname` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lastname` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `username` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `dial_code` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_code` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mobile` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ref_by` int UNSIGNED DEFAULT NULL,
  `balance` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `demo_balance` decimal(28,8) NOT NULL DEFAULT '0.00000000',
  `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `country_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `zip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'contains full address',
  `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0: banned, 1: active',
  `ev` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: email unverified, 1: email verified',
  `sv` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: sms unverified, 1: sms verified',
  `ver_code` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'stores verification code',
  `ver_code_send_at` datetime DEFAULT NULL COMMENT 'verification send time',
  `ts` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: 2fa off, 1: 2fa on',
  `tv` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0: 2fa unverified, 1: 2fa verified',
  `tsc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remember_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `provider` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `provider_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `kyc_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `kyc_rejection_reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `kv` tinyint(1) NOT NULL DEFAULT '0',
  `profile_complete` tinyint(1) NOT NULL DEFAULT '0',
  `ban_reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `login_by` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

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

--
-- Indexes for dumped tables
--

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `admins`
--
ALTER TABLE `admins`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `admin_notifications`
--
ALTER TABLE `admin_notifications`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

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

--
-- AUTO_INCREMENT for table `balance_transfers`
--
ALTER TABLE `balance_transfers`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cron_jobs`
--
ALTER TABLE `cron_jobs`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `cron_job_logs`
--
ALTER TABLE `cron_job_logs`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cron_schedules`
--
ALTER TABLE `cron_schedules`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

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

--
-- AUTO_INCREMENT for table `diamond_requests`
--
ALTER TABLE `diamond_requests`
  MODIFY `id` bigint NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `extensions`
--
ALTER TABLE `extensions`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `forms`
--
ALTER TABLE `forms`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `frontends`
--
ALTER TABLE `frontends`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=208;

--
-- AUTO_INCREMENT for table `gameplay_bonus_logs`
--
ALTER TABLE `gameplay_bonus_logs`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `games`
--
ALTER TABLE `games`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;

--
-- AUTO_INCREMENT for table `game_logs`
--
ALTER TABLE `game_logs`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

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

--
-- AUTO_INCREMENT for table `guess_bonuses`
--
ALTER TABLE `guess_bonuses`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39;

--
-- AUTO_INCREMENT for table `languages`
--
ALTER TABLE `languages`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

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

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

--
-- AUTO_INCREMENT for table `pages`
--
ALTER TABLE `pages`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;

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

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

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

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

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

--
-- AUTO_INCREMENT for table `transactions`
--
ALTER TABLE `transactions`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

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

--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `user_logins`
--
ALTER TABLE `user_logins`
  MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;
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 */;