-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1514 lines (1462 loc) · 91 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zxx">
<head>
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-V20MYXBVPH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-V20MYXBVPH');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="keywords" content="NFTs, Disney+, Cryptocurrency, Cartoon" />
<meta name="description" content="Lotso Coins - Leading the PvP Mode" />
<title>Lotso Coins - Leading the PvP Mode</title>
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="48x48" href="images/favicon-48x48.png">
<link rel="icon" type="image/png" sizes="96x96" href="images/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="192x192" href="images/android-chrome-192x192.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon-180x180.png">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<!--font-awesome icons link-->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/slick.css">
<!--main style file-->
<link rel="stylesheet" href="css/style.css" id="theme-link">
<link rel="stylesheet" href="css/responsive.css" id="theme-link-responsive">
<link rel="stylesheet" href="css/button-style.css">
</head>
<body id="dark-mode">
<svg id="ckLine" xmlns="http://www.w3.org/2000/svg"></svg>
<div id="fireworks-container"></div>
<!-- Preloader Part Start -->
<div class="preloader">
<div class="frame">
<div class="center">
<div class="dot-1"></div>
<div class="dot-2"></div>
<div class="dot-3"></div>
</div>
</div>
</div>
<!-- Preloader Part End -->
<!-- HEADER AREA START -->
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top">
<div class="container">
<a class="navbar-brand" href="index.html">Lotso<b>.</b></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa fa-bars" aria-hidden="true"></i>
</button>
<div class="collapse navbar-collapse menu-main" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto menu-item">
<li class="nav-item">
<a class="nav-link" href="#banner">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#airdrop">Airdrops</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">DisneyLand</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#gallery">NFTs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#product">Enpower</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#partner">Partner</a>
</li>
<li class="nav-item">
<a class="nav-link bor" id="connectWallet" href="#" data-toggle="modal" data-target="#connectModal">Connect</a>
</li>
</ul>
</div>
<div class="modal fade" id="blockkillModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Block Kill</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="info-txt">
<p><strong>Public Chain:</strong> Base</p>
<p><strong>Initial Liquidity Pool:</strong> 1ETH</p>
<p><strong>Risk Warning:</strong> "Prohibited to purchase within the first 40 seconds after market opening——anti-bot measures."</p>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="dropboxx" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="pvpmodeModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">PvP Mode</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="info-txt">
<p>All users can only buy and cannot sell. Except after 3 days from opening or there are 1000 ETH in the liquidity pool.</p>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="dropboxx" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="buylimitModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Buy Limit</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="info-txt">
<p>Before trading opens, each address can buy a maximum of 2% of tokens. Once trading is open, this restriction will be lifted in preparation for listing on exchanges.</p>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="dropboxx" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="slippageModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Slippage</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="info-txt">
<p><strong>Before trading opens:</strong> No slippage</p>
<p><strong>After trading opens:</strong> 1 buy, 1 sale</p>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="dropboxx" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="connectModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="walletAddressTitle">Notes Before Connecting</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="info-txt">
<div id="walletAddressHint1">To continue, please connect your Web3 wallet, such as <a href="https://metamask.io/" target="_blank" rel="noopener noreferrer">MetaMask</a> or <a href="https://walletconnect.org/" target="_blank" rel="noopener noreferrer">WalletConnect</a>. This allows our website to securely interact with your wallet.</div>
<div id="walletAddressHint2">By clicking "Accept and Continue", you agree to our <a href="#" data-toggle="modal" data-target="#termsModal">terms and conditions</a> and <a href="#" data-toggle="modal" data-target="#privacyModal">privacy policy</a>. You will be prompted to connect your wallet via an external link. Ensure you're using a trusted and secure wallet service.</div>
</div>
</form>
<div id="claimReward" class="info-txt" style="display: none;">
<p>Your total reward is: <span id="totalAirdropReward"></span></p>
<p><small>Press the following button to claim your reward.</small></p>
<button type="button" id="claimRewardBtn" class="dropboxx2" data-dismiss="modal">Check Your Reward</button>
</div>
</div>
<div class="modal-footer">
<button type="button" id='connectDecline' class="dropboxx" data-dismiss="modal">Decline</button>
<button type="submit" id="connectAccept" class="dropboxx2" data-dismiss="modal" data-param="dark">Accept and Continue</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="connectModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="walletAddressTitle2">Congratulations</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="info-txt">
<p>Congratulations! You have claimed <span id="congratulation-message"></span> $Lotso, check on your wallet.</p>
<p>Click the following button to generate a promotion code:</p>
<button type="button" id="generatePromotionButton" class="dropboxx2">Generate Promotion Code</button>
<div id="promotionCodeInfo"></div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" id='connectDecline2' class="dropboxx" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="privacyModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Privacy Policy</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="info-txt">
<p>Welcome to the Lotso Platform. We are committed to protecting the privacy and security of our users’ information. This Privacy Policy outlines how we collect, use, store, and disclose information in relation to the Lotso cryptocurrency coin and related services.</p>
<h3>1. Information Collection and Use</h3>
<ul>
<li><strong>Personal Information:</strong> We may collect personal information such as name, email address, and other contact details when you register for an account, participate in our forums, or engage in transactions on our platform.</li>
<li><strong>Transaction Information:</strong> We collect information related to your transactions on the Lotso Platform, including transaction history, balances, and wallet addresses.</li>
<li><strong>Usage Data:</strong> We collect information on how our services are accessed and used. This may include information such as your computer's Internet Protocol address (IP address), browser type, browser version, the pages of our service that you visit, the time and date of your visit, the time spent on those pages, and other diagnostic data.</li>
<li><strong>Cookies and Tracking Data:</strong> We use cookies and similar tracking technologies to track activity on our service and hold certain information.</li>
</ul>
<h3>2. Use of Data</h3>
<p>We use the collected data for various purposes:</p>
<ul>
<li>To provide and maintain our service</li>
<li>To notify you about changes to our service</li>
<li>To allow you to participate in interactive features of our service when you choose to do so</li>
<li>To provide customer support</li>
<li>To gather analysis or valuable information so that we can improve our service</li>
<li>To monitor the usage of our service</li>
<li>To detect, prevent, and address technical issues</li>
</ul>
<h3>3. Data Transfer</h3>
<p>Your information, including Personal Data, may be transferred to — and maintained on — computers located outside of your state, province, country, or other governmental jurisdiction where the data protection laws may differ from those of your jurisdiction.</p>
<h3>4. Data Disclosure</h3>
<p>We may disclose your personal data in the good faith belief that such action is necessary to:</p>
<ul>
<li>Comply with a legal obligation</li>
<li>Protect and defend the rights or property of Lotso Platform</li>
<li>Prevent or investigate possible wrongdoing in connection with the service</li>
<li>Protect the personal safety of users of the service or the public</li>
<li>Protect against legal liability</li>
</ul>
<h3>5. Data Security</h3>
<p>The security of your data is important to us. We strive to use commercially acceptable means to protect your Personal Data, but remember that no method of transmission over the Internet, or method of electronic storage, is 100% secure.</p>
<h3>6. Service Providers</h3>
<p>We may employ third-party companies and individuals to facilitate our service (“Service Providers”), to provide the service on our behalf, to perform service-related services, or to assist us in analyzing how our service is used.</p>
<h3>7. Links to Other Sites</h3>
<p>Our service may contain links to other sites that are not operated by us. If you click on a third-party link, you will be directed to that third party’s site. We strongly advise you to review the Privacy Policy of every site you visit.</p>
<h3>8. Children's Privacy</h3>
<p>Our service does not address anyone under the age of 18 (“Children”).</p>
<h3>9. Changes to This Privacy Policy</h3>
<p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.</p>
<h3>10. Contact Us</h3>
<p>If you have any questions about this Privacy Policy, please contact us.</p>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="dropboxx" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="termsModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Terms and Conditions</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="info-txt">
<p>Before delving into this document, it is strongly recommended that you read and fully understand all the contents of this “Notice and Disclaimer” section. Please understand that any information provided in this document should not be construed as legal, financial, business, investment, or tax advice. Before making any decisions or taking any actions that may be related to the content of this document, you are responsible for consulting and relying on the professional advice of your own legal, financial, business, investment, and tax advisors.</p>
<p>Please note that Lotso Foundation (hereinafter referred to as the “Foundation”), all project members and developers involved in the Lotso platform, and any related service providers will not be liable for any form of direct or indirect damage or loss you may suffer as a result of accessing or relying on this whitepaper, the website located at https://btiplatform.com/ (hereinafter referred to as the “Website”), or any other materials published by the Foundation.</p>
<p>This disclaimer is intended to remind you that your decisions should be based on a full understanding and assessment of your personal and financial circumstances, as well as your risk tolerance and that you will be solely responsible for any consequences of your decisions.</p>
<h3>Cryptocurrency Products</h3>
<p>Cryptocurrency products often carry high investment risks, and the regulatory status of such products is still unclear in many jurisdictions. Therefore, any losses related to the trading of $Lotso tokens may not be subject to regulatory relief or recourse. The value of $Lotso tokens may fluctuate dramatically, and there is even a risk of complete loss. In addition, the technical infrastructure underlying the Lotso platform, including $Lotso tokens themselves, remains experimental, and the stable operation of the network cannot be guaranteed.</p>
<p>Before participating, we strongly recommend that you visit our website for more detailed information and a deeper understanding of the potential risks involved. You should be aware that your place of residence may have specific restrictions on the holding, purchase, or sale of $Lotso tokens, and you are responsible for ensuring that your actions comply with local laws and regulations. Before making any decisions, proper legal advice is essential to ensure that your actions are within the bounds of the law.</p>
<h3>Nature of the Whitepaper</h3>
<p>This whitepaper and the corresponding website content are for reference only and are intended to encourage discussion within the community. They should not be considered as formal prospectuses, business proposals, securities offering memoranda, or investment invitations, nor as formal invitations to sell any products or assets. It is hereby explicitly stated that the information in the whitepaper or website should not be interpreted as a guarantee or commitment to the future performance of the Lotso platform.</p>
<p>Any agreements regarding the sale, purchase, or other forms of distribution or transfer of $Lotso tokens will be subject to the specific terms and conditions outlined in the agreement and should be considered in conjunction with the content of this whitepaper. When quoting third-party information, the Foundation and its affiliated entities have not independently verified the accuracy or completeness of this information.</p>
<p>Please note that over time and with changes in the environment, the information in this whitepaper or on the website may become outdated or no longer applicable. Therefore, we recommend that you stay informed and update your information as needed to better understand the current status of the Lotso platform and related tokens.</p>
<h3>Token Features</h3>
<p>The Lotso platform has introduced its own native digital cryptographic security utility token, the $Lotso token, which plays a crucial role in the operation of the platform. The design of the $Lotso token aims to make it a transaction currency, community reward mechanism, governance tool, and a means of risk management and asset appreciation on the platform. This innovative initiative aims to support the functionality of the platform comprehensively while enhancing the participation and experience quality of the entire user community.</p>
<p>The introduction of the $Lotso token not only provides platform users with a new means of payment but also increases user interaction and involvement through community incentives and governance participation. The use of the token further extends to the areas of risk management and investment appreciation, providing users with more usage scenarios and potential value growth.</p>
<p>It is important to note that holding $Lotso tokens does not imply ownership of any additional rights, such as equity, dividends, or statutory claims. All permissions related to $Lotso tokens are limited to the scope of application within the Lotso platform, and users implement various functions and interactions within the platform by holding and using $Lotso tokens. In this way, the Lotso platform cleverly combines the principles of token economics with the practical requirements of a digital platform, creating a more cohesive and efficient ecosystem for users.</p>
<h3>For Reference Only</h3>
<p>The project roadmap depicted in the Lotso whitepaper provides a general overview of $Lotso tokens and the features of the Lotso platform. However, please note that this information is for reference only and does not constitute a legally binding commitment or guarantee to anyone. Before making a purchase decision, it is essential to independently evaluate all relevant information. The future development, release time, and other planned arrangements of the products, features, or services described in the whitepaper will depend on the final decisions of the Lotso Foundation and its affiliated companies, and these contents may be adjusted based on actual circumstances.</p>
<p>Please understand that the content of the whitepaper and Lotso platform website is not fixed and may be updated or replaced as the project progresses and market conditions change. Therefore, we recommend that you regularly visit our official channels for the latest and most accurate information. Based on this, make wise investment choices to protect your investment security.</p>
<h3>Regulatory Approval</h3>
<p>Please note that the information contained in the whitepaper and its website has not been formally or informally reviewed or approved by any regulatory authority. Neither in the past nor in the future has any action been taken or will be taken to obtain such review or approval, which applies to the legal and regulatory requirements of any jurisdiction worldwide. Therefore, the publication, distribution, or dissemination of the content of the whitepaper or website does not imply compliance with any relevant laws, regulatory requirements, or rules.</p>
<p>The Lotso Foundation assumes full responsibility for all information provided in the whitepaper. Furthermore, it is hereby declared that this whitepaper has not been reviewed or approved by any regulatory authority of any EU member state. Therefore, when participating in related activities, individuals should carefully assess the legal and regulatory risks associated with them and act according to their own judgment.</p>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="dropboxx" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Contact Us</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="input-group contact-input mb-3">
<div class="input-group-prepend">
<span class="input-group-text faq-icon"><i class="fa fa-user-o" aria-hidden="true"></i>
</span>
</div>
<input type="text" class="form-control box-bg" placeholder="Username" aria-label="Username">
</div>
<div class="input-group contact-input mb-3">
<div class="input-group-prepend">
<span class="input-group-text faq-icon"><i class="fa fa-envelope-o" aria-hidden="true"></i>
</span>
</div>
<input type="email" class="form-control box-bg" placeholder="Email Address" aria-label="Username">
</div>
<div class="form-group">
<textarea class="form-control box-bg" placeholder="Ask a Question..." rows="3"></textarea>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="dropboxx" data-dismiss="modal">Close</button>
<button type="submit" class="dropboxx2" data-dismiss="modal">Send message</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="exampleModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<form id="subscriptionForm" action="https://formspree.io/f/mvoevojo" method="POST">
<div class="modal-header">
<h5 class="modal-title">Subscription</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="input-group contact-input mb-3">
<input type="email" name="email" id="subscriptionEmail" class="form-control box-bg" placeholder="Email Address" aria-label="Username">
</div>
<div id="subscriptionInfo"></div>
</div>
<div class="modal-footer mf-2">
<button type="submit" class="dropboxx2">Subscribe</button>
</div>
</form>
</div>
</div>
</div>
</div>
</nav>
<!-- HEADER AREA ENDS -->
<!-- THEME SWITCH AREA START -->
<div class="button-switch-container" style="font-size: 0.75px">
<div class="components">
<div class="theme-switch-button">
<div class="moon"></div>
<div class="moon"></div>
<div class="moon"></div>
</div>
<div class="daytime-background"></div>
<div class="daytime-background"></div>
<div class="daytime-background"></div>
<div class="cloud">
<div class="cloud-sun"></div>
<div class="cloud-sun"></div>
<div class="cloud-sun"></div>
<div class="cloud-sun"></div>
<div class="cloud-sun"></div>
<div class="cloud-sun"></div>
</div>
<div class="cloud-light">
<div class="cloud-sun"></div>
<div class="cloud-sun"></div>
<div class="cloud-sun"></div>
<div class="cloud-sun"></div>
<div class="cloud-sun"></div>
<div class="cloud-sun"></div>
</div>
<div class="stars">
<div class="star big">
<div class="star-sun"></div>
<div class="star-sun"></div>
<div class="star-sun"></div>
<div class="star-sun"></div>
</div>
<div class="star big">
<div class="star-sun"></div>
<div class="star-sun"></div>
<div class="star-sun"></div>
<div class="star-sun"></div>
</div>
<div class="star medium">
<div class="star-sun"></div>
<div class="star-sun"></div>
<div class="star-sun"></div>
<div class="star-sun"></div>
</div>
<div class="star medium">
<div class="star-sun"></div>
<div class="star-sun"></div>
<div class="star-sun"></div>
<div class="star-sun"></div>
</div>
<div class="star small">
<div class="star-sun"></div>
<div class="star-sun"></div>
<div class="star-sun"></div>
<div class="star-sun"></div>
</div>
<div class="star small">
<div class="star-sun"></div>
<div class="star-sun"></div>
<div class="star-sun"></div>
<div class="star-sun"></div>
</div>
</div>
</div>
</div>
<!-- THEME SWITCH AREA END -->
<!-- BANNER AREA START -->
<section id="banner">
<div class=".particles-js-canvas-el" id="particles-js"></div>
<div class="design-layer"></div>
<div class="backtotop">
<a href="#banner"><i class="fa fa-arrow-up" aria-hidden="true"></i></a>
</div>
<div class="container zindex">
<div class="row">
<div class="col-lg-7 banner-txt">
<h3>Disney Collaborates: Lotso Coins - Leading the PvP Mode!</h3>
<p>$Lotso is the flagship token of the PvP mode. This design philosophy ensures that the token price continues to rise steadily, allowing players to experience the thrill of rapidly increasing asset values.</p>
<a href="https://app.uniswap.org/explore/tokens/base/0xfafDA17EDEEe4413aC99F6D6443429742593e7Ac" target="_blank">Buy Now</a>
</div>
<div class="col-lg-5">
<div class="banner-img">
<img src="images/banner.png" alt="banner-img" class="img-fluid">
</div>
</div>
</div>
</div>
</section>
<!-- BANNER AREA ENDS -->
<!-- FEATURE AREA START -->
<section id="overview">
<div class="container">
<div class="row header-text text-center">
<div class="col-lg-12">
<h3><span>PVP</span> MODE</h3>
</div>
</div>
<div class="row over-pa">
<div class="col-lg-9 col-sm-12 m-auto">
<div class="row">
<div class="col-lg-6 col-sm-6">
<div class="over-item txt-right unique-style3">
<i class="fa fa-lightbulb-o over-i" aria-hidden="true"></i>
<div class="break"></div>
<h3>Our Inspirations</h3>
<p>PvP mode is inspired by the frustration of investors when early buyers sell tokens, causing price drops.</p>
<div class="over-btn">
<a href="javascript:void(0);">Read More</a>
</div>
</div>
</div>
<div class="col-lg-6 col-sm-6">
<div class="over-item txt-left unique-style">
<i class="fa fa-rocket over-i" aria-hidden="true"></i>
<div class="break"></div>
<h3>N<sub>2</sub> Acceleration</h3>
<p>Enable players to experience the thrill of exponentially accelerating account assets akin to a race car.</p>
<div class="over-btn">
<a href="javascript:void(0);">Read More</a>
</div>
</div>
</div>
<div class="col-lg-6 col-sm-6">
<div class="over-item txt-right unique-style2">
<i class="fa fa-star over-i" aria-hidden="true"></i>
<div class="break"></div>
<h3>Super Funds</h3>
<p>The developers provide a continuous stream of funds to ensure the smooth operation of the PvP mode.</p>
<div class="over-btn">
<a href="javascript:void(0);">Read More</a>
</div>
</div>
</div>
<div class="col-lg-6 col-sm-6">
<div class="over-item txt-left unique-style4">
<i class="fa fa-bolt over-i" aria-hidden="true"></i>
<div class="break"></div>
<h3>Highly Enpowered</h3>
<p>Lotso will be used for airdrops to empower NFTs and other gameplay features in the Disney seriess.</p>
<div class="over-btn">
<a href="javascript:void(0);">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FEATURE AREA ENDS -->
<!-- FOLLOW AREA START -->
<section id="follow">
<div class="container">
<div class="row header-text text-center">
<div class="col-lg-12">
<h3>FOLLOW <span>U</span>S</h3>
</div>
</div>
<div class="row price-pa">
<div class="container" id="twitterAuth">
<div class="row">
<div class="col-lg-10 m-auto">
<div class="sub-main">
<div class="row">
<div class="col-lg-8 col-md-7">
<h3>Authorize Your Twitter to Unlock</h3>
</div>
<div class="col-lg-4 col-md-5 subscripe-btn">
<a href="javascript:void(0);" id="start-auth"><i class="fa fa-twitter" aria-hidden="true"></i> Authorize</a>
</div>
</div>
</div>
<div class="info-txt">
<div id="twitterAuthMessage"></div>
</div>
</div>
</div>
</div>
<div class="container" id="promotionCodeInput" style="display: none;">
<div class="row">
<div class="col-lg-8 col-md-10 m-md-auto blog-text">
<form>
<div class="input-group contact-input mb-3">
<input id="promotion-code-input" type="text" class="form-control box-bg" placeholder="Input promotion code here..." aria-label="Username">
<button type="button" id="promotion-code-check-btn" class="check-btn" onclick="checkPromotionCode(event)"><i class="fa fa-arrow-down" aria-hidden="true"></i></button>
</div>
<div id="promotionInputMessage"></div>
</form>
</div>
</div>
</div>
<div id="retweet-section" class="col-lg-3 col-sm-6 mob-mar-bottom disabled">
<div class="price-table gold-bg">
<h3><sub>Step 1</sub></h3>
<h3 class="gold">Repost Our Tweet</h3>
<div id="retweet-progress" class="counter-1 progress-cycle" style="display: none;">
<div class="chart" data-percent="0"></div>
<h5>0%</h5>
<span>Reposting Tweet</span>
</div>
<div id="retweet-info">
<p><i class="fa fa-check-circle-o" aria-hidden="true"></i> Verified Twitter Account</p>
<p><i class="fa fa-check-circle-o" aria-hidden="true"></i> Repost Our Tweet</p>
<p><i class="fa fa-check-circle-o" aria-hidden="true"></i> Task Completed</p>
</div>
<div class="price-btn gold-bg2 text-center">
<a href="javascript:void(0);" id="retweet"><i class="fa fa-twitter" aria-hidden="true"></i> Repost</a>
</div>
</div>
<div class="info-txt middle-align">
<div id="repostMessage"></div>
</div>
</div>
<div id="tweet-section" class="col-lg-3 col-sm-6 mob-mar-bottom disabled">
<div class="price-table">
<h3><sub>Step 2</sub></h3>
<h3>Post Your Tweet</h3>
<div id="tweet-progress" class="counter-1 progress-cycle" style="display: none;">
<div class="chart" data-percent="0"></div>
<h5>0%</h5>
<span>Post Tweet</span>
</div>
<div id="tweet-info">
<p><i class="fa fa-check-circle-o" aria-hidden="true"></i> Verified Twitter Account</p>
<p><i class="fa fa-check-circle-o" aria-hidden="true"></i> Post Your Tweet</p>
<p><i class="fa fa-check-circle-o" aria-hidden="true"></i> Task Completed</p>
</div>
<div class="price-btn text-center">
<a href="javascript:void(0);" id="tweet"><i class="fa fa-twitter" aria-hidden="true"></i> Post</a>
</div>
</div>
<div class="info-txt middle-align">
<div id="postMessage"></div>
</div>
</div>
<div id="like-section" class="col-lg-3 col-sm-6 mob-mar-bottom disabled">
<div class="price-table">
<h3><sub>Step 3</sub></h3>
<h3>Like Our Tweet</h3>
<div id="like-progress" class="counter-1 progress-cycle" style="display: none;">
<div class="chart" data-percent="0"></div>
<h5>0%</h5>
<span>Liking Tweet</span>
</div>
<div id="like-info">
<p><i class="fa fa-check-circle-o" aria-hidden="true"></i> Verified Twitter Account</p>
<p><i class="fa fa-check-circle-o" aria-hidden="true"></i> Like Our Tweet</p>
<p><i class="fa fa-check-circle-o" aria-hidden="true"></i> Task Completed</p>
</div>
<div class="price-btn text-center">
<a href="javascript:void(0);" id="like"><i class="fa fa-twitter" aria-hidden="true"></i> Like</a>
</div>
</div>
<div class="info-txt middle-align">
<div id="likeMessage"></div>
</div>
</div>
<div id="follow-section" class="col-lg-3 col-sm-6 disabled">
<div class="price-table mob-mar-bottom">
<h3><sub>Step 4</sub></h3>
<h3>Follow Our Twitter</h3>
<div id="follow-progress" class="counter-1 progress-cycle" style="display: none;">
<div class="chart" data-percent="0"></div>
<h5>0%</h5>
<span>Following Us</span>
</div>
<div id="follow-info">
<p><i class="fa fa-check-circle-o" aria-hidden="true"></i> Verified Twitter Account</p>
<p><i class="fa fa-check-circle-o" aria-hidden="true"></i> Follow Our Twitter</p>
<p><i class="fa fa-check-circle-o" aria-hidden="true"></i> Task Completed</p>
</div>
<div class="price-btn text-center">
<a href="javascript:void(0);" id="follow-us"><i class="fa fa-twitter" aria-hidden="true"></i> Follow</a>
</div>
</div>
<div class="info-txt middle-align">
<div id="followMessage"></div>
</div>
</div>
</div>
</div>
</section>
<!-- FOLLOW AREA ENDS -->
<!-- AIRDROP AREA START -->
<section id="airdrop">
<div class="container">
<div class="row header-text text-center blog-header">
<div class="col-lg-12">
<h3>AIR<span>D</span>ROPS</h3>
</div>
</div>
<div class="row blog-pa">
<div class="col-lg-10 col-md-12 m-auto">
<div class="blog-main">
<div class="col-lg-12 blog-item">
<div class="blog-shadow">
<img src="images/poster1.png" alt="blog-img" class="img-fluid w-100">
<div class="blog-item-txt">
<h3>Available Airdrops for Eligible Users</h3>
<p>Join our $Lotso Airdrop and get a chance to receive 100,000 tokens - a unique opportunity to be a part of our growing digital ecosystem!</p>
<h3>Participants Count: <span id="participantCount" class="airdropNumber">0</span> </h3>
<h3>Airdrops Claimed: <span id="airdropCount" class="airdropNumber">0</span> / <span class="airdropNumber2">2,500,000,000</span></h3>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-9 m-auto">
<div class="claim-airdrop">
<div class="row">
<div class="col-lg-8 col-md-7">
<h3>Claim Your Airdrop Now!</h3>
</div>
<div class="col-lg-4 col-md-5 subscripe-btn">
<a id="claimAirdrop" href="javascript:void(0);">Check Your Eligibility</a>
</div>
</div>
</div>
<div class="info-txt">
<div id="airdropHint1"></div>
</div>
<div id="airdropSection" style="display: none;">
<div id="turnstileWidget"></div>
<div class="info-txt">
<div id="airdropMessage">Press the button above to claim your airdrop.</div>
</div>
<div id="current-progress" class="progress" style="display: none;">
<div class="progress-bar" role="progressbar" style="width: 0%;" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100">0%</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- AIRDROP AREA ENDS -->
<!-- ABOUT AREA START -->
<section id="about">
<div class="container">
<div class="row header-text text-center about-header">
<div class="col-lg-12">
<h3><span>D</span>ISNEY<span>L</span>AND</h3>
</div>
</div>
<div class="row about-pa">
<div class="col-lg-10 col-md-12 m-auto about-item">
<div class="row">
<div class="col-lg-4 col-sm-8 m-sm-auto col-md-5 text-center">
<div class="about-img ai-one">
<img src="images/about1.png" alt="about-img" class="img-fluid">
</div>
</div>
<div class="col-lg-1 col-md-1"></div>
<div class="col-lg-7 col-md-6">
<div class="about-txt">
<span class="separet-span">Toy Story</span>
<h3>#2 Adventure of Buzz Lightyear</h3>
<p>Buzz Lightyear is a major character in the "Toy Story" series, a toy astronaut from outer space. He possesses unique equipment and skills, embarking on a series of exciting journeys and stories alongside other toys and characters.</p>
<p class="separate-p tab-hider">The second project in the Disney series will feature Buzz Lightyear. Theme: Adventure and Bravery!</p>
<a href="javascript:void(0);">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-10 m-auto about-item col-md-12">
<div class="row">
<div class="col-lg-7 col-md-6">
<div class="about-txt sm-reduce-pa">
<span class="separet-span">Tokenomics</span>
<div class="p-bars">
<div class="col-lg-12 p-bar">
<span>70% Liquidity Pool</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 80%;" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="col-lg-12 p-bar">
<span>30% Airdrop</span>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 20%;" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
<div class="row counter-main">
<div class="counter-1 col-6 col-lg-6 col-sm-6 col-md-6">
<div class="single-button">
<a href="#" data-toggle="modal" data-target="#blockkillModal">Block Kill</a>
</div>
</div>
<div class="counter-1 col-6 col-lg-6 col-sm-6 col-md-6">
<div class="single-button">
<a href="#" data-toggle="modal" data-target="#pvpmodeModal">PvP Mode</a>
</div>
</div>
</div>
<div class="row counter-main">
<div class="counter-1 col-6 col-lg-6 col-sm-6 col-md-6">
<div class="single-button">
<a href="#" data-toggle="modal" data-target="#buylimitModal">Buy Limit</a>
</div>
</div>
<div class="counter-1 col-6 col-lg-6 col-sm-6 col-md-6">
<div class="single-button">
<a href="#" data-toggle="modal" data-target="#slippageModal">Slippage </a>
</div>
</div>
</div>
</div>
<div class="col-lg-1 col-md-1"></div>
<div class="col-lg-4 text-center mob-hide sm-hide col-md-5">
<div class="about-img ai-two">
<img src="images/about2.png" alt="about-img" class="img-fluid">
</div>
</div>
</div>
</div>
<div class="col-lg-10 m-auto about-item col-md-12">
<div class="row">
<div class="col-lg-4 col-sm-8 m-sm-auto text-center col-md-5">
<div class="about-img ai-three">
<img src="images/about3.png" alt="about-img" class="img-fluid">
</div>
</div>
<div class="col-lg-1 col-md-1"></div>
<div class="col-lg-7 col-md-6">
<div class="about-txt">
<span class="separet-span">Toy Story</span>
<h3>#3 Well-being of Woody</h3>
<p>Woody is an adorable toy cowboy, he is Andy's favorite and also the leader of the other toys. Woody cares deeply about the well-being of other toys, constantly striving to maintain unity and harmony within the team. Regardless of the challenges he faces, Woody always approaches them with optimism and a positive attitude.</p>
<p class="separate-p tab-hider">The second project in the Disney series will feature Woody. Theme: Shared Prosperity!</p>
<a href="javascript:void(0);">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ABOUT AREA ENDS -->
<!-- GALLERY AREA START -->
<section id="gallery">
<div class="container">
<div class="row header-text text-center">
<div class="col-lg-12">
<h3>NFT<span>s</span></h3>
</div>
</div>
<div class="row gallery-pa">
<div class="col-lg-10 m-auto">
<div class="row">
<div class="col-lg-9 col-md-12 col-sm-6 col-12 gallery-img">
<img src="images/g1.png" alt="gallary-img" class="img-fluid">
</div>
<div class="col-lg-3 col-md-3 col-sm-6 g-2 col-12 mob-mar-top gallery-img tab-view-hide">
<img src="images/g2.png" alt="gallary-img" class="img-fluid sp-img2">
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-12 gallery-img g-mar sm-gallery-top">
<img src="images/g3.png" alt="gallary-img" class="img-fluid">
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-12 gallery-img g-mar">
<img src="images/g4.png" alt="gallary-img" class="img-fluid">
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-12 gallery-img g-mar sm-gallery-top2">
<img src="images/g5.png" alt="gallary-img" class="img-fluid w-100 sp-img">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- GALLERY AREA ENDS -->
<!-- PRODUCT AREA START -->
<section id="product">
<div class="container">
<div class="row header-text text-center">
<div class="col-lg-12">
<h3><span>EN</span>POWER</h3>
</div>
</div>
<div class="row product-pa">
<div class="col-lg-7 mob-mar-bottom">
<div class="product-item">
<div class="row">
<div class="col-lg-8 col-md-7 product-txt">
<span>Access Unlocked</span>
<h3>Launchpool</h3>
<p>Holders of Lotso tokens will receive airdrops of new tokens in the Disney series after the official announcement snapshot time.</p>
<a href="javascript:void(0);">Browse All</a>
</div>
<div class="col-lg-4 col-md-4 mob-img-hide">
<img src="images/pro1.png" alt="product-img">
</div>
</div>
</div>
</div>
<div class="col-lg-1"></div>
<div class="col-lg-4">
<div class="product-item product-txt">
<span>Digital Treasures</span>
<h3>NFT Collections</h3>
<p class="next-p">Devoted Disney series token holders are granted exclusive rights to acquire sought-after Disney series NFTs.</p>
<a href="javascript:void(0);">Browse All</a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="product-main">
<div class="col-lg-3">
<div class="product-slider text-center">
<div class="pro-img">
<img src="images/p1.png" alt="product-img">
</div>
<div class="border-style">
<h3>Lotso</h3>
<a href="javascript:void(0);">Now on Sale</a>
</div>
<div class="row pro-info">
<div class="col-lg-6 col-6 col-sm-5">
<span>Free</span>
</div>
<div class="col-lg-6 col-6 stars col-sm-7">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
</div>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="product-slider text-center">
<div class="pro-img">
<img src="images/p2.png" alt="product-img">
</div>
<div class="border-style">
<h3>Buzz Lightyear</h3>
<a href="javascript:void(0);">Loading...</a>
</div>
<div class="row pro-info">
<div class="col-lg-6 col-sm-5 col-6">
<span>Free</span>
</div>
<div class="col-lg-6 col-6 col-sm-7 stars">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
</div>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="product-slider text-center">
<div class="pro-img">
<img src="images/p3.png" alt="product-img">
</div>
<div class="border-style">
<h3>Woody</h3>
<a href="javascript:void(0);">Loading...</a>
</div>
<div class="row pro-info">
<div class="col-lg-6 col-sm-5 col-6">