This commit is contained in:
Nguyễn Tiến Dũng
2022-05-01 22:01:12 +07:00
parent 0363bb15ba
commit 96e0513959
102 changed files with 27404 additions and 0 deletions

0
resources/css/app.css Normal file
View File

1
resources/js/app.js Normal file
View File

@@ -0,0 +1 @@
require('./bootstrap');

28
resources/js/bootstrap.js vendored Normal file
View File

@@ -0,0 +1,28 @@
window._ = require('lodash');
/**
* We'll load the axios HTTP library which allows us to easily issue requests
* to our Laravel back-end. This library automatically handles sending the
* CSRF token as a header based on the value of the "XSRF" token cookie.
*/
window.axios = require('axios');
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
/**
* Echo exposes an expressive API for subscribing to channels and listening
* for events that are broadcast by Laravel. Echo and event broadcasting
* allows your team to easily build robust real-time web applications.
*/
// import Echo from 'laravel-echo';
// window.Pusher = require('pusher-js');
// window.Echo = new Echo({
// broadcaster: 'pusher',
// key: process.env.MIX_PUSHER_APP_KEY,
// cluster: process.env.MIX_PUSHER_APP_CLUSTER,
// forceTLS: true
// });

View File

@@ -0,0 +1,20 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user. You are free to modify
| these language lines according to your application's requirements.
|
*/
'failed' => 'These credentials do not match our records.',
'password' => 'The provided password is incorrect.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
];

View File

@@ -0,0 +1,19 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pagination links. You are free to change them to anything
| you want to customize your views to better match your application.
|
*/
'previous' => '&laquo; Previous',
'next' => 'Next &raquo;',
];

View File

@@ -0,0 +1,22 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are given by the password broker for a password update attempt
| has failed, such as for an invalid token or invalid new password.
|
*/
'reset' => 'Your password has been reset!',
'sent' => 'We have emailed your password reset link!',
'throttled' => 'Please wait before retrying.',
'token' => 'This password reset token is invalid.',
'user' => "We can't find a user with that email address.",
];

View File

@@ -0,0 +1,163 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
'accepted' => 'The :attribute must be accepted.',
'accepted_if' => 'The :attribute must be accepted when :other is :value.',
'active_url' => 'The :attribute is not a valid URL.',
'after' => 'The :attribute must be a date after :date.',
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
'alpha' => 'The :attribute must only contain letters.',
'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
'alpha_num' => 'The :attribute must only contain letters and numbers.',
'array' => 'The :attribute must be an array.',
'before' => 'The :attribute must be a date before :date.',
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
'between' => [
'numeric' => 'The :attribute must be between :min and :max.',
'file' => 'The :attribute must be between :min and :max kilobytes.',
'string' => 'The :attribute must be between :min and :max characters.',
'array' => 'The :attribute must have between :min and :max items.',
],
'boolean' => 'The :attribute field must be true or false.',
'confirmed' => 'The :attribute confirmation does not match.',
'current_password' => 'The password is incorrect.',
'date' => 'The :attribute is not a valid date.',
'date_equals' => 'The :attribute must be a date equal to :date.',
'date_format' => 'The :attribute does not match the format :format.',
'declined' => 'The :attribute must be declined.',
'declined_if' => 'The :attribute must be declined when :other is :value.',
'different' => 'The :attribute and :other must be different.',
'digits' => 'The :attribute must be :digits digits.',
'digits_between' => 'The :attribute must be between :min and :max digits.',
'dimensions' => 'The :attribute has invalid image dimensions.',
'distinct' => 'The :attribute field has a duplicate value.',
'email' => 'The :attribute must be a valid email address.',
'ends_with' => 'The :attribute must end with one of the following: :values.',
'enum' => 'The selected :attribute is invalid.',
'exists' => 'The selected :attribute is invalid.',
'file' => 'The :attribute must be a file.',
'filled' => 'The :attribute field must have a value.',
'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
'file' => 'The :attribute must be greater than :value kilobytes.',
'string' => 'The :attribute must be greater than :value characters.',
'array' => 'The :attribute must have more than :value items.',
],
'gte' => [
'numeric' => 'The :attribute must be greater than or equal to :value.',
'file' => 'The :attribute must be greater than or equal to :value kilobytes.',
'string' => 'The :attribute must be greater than or equal to :value characters.',
'array' => 'The :attribute must have :value items or more.',
],
'image' => 'The :attribute must be an image.',
'in' => 'The selected :attribute is invalid.',
'in_array' => 'The :attribute field does not exist in :other.',
'integer' => 'The :attribute must be an integer.',
'ip' => 'The :attribute must be a valid IP address.',
'ipv4' => 'The :attribute must be a valid IPv4 address.',
'ipv6' => 'The :attribute must be a valid IPv6 address.',
'json' => 'The :attribute must be a valid JSON string.',
'lt' => [
'numeric' => 'The :attribute must be less than :value.',
'file' => 'The :attribute must be less than :value kilobytes.',
'string' => 'The :attribute must be less than :value characters.',
'array' => 'The :attribute must have less than :value items.',
],
'lte' => [
'numeric' => 'The :attribute must be less than or equal to :value.',
'file' => 'The :attribute must be less than or equal to :value kilobytes.',
'string' => 'The :attribute must be less than or equal to :value characters.',
'array' => 'The :attribute must not have more than :value items.',
],
'mac_address' => 'The :attribute must be a valid MAC address.',
'max' => [
'numeric' => 'The :attribute must not be greater than :max.',
'file' => 'The :attribute must not be greater than :max kilobytes.',
'string' => 'The :attribute must not be greater than :max characters.',
'array' => 'The :attribute must not have more than :max items.',
],
'mimes' => 'The :attribute must be a file of type: :values.',
'mimetypes' => 'The :attribute must be a file of type: :values.',
'min' => [
'numeric' => 'The :attribute must be at least :min.',
'file' => 'The :attribute must be at least :min kilobytes.',
'string' => 'The :attribute must be at least :min characters.',
'array' => 'The :attribute must have at least :min items.',
],
'multiple_of' => 'The :attribute must be a multiple of :value.',
'not_in' => 'The selected :attribute is invalid.',
'not_regex' => 'The :attribute format is invalid.',
'numeric' => 'The :attribute must be a number.',
'password' => 'The password is incorrect.',
'present' => 'The :attribute field must be present.',
'prohibited' => 'The :attribute field is prohibited.',
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
'prohibits' => 'The :attribute field prohibits :other from being present.',
'regex' => 'The :attribute format is invalid.',
'required' => 'The :attribute field is required.',
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
'required_if' => 'The :attribute field is required when :other is :value.',
'required_unless' => 'The :attribute field is required unless :other is in :values.',
'required_with' => 'The :attribute field is required when :values is present.',
'required_with_all' => 'The :attribute field is required when :values are present.',
'required_without' => 'The :attribute field is required when :values is not present.',
'required_without_all' => 'The :attribute field is required when none of :values are present.',
'same' => 'The :attribute and :other must match.',
'size' => [
'numeric' => 'The :attribute must be :size.',
'file' => 'The :attribute must be :size kilobytes.',
'string' => 'The :attribute must be :size characters.',
'array' => 'The :attribute must contain :size items.',
],
'starts_with' => 'The :attribute must start with one of the following: :values.',
'string' => 'The :attribute must be a string.',
'timezone' => 'The :attribute must be a valid timezone.',
'unique' => 'The :attribute has already been taken.',
'uploaded' => 'The :attribute failed to upload.',
'url' => 'The :attribute must be a valid URL.',
'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap our attribute placeholder
| with something more reader friendly such as "E-Mail Address" instead
| of "email". This simply helps us make our message more expressive.
|
*/
'attributes' => [],
];

View File

@@ -0,0 +1 @@
<div class="panel-body game" style="padding-top: 10px;padding-bottom: 20px;" game-tab="day_mission"> <div class="body"> <div class="text-center"> <font color="blue"><big><b>Nhiệm Vụ Ngày</b></big></font> <br> <div class="form-group" id="non_query" style="background-color: #7ee2ff;border-color: #ad4105;padding: 20px;"> <label for="partnerId">Số điện thoại:</label> <input type="text" class="form-control" name="partnerId" id="partnerId" aria-describedby="partnerId" placeholder="094xxxxxxx"> <small id="partnerId" class="form-text text-muted">Nhập số điện thoại của bạn để kiểm tra nhận thưởng.</small> <br> <button class="btn btn-success check-day-mission" onclick="QuangApp.check_dayMission()">Kiểm Tra</button> <p> Tổng tiền Nhiệm Vụ Ngày đã trao: <b id="total_reward" style="color:blue;">2,680,000</b> <font style="color:blue;">VNĐ</font></p> </div> <div class="form-group" id="query_done" style="display:none;"></div> <div class="form-group bg-warning" id="day_mission_querying" style="display: none;">Đang truy vấn... xin chờ nhé...</div> </div> <div class="day_mission" style="background-color: #7ee2ff;border-color: #ad4105;padding: 20px;"> - Thật tuyệt vời ! Mỗi ngày chỉ cần chơi trên <b class="text-success">trummomo.me</b> chắc chắn bạn sẽ nhận được tiền. <br> - Khi chơi đủ số tiền (ko cần biết thắng thua) chắc chắn sẽ nhận được tiền. <br> - Hãy nhập số điện thoại của bạn vào mục bên trên để kiểm tra đã chơi bao nhiêu nhé. Chú ý : Phải nhập sdt số vd: 082xxx -> 0129xxx , 03xxx -> 016... <br> - Khi chơi đủ mốc tiền, các bạn ấn vào nhận thưởng để nhận được các mốc như sau: <div class="table-responsive"> <table class="table table-striped table-bordered table-hover text-center"> <thead> <tr role="row" class="bg-primary"> <th class="text-center text-white">Mốc chơi</th> <th class="text-center text-white">Thưởng</th> </tr> </thead> <tbody id="tbody_day_mission"> <tr> <td>500,000đ</td> <td>5,000đ</td> </tr> <tr> <td>2,000,000đ</td> <td>10,000đ</td> </tr> <tr> <td>5,000,000đ</td> <td class="text-danger">15,000đ</td> </tr> <tr> <td>10,000,000</td> <td class="text-danger">50,000đ</td> </tr> <tr> <td>25,000,000</td> <td class="text-danger">150,000đ</td> </tr> </tbody> </table> </div> </div> </div> </div>

View File

@@ -0,0 +1,917 @@
<div class="panel-body game" style="padding-top: 10px; padding-bottom: 20px;" game-tab="chanle2">
<p>- <b>Chẵn lẻ 2</b> một game tính kết quả bằng <b> 1 số cuối giao dịch</b>.</p>
<p>-Cách chơi cùng đơn giản :</p>
<p>- Chuyển tiền vào một trong các tài khoản:</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center mb-0">
<thead>
<th class="text-center text-white bg-primary">Số điện thoại</th>
<th class="text-center text-white bg-primary">Tối thiểu</th>
<th class="text-center text-white bg-primary">Tối đa</th>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="result-table-10" role="alert">
<tr>
<td id="mm_0528192535">
<b id="mln">
0528192535 <b id="hmln" attr-name="amount"><font color="green">11,576,070</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="red">167</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192535')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192535')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192536">
<b id="mln">
0528192536 <b id="hmln" attr-name="amount"><font color="green">9,018,973</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">140</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192536')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192536')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192537">
<b id="mln">
0528192537 <b id="hmln" attr-name="amount"><font color="green">33,969,783</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">142</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192537')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192537')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192538">
<b id="mln">
0528192538 <b id="hmln" attr-name="amount"><font color="green">3,697,136</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">15</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192538')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192538')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0563658041">
<b id="mln">
0563658041 <b id="hmln" attr-name="amount"><font color="green">36,730,599</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">120</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0563658041')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0563658041')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
</tbody>
</table>
</div>
<div class="text-center font-weight-bold">
<b>Làm mới sau <span class="text-danger coundown-time">0</span> s</b>
</div>
<p class="mt-3">
- Nội dung chuyển: <span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"></span><span class="fa-stack-1x text-white">2</span></span> hoặc
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-le"></span><span class="fa-stack-1x text-white">1</span></span> (nếu đuôi giao dịch các số sau)
</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<th class="text-center text-white bg-primary">Nội dung</th>
<th class="text-center text-white bg-primary">1 Số cuối</th>
<th class="text-center text-white bg-primary">Tiền nhận</th>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="" id="result-table" role="alert">
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"> </span> <span class="fa-stack-1x text-white comment-chan">2</span></span>
</td>
<td><code>0</code> - <code>2</code> - <code>4</code> - <code>6</code> - <code>8</code></td>
<td><b>1.95</b></td>
</tr>
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-le"> </span><span class="fa-stack-1x text-white comment-le">1</span></span>
</td>
<td><code>1</code> - <code>3</code> - <code>5</code> - <code>7</code> - <code>9</code></td>
<td><b>1.95</b></td>
</tr>
</tbody>
</table>
</div>
- <b> Lưu ý: </b> <br />
-Số tiền nhỏ nhất của <span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"></span><span class="fa-stack-1x text-white comment-chan">2</span></span>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-le"></span><span class="fa-stack-1x text-white">1</span></span> <b>1,000 VND</b> lớn nhất <b>500,000 VND</b> . Tiền thắng sẽ = <b> tiền đặt * <b>1.95</b></b>
</div>
<div class="panel-body game" style="padding-top: 10px; padding-bottom: 20px;" game-tab="chanle">
<p>- <b>Chẵn lẻ</b> một game tính kết quả bằng <b> 1 số cuối giao dịch</b>.</p>
<p>-Cách chơi cùng đơn giản :</p>
<p>- Chuyển tiền vào một trong các tài khoản:</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center mb-0">
<thead>
<th class="text-center text-white bg-primary">Số điện thoại</th>
<th class="text-center text-white bg-primary">Tối thiểu</th>
<th class="text-center text-white bg-primary">Tối đa</th>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="result-table-10" role="alert">
<tr>
<td id="mm_0528192535">
<b id="mln">
0528192535 <b id="hmln" attr-name="amount"><font color="green">11,576,070</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="red">167</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192535')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192535')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192536">
<b id="mln">
0528192536 <b id="hmln" attr-name="amount"><font color="green">9,018,973</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">140</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192536')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192536')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192537">
<b id="mln">
0528192537 <b id="hmln" attr-name="amount"><font color="green">33,969,783</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">142</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192537')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192537')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192538">
<b id="mln">
0528192538 <b id="hmln" attr-name="amount"><font color="green">3,697,136</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">15</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192538')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192538')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0563658041">
<b id="mln">
0563658041 <b id="hmln" attr-name="amount"><font color="green">36,730,599</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">120</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0563658041')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0563658041')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
</tbody>
</table>
</div>
<div class="text-center font-weight-bold">
<b>Làm mới sau <span class="text-danger coundown-time">0</span> s</b>
</div>
<p class="mt-3">
- Nội dung chuyển: <span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"></span><span class="fa-stack-1x text-white">C</span></span> hoặc
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-le"></span><span class="fa-stack-1x text-white">L</span></span> (nếu đuôi giao dịch các số sau)
</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<th class="text-center text-white bg-primary">Nội dung</th>
<th class="text-center text-white bg-primary">1 Số cuối</th>
<th class="text-center text-white bg-primary">Tiền nhận</th>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="" id="result-table" role="alert">
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"> </span> <span class="fa-stack-1x text-white comment-chan">C</span></span>
</td>
<td><code>2</code> - <code>4</code> - <code>6</code> - <code>8</code></td>
<td><b>2.4</b></td>
</tr>
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-le"> </span><span class="fa-stack-1x text-white comment-le">L</span></span>
</td>
<td><code>1</code> - <code>3</code> - <code>5</code> - <code>7</code></td>
<td><b>2.4</b></td>
</tr>
</tbody>
</table>
</div>
- <b> Lưu ý: </b> <br />
-Số tiền nhỏ nhất của <span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"></span><span class="fa-stack-1x text-white comment-chan">C</span></span>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-le"></span><span class="fa-stack-1x text-white">L</span></span> <b>1,000 VND</b> lớn nhất <b>500,000 VND</b> . Tiền thắng sẽ = <b> tiền đặt * <b>2.4</b></b>
</div>
<div class="panel-body game" style="padding-top: 10px; padding-bottom: 20px;" game-tab="taixiu2">
<p>- <b>Tài Xỉu 2</b> một game tính kết quả bằng <b> 1 số cuối giao dịch</b>.</p>
<p>-Cách chơi cùng đơn giản :</p>
<p>- Chuyển tiền vào một trong các tài khoản:</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center mb-0">
<thead>
<th class="text-center text-white bg-primary">Số điện thoại</th>
<th class="text-center text-white bg-primary">Tối thiểu</th>
<th class="text-center text-white bg-primary">Tối đa</th>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="result-table-10" role="alert">
<tr>
<td id="mm_0528192535">
<b id="mln">
0528192535 <b id="hmln" attr-name="amount"><font color="green">11,576,070</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="red">167</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192535')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192535')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192536">
<b id="mln">
0528192536 <b id="hmln" attr-name="amount"><font color="green">9,018,973</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">140</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192536')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192536')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192537">
<b id="mln">
0528192537 <b id="hmln" attr-name="amount"><font color="green">33,969,783</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">142</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192537')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192537')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192538">
<b id="mln">
0528192538 <b id="hmln" attr-name="amount"><font color="green">3,697,136</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">15</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192538')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192538')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0563658041">
<b id="mln">
0563658041 <b id="hmln" attr-name="amount"><font color="green">36,730,599</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">120</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0563658041')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0563658041')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
</tbody>
</table>
</div>
<div class="text-center font-weight-bold">
<b>Làm mới sau <span class="text-danger coundown-time">0</span> s</b>
</div>
<p class="mt-3">
- Nội dung chuyển: <span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-tai"></span><span class="fa-stack-1x text-white">4</span></span> hoặc
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-xiu"></span><span class="fa-stack-1x text-white">3</span></span> (nếu đuôi giao dịch các số sau)
</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<th class="text-center text-white bg-primary">Nội dung</th>
<th class="text-center text-white bg-primary">1 Số cuối</th>
<th class="text-center text-white bg-primary">Tiền nhận</th>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="" id="result-table" role="alert">
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-tai"> </span> <span class="fa-stack-1x text-white comment-tai">4</span></span>
</td>
<td><code>5</code> - <code>6</code> - <code>7</code> - <code>8</code> - <code>9</code></td>
<td><b>1.95</b></td>
</tr>
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-xiu"> </span><span class="fa-stack-1x text-white comment-xiu">3</span></span>
</td>
<td><code>0</code> - <code>1</code> - <code>2</code> - <code>3</code> - <code>4</code></td>
<td><b>1.95</b></td>
</tr>
</tbody>
</table>
</div>
- <b> Lưu ý: </b> <br />
-Số tiền nhỏ nhất của <span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-tai"></span><span class="fa-stack-1x text-white comment-tai">4</span></span>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-xiu"></span><span class="fa-stack-1x text-white">3</span></span> <b>1,000 VND</b> lớn nhất <b>1,000,000 VND</b> . Tiền thắng sẽ = <b> tiền đặt * <b>1.95</b></b>
</div>
<div class="panel-body game" style="padding-top: 10px; padding-bottom: 20px;" game-tab="taixiu">
<p>- <b>Tài Xỉu</b> một game tính kết quả bằng <b> 1 số cuối giao dịch</b>.</p>
<p>-Cách chơi cùng đơn giản :</p>
<p>- Chuyển tiền vào một trong các tài khoản:</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center mb-0">
<thead>
<th class="text-center text-white bg-primary">Số điện thoại</th>
<th class="text-center text-white bg-primary">Tối thiểu</th>
<th class="text-center text-white bg-primary">Tối đa</th>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="result-table-10" role="alert">
<tr>
<td id="mm_0528192535">
<b id="mln">
0528192535 <b id="hmln" attr-name="amount"><font color="green">11,576,070</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="red">167</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192535')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192535')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192536">
<b id="mln">
0528192536 <b id="hmln" attr-name="amount"><font color="green">9,018,973</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">140</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192536')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192536')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192537">
<b id="mln">
0528192537 <b id="hmln" attr-name="amount"><font color="green">33,969,783</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">142</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192537')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192537')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192538">
<b id="mln">
0528192538 <b id="hmln" attr-name="amount"><font color="green">3,697,136</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">15</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192538')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192538')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0563658041">
<b id="mln">
0563658041 <b id="hmln" attr-name="amount"><font color="green">36,730,599</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">120</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0563658041')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0563658041')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>500,000 VNĐ</td>
</tr>
</tbody>
</table>
</div>
<div class="text-center font-weight-bold">
<b>Làm mới sau <span class="text-danger coundown-time">0</span> s</b>
</div>
<p class="mt-3">
- Nội dung chuyển: <span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-tai"></span><span class="fa-stack-1x text-white">T</span></span> hoặc
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-xiu"></span><span class="fa-stack-1x text-white">X</span></span> (nếu đuôi giao dịch các số sau)
</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<th class="text-center text-white bg-primary">Nội dung</th>
<th class="text-center text-white bg-primary">1 Số cuối</th>
<th class="text-center text-white bg-primary">Tiền nhận</th>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="" id="result-table" role="alert">
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-tai"> </span> <span class="fa-stack-1x text-white comment-tai">T</span></span>
</td>
<td><code>5</code> - <code>6</code> - <code>7</code> - <code>8</code></td>
<td><b>2.4</b></td>
</tr>
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-xiu"> </span><span class="fa-stack-1x text-white comment-xiu">X</span></span>
</td>
<td><code>1</code> - <code>2</code> - <code>3</code> - <code>4</code></td>
<td><b>2.4</b></td>
</tr>
</tbody>
</table>
</div>
- <b> Lưu ý: </b> <br />
-Số tiền nhỏ nhất của <span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-tai"></span><span class="fa-stack-1x text-white comment-tai">T</span></span>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-xiu"></span><span class="fa-stack-1x text-white">X</span></span> <b>1,000 VND</b> lớn nhất <b>500,000 VND</b> . Tiền thắng sẽ = <b> tiền đặt * <b>2.4</b></b>
</div>
<div class="panel-body game" style="padding-top: 10px; padding-bottom: 20px;" game-tab="x3">
<p>- <b>1 phần 3</b> một game tính kết quả bằng <b> 1 số cuối giao dịch</b>.</p>
<p>- Cách chơi cùng đơn giản:</p>
<p>- Chuyển tiền vào một trong các tài khoản:</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center mb-0">
<thead>
<th class="text-center text-white bg-primary">Số điện thoại</th>
<th class="text-center text-white bg-primary">Tối thiểu</th>
<th class="text-center text-white bg-primary">Tối đa</th>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="result-table-10" role="alert">
<tr>
<td id="mm_0528192535">
<b id="mln">
0528192535 <b id="hmln" attr-name="amount"><font color="green">11,576,070</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="red">167</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192535')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192535')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192536">
<b id="mln">
0528192536 <b id="hmln" attr-name="amount"><font color="green">9,018,973</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">140</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192536')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192536')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192537">
<b id="mln">
0528192537 <b id="hmln" attr-name="amount"><font color="green">33,969,783</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">142</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192537')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192537')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192538">
<b id="mln">
0528192538 <b id="hmln" attr-name="amount"><font color="green">3,697,136</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">15</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192538')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192538')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0563658041">
<b id="mln">
0563658041 <b id="hmln" attr-name="amount"><font color="green">36,730,599</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">120</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0563658041')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0563658041')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
</tbody>
</table>
</div>
<div class="text-center font-weight-bold">
<b>Làm mới sau <span class="text-danger coundown-time">0</span> s</b>
</div>
<p class="mt-3">
- Nội dung chuyển: <span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"></span><span class="fa-stack-1x text-white comment-n1">N1</span></span> hoặc
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-le"> </span><span class="fa-stack-1x text-white comment-n2">N2</span></span> hoặc
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-tai"> </span><span class="fa-stack-1x text-white comment-n3">N3</span></span> hoặc
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-xiu"> </span><span class="fa-stack-1x text-white comment-n0">N0</span></span> (nếu đuôi giao dịch các số sau)
</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr class="bg-primary" role="row">
<th class="text-center text-white">Nội dung</th>
<th class="text-center text-white">1 Số cuối</th>
<th class="text-center text-white">Tiền nhận</th>
</tr>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="" id="result-table" role="alert">
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"> </span><span class="fa-stack-1x text-white" id="">N1</span></span>
</td>
<td><code>1</code> - <code>2</code> - <code>3</code></td>
<td><b>3.2</b></td>
</tr>
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-le"> </span><span class="fa-stack-1x text-white" id="">N2</span></span>
</td>
<td><code>4</code> - <code>5</code> - <code>6</code></td>
<td><b>3.2</b></td>
</tr>
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-tai"> </span><span class="fa-stack-1x text-white" id="">N3</span></span>
</td>
<td><code>7</code> - <code>8</code> - <code>9</code></td>
<td><b>3.2</b></td>
</tr>
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-xiu"> </span><span class="fa-stack-1x text-white" id="">N0</span></span>
</td>
<td><code>0</code></td>
<td><b>7</b></td>
</tr>
</tbody>
</table>
</div>
<p>- Nếu giao dịch số cuối trùng với 1 trong 3 số trên, bạn sẽ chiến thắng.</p>
<p>-<b>Lưu ý:</b> Số tiền nhỏ nhất <b>1,000 VND</b> lớn nhất <b>1,000,000 VND</b></p>
</div>
<div class="panel-body game" style="padding-top: 10px; padding-bottom: 20px;" game-tab="hieu2so">
<p>- <b>H3</b> một game tính kết quả bằng <b>hiệu 2 số cuối giao dịch (Số trước trừ số sau). dụ: xxx94 => 9 - 4 = 5</b>.</p>
<p>- Cách chơi cùng đơn giản:</p>
<p>- Chuyển tiền vào một trong các tài khoản:</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center mb-0">
<thead>
<th class="text-center text-white bg-primary">Số điện thoại</th>
<th class="text-center text-white bg-primary">Tối thiểu</th>
<th class="text-center text-white bg-primary">Tối đa</th>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="result-table-10" role="alert">
<tr>
<td id="mm_0528192535">
<b id="mln">
0528192535 <b id="hmln" attr-name="amount"><font color="green">11,576,070</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="red">167</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192535')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192535')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192536">
<b id="mln">
0528192536 <b id="hmln" attr-name="amount"><font color="green">9,018,973</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">140</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192536')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192536')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192537">
<b id="mln">
0528192537 <b id="hmln" attr-name="amount"><font color="green">33,969,783</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">142</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192537')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192537')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192538">
<b id="mln">
0528192538 <b id="hmln" attr-name="amount"><font color="green">3,697,136</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">15</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192538')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192538')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0563658041">
<b id="mln">
0563658041 <b id="hmln" attr-name="amount"><font color="green">36,730,599</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">120</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0563658041')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0563658041')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
</tbody>
</table>
</div>
<div class="text-center font-weight-bold">
<b>Làm mới sau <span class="text-danger coundown-time">0</span> s</b>
</div>
<p class="mt-3">
- Nội dung chuyển : <span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"></span><span class="fa-stack-1x text-white comment-n1">H3</span></span>
</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr class="bg-primary" role="row">
<th class="text-center text-white">Nội dung</th>
<th class="text-center text-white">Hiệu 2 Số cuối bằng</th>
<th class="text-center text-white">Tiền nhận</th>
</tr>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="" id="result-table" role="alert">
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"> </span><span class="fa-stack-1x text-white" id="">H3</span></span>
</td>
<td><code>9</code></td>
<td><b>11</b></td>
</tr>
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"> </span><span class="fa-stack-1x text-white" id="">H3</span></span>
</td>
<td><code>7</code></td>
<td><b>7.7</b></td>
</tr>
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"> </span><span class="fa-stack-1x text-white" id="">H3</span></span>
</td>
<td><code>5</code></td>
<td><b>5.5</b></td>
</tr>
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"> </span><span class="fa-stack-1x text-white" id="">H3</span></span>
</td>
<td><code>3</code></td>
<td><b>3.3</b></td>
</tr>
</tbody>
</table>
</div>
<p>- Nếu giao dịch hiệu của 2 số (số trước trừ số sau) trùng 1 trong những số trên bạn sẽ chiến thắng.</p>
<p>-<b>Lưu ý:</b> Số tiền nhỏ nhất <b>1,000 VND</b> lớn nhất <b>1,000,000 VND</b></p>
</div>
<div class="panel-body game" style="padding-top: 10px; padding-bottom: 20px;" game-tab="lo">
<p>- <b></b> một game tính kết quả bằng <b> 2 số cuối giao dịch</b>.</p>
<p>- Cách chơi cùng đơn giản:</p>
<p>- Chuyển tiền vào một trong các tài khoản:</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center mb-0">
<thead>
<th class="text-center text-white bg-primary">Số điện thoại</th>
<th class="text-center text-white bg-primary">Tối thiểu</th>
<th class="text-center text-white bg-primary">Tối đa</th>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="result-table-10" role="alert">
<tr>
<td id="mm_0528192535">
<b id="mln">
0528192535 <b id="hmln" attr-name="amount"><font color="green">11,576,070</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="red">167</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192535')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192535')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192536">
<b id="mln">
0528192536 <b id="hmln" attr-name="amount"><font color="green">9,018,973</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">140</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192536')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192536')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192537">
<b id="mln">
0528192537 <b id="hmln" attr-name="amount"><font color="green">33,969,783</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">142</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192537')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192537')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192538">
<b id="mln">
0528192538 <b id="hmln" attr-name="amount"><font color="green">3,697,136</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">15</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192538')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192538')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0563658041">
<b id="mln">
0563658041 <b id="hmln" attr-name="amount"><font color="green">36,730,599</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">120</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0563658041')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0563658041')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
</tbody>
</table>
</div>
<div class="text-center font-weight-bold">
<b>Làm mới sau <span class="text-danger coundown-time">0</span> s</b>
</div>
<p class="mt-3">
- Nội dung chuyển : <span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"></span><span class="fa-stack-1x text-white comment-n1">LO</span></span>
</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center table-responsive">
<thead>
<tr class="bg-primary" role="row">
<th class="text-center text-white">Nội dung</th>
<th class="text-center text-white">2 Số cuối</th>
<th class="text-center text-white">Tiền nhận</th>
</tr>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="" id="result-table" role="alert">
<tr>
<td>
<span class="fa-stack"><span class="fa fa-circle fa-stack-2x dot-text-chan"> </span><span class="fa-stack-1x text-white" id="">LO</span></span>
</td>
<td>
<code>01</code> - <code>03</code> - <code>12</code> - <code>19</code> - <code>23</code> - <code>24</code> - <code>30</code> - <code>33</code> - <code>39</code> - <code>48</code> - <code>54</code> - <code>55</code> -
<code>60</code> - <code>61</code> - <code>71</code> - <code>77</code> - <code>81</code> - <code>82</code> - <code>83</code> - <code>67</code> - <code>88</code> - <code>76</code> - <code>64</code> - <code>79</code> -
<code>29</code> - <code>99</code>
</td>
<td><b>3.7</b></td>
</tr>
</tbody>
</table>
</div>
<p>- Nếu giao dịch 2 số cuối trùng với 1 trong các số trên, bạn sẽ chiến thắng.</p>
<p>-<b>Lưu ý:</b> Số tiền nhỏ nhất <b>1,000 VND</b> lớn nhất <b>1,000,000 VND</b></p>
</div>
<div class="panel-body game" style="padding-top: 10px; padding-bottom: 20px;" game-tab="gap3">
<p>- <b>Gấp 3</b> một game tính kết quả bằng <b>nhiều số cuối giao dịch</b>.</p>
<p>- Cách chơi cùng đơn giản:</p>
<p>- Chuyển tiền vào một trong các tài khoản:</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center mb-0">
<thead>
<th class="text-center text-white bg-primary">Số điện thoại</th>
<th class="text-center text-white bg-primary">Tối thiểu</th>
<th class="text-center text-white bg-primary">Tối đa</th>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="result-table-10" role="alert">
<tr>
<td id="mm_0528192535">
<b id="mln">
0528192535 <b id="hmln" attr-name="amount"><font color="green">11,576,070</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="red">167</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192535')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192535')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192536">
<b id="mln">
0528192536 <b id="hmln" attr-name="amount"><font color="green">9,018,973</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">140</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192536')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192536')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192537">
<b id="mln">
0528192537 <b id="hmln" attr-name="amount"><font color="green">33,969,783</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">142</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192537')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192537')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0528192538">
<b id="mln">
0528192538 <b id="hmln" attr-name="amount"><font color="green">3,697,136</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">15</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0528192538')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0528192538')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
<tr>
<td id="mm_0563658041">
<b id="mln">
0563658041 <b id="hmln" attr-name="amount"><font color="green">36,730,599</font>/<font color="6861b1">50M</font></b>
<b id="hmln" class="hidden" attr-name="times"><font color="green">120</font>/<font color="6861b1">200 Giao dịch</font></b>
</b>
<span class="label label-success text-uppercase" onclick="QuangApp.coppy('0563658041')"><i class="fa fa-clipboard" aria-hidden="true"></i></span>
<span class="label label-success text-uppercase" onclick="QuangApp.play('0563658041')"><i class="fa fa-play" aria-hidden="true"></i></span>
</td>
<td>1,000 VNĐ</td>
<td>1,000,000 VNĐ</td>
</tr>
</tbody>
</table>
</div>
<div class="text-center font-weight-bold">
<b>Làm mới sau <span class="text-danger coundown-time">0</span> s</b>
</div>
<p class="mt-3">- Nội dung chuyển : G3 (nếu đuôi giao dịch các số sau)</p>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr class="bg-primary" role="row">
<th class="text-center text-white">Nội dung</th>
<th class="text-center text-white">Các số cuối</th>
<th class="text-center text-white">Tiền nhận</th>
</tr>
</thead>
<tbody aria-live="polite" aria-relevant="all" class="" id="result-table" role="alert">
<tr>
<td>G3</td>
<td>
<code>02</code> - <code>13</code> - <code>17</code> - <code>19</code> - <code>21</code> - <code>29</code> - <code>35</code> - <code>37</code> - <code>47</code> - <code>49</code> - <code>51</code> - <code>54</code> -
<code>57</code> - <code>63</code> - <code>64</code> - <code>74</code> - <code>83</code> - <code>91</code> - <code>95</code> - <code>96</code>
</td>
<td><b>3.3</b></td>
</tr>
<tr>
<td>G3</td>
<td><code>66</code> - <code>99</code></td>
<td><b>4.4</b></td>
</tr>
<tr>
<td>G3</td>
<td><code>123</code> - <code>234</code> - <code>456</code> - <code>678</code> - <code>789</code></td>
<td><b>5.5</b></td>
</tr>
</tbody>
</table>
</div>
<p>-<b>Lưu ý:</b> Số tiền nhỏ nhất <b>1,000 VND</b> lớn nhất <b>1,000,000 VND</b></p>
</div>

View File

@@ -0,0 +1,453 @@
<!DOCTYPE html>
<html class="no-js" lang="vi">
<head>
<title>Trummomo.me Hệ thống MiNiGame MoMo 24/7 Thanh Toán Tự Động Siêu Tốc</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
<meta content="Trummomo.me Hệ thống MiNiGame MoMo 24/7 Thanh Toán Tự Động Siêu Tốc" name="title" />
<meta content="Chẵn Lẻ Momo - Hệ thống trò chơi. Chẵn lẻ MoMo Giao dịch Tự Động 24/7. Đua Top Tuần Nhận Nhiều Phần Quà Hấp Dẫn." name="description" />
<meta content="minigame momo , Chẵn Lẽ MoMo, Tài Xỉu momo, chanlemomo,Chẵn lẻ online, Chẵn Lẻ, momo cl, Cách Chơi chẵn lẽ momo,chẵn lẽ momo tự động , chẵn lẽ momo 24/7" name="keywords" />
<meta content="/" property="og:url" />
<meta content="article" property="og:type" />
<meta content="Trummomo.me Hệ thống MiNiGame MoMo 24/7 Thanh Toán Tự Động Siêu Tốc" property="og:title" />
<meta content="Chẵn Lẻ Momo - Hệ thống trò chơi. Chẵn lẻ MoMo Giao dịch Tự Động 24/7. Đua Top Tuần Nhận Nhiều Phần Quà Hấp Dẫn." property="og:description" />
<meta content="upload/files/1.png" property="og:image" />
<link href="upload/files/momo.png" rel="apple-touch-icon" />
<link href="upload/files/momo.png" rel="shortcut icon" type="image/x-icon" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.css" rel="stylesheet" />
<link href="{{ url('') }}/themes/css/bootstrap.min.css" rel="stylesheet" />
<link href="{{ url('') }}/themes/css/bootstrap-social.css" rel="stylesheet" />
<link href="{{ url('') }}/themes/css/style.css?ver=28" rel="stylesheet" />
<link href="{{ url('') }}/themes/css/custom.1.css?ver=28" rel="stylesheet" />
<link href="{{ url('') }}/themes/css/wheel.css?ver=1651368768" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/simple-notify@0.5.4/dist/simple-notify.min.css" />
<style>
.aa:hover,
.aa:focus {
background: #ad4105;
border-radius: 5px
}
.coffer-box {
display: block;
position: fixed;
bottom: 90px;
right: 15px;
width: 15%;
z-index: 1000;
cursor: pointer;
/*background: #ad410569;*/
border-radius: 10px;
text-align: center;
padding: 15px;
}
@media (max-width: 767px) {
.coffer-box {
background: unset;
width: 50%;
bottom: 20px;
}
}
.mb-0 {
margin-bottom: 0;
}
.mt-100 {
margin-top: 100px;
}
.mainbar {
padding: 0px !important;
}
.panel-heading {
background-color: #055FB3 !important;
border-color: #055FB3 !important;
}
.panel-primary {
/*background-color: #055FB3 !important;*/
border-color: #055FB3 !important;
}
.navbar {
background-color: #055FB3 !important;
}
.navbar .navbar-collapse {
background-color: #055FB3 !important;
}
.table .bg-primary {
background-color: #055FB3 !important;
}
.footer {
background-color: #055FB3 !important;
}
.mainbar {
background-color: #fff !important;
}
</style>
</head>
<body>
<input type="hidden" name="main_session">
<div class="mainbar" style="height: 150px;">
<div class="navbar">
<div class="container">
<a href="/" class="text-left">
<div class="">
<img src="/upload/files/1.png" height="66px" alt="Logo" />
</div>
</a>
</div>
</div>
</div>
<div class="container">
<div class="content">
<div class="content-container">
<div class="py-5" style="min-height: 80px !important;">
<div class="output" id="output">
<h3 class="cursor">
Chẵn lẻ MoMo Tự Động </h3>
<h4>
Uy Tín - Nhanh Gọn - Tự Động 24/7 ! </h4>
</div>
</div>
<div class="text-center mt-3">
<button type="button" class="btn btn-danger" data-toggle="modal" data-target="#noteModal">Xem Lưu Ý</button>
</div>
<div class="text-center mt-5">
<button class="btn btn-default btn-primary mt-1 hidden" data-game="chanle">
Chẵn Lẻ
</button>
<button class="btn btn-default btn-primary mt-1 hidden" data-game="chanle2">
Chẵn Lẻ 2
</button>
<button class="btn btn-default btn-primary mt-1 hidden" data-game="taixiu">
Tài Xỉu
</button>
<button class="btn btn-default btn-primary mt-1 hidden" data-game="taixiu2">
Tài Xỉu 2
</button>
<button class="btn btn-default btn-primary mt-1 hidden" data-game="x3">
1 Phần 3
</button>
<button class="btn btn-default btn-primary mt-1 hidden" data-game="gap3">
Gấp 3
</button>
<button class="btn btn-default btn-primary mt-1 hidden" data-game="tong3so">
Tổng 3 Số
</button>
<button class="btn btn-default btn-primary mt-1 hidden" data-game="hieu2so">
H3
</button>
<button class="btn btn-default btn-primary mt-1 hidden" data-game="lo">
</button>
</div>
<div class="text-center mt-5" role="group">
<button class="btn btn-outline-primary mt-1 hidden" data-minigame="day_mission" style="position: relative;">
Nhiệm Vụ Ngày
<b class="text-danger" style="position: absolute;margin-left: auto;margin-right: auto;text-align: center;left: 0px;right: 0px;top: 22px;font-size: 9px;"><font color="red">(HOT)</font></b>
</button>
<button class="btn btn btn-outline-primary mt-1 hidden" data-minigame="refer_friend" style="position: relative;">
Giới thiệu bạn
<b class="text-danger" style="position: absolute;margin-left: auto;margin-right: auto;text-align: center;left: 0px;right: 0px;top: 22px;font-size: 9px;"><font color="red">(NEW)</font></b>
</button>
<button class="btn btn-outline-primary mt-1 hidden" data-minigame="wheel" style="position: relative;">
Vòng Xoay May Mắn
<b class="text-danger" style="position: absolute;margin-left: auto;margin-right: auto;text-align: center;left: 0px;right: 0px;top: 22px;font-size: 9px;"><font color="red">(NEW)</font></b>
</button>
<button class="btn btn-outline-primary mt-1 hidden" data-minigame="diemdanh" style="position: relative;">
Điểm danh nhận quà
<b class="text-danger" style="position: absolute;margin-left: auto;margin-right: auto;text-align: center;left: 0px;right: 0px;top: 22px;font-size: 9px;"><font color="green"><i class="fa fa-clock-o" aria-hidden="true"></i> <b id="diemdanh_time">0</b></font> <font color="6861b1"><i class="fa fa-users" aria-hidden="true"></i> <b id="diemdanh_users">0</b></font></b>
</button>
</div>
<div class="row justify-content-md-center box-cl">
<div class="col-md-6 mt-3 cl">
<div class="panel panel-primary">
<div class="panel-heading text-center">
Cách chơi
</div>
<div class="play-rules">
</div>
<div class="minigame-rules">
</div>
</div>
</div>
<div class="col-md-6 mt-3 cl">
<div class="panel panel-primary">
<div class="panel-heading text-center">
KIỂM TRA GIAO DỊCH
</div>
<div class="panel-body text-center">
<div class="alert alert-info text-left">
Nếu quá 15 phút chưa nhận được tiền vui lòng dán vào đây để kiểm tra.
</div>
<div class="text-center">
<div class="form-group">
<label for="tran_id">Nhập giao dịch</label>
<input type="number" class="form-control" name="tran_id" placeholder="Mã giao dịch: Ví dụ 11223344556">
<small id="checkHelp" class="form-text text-muted">Nhập giao dịch của bạn để
kiểm tra.</small>
</div>
<button class="btn btn-primary mb-2 check-tran" onclick="DUNGA.check_tranid()">Kiểm tra</button>
<div class="hidden more_infomation">
<div class="mt-3">
<small class="form-text text-danger">
Vui lòng nhập thêm thông tin để kiểm tra:
</small>
<input type="text" class="form-control" name="receiver" placeholder="Số điện thoại hệ thống">
<small class="form-text text-muted">Số điện thoại của <b class="text-danger">Hệ thống</b> bạn chuyển tiền vào. <b class="text-danger">Không</b> phải số của bạn.</small>
</div>
<button class="btn btn-primary mb-2 check-tran-2" onclick="DUNGA.check_tranid2()">Tiếp tục</button>
</div>
<div id="result-check" style="margin-top: 5px;">
</div>
</div>
<div id="contact" class="mt-5">
</div>
</div>
</div>
</div>
</div>
<div class="mt-5 text-center panel panel-primary">
<div class="ads alert alert-danger text-center text-danger font-weight-bold font-size-lg m-5 hidden">
</div>
</div>
<div class="mt-5 text-center panel panel-primary">
<div class="row">
<div class="col-md-12 mt-3">
<div class="text-center mb-3">
<h3 class="text-uppercase">
TRẠNG THÁI MOMO
</h3>
</div>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr class="bg-primary" role="row">
<th class="text-center text-white">
Số điện thoại
</th>
<th class="text-center text-white">
Trạng thái
</th>
<th class="text-center text-white">
Giao dịch
</th>
<th class="text-center text-white">
Hạn mức
</th>
</tr>
</thead>
<tbody id="momo-status">
</tbody>
</table>
<div class="text-center font-weight-bold m-3"><b>Làm mới sau <span class="text-danger coundown-time">0</span> s</b></div>
</div>
</div>
</div>
</div>
<div class="mt-5 text-center panel panel-primary">
<div class="row">
<div class="col-md-12 mt-3">
<div class="text-center mb-3">
<h3 class="text-uppercase">
Lịch sử tham gia
</h3>
</div>
<div class="text-center font-weight-bold m-3"><b>Làm mới sau <span class="text-danger coundown-time">0</span> s</b></div>
<center class="" style="width: 76%;margin: auto;">
<marquee>
<b id="msg_history_hu"></b>
</marquee>
</center>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr class="bg-primary" role="row">
<th class="text-center text-white">
Số điện thoại
</th>
<th class="text-center text-white">
Tiền đặt
</th>
<th class="text-center text-white">
Nội dung
</th>
<th class="text-center text-white">
Trạng thái
</th>
</tr>
</thead>
<tbody id="history">
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="panel panel-primary week_top hidden">
<div class="panel-heading text-center">
<h4>TOP THẮNG TUẦN</h4>
</div>
<div class="panel-body">
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr role="row" class="bg-primary">
<th class="text-center text-white">TOP</th>
<th class="text-center text-white">Số điện thoại</th>
<th class="text-center text-white">Số tiền</th>
<th class="text-center text-white">Phần thưởng</th>
</tr>
</thead>
<tbody role="alert" aria-live="polite" aria-relevant="all" id="week_top" class="text-center">
</tbody>
</table>
<div class="text-center">
<b class="text-danger">Phần thưởng TOP sẽ dược trao vào 24h chủ nhật hàng tuần.</b>
</div>
</div>
</div>
</div>
<div class="mt-5 panel panel-primary">
</div>
<div id="hu-left-display" style="position: fixed; bottom: 15px; left: 15px; z-index: 1000; cursor: pointer; width: 15%;" class="hidden">
<div onclick="$('#hu-left-display').hide()" class="" style="left: 100%; position: absolute;">
<font color="red">
<big><b>[X]</b></big>
</font>
</div>
<b onclick="DUNGA.hu_click()">
<center><img class="animate__animated animate__heartBeat animate__infinite infinite" src="/upload/files/hu.png" width="100%" style="max-height: 130px;max-width: 150px;min-height: 50px; min-width:80px;" /></center>
<div class="text-center">
<p class="animate__animated animate__shakeX animate__infinite infinite animate__slow 2 hu-balance" style="border-top-right-radius: 30px; border-top-left-radius: 30px; border-radius: 30px; background: aquamarine;">0</p>
</div>
</b>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container text-center">
<div class="row">
<div class="col-xs-12 text-white ">
Copyright 2021 © trummomo.me | All rights reserved | AAAAAA
</div>
</div>
</div>
</footer>
<div class="modal fade" id="noteModal" tabindex="-1" role="dialog" aria-labelledby="noteModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="noteModalLabel">Thông báo</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body" id="note_modal">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Đã hiểu</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="hu-info" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header text-center">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h3 class="modal-title"></h3>
<h2 class="text-danger"><b>NỔ GAME</b></h2>
</div>
<div class="modal-body" id="result_hu">
<center><img class="animate__animated animate__heartBeat animate__infinite infinite" src="/upload/files/hu.png" width="30%" style="" /></center>
<div class="solid text-center" style="border-top-right-radius: 30px; border-top-left-radius: 30px; border-radius: 30px; background: aquamarine;">
<p class="animate__animated animate__shakeX animate__infinite infinite animate__slow 2 hu-balance">0</p>
</div>
<br />
<div style="padding: 15px;">
<div class="form-group row">
<label for="inputEmail3" class="col-sm-2 col-form-label">Số điện thoại</label>
<div class="col-sm-10">
<input type="text" class="form-control" placeholder="Số điện thoại" name="partnerId" />
</div>
</div>
<div class="form-group row">
<div class="col-sm-12">
<center id="msg_hu"></center>
<center id="msg_hu2">Vui lòng nhập số điện thoại để tiếp tục</center>
</div>
</div>
</div>
<hr />
<center>Hưỡng dẫn</center>
- Để tham gia chức năng này, bạn cần nhập số điện thoại của bạn chơi vào mục bên trên, sau đó ấn nút <b>Tham gia</b>, (Để hủy thì làm lại tương tự). <br />
- Khi tham gia, mỗi khi bạn chiến thắng sẽ bị trừ <b id="amount-hu">10.000 VNĐ</b> cho vào Quỹ . <br />
- Nếu bạn chiến thắng số cuối giao dịch <b id="roles-hu"></b> thì bạn sẽ nhận được toàn bộ số tiền trong <br />
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" style="border-radius: 0;" data-dismiss="modal">Đóng</button>
</div>
</div>
</div>
</div> <div id="player" class="hidden"></div>
<div id="fb-root"></div>
<div id="fb-customer-chat" class="fb-customerchat"></div>
</body>
<script type="text/javascript" src="https://js.pusher.com/7.0/pusher.min.js" id="pusher-js"></script>
<script src="{{ url('') }}/themes/js/wheel.min.js?V2"></script>
<script src="{{ url('') }}/themes/js/jquery-1.10.1.min.js"></script>
<script src="{{ url('') }}/themes/js/jquery-ui-1.9.2.custom.min.js"></script>
<script src="{{ url('') }}/themes/js/bootstrap.min.js"></script>
<script src="{{ url('') }}/themes/js/moment.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="https://cdn.jsdelivr.net/npm/simple-notify@0.5.4/dist/simple-notify.min.js"></script>
<script src="{{ url('') }}/themes/js/script.js?ver=28042003.v890">
</script>
<script>
window.addEventListener('DOMContentLoaded', (event) => {
$('[data-toggle="tooltip"]').tooltip();
$('.cash-format').each(function(index) {
$(this).html(parseInt($(this).text()).toLocaleString('it-IT', {
style: 'currency',
currency: 'VND'
}));
});
$('button[data-game]').click(function() {
let button = $(this);
let game = button.attr('data-game');
game_active = game;
$('.game').removeClass('active');
$(`.game[game-tab=${game}]`).addClass('active').removeClass("hidden");
$("button[data-game]").removeClass("btn-info").addClass("btn-primary");
$("[data-minigame]").removeClass("btn-success");
button.removeClass("btn-primary").addClass("btn-info");
});
$('button[data-minigame]').click(function() {
let button = $(this);
let game = button.attr('data-minigame');
game_active = "minigame";
$('.game').removeClass('active');
$(`.game[game-tab=${game}]`).addClass('active').removeClass("hidden");
$("[data-minigame]").removeClass("btn-success");
$("[data-game]").removeClass("btn-success").addClass("btn-primary");
button.addClass("btn-success");
});
});
</script>
</html>